2023-01-01 01:29:38 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <hex/providers/provider.hpp>
|
|
|
|
#include <hex/api/localization.hpp>
|
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
2023-01-03 15:34:22 +00:00
|
|
|
#include <imgui.h>
|
|
|
|
#include <hex/ui/imgui_imhex_extensions.h>
|
2023-01-05 08:30:15 +00:00
|
|
|
#include <hex/ui/widgets.hpp>
|
2023-01-28 10:41:09 +00:00
|
|
|
#include <hex/helpers/utils.hpp>
|
2023-01-03 15:34:22 +00:00
|
|
|
|
2023-01-01 01:29:38 +00:00
|
|
|
#include <array>
|
|
|
|
#include <mutex>
|
|
|
|
#include <string_view>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
namespace hex::plugin::windows {
|
|
|
|
|
|
|
|
class ProcessMemoryProvider : public hex::prv::Provider {
|
|
|
|
public:
|
|
|
|
ProcessMemoryProvider() = default;
|
|
|
|
~ProcessMemoryProvider() override = default;
|
|
|
|
|
|
|
|
[[nodiscard]] bool isAvailable() const override { return this->m_processHandle != nullptr; }
|
|
|
|
[[nodiscard]] bool isReadable() const override { return true; }
|
|
|
|
[[nodiscard]] bool isWritable() const override { return true; }
|
|
|
|
[[nodiscard]] bool isResizable() const override { return false; }
|
|
|
|
[[nodiscard]] bool isSavable() const override { return false; }
|
|
|
|
|
|
|
|
void read(u64 address, void *buffer, size_t size, bool) override { this->readRaw(address, buffer, size); }
|
|
|
|
void write(u64 address, const void *buffer, size_t size) override { this->writeRaw(address, buffer, size); }
|
|
|
|
|
|
|
|
void readRaw(u64 address, void *buffer, size_t size) override;
|
|
|
|
void writeRaw(u64 address, const void *buffer, size_t size) override;
|
|
|
|
[[nodiscard]] size_t getActualSize() const override { return 0xFFFF'FFFF'FFFF; }
|
|
|
|
|
|
|
|
void save() override {}
|
|
|
|
void saveAs(const std::fs::path &) override {}
|
|
|
|
|
2023-01-04 09:02:17 +00:00
|
|
|
[[nodiscard]] std::string getName() const override { return hex::format("hex.windows.provider.process_memory.name"_lang, this->m_selectedProcess != nullptr ? this->m_selectedProcess->name : ""); }
|
2023-01-24 08:07:11 +00:00
|
|
|
[[nodiscard]] std::vector<std::pair<std::string, std::string>> getDataDescription() const override {
|
2023-01-01 01:29:38 +00:00
|
|
|
return {
|
|
|
|
{ "hex.windows.provider.process_memory.process_name"_lang, this->m_selectedProcess->name },
|
|
|
|
{ "hex.windows.provider.process_memory.process_id"_lang, std::to_string(this->m_selectedProcess->id) }
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] bool open() override;
|
|
|
|
void close() override;
|
|
|
|
|
|
|
|
[[nodiscard]] bool hasLoadInterface() const override { return true; }
|
|
|
|
[[nodiscard]] bool hasInterface() const override { return true; }
|
|
|
|
void drawLoadInterface() override;
|
|
|
|
void drawInterface() override;
|
|
|
|
|
|
|
|
void loadSettings(const nlohmann::json &) override {}
|
|
|
|
[[nodiscard]] nlohmann::json storeSettings(nlohmann::json) const override { return { }; }
|
|
|
|
|
|
|
|
[[nodiscard]] std::string getTypeName() const override {
|
|
|
|
return "hex.windows.provider.process_memory";
|
|
|
|
}
|
|
|
|
|
|
|
|
[[nodiscard]] std::pair<Region, bool> getRegionValidity(u64) const override;
|
2023-01-24 08:07:11 +00:00
|
|
|
std::variant<std::string, i128> queryInformation(const std::string &category, const std::string &argument) override;
|
2023-01-01 01:29:38 +00:00
|
|
|
|
2023-01-04 09:02:17 +00:00
|
|
|
private:
|
|
|
|
void reloadProcessModules();
|
|
|
|
|
2023-01-01 01:29:38 +00:00
|
|
|
private:
|
|
|
|
struct Process {
|
|
|
|
u32 id;
|
|
|
|
std::string name;
|
2023-01-03 15:34:22 +00:00
|
|
|
ImGui::Texture icon;
|
2023-01-01 01:29:38 +00:00
|
|
|
};
|
|
|
|
|
2023-01-01 11:26:27 +00:00
|
|
|
struct MemoryRegion {
|
2023-01-01 01:29:38 +00:00
|
|
|
Region region;
|
|
|
|
std::string name;
|
2023-01-01 11:26:27 +00:00
|
|
|
|
|
|
|
constexpr bool operator<(const MemoryRegion &other) const {
|
|
|
|
return this->region.getStartAddress() < other.region.getStartAddress();
|
|
|
|
}
|
2023-01-01 01:29:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<Process> m_processes;
|
2023-01-05 08:30:15 +00:00
|
|
|
const Process *m_selectedProcess = nullptr;
|
2023-01-01 01:29:38 +00:00
|
|
|
|
2023-01-01 11:26:27 +00:00
|
|
|
std::set<MemoryRegion> m_memoryRegions;
|
2023-01-05 08:30:15 +00:00
|
|
|
ui::SearchableWidget<Process> m_processSearchWidget = ui::SearchableWidget<Process>([](const std::string &search, const Process &process) {
|
2023-01-28 10:41:09 +00:00
|
|
|
return hex::containsIgnoreCase(process.name, search);
|
2023-01-05 08:30:15 +00:00
|
|
|
});
|
|
|
|
ui::SearchableWidget<MemoryRegion> m_regionSearchWidget = ui::SearchableWidget<MemoryRegion>([](const std::string &search, const MemoryRegion &memoryRegion) {
|
2023-01-28 10:41:09 +00:00
|
|
|
return hex::containsIgnoreCase(memoryRegion.name, search);
|
2023-01-05 08:30:15 +00:00
|
|
|
});
|
2023-01-01 01:29:38 +00:00
|
|
|
|
|
|
|
HANDLE m_processHandle = nullptr;
|
|
|
|
|
|
|
|
bool m_enumerationFailed = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|