mirror of
https://github.com/sal063/AC6_recomp
synced 2026-07-06 05:54:47 -04:00
88 lines
2.7 KiB
C++
88 lines
2.7 KiB
C++
#pragma once
|
|
/**
|
|
* ReXGlue runtime - AC6 Recompilation project
|
|
* Copyright (c) 2026 Tom Clay. All rights reserved.
|
|
*/
|
|
|
|
#include <string>
|
|
|
|
#include <rex/system/module.h>
|
|
#include <rex/system/xobject.h>
|
|
#include <rex/system/xtypes.h>
|
|
|
|
namespace rex::system {
|
|
|
|
|
|
// https://www.nirsoft.net/kernel_struct/vista/LDR_DATA_TABLE_ENTRY.html
|
|
// HMODULE points to this struct!
|
|
struct X_LDR_DATA_TABLE_ENTRY {
|
|
X_LIST_ENTRY in_load_order_links; // 0x0
|
|
X_LIST_ENTRY in_memory_order_links; // 0x8
|
|
X_LIST_ENTRY in_initialization_order_links; // 0x10
|
|
|
|
rex::be<uint32_t> dll_base; // 0x18
|
|
rex::be<uint32_t> image_base; // 0x1C
|
|
rex::be<uint32_t> image_size; // 0x20
|
|
|
|
X_UNICODE_STRING full_dll_name; // 0x24
|
|
X_UNICODE_STRING base_dll_name; // 0x2C
|
|
|
|
rex::be<uint32_t> flags; // 0x34
|
|
rex::be<uint32_t> full_image_size; // 0x38
|
|
rex::be<uint32_t> entry_point; // 0x3C
|
|
rex::be<uint16_t> load_count; // 0x40
|
|
rex::be<uint16_t> module_index; // 0x42
|
|
rex::be<uint32_t> dll_base_original; // 0x44
|
|
rex::be<uint32_t> checksum; // 0x48 hijacked to hold kernel handle
|
|
rex::be<uint32_t> load_flags; // 0x4C
|
|
rex::be<uint32_t> time_date_stamp; // 0x50
|
|
rex::be<uint32_t> loaded_imports; // 0x54
|
|
rex::be<uint32_t> xex_header_base; // 0x58
|
|
// X_ANSI_STRING load_file_name; // 0x5C
|
|
rex::be<uint32_t> closure_root; // 0x5C
|
|
rex::be<uint32_t> traversal_parent; // 0x60
|
|
};
|
|
|
|
class XModule : public XObject {
|
|
public:
|
|
enum class ModuleType {
|
|
// Matches debugger Module type.
|
|
kKernelModule = 0,
|
|
kUserModule = 1,
|
|
};
|
|
|
|
static const XObject::Type kObjectType = XObject::Type::Module;
|
|
|
|
XModule(KernelState* kernel_state, ModuleType module_type);
|
|
virtual ~XModule();
|
|
|
|
ModuleType module_type() const { return module_type_; }
|
|
virtual const std::string& path() const = 0;
|
|
virtual const std::string& name() const = 0;
|
|
bool Matches(const std::string_view name) const;
|
|
|
|
rex::runtime::Module* processor_module() const { return processor_module_; }
|
|
uint32_t hmodule_ptr() const { return hmodule_ptr_; }
|
|
|
|
virtual uint32_t GetProcAddressByOrdinal(uint16_t ordinal, uint32_t caller_address = 0) = 0;
|
|
virtual uint32_t GetProcAddressByName(const std::string_view name) = 0;
|
|
virtual X_STATUS GetSection(const std::string_view name, uint32_t* out_section_data,
|
|
uint32_t* out_section_size);
|
|
|
|
static object_ref<XModule> GetFromHModule(KernelState* kernel_state, void* hmodule);
|
|
static uint32_t GetHandleFromHModule(void* hmodule);
|
|
|
|
|
|
protected:
|
|
void OnLoad();
|
|
void OnUnload();
|
|
|
|
ModuleType module_type_;
|
|
|
|
rex::runtime::Module* processor_module_;
|
|
|
|
uint32_t hmodule_ptr_; // This points to LDR_DATA_TABLE_ENTRY.
|
|
};
|
|
|
|
} // namespace rex::system
|