2021-12-07 22:47:41 +01:00
|
|
|
#include "content/views/view_store.hpp"
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2022-02-01 18:09:40 +01:00
|
|
|
#include <hex/api/content_registry.hpp>
|
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
#include <imgui.h>
|
|
|
|
#define IMGUI_DEFINE_MATH_OPERATORS
|
|
|
|
#include <imgui_internal.h>
|
|
|
|
|
|
|
|
#include <hex/helpers/utils.hpp>
|
|
|
|
#include <hex/helpers/crypto.hpp>
|
|
|
|
#include <hex/helpers/logger.hpp>
|
2021-09-08 17:22:54 +02:00
|
|
|
#include <hex/helpers/magic.hpp>
|
2022-01-13 14:33:30 +01:00
|
|
|
#include <hex/helpers/file.hpp>
|
2022-03-04 11:36:37 +01:00
|
|
|
#include <hex/helpers/fs.hpp>
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
#include <filesystem>
|
2021-09-08 17:22:54 +02:00
|
|
|
#include <functional>
|
2021-09-03 02:34:40 +02:00
|
|
|
#include <nlohmann/json.hpp>
|
2021-09-23 22:56:49 +02:00
|
|
|
#include <microtar.h>
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
namespace hex::plugin::builtin {
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
using namespace std::literals::string_literals;
|
|
|
|
using namespace std::literals::chrono_literals;
|
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
ViewStore::ViewStore() : View("hex.builtin.view.store.name") {
|
2021-09-03 02:34:40 +02:00
|
|
|
this->refresh();
|
2022-01-23 02:28:38 +01:00
|
|
|
|
|
|
|
ContentRegistry::Interface::addMenuItem("hex.builtin.menu.help", 3000, [&, this] {
|
|
|
|
if (ImGui::MenuItem("hex.builtin.view.store.name"_lang)) {
|
2022-02-01 18:09:40 +01:00
|
|
|
ImHexApi::Tasks::doLater([] { ImGui::OpenPopup(View::toWindowName("hex.builtin.view.store.name").c_str()); });
|
2022-01-23 02:28:38 +01:00
|
|
|
this->getWindowOpenState() = true;
|
|
|
|
}
|
|
|
|
});
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewStore::drawStore() {
|
2021-12-07 22:47:41 +01:00
|
|
|
ImGui::Header("hex.builtin.view.store.desc"_lang, true);
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2021-12-07 22:47:41 +01:00
|
|
|
if (ImGui::Button("hex.builtin.view.store.reload"_lang)) {
|
2021-09-03 02:34:40 +02:00
|
|
|
this->refresh();
|
|
|
|
}
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
auto drawTab = [this](auto title, fs::ImHexPath pathType, auto &content, const std::function<void(const StoreEntry &)> &downloadDoneCallback) {
|
2021-09-03 02:34:40 +02:00
|
|
|
if (ImGui::BeginTabItem(title)) {
|
2021-09-08 17:22:54 +02:00
|
|
|
if (ImGui::BeginTable("##pattern_language", 3, ImGuiTableFlags_ScrollY | ImGuiTableFlags_Borders | ImGuiTableFlags_SizingStretchSame | ImGuiTableFlags_RowBg)) {
|
2021-09-03 02:34:40 +02:00
|
|
|
ImGui::TableSetupScrollFreeze(0, 1);
|
2021-12-07 22:47:41 +01:00
|
|
|
ImGui::TableSetupColumn("hex.builtin.view.store.row.name"_lang, ImGuiTableColumnFlags_WidthFixed);
|
|
|
|
ImGui::TableSetupColumn("hex.builtin.view.store.row.description"_lang, ImGuiTableColumnFlags_None);
|
2021-09-08 17:22:54 +02:00
|
|
|
ImGui::TableSetupColumn("", ImGuiTableColumnFlags_WidthFixed);
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
ImGui::TableHeadersRow();
|
|
|
|
|
2021-09-09 01:57:11 +02:00
|
|
|
u32 id = 1;
|
2021-09-03 02:34:40 +02:00
|
|
|
for (auto &entry : content) {
|
2021-09-08 17:22:54 +02:00
|
|
|
ImGui::TableNextRow(ImGuiTableRowFlags_None, ImGui::GetTextLineHeight() + 4.0F * ImGui::GetStyle().FramePadding.y);
|
2021-09-03 02:34:40 +02:00
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::TextUnformatted(entry.name.c_str());
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
ImGui::TextUnformatted(entry.description.c_str());
|
|
|
|
ImGui::TableNextColumn();
|
|
|
|
|
2021-09-09 01:57:11 +02:00
|
|
|
ImGui::PushID(id);
|
2021-09-03 02:34:40 +02:00
|
|
|
ImGui::BeginDisabled(this->m_download.valid() && this->m_download.wait_for(0s) != std::future_status::ready);
|
|
|
|
{
|
|
|
|
if (entry.downloading) {
|
2021-09-08 17:22:54 +02:00
|
|
|
ImGui::TextSpinner("");
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
if (this->m_download.valid() && this->m_download.wait_for(0s) == std::future_status::ready) {
|
|
|
|
entry.downloading = false;
|
|
|
|
|
|
|
|
auto response = this->m_download.get();
|
|
|
|
if (response.code == 200) {
|
2022-01-24 20:53:17 +01:00
|
|
|
entry.installed = true;
|
|
|
|
entry.hasUpdate = false;
|
|
|
|
|
|
|
|
if (entry.isFolder) {
|
|
|
|
mtar_t ctx;
|
|
|
|
mtar_open(&ctx, this->m_downloadPath.string().c_str(), "r");
|
|
|
|
|
|
|
|
mtar_header_t header;
|
|
|
|
auto extractBasePath = this->m_downloadPath.parent_path() / this->m_downloadPath.stem();
|
|
|
|
while (mtar_read_header(&ctx, &header) != MTAR_ENULLRECORD) {
|
2022-03-04 11:36:37 +01:00
|
|
|
auto filePath = extractBasePath / std::fs::path(header.name);
|
2022-01-24 20:53:17 +01:00
|
|
|
if (filePath.filename() == "@PaxHeader") {
|
|
|
|
mtar_next(&ctx);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
fs::createDirectories(filePath.parent_path());
|
|
|
|
fs::File outputFile(filePath.string(), fs::File::Mode::Create);
|
2022-01-24 20:53:17 +01:00
|
|
|
|
|
|
|
std::vector<u8> buffer(0x10000);
|
|
|
|
for (u64 offset = 0; offset < header.size; offset += buffer.size()) {
|
|
|
|
auto readSize = std::min<u64>(buffer.size(), header.size - offset);
|
|
|
|
mtar_read_data(&ctx, buffer.data(), readSize);
|
|
|
|
|
|
|
|
buffer.resize(readSize);
|
|
|
|
outputFile.write(buffer);
|
|
|
|
}
|
|
|
|
mtar_next(&ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
mtar_finalize(&ctx);
|
|
|
|
mtar_close(&ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
downloadDoneCallback(entry);
|
2021-09-03 02:34:40 +02:00
|
|
|
} else
|
2022-02-28 23:10:04 +01:00
|
|
|
log::error("Download failed! HTTP Code {}", response.code);
|
2021-08-29 11:10:48 +02:00
|
|
|
|
|
|
|
|
2022-01-24 20:53:17 +01:00
|
|
|
this->m_download = {};
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (entry.hasUpdate) {
|
2021-12-07 22:47:41 +01:00
|
|
|
if (ImGui::Button("hex.builtin.view.store.update"_lang)) {
|
2022-01-23 21:52:24 +01:00
|
|
|
entry.downloading = this->download(pathType, entry.fileName, entry.link, true);
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
} else if (!entry.installed) {
|
2021-12-07 22:47:41 +01:00
|
|
|
if (ImGui::Button("hex.builtin.view.store.download"_lang)) {
|
2022-01-23 21:52:24 +01:00
|
|
|
entry.downloading = this->download(pathType, entry.fileName, entry.link, false);
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
} else {
|
2021-12-07 22:47:41 +01:00
|
|
|
if (ImGui::Button("hex.builtin.view.store.remove"_lang)) {
|
2022-01-23 21:52:24 +01:00
|
|
|
entry.installed = !this->remove(pathType, entry.fileName);
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImGui::EndDisabled();
|
2021-09-09 01:57:11 +02:00
|
|
|
ImGui::PopID();
|
|
|
|
id++;
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ImGui::EndTable();
|
2021-08-29 11:10:48 +02:00
|
|
|
}
|
2021-09-03 02:34:40 +02:00
|
|
|
ImGui::EndTabItem();
|
2021-08-29 11:10:48 +02:00
|
|
|
}
|
2021-09-03 02:34:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (ImGui::BeginTabBar("storeTabs")) {
|
2022-03-04 11:36:37 +01:00
|
|
|
drawTab("hex.builtin.view.store.tab.patterns"_lang, fs::ImHexPath::Patterns, this->m_patterns, [](auto) {});
|
|
|
|
drawTab("hex.builtin.view.store.tab.libraries"_lang, fs::ImHexPath::PatternsInclude, this->m_includes, [](auto) {});
|
|
|
|
drawTab("hex.builtin.view.store.tab.magics"_lang, fs::ImHexPath::Magic, this->m_magics, [](auto) { magic::compile(); });
|
|
|
|
drawTab("hex.builtin.view.store.tab.constants"_lang, fs::ImHexPath::Constants, this->m_constants, [](auto) {});
|
|
|
|
drawTab("hex.builtin.view.store.tab.encodings"_lang, fs::ImHexPath::Encodings, this->m_encodings, [](auto) {});
|
|
|
|
drawTab("hex.builtin.view.store.tab.yara"_lang, fs::ImHexPath::Yara, this->m_yara, [](auto) {});
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
ImGui::EndTabBar();
|
2021-08-29 11:10:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
void ViewStore::refresh() {
|
|
|
|
this->m_patterns.clear();
|
|
|
|
this->m_includes.clear();
|
|
|
|
this->m_magics.clear();
|
2021-09-10 21:16:08 +02:00
|
|
|
this->m_constants.clear();
|
2021-09-23 22:56:49 +02:00
|
|
|
this->m_yara.clear();
|
2022-01-23 21:52:24 +01:00
|
|
|
this->m_encodings.clear();
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2022-02-21 18:57:53 +01:00
|
|
|
this->m_apiRequest = this->m_net.getString(ImHexApiURL + "/store"s, 30'0000);
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewStore::parseResponse() {
|
|
|
|
auto response = this->m_apiRequest.get();
|
2021-09-08 17:22:54 +02:00
|
|
|
if (response.code == 200) {
|
2021-09-03 02:34:40 +02:00
|
|
|
auto json = nlohmann::json::parse(response.body);
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
auto parseStoreEntries = [](auto storeJson, const std::string &name, fs::ImHexPath pathType, std::vector<StoreEntry> &results) {
|
2021-09-03 02:34:40 +02:00
|
|
|
// Check if the response handles the type of files
|
|
|
|
if (storeJson.contains(name)) {
|
|
|
|
|
|
|
|
for (auto &entry : storeJson[name]) {
|
|
|
|
|
|
|
|
// Check if entry is valid
|
2021-09-23 22:56:49 +02:00
|
|
|
if (entry.contains("name") && entry.contains("desc") && entry.contains("file") && entry.contains("url") && entry.contains("hash") && entry.contains("folder")) {
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
// Parse entry
|
2022-01-24 20:53:17 +01:00
|
|
|
StoreEntry storeEntry = { entry["name"], entry["desc"], entry["file"], entry["url"], entry["hash"], entry["folder"], false, false, false };
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
// Check if file is installed already or has an update available
|
2022-03-04 11:36:37 +01:00
|
|
|
for (const auto &folder : fs::getDefaultPaths(pathType)) {
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
auto path = folder / std::fs::path(storeEntry.fileName);
|
2021-09-03 02:34:40 +02:00
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
if (fs::exists(path) && fs::isPathWritable(folder)) {
|
2021-09-03 02:34:40 +02:00
|
|
|
storeEntry.installed = true;
|
2021-08-29 11:10:48 +02:00
|
|
|
|
2021-09-03 02:34:40 +02:00
|
|
|
std::ifstream file(path, std::ios::in | std::ios::binary);
|
2022-03-04 11:36:37 +01:00
|
|
|
std::vector<u8> data(fs::getFileSize(path), 0x00);
|
2022-01-24 20:53:17 +01:00
|
|
|
file.read(reinterpret_cast<char *>(data.data()), data.size());
|
2021-09-03 02:34:40 +02:00
|
|
|
|
|
|
|
auto fileHash = crypt::sha256(data);
|
|
|
|
|
|
|
|
// Compare installed file hash with hash of repo file
|
|
|
|
if (std::vector(fileHash.begin(), fileHash.end()) != crypt::decode16(storeEntry.hash))
|
|
|
|
storeEntry.hasUpdate = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
results.push_back(storeEntry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
parseStoreEntries(json, "patterns", fs::ImHexPath::Patterns, this->m_patterns);
|
|
|
|
parseStoreEntries(json, "includes", fs::ImHexPath::PatternsInclude, this->m_includes);
|
|
|
|
parseStoreEntries(json, "magic", fs::ImHexPath::Magic, this->m_magics);
|
|
|
|
parseStoreEntries(json, "constants", fs::ImHexPath::Constants, this->m_constants);
|
|
|
|
parseStoreEntries(json, "yara", fs::ImHexPath::Yara, this->m_yara);
|
|
|
|
parseStoreEntries(json, "encodings", fs::ImHexPath::Encodings, this->m_encodings);
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
2022-01-24 20:53:17 +01:00
|
|
|
this->m_apiRequest = {};
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void ViewStore::drawContent() {
|
2022-02-21 18:57:53 +01:00
|
|
|
if (ImGui::BeginPopupModal(View::toWindowName("hex.builtin.view.store.name").c_str(), &this->getWindowOpenState())) {
|
2021-09-03 02:34:40 +02:00
|
|
|
if (this->m_apiRequest.valid()) {
|
|
|
|
if (this->m_apiRequest.wait_for(0s) != std::future_status::ready)
|
2021-12-07 22:47:41 +01:00
|
|
|
ImGui::TextSpinner("hex.builtin.view.store.loading"_lang);
|
2021-09-03 02:34:40 +02:00
|
|
|
else
|
|
|
|
this->parseResponse();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->drawStore();
|
|
|
|
|
|
|
|
ImGui::EndPopup();
|
|
|
|
} else {
|
|
|
|
this->getWindowOpenState() = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
bool ViewStore::download(fs::ImHexPath pathType, const std::string &fileName, const std::string &url, bool update) {
|
2022-01-23 21:52:24 +01:00
|
|
|
bool downloading = false;
|
2022-03-04 11:36:37 +01:00
|
|
|
for (const auto &path : fs::getDefaultPaths(pathType)) {
|
|
|
|
if (!fs::isPathWritable(path))
|
2022-02-28 23:10:04 +01:00
|
|
|
continue;
|
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
auto fullPath = path / std::fs::path(fileName);
|
2022-02-28 23:10:04 +01:00
|
|
|
|
2022-01-23 21:52:24 +01:00
|
|
|
if (!update || fs::exists(fullPath)) {
|
2022-02-01 22:09:44 +01:00
|
|
|
downloading = true;
|
2022-01-23 21:52:24 +01:00
|
|
|
this->m_downloadPath = fullPath;
|
2022-02-21 18:57:53 +01:00
|
|
|
this->m_download = this->m_net.downloadFile(url, fullPath, 30'0000);
|
2022-01-23 21:52:24 +01:00
|
|
|
break;
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
|
|
|
}
|
2022-01-23 21:52:24 +01:00
|
|
|
|
|
|
|
if (!downloading) {
|
|
|
|
View::showErrorPopup("hex.builtin.view.store.download_error"_lang);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-09-03 02:34:40 +02:00
|
|
|
}
|
2022-01-24 20:53:17 +01:00
|
|
|
|
2022-03-04 11:36:37 +01:00
|
|
|
bool ViewStore::remove(fs::ImHexPath pathType, const std::string &fileName) {
|
2022-01-23 21:52:24 +01:00
|
|
|
bool removed = false;
|
2022-03-04 11:36:37 +01:00
|
|
|
for (const auto &path : fs::getDefaultPaths(pathType)) {
|
|
|
|
bool removedFile = fs::remove(path / std::fs::path(fileName));
|
|
|
|
bool removedFolder = fs::remove(path / std::fs::path(fileName).stem());
|
2022-01-23 21:52:24 +01:00
|
|
|
|
2022-02-21 18:40:51 +01:00
|
|
|
removed = removed || removedFile || removedFolder;
|
2021-10-17 22:23:01 +02:00
|
|
|
}
|
2022-01-23 21:52:24 +01:00
|
|
|
|
|
|
|
return removed;
|
2021-08-29 11:10:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|