2016-01-06 00:01:17 +09:00
// host.cc
// 8/24/2013 jichi
// Branch IHF/main.cpp, rev 111
# include "host.h"
2018-07-19 00:46:52 -04:00
# include "pipe.h"
2018-07-23 12:25:02 -07:00
# include "winmutex.h"
2018-08-21 22:43:30 -04:00
# include <mutex>
# include <thread>
2018-07-23 12:25:02 -07:00
# include <atlbase.h>
2018-07-20 16:26:27 -04:00
# include "../vnrhook/include/const.h"
# include "../vnrhook/include/defs.h"
# include "../vnrhook/include/types.h"
2018-07-23 12:25:02 -07:00
# include <unordered_map>
2016-01-06 00:01:17 +09:00
2018-08-21 22:43:30 -04:00
std : : unordered_map < ThreadParameter , TextThread * , ThreadParameterHasher > textThreadsByParams ;
std : : unordered_map < DWORD , ProcessRecord > processRecordsByIds ;
2016-01-06 00:01:17 +09:00
2018-08-21 22:43:30 -04:00
std : : recursive_mutex hostMutex ;
2018-07-23 12:25:02 -07:00
2018-08-21 22:43:30 -04:00
ThreadEventCallback OnCreate , OnRemove ;
ProcessEventCallback OnAttach , OnDetach ;
2018-07-23 12:25:02 -07:00
2018-08-21 22:43:30 -04:00
DWORD DUMMY [ 100 ] ;
2018-07-23 12:25:02 -07:00
2018-08-21 22:43:30 -04:00
# define HOST_LOCK std::lock_guard<std::recursive_mutex> hostLocker(hostMutex) // Synchronized scope for accessing private data
2016-01-06 00:01:17 +09:00
2018-07-23 12:25:02 -07:00
namespace Host
2016-01-06 00:01:17 +09:00
{
2018-07-23 12:25:02 -07:00
2018-08-21 22:43:30 -04:00
DLLEXPORT void Start ( ProcessEventCallback onAttach , ProcessEventCallback onDetach , ThreadEventCallback onCreate , ThreadEventCallback onRemove )
2018-05-11 16:46:05 -04:00
{
2018-08-21 22:43:30 -04:00
std : : tie ( OnAttach , OnDetach , OnCreate , OnRemove ) = { onAttach , onDetach , onCreate , onRemove } ;
OnCreate ( textThreadsByParams [ { 0 , - 1UL , - 1UL , - 1UL } ] = new TextThread ( { 0 , - 1UL , - 1UL , - 1UL } , USING_UNICODE ) ) ;
2018-07-23 12:25:02 -07:00
CreateNewPipe ( ) ;
}
DLLEXPORT void Close ( )
{
2018-07-25 01:11:23 -07:00
// Artikash 7/25/2018: This is only called when NextHooker is closed, at which point Windows should free everything itself...right?
2018-08-21 22:43:30 -04:00
HOST_LOCK ;
for ( auto i : processRecordsByIds ) UnregisterProcess ( i . first ) ;
2018-07-23 12:25:02 -07: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-28 12:41:21 -07:00
AddConsoleOutput ( L " already injected " ) ;
2018-07-23 12:25:02 -07: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 ) )
if ( LPVOID remoteData = VirtualAllocEx ( processHandle , nullptr , textHookerPathSize , MEM_RESERVE | MEM_COMMIT , PAGE_READWRITE ) )
if ( 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 ;
}
AddConsoleOutput ( L " couldn't inject dll " ) ;
2018-07-17 17:01:56 -04:00
return false ;
2018-05-11 16:46:05 -04:00
}
2018-07-23 12:25:02 -07:00
DLLEXPORT bool DetachProcess ( DWORD processId )
2018-05-11 16:46:05 -04:00
{
2018-07-23 12:25:02 -07:00
DWORD command = HOST_COMMAND_DETACH ;
2018-08-21 22:43:30 -04:00
return WriteFile ( processRecordsByIds [ processId ] . hostPipe , & command , sizeof ( command ) , DUMMY , nullptr ) ;
2018-07-23 12:25:02 -07: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-21 22:43:30 -04:00
return WriteFile ( processRecordsByIds [ pid ] . hostPipe , buffer , sizeof ( DWORD ) + sizeof ( HookParam ) + name . size ( ) , DUMMY , nullptr ) ;
2018-07-23 12:25:02 -07: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-21 22:43:30 -04:00
return WriteFile ( processRecordsByIds [ pid ] . hostPipe , buffer , sizeof ( DWORD ) * 2 , DUMMY , nullptr ) ;
2018-05-11 16:46:05 -04:00
}
2016-01-06 00:01:17 +09:00
2018-07-23 12:25:02 -07:00
DLLEXPORT HookParam GetHookParam ( DWORD pid , DWORD addr )
{
HOST_LOCK ;
HookParam ret = { } ;
ProcessRecord pr = processRecordsByIds [ pid ] ;
if ( pr . hookman_map = = nullptr ) return ret ;
MutexLocker locker ( pr . hookman_mutex ) ;
const Hook * hooks = ( const Hook * ) pr . hookman_map ;
for ( int i = 0 ; i < MAX_HOOK ; + + i )
2018-08-11 03:05:31 -04:00
if ( ( DWORD ) hooks [ i ] . Address ( ) = = addr )
2018-07-23 12:25:02 -07:00
ret = hooks [ i ] . hp ;
return ret ;
}
2016-01-06 00:01:17 +09:00
2018-08-21 22:43:30 -04:00
DLLEXPORT HookParam GetHookParam ( ThreadParameter tp ) { return GetHookParam ( tp . pid , tp . hook ) ; }
2018-07-23 12:25:02 -07:00
DLLEXPORT std : : wstring GetHookName ( DWORD pid , DWORD addr )
2018-05-11 16:46:05 -04:00
{
2018-07-23 22:57:54 -07:00
if ( pid = = 0 ) return L " Console " ;
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
std : : string buffer = " " ;
ProcessRecord pr = processRecordsByIds [ pid ] ;
if ( pr . hookman_map = = nullptr ) return L " " ;
MutexLocker locker ( pr . hookman_mutex ) ;
const Hook * hooks = ( const Hook * ) pr . hookman_map ;
for ( int i = 0 ; i < MAX_HOOK ; + + i )
2018-08-11 03:05:31 -04:00
if ( ( DWORD ) hooks [ i ] . Address ( ) = = addr )
2018-07-23 12:25:02 -07:00
{
buffer . resize ( hooks [ i ] . NameLength ( ) ) ;
ReadProcessMemory ( pr . process_handle , hooks [ i ] . Name ( ) , & buffer [ 0 ] , hooks [ i ] . NameLength ( ) , nullptr ) ;
}
USES_CONVERSION ;
return std : : wstring ( A2W ( buffer . c_str ( ) ) ) ;
2018-05-11 16:46:05 -04:00
}
2016-01-06 00:01:17 +09:00
2018-08-21 22:43:30 -04:00
DLLEXPORT TextThread * GetThread ( ThreadParameter tp )
2018-07-23 12:25:02 -07:00
{
HOST_LOCK ;
2018-08-21 22:43:30 -04:00
return textThreadsByParams [ tp ] ;
2018-07-23 12:25:02 -07:00
}
2018-05-11 16:46:05 -04:00
2018-07-23 12:25:02 -07:00
DLLEXPORT void AddConsoleOutput ( std : : wstring text )
2018-05-11 16:46:05 -04:00
{
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
textThreadsByParams [ { 0 , - 1UL , - 1UL , - 1UL } ] - > AddSentence ( std : : wstring ( text ) ) ;
2018-05-11 16:46:05 -04:00
}
2018-08-21 22:43:30 -04:00
DLLEXPORT void RegisterThreadCreateCallback ( ThreadEventCallback cf ) { OnCreate = cf ; }
DLLEXPORT void RegisterThreadRemoveCallback ( ThreadEventCallback cf ) { OnRemove = cf ; }
DLLEXPORT void RegisterProcessAttachCallback ( ProcessEventCallback cf ) { OnAttach = cf ; }
DLLEXPORT void RegisterProcessDetachCallback ( ProcessEventCallback cf ) { OnDetach = cf ; }
2016-01-06 00:01:17 +09:00
}
2018-08-21 22:43:30 -04:00
void DispatchText ( ThreadParameter tp , const BYTE * text , int len )
2018-05-11 16:46:05 -04:00
{
2018-07-25 01:11:23 -07:00
// jichi 2/27/2013: When PID is zero, the text comes from console, which I don't need
2018-08-21 22:43:30 -04:00
if ( ! text | | len < = 0 ) return ;
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
TextThread * it ;
if ( ( it = textThreadsByParams [ tp ] ) = = nullptr )
2018-08-21 22:43:30 -04:00
OnCreate ( it = textThreadsByParams [ tp ] = new TextThread ( tp , Host : : GetHookParam ( tp ) . type ) ) ;
2018-07-23 12:25:02 -07:00
it - > AddText ( text , len ) ;
2018-05-11 16:46:05 -04:00
}
2016-01-06 00:01:17 +09:00
2018-07-23 12:25:02 -07:00
void RemoveThreads ( bool ( * RemoveIf ) ( ThreadParameter , ThreadParameter ) , ThreadParameter cmp )
2016-01-06 00:01:17 +09:00
{
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
std : : vector < ThreadParameter > removedThreads ;
for ( auto i : textThreadsByParams )
if ( RemoveIf ( i . first , cmp ) )
{
2018-08-21 22:43:30 -04:00
OnRemove ( i . second ) ;
2018-07-24 10:39:02 -07:00
//delete i.second; // Artikash 7/24/2018: FIXME: Qt GUI updates on another thread, so I can't delete this yet.
2018-07-23 12:25:02 -07:00
removedThreads . push_back ( i . first ) ;
}
for ( auto i : removedThreads ) textThreadsByParams . erase ( i ) ;
2016-01-06 00:01:17 +09:00
}
2018-07-23 12:25:02 -07:00
void RegisterProcess ( DWORD pid , HANDLE hostPipe )
2016-01-06 00:01:17 +09:00
{
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
ProcessRecord record ;
record . hostPipe = hostPipe ;
record . hookman_section = OpenFileMappingW ( FILE_MAP_READ , FALSE , ( ITH_SECTION_ + std : : to_wstring ( pid ) ) . c_str ( ) ) ;
record . hookman_map = MapViewOfFile ( record . hookman_section , FILE_MAP_READ , 0 , 0 , HOOK_SECTION_SIZE / 2 ) ; // jichi 1/16/2015: Changed to half to hook section size
record . process_handle = OpenProcess ( PROCESS_ALL_ACCESS , FALSE , pid ) ;
record . hookman_mutex = OpenMutexW ( MUTEX_ALL_ACCESS , FALSE , ( ITH_HOOKMAN_MUTEX_ + std : : to_wstring ( pid ) ) . c_str ( ) ) ;
processRecordsByIds [ pid ] = record ;
2018-08-21 22:43:30 -04:00
OnAttach ( pid ) ;
2016-01-06 00:01:17 +09:00
}
2018-07-23 12:25:02 -07:00
void UnregisterProcess ( DWORD pid )
2016-01-06 00:01:17 +09:00
{
2018-07-23 12:25:02 -07:00
HOST_LOCK ;
ProcessRecord pr = processRecordsByIds [ pid ] ;
if ( ! pr . hostPipe ) return ;
CloseHandle ( pr . hookman_mutex ) ;
UnmapViewOfFile ( pr . hookman_map ) ;
CloseHandle ( pr . process_handle ) ;
CloseHandle ( pr . hookman_section ) ;
2018-08-21 22:43:30 -04:00
processRecordsByIds [ pid ] = { } ;
2018-07-23 12:25:02 -07:00
RemoveThreads ( [ ] ( auto one , auto two ) { return one . pid = = two . pid ; } , { pid , 0 , 0 , 0 } ) ;
2018-08-21 22:43:30 -04:00
OnDetach ( pid ) ;
2016-01-06 00:01:17 +09:00
}
2018-07-24 10:39:02 -07:00
// EOF