Textractor_test/include/types.h

72 lines
2.6 KiB
C
Raw Normal View History

2018-08-23 23:53:23 +08:00
#pragma once
#include "common.h"
#include "const.h"
// jichi 3/7/2014: Add guessed comment
struct HookParam
{
// jichi 8/24/2013: For special hooks.
typedef void(*text_fun_t)(DWORD esp, HookParam *hp, BYTE index, DWORD *data, DWORD *split, DWORD *len);
typedef bool(*filter_fun_t)(LPVOID str, DWORD *len, HookParam *hp, BYTE index); // jichi 10/24/2014: Add filter function. Return true if skip the text
typedef bool(*hook_fun_t)(DWORD esp, HookParam *hp); // jichi 10/24/2014: Add generic hook function, return false if stop execution.
2018-09-21 09:59:07 +08:00
uint64_t address; // absolute or relative address
2018-08-27 10:21:15 +08:00
int offset, // offset of the data in the memory
2018-08-23 23:53:23 +08:00
index, // deref_offset1
split, // offset of the split character
split_index; // deref_offset2
DWORD module; // hash of the module
DWORD type; // flags
WORD length_offset; // index of the string length
DWORD user_value; // 7/20/2014: jichi additional parameters for PSP games
text_fun_t text_fun;
filter_fun_t filter_fun;
hook_fun_t hook_fun;
HANDLE readerHandle; // Artikash 8/4/2018: handle for reader thread
};
2018-08-25 00:50:20 +08:00
struct ThreadParam // From hook, used internally by host as well
2018-08-23 23:53:23 +08:00
{
DWORD pid; // jichi: 5/11/2014: The process ID
2018-09-21 09:59:07 +08:00
uint64_t hook; // Artikash 6/6/2018: The insertion address of the hook
uint64_t retn; // jichi 5/11/2014: The return address of the hook
uint64_t spl; // jichi 5/11/2014: the processed split value of the hook paramete
2018-08-23 23:53:23 +08:00
};
2018-08-25 00:50:20 +08:00
// Artikash 5/31/2018: required for unordered_map to work with struct key
2018-09-21 09:59:07 +08:00
template <> struct std::hash<ThreadParam> { size_t operator()(const ThreadParam& tp) const { return std::hash<int64_t>()((tp.pid + tp.hook) ^ (tp.retn + tp.spl)); } };
2018-08-25 02:04:23 +08:00
static bool operator==(const ThreadParam& one, const ThreadParam& two) { return one.pid == two.pid && one.hook == two.hook && one.retn == two.retn && one.spl == two.spl; }
2018-08-23 23:53:23 +08:00
struct InsertHookCmd // From host
{
2018-09-23 03:45:54 +08:00
InsertHookCmd(HookParam hp, std::string name = "") : hp(hp) { strcpy_s<MESSAGE_SIZE>(this->name, name.c_str()); };
2018-08-23 23:53:23 +08:00
int command = HOST_COMMAND_NEW_HOOK;
HookParam hp;
char name[MESSAGE_SIZE] = {};
};
struct RemoveHookCmd // From host
{
2018-09-21 09:59:07 +08:00
RemoveHookCmd(uint64_t address) : address(address) {};
2018-08-23 23:53:23 +08:00
int command = HOST_COMMAND_REMOVE_HOOK;
2018-09-21 09:59:07 +08:00
uint64_t address;
2018-08-23 23:53:23 +08:00
};
struct ConsoleOutputNotif // From hook
{
2018-09-23 03:45:54 +08:00
ConsoleOutputNotif(std::string message = "") { strcpy_s<MESSAGE_SIZE>(this->message, message.c_str()); };
2018-08-23 23:53:23 +08:00
int command = HOST_NOTIFICATION_TEXT;
char message[MESSAGE_SIZE] = {};
};
struct HookRemovedNotif // From hook
{
2018-09-21 09:59:07 +08:00
HookRemovedNotif(uint64_t address) : address(address) {};
2018-08-23 23:53:23 +08:00
int command = HOST_NOTIFICATION_RMVHOOK;
2018-09-21 09:59:07 +08:00
uint64_t address;
2018-08-23 23:53:23 +08:00
};
2018-08-25 00:50:20 +08:00
2018-08-29 05:21:20 +08:00
#define LOCK(mutex) std::lock_guard<std::recursive_mutex> lock(mutex)