419 lines
11 KiB
C++
419 lines
11 KiB
C++
|
// main.cc
|
||
|
// 8/24/2013 jichi
|
||
|
// Branch: ITH_DLL/main.cpp, rev 128
|
||
|
// 8/24/2013 TODO: Clean up this file
|
||
|
|
||
|
#ifdef _MSC_VER
|
||
|
# pragma warning (disable:4100) // C4100: unreference formal parameter
|
||
|
//# pragma warning (disable:4733) // C4733: Inline asm assigning to 'FS:0' : handler not registered as safe handler
|
||
|
#endif // _MSC_VER
|
||
|
|
||
|
#include "src/main.h"
|
||
|
#include "src/tree/avl.h"
|
||
|
#include "src/engine/match.h"
|
||
|
#include "src/hijack/texthook.h"
|
||
|
#include "src/util/growl.h"
|
||
|
#include "src/except.h"
|
||
|
#include "include/const.h"
|
||
|
#include "include/defs.h"
|
||
|
#include "ithsys/ithsys.h"
|
||
|
#include "ccutil/ccmacro.h"
|
||
|
#include <cstdio> // for swprintf
|
||
|
//#include "ntinspect/ntinspect.h"
|
||
|
//#include "winseh/winseh.h"
|
||
|
//#include <boost/foreach.hpp>
|
||
|
//#include "md5.h"
|
||
|
//#include <ITH\AVL.h>
|
||
|
//#include <ITH\ntdll.h>
|
||
|
|
||
|
// Global variables
|
||
|
|
||
|
// jichi 6/3/2014: memory range of the current module
|
||
|
DWORD processStartAddress,
|
||
|
processStopAddress;
|
||
|
|
||
|
namespace { // unnamed
|
||
|
wchar_t processName[MAX_PATH];
|
||
|
|
||
|
inline void GetProcessName(wchar_t *name)
|
||
|
{
|
||
|
//assert(name);
|
||
|
PLDR_DATA_TABLE_ENTRY it;
|
||
|
__asm
|
||
|
{
|
||
|
mov eax,fs:[0x30]
|
||
|
mov eax,[eax+0xc]
|
||
|
mov eax,[eax+0xc]
|
||
|
mov it,eax
|
||
|
}
|
||
|
wcscpy(name, it->BaseDllName.Buffer);
|
||
|
}
|
||
|
} // unmaed namespace
|
||
|
|
||
|
enum { HOOK_BUFFER_SIZE = MAX_HOOK * sizeof(TextHook) };
|
||
|
//#define MAX_HOOK (HOOK_BUFFER_SIZE/sizeof(TextHook))
|
||
|
DWORD hook_buff_len = HOOK_BUFFER_SIZE;
|
||
|
|
||
|
namespace { FilterRange _filter[IHF_FILTER_CAPACITY]; }
|
||
|
FilterRange *filter = _filter;
|
||
|
|
||
|
WCHAR hm_section[0x100];
|
||
|
HINSTANCE hDLL;
|
||
|
HANDLE hSection;
|
||
|
bool running,
|
||
|
live = false;
|
||
|
int current_hook = 0,
|
||
|
user_hook_count = 0;
|
||
|
DWORD trigger = 0;
|
||
|
HANDLE
|
||
|
hFile,
|
||
|
hMutex,
|
||
|
hmMutex;
|
||
|
//DWORD current_process_id;
|
||
|
extern DWORD enter_count;
|
||
|
//extern LPWSTR current_dir;
|
||
|
extern DWORD engine_type;
|
||
|
extern DWORD module_base;
|
||
|
AVLTree<char, FunctionInfo, SCMP, SCPY, SLEN> *tree;
|
||
|
|
||
|
namespace { // unnamed
|
||
|
|
||
|
void AddModule(DWORD hModule, DWORD size, LPWSTR name)
|
||
|
{
|
||
|
FunctionInfo info = {0, hModule, size, name};
|
||
|
IMAGE_DOS_HEADER *DosHdr = (IMAGE_DOS_HEADER *)hModule;
|
||
|
if (IMAGE_DOS_SIGNATURE == DosHdr->e_magic) {
|
||
|
DWORD dwReadAddr = hModule + DosHdr->e_lfanew;
|
||
|
IMAGE_NT_HEADERS *NtHdr = (IMAGE_NT_HEADERS *)dwReadAddr;
|
||
|
if (IMAGE_NT_SIGNATURE == NtHdr->Signature) {
|
||
|
DWORD dwExportAddr = NtHdr->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXPORT].VirtualAddress;
|
||
|
if (dwExportAddr == 0)
|
||
|
return;
|
||
|
dwExportAddr += hModule;
|
||
|
IMAGE_EXPORT_DIRECTORY *ExtDir = (IMAGE_EXPORT_DIRECTORY*)dwExportAddr;
|
||
|
dwExportAddr = hModule+ExtDir->AddressOfNames;
|
||
|
for (UINT uj = 0; uj < ExtDir->NumberOfNames; uj++) {
|
||
|
DWORD dwFuncName = *(DWORD *)dwExportAddr;
|
||
|
char *pcBuffer = (char *)(hModule + dwFuncName);
|
||
|
char *pcFuncPtr = (char *)(hModule + (DWORD)ExtDir->AddressOfNameOrdinals+(uj * sizeof(WORD)));
|
||
|
WORD word = *(WORD *)pcFuncPtr;
|
||
|
pcFuncPtr = (char *)(hModule + (DWORD)ExtDir->AddressOfFunctions+(word * sizeof(DWORD)));
|
||
|
info.addr = hModule + *(DWORD *)pcFuncPtr;
|
||
|
::tree->Insert(pcBuffer, info);
|
||
|
dwExportAddr += sizeof(DWORD);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void AddAllModules()
|
||
|
{
|
||
|
// jichi 9/26/2013: AVLTree is already zero
|
||
|
PPEB ppeb;
|
||
|
__asm {
|
||
|
mov eax, fs:[0x30]
|
||
|
mov ppeb, eax
|
||
|
}
|
||
|
DWORD temp = *(DWORD *)(&ppeb->Ldr->InLoadOrderModuleList);
|
||
|
PLDR_DATA_TABLE_ENTRY it = (PLDR_DATA_TABLE_ENTRY)temp;
|
||
|
while (it->SizeOfImage) {
|
||
|
AddModule((DWORD)it->DllBase, it->SizeOfImage, it->BaseDllName.Buffer);
|
||
|
it = (PLDR_DATA_TABLE_ENTRY)it->InLoadOrderModuleList.Flink;
|
||
|
if (*(DWORD *)it == temp)
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void RequestRefreshProfile()
|
||
|
{
|
||
|
if (::live) {
|
||
|
BYTE buffer[0x80] = {}; // 11/14/2013: reset to zero. Shouldn't it be 0x8 instead of 0x80?
|
||
|
*(DWORD *)buffer = -1;
|
||
|
*(DWORD *)(buffer + 4) = 1;
|
||
|
*(DWORD *)(buffer + 8) = 0;
|
||
|
IO_STATUS_BLOCK ios;
|
||
|
CliLockPipe();
|
||
|
NtWriteFile(hPipe, 0, 0, 0, &ios, buffer, HEADER_SIZE, 0, 0);
|
||
|
CliUnlockPipe();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
} // unnamed namespace
|
||
|
|
||
|
DWORD GetFunctionAddr(const char *name, DWORD *addr, DWORD *base, DWORD *size, LPWSTR *base_name)
|
||
|
{
|
||
|
TreeNode<char *,FunctionInfo> *node = ::tree->Search(name);
|
||
|
if (node) {
|
||
|
if (addr) *addr = node->data.addr;
|
||
|
if (base) *base = node->data.module;
|
||
|
if (size) *size = node->data.size;
|
||
|
if (base_name) *base_name = node->data.name;
|
||
|
return TRUE;
|
||
|
}
|
||
|
else
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
BOOL WINAPI DllMain(HINSTANCE hModule, DWORD fdwReason, LPVOID lpReserved)
|
||
|
{
|
||
|
static HANDLE hSendThread,
|
||
|
hCmdThread;
|
||
|
|
||
|
CC_UNUSED(lpReserved);
|
||
|
|
||
|
//static WCHAR dll_exist[] = L"ITH_DLL_RUNNING";
|
||
|
static WCHAR dll_exist[] = ITH_CLIENT_MUTEX;
|
||
|
static HANDLE hDllExist;
|
||
|
|
||
|
// jichi 9/23/2013: wine deficenciy on mapping sections
|
||
|
// Whe set to false, do not map sections.
|
||
|
//static bool ith_has_section = true;
|
||
|
|
||
|
switch (fdwReason) {
|
||
|
case DLL_PROCESS_ATTACH:
|
||
|
{
|
||
|
static bool attached_ = false;
|
||
|
if (attached_) // already attached
|
||
|
return TRUE;
|
||
|
attached_ = true;
|
||
|
|
||
|
LdrDisableThreadCalloutsForDll(hModule);
|
||
|
|
||
|
//IthBreak();
|
||
|
::module_base = (DWORD)hModule;
|
||
|
|
||
|
//if (!IthInitSystemService()) {
|
||
|
// GROWL_WARN(L"Initialization failed.\nAre you running game on a network drive?");
|
||
|
// return FALSE;
|
||
|
//}
|
||
|
// No longer checking if SystemService fails, which could happen on non-Japanese OS
|
||
|
IthInitSystemService();
|
||
|
|
||
|
swprintf(hm_section, ITH_SECTION_ L"%d", current_process_id);
|
||
|
|
||
|
// jichi 9/25/2013: Interprocedural communication with vnrsrv.
|
||
|
hSection = IthCreateSection(hm_section, HOOK_SECTION_SIZE, PAGE_EXECUTE_READWRITE);
|
||
|
::hookman = nullptr;
|
||
|
NtMapViewOfSection(hSection, NtCurrentProcess(),
|
||
|
(LPVOID *)&::hookman, 0, hook_buff_len, 0, &hook_buff_len, ViewUnmap, 0,
|
||
|
PAGE_EXECUTE_READWRITE);
|
||
|
//PAGE_EXECUTE_READWRITE);
|
||
|
|
||
|
GetProcessName(::processName);
|
||
|
FillRange(::processName, &::processStartAddress, &::processStopAddress);
|
||
|
//NtInspect::getProcessMemoryRange(&::processStartAddress, &::processStopAddress);
|
||
|
|
||
|
//if (!::hookman) {
|
||
|
// ith_has_section = false;
|
||
|
// ::hookman = new TextHook[MAX_HOOK];
|
||
|
// memset(::hookman, 0, MAX_HOOK * sizeof(TextHook));
|
||
|
//}
|
||
|
|
||
|
{
|
||
|
wchar_t hm_mutex[0x100];
|
||
|
swprintf(hm_mutex, ITH_HOOKMAN_MUTEX_ L"%d", current_process_id);
|
||
|
::hmMutex = IthCreateMutex(hm_mutex, FALSE);
|
||
|
}
|
||
|
{
|
||
|
wchar_t dll_mutex[0x100];
|
||
|
swprintf(dll_mutex, ITH_PROCESS_MUTEX_ L"%d", current_process_id);
|
||
|
DWORD exists;
|
||
|
::hMutex = IthCreateMutex(dll_mutex, TRUE, &exists); // jichi 9/18/2013: own is true, make sure the injected dll is singleton
|
||
|
if (exists)
|
||
|
return FALSE;
|
||
|
}
|
||
|
|
||
|
hDllExist = IthCreateMutex(dll_exist, 0);
|
||
|
hDLL = hModule;
|
||
|
::running = true;
|
||
|
::current_available = ::hookman;
|
||
|
::tree = new AVLTree<char, FunctionInfo, SCMP, SCPY, SLEN>;
|
||
|
AddAllModules();
|
||
|
InitFilterTable();
|
||
|
|
||
|
hSendThread = IthCreateThread(WaitForPipe, 0);
|
||
|
hCmdThread = IthCreateThread(CommandPipe, 0);
|
||
|
} break;
|
||
|
case DLL_PROCESS_DETACH:
|
||
|
{
|
||
|
static bool detached_ = false;
|
||
|
if (detached_) // already detached
|
||
|
return TRUE;
|
||
|
detached_ = true;
|
||
|
|
||
|
// jichi 10/2/2103: Cannot use __try in functions that require object unwinding
|
||
|
//ITH_TRY {
|
||
|
::running = false;
|
||
|
::live = false;
|
||
|
|
||
|
const LONGLONG timeout = -50000000; // in nanoseconds = 5 seconds
|
||
|
|
||
|
Engine::terminate();
|
||
|
|
||
|
if (hSendThread) {
|
||
|
NtWaitForSingleObject(hSendThread, 0, (PLARGE_INTEGER)&timeout);
|
||
|
NtClose(hSendThread);
|
||
|
}
|
||
|
|
||
|
if (hCmdThread) {
|
||
|
NtWaitForSingleObject(hCmdThread, 0, (PLARGE_INTEGER)&timeout);
|
||
|
NtClose(hCmdThread);
|
||
|
}
|
||
|
|
||
|
for (TextHook *man = ::hookman; man->RemoveHook(); man++);
|
||
|
//LARGE_INTEGER lint = {-10000, -1};
|
||
|
while (::enter_count)
|
||
|
IthSleep(1); // jichi 9/28/2013: sleep for 1 ms
|
||
|
//NtDelayExecution(0, &lint);
|
||
|
for (TextHook *man = ::hookman; man < ::hookman + MAX_HOOK; man++)
|
||
|
man->ClearHook();
|
||
|
//if (ith_has_section)
|
||
|
NtUnmapViewOfSection(NtCurrentProcess(), ::hookman);
|
||
|
//else
|
||
|
// delete[] ::hookman;
|
||
|
NtClose(hSection);
|
||
|
NtClose(hMutex);
|
||
|
|
||
|
delete ::tree;
|
||
|
IthCloseSystemService();
|
||
|
NtClose(hmMutex);
|
||
|
NtClose(hDllExist);
|
||
|
//} ITH_EXCEPT {}
|
||
|
} break;
|
||
|
}
|
||
|
return TRUE;
|
||
|
}
|
||
|
|
||
|
//extern "C" {
|
||
|
DWORD NewHook(const HookParam &hp, LPCSTR name, DWORD flag)
|
||
|
{
|
||
|
CHAR str[128];
|
||
|
int current = ::current_available - ::hookman;
|
||
|
if (current < MAX_HOOK) {
|
||
|
//flag &= 0xffff;
|
||
|
//if ((flag & HOOK_AUXILIARY) == 0)
|
||
|
flag |= HOOK_ADDITIONAL;
|
||
|
if (name == NULL || name[0] == '\0')
|
||
|
{
|
||
|
sprintf(str, "UserHook%d", user_hook_count++);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
strcpy(str, name);
|
||
|
}
|
||
|
|
||
|
ConsoleOutput("vnrcli:NewHook: try inserting hook");
|
||
|
|
||
|
// jichi 7/13/2014: This function would raise when too many hooks added
|
||
|
::hookman[current].InitHook(hp, str, flag & 0xffff);
|
||
|
|
||
|
if (::hookman[current].InsertHook() == 0) {
|
||
|
ConsoleOutput("vnrcli:NewHook: hook inserted");
|
||
|
//ConsoleOutputW(name);
|
||
|
//swprintf(str,L"Insert address 0x%.8X.", hookman[current].Address());
|
||
|
RequestRefreshProfile();
|
||
|
} else
|
||
|
ConsoleOutput("vnrcli:NewHook:WARNING: failed to insert hook");
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
DWORD RemoveHook(DWORD addr)
|
||
|
{
|
||
|
for (int i = 0; i < MAX_HOOK; i++)
|
||
|
if (::hookman[i].Address ()== addr) {
|
||
|
::hookman[i].ClearHook();
|
||
|
return 0;
|
||
|
}
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
DWORD SwitchTrigger(DWORD t)
|
||
|
{
|
||
|
trigger = t;
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
//} // extern "C"
|
||
|
|
||
|
|
||
|
namespace { // unnamed
|
||
|
|
||
|
BOOL SafeFillRange(LPCWSTR dll, DWORD *lower, DWORD *upper)
|
||
|
{
|
||
|
BOOL ret = FALSE;
|
||
|
ITH_WITH_SEH(ret = FillRange(dll, lower, upper));
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
} // unnamed namespace
|
||
|
|
||
|
// jichi 12/13/2013
|
||
|
// Use listdlls from SystemInternals
|
||
|
void InitFilterTable()
|
||
|
{
|
||
|
LPCWSTR l[] = { IHF_FILTER_DLL_LIST };
|
||
|
enum { capacity = sizeof(l)/sizeof(*l) };
|
||
|
|
||
|
size_t count = 0;
|
||
|
//for (auto p : l)
|
||
|
for (size_t i = 0; i < capacity; i++)
|
||
|
if (SafeFillRange(l[i], &::filter[count].lower, &::filter[count].upper))
|
||
|
count++;
|
||
|
}
|
||
|
|
||
|
// EOF
|
||
|
/*
|
||
|
|
||
|
static DWORD recv_esp, recv_addr;
|
||
|
static CONTEXT recover_context;
|
||
|
static __declspec(naked) void MySEH()
|
||
|
{
|
||
|
__asm{
|
||
|
mov eax, [esp+0xC]
|
||
|
mov edi,eax
|
||
|
mov ecx,0xB3
|
||
|
mov esi, offset recover_context
|
||
|
rep movs
|
||
|
mov ecx, [recv_esp]
|
||
|
mov [eax+0xC4],ecx
|
||
|
mov edx, [recv_addr]
|
||
|
mov [eax+0xB8],edx
|
||
|
xor eax,eax
|
||
|
retn
|
||
|
}
|
||
|
}
|
||
|
|
||
|
EXCEPTION_DISPOSITION ExceptHandler(
|
||
|
EXCEPTION_RECORD *ExceptionRecord,
|
||
|
void * EstablisherFrame,
|
||
|
CONTEXT *ContextRecord,
|
||
|
void * DispatcherContext )
|
||
|
{
|
||
|
ContextRecord->Esp=recv_esp;
|
||
|
ContextRecord->Eip=recv_addr;
|
||
|
return ExceptionContinueExecution;
|
||
|
}
|
||
|
int GuardRange(LPWSTR module, DWORD *a, DWORD *b)
|
||
|
{
|
||
|
int flag=0;
|
||
|
__asm
|
||
|
{
|
||
|
mov eax,seh_recover
|
||
|
mov recv_addr,eax
|
||
|
push ExceptHandler
|
||
|
push fs:[0]
|
||
|
mov recv_esp,esp
|
||
|
mov fs:[0],esp
|
||
|
}
|
||
|
flag = FillRange(module, a, b);
|
||
|
__asm
|
||
|
{
|
||
|
seh_recover:
|
||
|
mov eax,[esp]
|
||
|
mov fs:[0],eax
|
||
|
add esp,8
|
||
|
}
|
||
|
return flag;
|
||
|
}
|
||
|
*/
|