2024-04-15 19:30:28 +00:00
|
|
|
#include <assert.h>
|
2023-07-13 23:00:28 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include "hook/table.h"
|
|
|
|
#include "hooklib/path.h"
|
|
|
|
#include "util/dprintf.h"
|
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
#include "doorstop.h"
|
|
|
|
#include "hook.h"
|
|
|
|
|
|
|
|
static bool unity_hook_initted;
|
|
|
|
static struct unity_config unity_config;
|
|
|
|
|
|
|
|
static const wchar_t *target_modules[] = {
|
|
|
|
L"mono.dll",
|
|
|
|
L"mono-2.0-bdwgc.dll",
|
|
|
|
L"cri_ware_unity.dll",
|
|
|
|
};
|
|
|
|
static const size_t target_modules_len = _countof(target_modules);
|
|
|
|
|
2023-07-13 23:00:28 +00:00
|
|
|
static void dll_hook_insert_hooks(HMODULE target);
|
|
|
|
|
|
|
|
static HMODULE WINAPI my_LoadLibraryW(const wchar_t *name);
|
|
|
|
static HMODULE (WINAPI *next_LoadLibraryW)(const wchar_t *name);
|
|
|
|
|
|
|
|
static const struct hook_symbol unity_kernel32_syms[] = {
|
|
|
|
{
|
|
|
|
.name = "LoadLibraryW",
|
|
|
|
.patch = my_LoadLibraryW,
|
|
|
|
.link = (void **) &next_LoadLibraryW,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
void unity_hook_init(const struct unity_config *cfg, HINSTANCE self) {
|
|
|
|
assert(cfg != NULL);
|
|
|
|
|
|
|
|
if (!cfg->enable) {
|
|
|
|
return;
|
|
|
|
}
|
2023-07-13 23:00:28 +00:00
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
if (unity_hook_initted) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(&unity_config, cfg, sizeof(*cfg));
|
2023-07-13 23:00:28 +00:00
|
|
|
dll_hook_insert_hooks(NULL);
|
2024-04-15 19:30:28 +00:00
|
|
|
|
|
|
|
unity_hook_initted = true;
|
|
|
|
dprintf("Unity: Hook enabled.\n");
|
2023-07-13 23:00:28 +00:00
|
|
|
}
|
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
static void dll_hook_insert_hooks(HMODULE target) {
|
2023-07-13 23:00:28 +00:00
|
|
|
hook_table_apply(
|
2024-04-15 19:30:28 +00:00
|
|
|
target,
|
|
|
|
"kernel32.dll",
|
|
|
|
unity_kernel32_syms,
|
|
|
|
_countof(unity_kernel32_syms));
|
2023-07-13 23:00:28 +00:00
|
|
|
}
|
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
static HMODULE WINAPI my_LoadLibraryW(const wchar_t *name) {
|
2023-07-13 23:00:28 +00:00
|
|
|
const wchar_t *name_end;
|
|
|
|
const wchar_t *target_module;
|
|
|
|
bool already_loaded;
|
|
|
|
HMODULE result;
|
|
|
|
size_t name_len;
|
|
|
|
size_t target_module_len;
|
|
|
|
|
|
|
|
if (name == NULL) {
|
|
|
|
SetLastError(ERROR_INVALID_PARAMETER);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the module is already loaded
|
|
|
|
already_loaded = GetModuleHandleW(name) != NULL;
|
|
|
|
|
|
|
|
// Must call the next handler so the DLL reference count is incremented
|
|
|
|
result = next_LoadLibraryW(name);
|
|
|
|
|
|
|
|
if (!already_loaded && result != NULL) {
|
|
|
|
name_len = wcslen(name);
|
|
|
|
|
2024-04-15 19:30:28 +00:00
|
|
|
// mono entrypoint for injecting target_assembly
|
|
|
|
if (GetProcAddress(result, "mono_jit_init_version")) {
|
|
|
|
doorstop_mono_hook_init(&unity_config, result);
|
|
|
|
}
|
|
|
|
|
2023-07-13 23:00:28 +00:00
|
|
|
for (size_t i = 0; i < target_modules_len; i++) {
|
|
|
|
target_module = target_modules[i];
|
|
|
|
target_module_len = wcslen(target_module);
|
|
|
|
|
|
|
|
// Check if the newly loaded library is at least the length of
|
|
|
|
// the name of the target module
|
|
|
|
if (name_len < target_module_len) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
name_end = &name[name_len - target_module_len];
|
|
|
|
|
|
|
|
// Check if the name of the newly loaded library is one of the
|
|
|
|
// modules the path hooks should be injected into
|
|
|
|
if (_wcsicmp(name_end, target_module) != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
dprintf("Unity: Loaded %S\n", target_module);
|
|
|
|
|
|
|
|
dll_hook_insert_hooks(result);
|
|
|
|
path_hook_insert_hooks(result);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|