2019-06-02 14:09:17 +08:00
# include "hookfinder.h"
# include "defs.h"
# include "main.h"
# include "util.h"
extern const char * STARTING_SEARCH ;
extern const char * HOOK_SEARCH_INITIALIZED ;
extern const char * HOOK_SEARCH_FINISHED ;
extern WinMutex viewMutex ;
namespace
{
2019-06-09 12:48:30 +08:00
SearchParam current ;
2019-06-02 14:09:17 +08:00
constexpr int CACHE_SIZE = 500'000 ;
struct HookRecord
{
2019-06-09 12:48:30 +08:00
~ HookRecord ( )
{
if ( ! address ) return ;
HookParam hp = { } ;
hp . offset = offset ;
hp . type = USING_UNICODE | USING_STRING ;
hp . address = address ;
hp . padding = current . padding ;
NotifyHookFound ( hp , ( wchar_t * ) text ) ;
}
uint64_t address = 0 ;
int offset = 0 ;
char text [ 500 ] = { } ;
2019-06-02 14:09:17 +08:00
} ;
std : : unique_ptr < HookRecord [ ] > records ;
long recordsAvailable ;
2019-06-09 12:48:30 +08:00
uint64_t signatureCache [ CACHE_SIZE ] = { } ;
2019-06-02 14:09:17 +08:00
long sumCache [ CACHE_SIZE ] = { } ;
# ifndef _WIN64
2019-06-09 12:48:30 +08:00
BYTE trampoline [ ] =
2019-06-02 14:09:17 +08:00
{
0x9c , // pushfd
0x60 , // pushad
0x68 , 0 , 0 , 0 , 0 , // push @addr ; after this a total of 0x28 bytes are pushed
0x8d , 0x44 , 0x24 , 0x28 , // lea eax,[esp+0x28]
0x50 , // push eax ; stack
0xbb , 0 , 0 , 0 , 0 , // mov ebx,@Send
0xff , 0xd3 , // call ebx
0x83 , 0xc4 , 0x08 , // add esp, 0x8 ; doesn't matter which register
0x61 , // popad
0x9d , // popfd
0x68 , 0 , 0 , 0 , 0 , // push @original
0xc3 // ret ; basically absolute jmp to @original
} ;
constexpr int addr_offset = 3 , send_offset = 13 , original_offset = 25 , registers = 8 ;
# else
2019-06-09 12:48:30 +08:00
BYTE trampoline [ ] = {
2019-06-02 14:09:17 +08:00
0x9c , // push rflags
0x50 , // push rax
0x53 , // push rbx
0x51 , // push rcx
0x52 , // push rdx
0x54 , // push rsp
0x55 , // push rbp
0x56 , // push rsi
0x57 , // push rdi
0x41 , 0x50 , // push r8
0x41 , 0x51 , // push r9
0x41 , 0x52 , // push r10
0x41 , 0x53 , // push r11
0x41 , 0x54 , // push r12
0x41 , 0x55 , // push r13
0x41 , 0x56 , // push r14
0x41 , 0x57 , // push r15
// https://docs.microsoft.com/en-us/cpp/build/x64-calling-convention
// https://stackoverflow.com/questions/43358429/save-value-of-xmm-registers
0x48 , 0x83 , 0xec , 0x20 , // sub rsp,0x20
0xc5 , 0xfa , 0x7f , 0x24 , 0x24 , // vmovdqu [rsp],xmm4
0xc5 , 0xfa , 0x7f , 0x6c , 0x24 , 0x10 , // vmovdqu [rsp+0x10],xmm5
0x48 , 0x8d , 0x8c , 0x24 , 0xa8 , 0x00 , 0x00 , 0x00 , // lea rcx,[rsp+0xa8]
0x48 , 0xba , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , // mov rcx,@addr
0x48 , 0xb8 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 , // mov rax,@Send
2019-06-09 12:48:30 +08:00
0x48 , 0x89 , 0xe3 , // mov rbx,rsp
0x48 , 0x83 , 0xe4 , 0xf0 , // and rsp,0xfffffffffffffff0 ; align stack
2019-06-02 14:09:17 +08:00
0xff , 0xd0 , // call rax
2019-06-09 12:48:30 +08:00
0x48 , 0x89 , 0xdc , // mov rsp,rbx
2019-06-02 14:09:17 +08:00
0xc5 , 0xfa , 0x6f , 0x6c , 0x24 , 0x10 , // vmovdqu xmm5,XMMWORD PTR[rsp + 0x10]
0xc5 , 0xfa , 0x6f , 0x24 , 0x24 , // vmovdqu xmm4,XMMWORD PTR[rsp]
0x48 , 0x83 , 0xc4 , 0x20 , // add rsp,0x20
0x41 , 0x5f , // pop r15
0x41 , 0x5e , // pop r14
0x41 , 0x5d , // pop r13
0x41 , 0x5c , // pop r12
0x41 , 0x5b , // pop r11
0x41 , 0x5a , // pop r10
0x41 , 0x59 , // pop r9
0x41 , 0x58 , // pop r8
0x5f , // pop rdi
0x5e , // pop rsi
0x5d , // pop rbp
0x5c , // pop rsp
0x5a , // pop rdx
0x59 , // pop rcx
0x5b , // pop rbx
0x58 , // pop rax
0x9d , // pop rflags
0xff , 0x25 , 0x00 , 0x00 , 0x00 , 0x00 , // jmp qword ptr [0] ; relative to next instruction (i.e. jmp @original)
0 , 0 , 0 , 0 , 0 , 0 , 0 , 0 // @original
} ;
2019-06-09 12:48:30 +08:00
constexpr int addr_offset = 50 , send_offset = 60 , original_offset = 126 , registers = 16 ;
2019-06-02 14:09:17 +08:00
# endif
}
2019-06-09 12:48:30 +08:00
void Send ( char * * stack , uintptr_t address )
2019-06-02 14:09:17 +08:00
{
// it is unsafe to call ANY external functions from this, as they may have been hooked (if called the hook would call this function making an infinite loop)
// the exceptions are compiler intrinsics like _InterlockedDecrement
if ( recordsAvailable < = 0 ) return ;
for ( int i = - registers ; i < 6 ; + + i )
{
int length = 0 , sum = 0 ;
2019-06-09 12:48:30 +08:00
char * str = stack [ i ] + current . padding ;
__try { for ( ; ( str [ length ] | | str [ length + 1 ] ) & & length < 500 ; length + = 2 ) sum + = str [ length ] + str [ length + 1 ] ; }
2019-06-02 14:09:17 +08:00
__except ( EXCEPTION_EXECUTE_HANDLER ) { }
2019-06-09 12:48:30 +08:00
if ( length > STRING & & length < 499 )
2019-06-02 14:09:17 +08:00
{
__try
{
2019-06-09 12:48:30 +08:00
// many duplicate results with same address, offset, and third/fourth character will be found: filter them out
uint64_t signature = ( ( uint64_t ) i < < 56 ) | ( ( uint64_t ) ( str [ 2 ] + str [ 3 ] ) < < 48 ) | address ;
if ( signatureCache [ signature % CACHE_SIZE ] = = signature ) continue ;
signatureCache [ signature % CACHE_SIZE ] = signature ;
2019-06-02 14:09:17 +08:00
// if there are huge amount of strings that are the same, it's probably garbage: filter them out
// can't store all the strings, so use sum as heuristic instead
if ( _InterlockedIncrement ( sumCache + ( sum % CACHE_SIZE ) ) > 25 ) continue ;
}
__except ( EXCEPTION_EXECUTE_HANDLER ) { }
long n = _InterlockedDecrement ( & recordsAvailable ) ;
__try
{
if ( n > 0 )
{
records [ n ] . address = address ;
2019-06-09 12:48:30 +08:00
records [ n ] . offset = i * sizeof ( char * ) ;
for ( int j = 0 ; j < length ; + + j ) records [ n ] . text [ j ] = str [ j ] ;
2019-06-02 14:09:17 +08:00
records [ n ] . text [ length ] = 0 ;
}
}
__except ( EXCEPTION_EXECUTE_HANDLER ) { records [ n ] . address = 0 ; }
}
}
}
void SearchForHooks ( SearchParam sp )
{
std : : thread ( [ = ]
{
static std : : mutex m ;
std : : scoped_lock lock ( m ) ;
2019-06-09 12:48:30 +08:00
try { records = std : : make_unique < HookRecord [ ] > ( recordsAvailable = CACHE_SIZE ) ; }
2019-06-09 19:33:26 +08:00
catch ( std : : bad_alloc ) { return ConsoleOutput ( " Textractor: SearchForHooks ERROR (out of memory) " ) ; }
2019-06-02 14:09:17 +08:00
2019-06-09 12:48:30 +08:00
current = sp ;
2019-06-02 14:09:17 +08:00
uintptr_t moduleStartAddress = ( uintptr_t ) GetModuleHandleW ( ITH_DLL ) ;
uintptr_t moduleStopAddress = moduleStartAddress ;
MEMORY_BASIC_INFORMATION info ;
do
{
VirtualQuery ( ( void * ) moduleStopAddress , & info , sizeof ( info ) ) ;
moduleStopAddress = ( uintptr_t ) info . BaseAddress + info . RegionSize ;
} while ( info . Protect > PAGE_NOACCESS ) ;
moduleStopAddress - = info . RegionSize ;
ConsoleOutput ( STARTING_SEARCH ) ;
2019-06-09 12:48:30 +08:00
std : : vector < uint64_t > addresses = Util : : SearchMemory ( sp . pattern , sp . length , PAGE_EXECUTE , sp . minAddress , sp . maxAddress ) ;
2019-06-02 14:09:17 +08:00
for ( auto & addr : addresses ) addr + = sp . offset ;
2019-06-09 12:48:30 +08:00
addresses . erase ( std : : remove_if ( addresses . begin ( ) , addresses . end ( ) , [ & ] ( uint64_t addr ) { return addr > moduleStartAddress & & addr < moduleStopAddress ; } ) , addresses . end ( ) ) ;
2019-06-02 14:09:17 +08:00
* ( void * * ) ( trampoline + send_offset ) = Send ;
auto trampolines = ( decltype ( trampoline ) * ) VirtualAlloc ( NULL , sizeof ( trampoline ) * addresses . size ( ) , MEM_COMMIT , PAGE_READWRITE ) ;
2019-06-04 05:58:30 +08:00
VirtualProtect ( trampolines , addresses . size ( ) * sizeof ( trampoline ) , PAGE_EXECUTE_READWRITE , DUMMY ) ;
2019-06-02 14:09:17 +08:00
for ( int i = 0 ; i < addresses . size ( ) ; + + i )
{
void * original ;
MH_CreateHook ( ( void * ) addresses [ i ] , trampolines [ i ] , & original ) ;
MH_QueueEnableHook ( ( void * ) addresses [ i ] ) ;
memcpy ( trampolines [ i ] , trampoline , sizeof ( trampoline ) ) ;
* ( uintptr_t * ) ( trampolines [ i ] + addr_offset ) = addresses [ i ] ;
* ( void * * ) ( trampolines [ i ] + original_offset ) = original ;
}
ConsoleOutput ( HOOK_SEARCH_INITIALIZED , addresses . size ( ) ) ;
MH_ApplyQueued ( ) ;
Sleep ( sp . searchTime ) ;
for ( auto addr : addresses ) MH_QueueDisableHook ( ( void * ) addr ) ;
MH_ApplyQueued ( ) ;
Sleep ( 1000 ) ;
for ( auto addr : addresses ) MH_RemoveHook ( ( void * ) addr ) ;
records . reset ( ) ;
VirtualFree ( trampolines , 0 , MEM_RELEASE ) ;
2019-06-09 12:48:30 +08:00
for ( int i = 0 ; i < CACHE_SIZE ; + + i ) signatureCache [ i ] = sumCache [ i ] = 0 ;
2019-06-02 14:09:17 +08:00
ConsoleOutput ( HOOK_SEARCH_FINISHED , CACHE_SIZE - recordsAvailable ) ;
} ) . detach ( ) ;
}