2016-01-05 23:01:17 +08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// textthread.h
|
|
|
|
// 8/23/2013 jichi
|
|
|
|
// Branch: ITH/TextThread.h, rev 120
|
|
|
|
|
|
|
|
#include "host/textthread_p.h"
|
|
|
|
#include <intrin.h> // require _InterlockedExchange
|
2018-07-12 08:18:04 +08:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2016-01-05 23:01:17 +08:00
|
|
|
|
|
|
|
struct ThreadParameter {
|
|
|
|
DWORD pid; // jichi: 5/11/2014: The process ID
|
2018-06-07 11:11:35 +08:00
|
|
|
DWORD hook; // Artikash 6/6/2018: The start address of the hook
|
2016-01-05 23:01:17 +08:00
|
|
|
DWORD retn; // jichi 5/11/2014: The return address of the hook
|
2018-06-13 05:31:24 +08:00
|
|
|
DWORD spl; // jichi 5/11/2014: the processed split value of the hook paramete
|
|
|
|
|
|
|
|
// Artikash 5/31/2018: required for unordered_map to work with struct key
|
|
|
|
friend bool operator==(const ThreadParameter& one, const ThreadParameter& two)
|
|
|
|
{
|
|
|
|
return one.pid == two.pid && one.hook == two.hook && one.retn == two.retn && one.spl == two.spl;
|
|
|
|
}
|
2016-01-05 23:01:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define CURRENT_SELECT 0x1000
|
|
|
|
#define REPEAT_NUMBER_DECIDED 0x2000
|
|
|
|
#define BUFF_NEWLINE 0x4000
|
|
|
|
#define CYCLIC_REPEAT 0x8000
|
|
|
|
#define COUNT_PER_FOWARD 0x200
|
|
|
|
#define REPEAT_DETECT 0x10000
|
|
|
|
#define REPEAT_SUPPRESS 0x20000
|
|
|
|
#define REPEAT_NEWLINE 0x40000
|
|
|
|
|
|
|
|
class TextThread;
|
2018-07-12 08:18:04 +08:00
|
|
|
typedef DWORD (* ThreadOutputFilterCallback)(TextThread *,const BYTE *, DWORD, DWORD);
|
2016-01-05 23:01:17 +08:00
|
|
|
typedef DWORD (* ThreadEventCallback)(TextThread *);
|
|
|
|
|
|
|
|
//extern DWORD split_time,repeat_count,global_filter,cyclic_remove;
|
|
|
|
|
|
|
|
class TextThread : public MyVector<BYTE, 0x200>
|
|
|
|
{
|
|
|
|
public:
|
2018-06-11 07:15:05 +08:00
|
|
|
TextThread(ThreadParameter tp, WORD num);
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-06-11 07:15:05 +08:00
|
|
|
virtual void GetEntryString(LPSTR buffer, DWORD max);
|
2016-01-05 23:01:17 +08:00
|
|
|
|
|
|
|
void Reset();
|
2018-07-12 08:18:04 +08:00
|
|
|
void AddText(const BYTE *con,int len);
|
|
|
|
void AddSentence();
|
|
|
|
void AddSentence(std::wstring sentence);
|
2016-01-05 23:01:17 +08:00
|
|
|
|
|
|
|
BYTE *GetStore(DWORD *len) { if (len) *len = used; return storage; }
|
|
|
|
DWORD PID() const { return tp.pid; }
|
|
|
|
DWORD Addr() const {return tp.hook; }
|
|
|
|
DWORD &Status() { return status; }
|
|
|
|
WORD Number() const { return thread_number; }
|
|
|
|
ThreadParameter *GetThreadParameter() { return &tp; }
|
|
|
|
//LPCWSTR GetComment() { return comment; }
|
|
|
|
|
|
|
|
ThreadOutputFilterCallback RegisterOutputCallBack(ThreadOutputFilterCallback cb, PVOID data)
|
|
|
|
{
|
|
|
|
return (ThreadOutputFilterCallback)_InterlockedExchange((long*)&output,(long)cb);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
ThreadParameter tp;
|
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
std::vector<char> sentenceBuffer;
|
2018-07-13 01:59:05 +08:00
|
|
|
unsigned int thread_number;
|
2016-01-05 23:01:17 +08:00
|
|
|
ThreadOutputFilterCallback output;
|
2018-06-11 07:15:05 +08:00
|
|
|
DWORD status;
|
2016-01-05 23:01:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// EOF
|