Textractor/texthook/texthook.h

57 lines
1.4 KiB
C
Raw Normal View History

2018-08-23 11:53:23 -04:00
#pragma once
// texthook.h
// 8/24/2013 jichi
// Branch: IHF_DLL/IHF_CLIENT.h, rev 133
//
// 8/24/2013 TODO:
// - Clean up this file
// - Reduce global variables. Use namespaces or singleton classes instead.
2018-08-24 12:50:20 -04:00
#include "types.h"
2018-08-23 11:53:23 -04:00
2020-03-17 13:53:46 -06:00
// Artikash 6/17/2019 TODO: These have the wrong values on x64
/** jichi 12/24/2014
* @param addr function address
* @param frame real address of the function, supposed to be the same as addr
* @param stack address of current stack - 4
* @return If success, which is reverted
*/
inline std::atomic<bool (*)(LPVOID addr, DWORD frame, DWORD stack)> trigger_fun = nullptr;
2018-08-23 11:53:23 -04:00
// jichi 9/25/2013: This class will be used by NtMapViewOfSectionfor
// interprocedure communication, where constructor/destructor will NOT work.
2018-08-23 15:25:33 -04:00
2018-08-23 11:53:23 -04:00
class TextHook
{
public:
HookParam hp;
union
{
uint64_t address;
void* location;
}; // Absolute address
bool Insert(HookParam hp, DWORD set_flag);
void Clear();
private:
void Read();
2018-08-25 15:45:25 -04:00
bool InsertHookCode();
bool InsertReadCode();
2018-12-20 11:46:11 -05:00
void Send(uintptr_t dwDatabase);
int GetLength(uintptr_t base, uintptr_t in); // jichi 12/25/2013: Return 0 if failed
2019-03-27 23:35:22 -04:00
int HookStrlen(BYTE* data);
2018-08-25 15:45:25 -04:00
void RemoveHookCode();
void RemoveReadCode();
2018-11-10 23:29:12 -05:00
2019-10-03 16:00:19 -04:00
volatile DWORD useCount;
HANDLE readerThread, readerEvent;
2018-12-26 13:07:59 -05:00
bool err;
BYTE trampoline[x64 ? 140 : 40];
2018-08-23 11:53:23 -04:00
};
enum { MAX_HOOK = 2500, HOOK_BUFFER_SIZE = MAX_HOOK * sizeof(TextHook), HOOK_SECTION_SIZE = HOOK_BUFFER_SIZE * 2 };
2018-08-23 11:53:23 -04:00
// EOF