#include "stdinc.hpp" #include "hook.hpp" #include "string.hpp" namespace utils::hook { namespace { [[maybe_unused]] class _ { public: _() { if (MH_Initialize() != MH_OK) { throw std::runtime_error("Failed to initialize MinHook"); } } ~_() { MH_Uninitialize(); } } __; } detour::detour(const size_t place, void* target) : detour(reinterpret_cast(place), target) { } detour::detour(void* place, void* target) { this->create(place, target); } detour::~detour() { this->clear(); } void detour::enable() const { MH_EnableHook(this->place_); } void detour::disable() const { MH_DisableHook(this->place_); } void detour::create(void* place, void* target) { this->clear(); this->place_ = place; if (MH_CreateHook(this->place_, target, &this->original_) != MH_OK) { throw std::runtime_error(string::va("Unable to create hook at location: %p", this->place_)); } this->enable(); } void detour::create(const size_t place, void* target) { this->create(reinterpret_cast(place), target); } void detour::clear() { if (this->place_) { MH_RemoveHook(this->place_); } this->place_ = nullptr; this->original_ = nullptr; } void* detour::get_original() const { return this->original_; } void nop(void* place, const size_t length) { DWORD old_protect{}; VirtualProtect(place, length, PAGE_EXECUTE_READWRITE, &old_protect); std::memset(place, 0x90, length); VirtualProtect(place, length, old_protect, &old_protect); FlushInstructionCache(GetCurrentProcess(), place, length); } void nop(const size_t place, const size_t length) { nop(reinterpret_cast(place), length); } void copy(void* place, const void* data, const size_t length) { DWORD old_protect{}; VirtualProtect(place, length, PAGE_EXECUTE_READWRITE, &old_protect); std::memmove(place, data, length); VirtualProtect(place, length, old_protect, &old_protect); FlushInstructionCache(GetCurrentProcess(), place, length); } void copy(const size_t place, const void* data, const size_t length) { copy(reinterpret_cast(place), data, length); } bool is_relatively_far(const void* pointer, const void* data, int offset) { const int64_t diff = size_t(data) - (size_t(pointer) + offset); const auto small_diff = int32_t(diff); return diff != int64_t(small_diff); } void call(void* pointer, void* data) { if (is_relatively_far(pointer, data)) { throw std::runtime_error("Too far away to create 32bit relative branch"); } auto* patch_pointer = PBYTE(pointer); set(patch_pointer, 0xE8); set(patch_pointer + 1, int32_t(size_t(data) - (size_t(pointer) + 5))); } void call(const size_t pointer, void* data) { return call(reinterpret_cast(pointer), data); } void call(const size_t pointer, const size_t data) { return call(pointer, reinterpret_cast(data)); } void jump(void* pointer, void* data, const bool use_far) { static const unsigned char jump_data[] = { 0x48, 0xb8, 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11, 0xff, 0xe0 }; if (!use_far && is_relatively_far(pointer, data)) { throw std::runtime_error("Too far away to create 32bit relative branch"); } auto* patch_pointer = PBYTE(pointer); if (use_far) { copy(patch_pointer, jump_data, sizeof(jump_data)); copy(patch_pointer + 2, &data, sizeof(data)); } else { set(patch_pointer, 0xE9); set(patch_pointer + 1, int32_t(size_t(data) - (size_t(pointer) + 5))); } } void jump(const size_t pointer, void* data, const bool use_far) { return jump(reinterpret_cast(pointer), data, use_far); } void jump(const size_t pointer, const size_t data, const bool use_far) { return jump(pointer, reinterpret_cast(data), use_far); } }