Textractor_test/host/host.cc

226 lines
7.2 KiB
C++
Raw Normal View History

// host.cc
// 8/24/2013 jichi
// Branch IHF/main.cpp, rev 111
#include "host.h"
2018-07-19 12:46:52 +08:00
#include "pipe.h"
2018-07-24 03:25:02 +08:00
#include "winmutex.h"
2018-07-21 04:26:27 +08:00
#include "../vnrhook/include/const.h"
#include "../vnrhook/include/defs.h"
#include "../vnrhook/include/types.h"
2018-08-23 09:31:15 +08:00
struct ThreadParameterHasher
{
size_t operator()(const ThreadParameter& tp) const
{
return std::hash<__int64>()(tp.pid << 6) + std::hash<__int64>()(tp.hook) + std::hash<__int64>()(tp.retn) + std::hash<__int64>()(tp.spl);
}
};
2018-08-22 10:43:30 +08:00
std::unordered_map<ThreadParameter, TextThread*, ThreadParameterHasher> textThreadsByParams;
std::unordered_map<DWORD, ProcessRecord> processRecordsByIds;
2018-08-22 10:43:30 +08:00
std::recursive_mutex hostMutex;
2018-07-24 03:25:02 +08:00
2018-08-22 10:43:30 +08:00
ThreadEventCallback OnCreate, OnRemove;
ProcessEventCallback OnAttach, OnDetach;
2018-07-24 03:25:02 +08:00
2018-08-22 10:43:30 +08:00
DWORD DUMMY[100];
2018-07-24 03:25:02 +08:00
2018-08-23 06:05:45 +08:00
ThreadParameter CONSOLE{ 0, -1UL, -1UL, -1UL };
2018-08-22 10:43:30 +08:00
#define HOST_LOCK std::lock_guard<std::recursive_mutex> hostLocker(hostMutex) // Synchronized scope for accessing private data
2018-07-24 03:25:02 +08:00
namespace Host
{
2018-08-22 10:43:30 +08:00
DLLEXPORT void Start(ProcessEventCallback onAttach, ProcessEventCallback onDetach, ThreadEventCallback onCreate, ThreadEventCallback onRemove)
{
2018-08-22 12:57:32 +08:00
OnAttach = onAttach; OnDetach = onDetach; OnCreate = onCreate; OnRemove = onRemove;
2018-08-23 06:05:45 +08:00
OnCreate(textThreadsByParams[CONSOLE] = new TextThread(CONSOLE, USING_UNICODE));
2018-07-24 03:25:02 +08:00
CreateNewPipe();
}
DLLEXPORT void Close()
{
2018-07-25 16:11:23 +08:00
// Artikash 7/25/2018: This is only called when NextHooker is closed, at which point Windows should free everything itself...right?
2018-08-23 06:25:23 +08:00
#ifdef _DEBUG // Check memory leaks
2018-08-22 10:43:30 +08:00
HOST_LOCK;
2018-08-22 23:51:28 +08:00
OnRemove = [](TextThread* textThread) { delete textThread; };
2018-08-22 10:43:30 +08:00
for (auto i : processRecordsByIds) UnregisterProcess(i.first);
2018-08-23 06:05:45 +08:00
delete textThreadsByParams[CONSOLE];
#endif
2018-07-24 03:25:02 +08:00
}
DLLEXPORT bool InjectProcess(DWORD processId, DWORD timeout)
{
if (processId == GetCurrentProcessId()) return false;
CloseHandle(CreateMutexW(nullptr, FALSE, (ITH_HOOKMAN_MUTEX_ + std::to_wstring(processId)).c_str()));
if (GetLastError() == ERROR_ALREADY_EXISTS)
{
2018-07-29 03:41:21 +08:00
AddConsoleOutput(L"already injected");
2018-07-24 03:25:02 +08:00
return false;
}
HMODULE textHooker = LoadLibraryExW(ITH_DLL, nullptr, DONT_RESOLVE_DLL_REFERENCES);
wchar_t textHookerPath[MAX_PATH];
unsigned int textHookerPathSize = GetModuleFileNameW(textHooker, textHookerPath, MAX_PATH) * 2 + 2;
FreeLibrary(textHooker);
if (HANDLE processHandle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, processId))
2018-08-23 03:11:58 +08:00
{
#ifdef _WIN64
BOOL invalidProcess = FALSE;
IsWow64Process(processHandle, &invalidProcess);
if (invalidProcess)
{
AddConsoleOutput(L"architecture mismatch: try 32 bit NextHooker instead");
CloseHandle(processHandle);
return false;
}
#endif
2018-07-24 03:25:02 +08:00
if (LPVOID remoteData = VirtualAllocEx(processHandle, nullptr, textHookerPathSize, MEM_RESERVE | MEM_COMMIT, PAGE_READWRITE))
2018-08-23 03:11:58 +08:00
{
WriteProcessMemory(processHandle, remoteData, textHookerPath, textHookerPathSize, nullptr);
if (HANDLE thread = CreateRemoteThread(processHandle, nullptr, 0, (LPTHREAD_START_ROUTINE)LoadLibraryW, remoteData, 0, nullptr))
{
WaitForSingleObject(thread, timeout);
CloseHandle(thread);
VirtualFreeEx(processHandle, remoteData, 0, MEM_RELEASE);
CloseHandle(processHandle);
return true;
}
VirtualFreeEx(processHandle, remoteData, 0, MEM_RELEASE);
CloseHandle(processHandle);
}
}
2018-07-24 03:25:02 +08:00
AddConsoleOutput(L"couldn't inject dll");
2018-07-18 05:01:56 +08:00
return false;
}
2018-07-24 03:25:02 +08:00
DLLEXPORT bool DetachProcess(DWORD processId)
{
2018-07-24 03:25:02 +08:00
DWORD command = HOST_COMMAND_DETACH;
2018-08-22 10:43:30 +08:00
return WriteFile(processRecordsByIds[processId].hostPipe, &command, sizeof(command), DUMMY, nullptr);
2018-07-24 03:25:02 +08:00
}
DLLEXPORT bool InsertHook(DWORD pid, HookParam hp, std::string name)
{
BYTE buffer[PIPE_BUFFER_SIZE] = {};
*(DWORD*)buffer = HOST_COMMAND_NEW_HOOK;
*(HookParam*)(buffer + sizeof(DWORD)) = hp;
if (name.size()) strcpy((char*)buffer + sizeof(DWORD) + sizeof(HookParam), name.c_str());
2018-08-22 10:43:30 +08:00
return WriteFile(processRecordsByIds[pid].hostPipe, buffer, sizeof(DWORD) + sizeof(HookParam) + name.size(), DUMMY, nullptr);
2018-07-24 03:25:02 +08:00
}
DLLEXPORT bool RemoveHook(DWORD pid, DWORD addr)
{
BYTE buffer[sizeof(DWORD) * 2] = {};
*(DWORD*)buffer = HOST_COMMAND_REMOVE_HOOK;
*(DWORD*)(buffer + sizeof(DWORD)) = addr;
2018-08-22 10:43:30 +08:00
return WriteFile(processRecordsByIds[pid].hostPipe, buffer, sizeof(DWORD) * 2, DUMMY, nullptr);
}
2018-07-24 03:25:02 +08:00
DLLEXPORT HookParam GetHookParam(DWORD pid, DWORD addr)
{
HOST_LOCK;
HookParam ret = {};
ProcessRecord pr = processRecordsByIds[pid];
2018-08-23 09:31:15 +08:00
if (pr.sectionMap == nullptr) return ret;
MutexLocker locker(pr.sectionMutex);
const Hook* hooks = (const Hook*)pr.sectionMap;
2018-07-24 03:25:02 +08:00
for (int i = 0; i < MAX_HOOK; ++i)
2018-08-11 15:05:31 +08:00
if ((DWORD)hooks[i].Address() == addr)
2018-07-24 03:25:02 +08:00
ret = hooks[i].hp;
return ret;
}
2018-08-22 10:43:30 +08:00
DLLEXPORT HookParam GetHookParam(ThreadParameter tp) { return GetHookParam(tp.pid, tp.hook); }
2018-07-24 03:25:02 +08:00
DLLEXPORT std::wstring GetHookName(DWORD pid, DWORD addr)
{
2018-07-24 13:57:54 +08:00
if (pid == 0) return L"Console";
2018-07-24 03:25:02 +08:00
HOST_LOCK;
std::string buffer = "";
ProcessRecord pr = processRecordsByIds[pid];
2018-08-23 09:31:15 +08:00
if (pr.sectionMap == nullptr) return L"";
MutexLocker locker(pr.sectionMutex);
const Hook* hooks = (const Hook*)pr.sectionMap;
2018-07-24 03:25:02 +08:00
for (int i = 0; i < MAX_HOOK; ++i)
2018-08-11 15:05:31 +08:00
if ((DWORD)hooks[i].Address() == addr)
2018-07-24 03:25:02 +08:00
{
buffer.resize(hooks[i].NameLength());
2018-08-23 09:31:15 +08:00
ReadProcessMemory(pr.processHandle, hooks[i].Name(), &buffer[0], hooks[i].NameLength(), nullptr);
2018-07-24 03:25:02 +08:00
}
USES_CONVERSION;
return std::wstring(A2W(buffer.c_str()));
}
2018-08-22 10:43:30 +08:00
DLLEXPORT TextThread* GetThread(ThreadParameter tp)
2018-07-24 03:25:02 +08:00
{
HOST_LOCK;
2018-08-22 10:43:30 +08:00
return textThreadsByParams[tp];
2018-07-24 03:25:02 +08:00
}
2018-07-24 03:25:02 +08:00
DLLEXPORT void AddConsoleOutput(std::wstring text)
{
2018-07-24 03:25:02 +08:00
HOST_LOCK;
2018-08-23 06:05:45 +08:00
textThreadsByParams[CONSOLE]->AddSentence(std::wstring(text));
}
}
2018-08-22 10:43:30 +08:00
void DispatchText(ThreadParameter tp, const BYTE* text, int len)
{
2018-08-22 10:43:30 +08:00
if (!text || len <= 0) return;
2018-07-24 03:25:02 +08:00
HOST_LOCK;
TextThread *it;
if ((it = textThreadsByParams[tp]) == nullptr)
2018-08-22 10:43:30 +08:00
OnCreate(it = textThreadsByParams[tp] = new TextThread(tp, Host::GetHookParam(tp).type));
2018-07-24 03:25:02 +08:00
it->AddText(text, len);
}
2018-07-24 03:25:02 +08:00
void RemoveThreads(bool(*RemoveIf)(ThreadParameter, ThreadParameter), ThreadParameter cmp)
{
2018-07-24 03:25:02 +08:00
HOST_LOCK;
std::vector<ThreadParameter> removedThreads;
for (auto i : textThreadsByParams)
if (RemoveIf(i.first, cmp))
{
2018-08-22 10:43:30 +08:00
OnRemove(i.second);
//delete i.second; // Artikash 7/24/2018: FIXME: Qt GUI updates on another thread, so I can't delete this yet.
2018-07-24 03:25:02 +08:00
removedThreads.push_back(i.first);
}
for (auto i : removedThreads) textThreadsByParams.erase(i);
}
2018-07-24 03:25:02 +08:00
void RegisterProcess(DWORD pid, HANDLE hostPipe)
{
2018-07-24 03:25:02 +08:00
HOST_LOCK;
ProcessRecord record;
record.hostPipe = hostPipe;
2018-08-23 09:31:15 +08:00
record.section = OpenFileMappingW(FILE_MAP_READ, FALSE, (ITH_SECTION_ + std::to_wstring(pid)).c_str());
record.sectionMap = MapViewOfFile(record.section, FILE_MAP_READ, 0, 0, HOOK_SECTION_SIZE / 2); // jichi 1/16/2015: Changed to half to hook section size
record.processHandle = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pid);
record.sectionMutex = OpenMutexW(MUTEX_ALL_ACCESS, FALSE, (ITH_HOOKMAN_MUTEX_ + std::to_wstring(pid)).c_str());
2018-07-24 03:25:02 +08:00
processRecordsByIds[pid] = record;
2018-08-22 10:43:30 +08:00
OnAttach(pid);
}
2018-07-24 03:25:02 +08:00
void UnregisterProcess(DWORD pid)
{
2018-07-24 03:25:02 +08:00
HOST_LOCK;
ProcessRecord pr = processRecordsByIds[pid];
if (!pr.hostPipe) return;
2018-08-23 09:31:15 +08:00
CloseHandle(pr.sectionMutex);
UnmapViewOfFile(pr.sectionMap);
CloseHandle(pr.processHandle);
CloseHandle(pr.section);
2018-08-22 10:43:30 +08:00
processRecordsByIds[pid] = {};
2018-07-24 03:25:02 +08:00
RemoveThreads([](auto one, auto two) { return one.pid == two.pid; }, { pid, 0, 0, 0 });
2018-08-22 10:43:30 +08:00
OnDetach(pid);
}
// EOF