2016-01-05 23:01:17 +08:00
|
|
|
// pipe.cc
|
|
|
|
// 8/24/2013 jichi
|
|
|
|
// Branch IHF/pipe.cpp, rev 93
|
|
|
|
// 8/24/2013 TODO: Clean up this file
|
|
|
|
|
|
|
|
#include "host_p.h"
|
|
|
|
#include "hookman.h"
|
|
|
|
#include "vnrhook/include/defs.h"
|
|
|
|
#include "vnrhook/include/const.h"
|
|
|
|
#include "ithsys/ithsys.h"
|
|
|
|
#include <stdio.h>
|
2018-05-21 01:11:55 +08:00
|
|
|
#include "growl.h"
|
|
|
|
#include <atlbase.h>
|
2016-01-05 23:01:17 +08:00
|
|
|
//#include "CommandQueue.h"
|
|
|
|
//#include <QtCore/QDebug>
|
|
|
|
|
|
|
|
#define DEBUG "vnrhost/pipe.cc"
|
|
|
|
|
2018-05-12 04:46:05 +08:00
|
|
|
CRITICAL_SECTION detachCs; // jichi 9/27/2013: also used in main
|
2016-01-05 23:01:17 +08:00
|
|
|
//HANDLE hDetachEvent;
|
2018-05-12 04:46:05 +08:00
|
|
|
extern HANDLE pipeExistsEvent;
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-06-01 14:36:51 +08:00
|
|
|
struct Pipes
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2018-06-01 14:36:51 +08:00
|
|
|
HANDLE hookPipe;
|
|
|
|
HANDLE hostPipe;
|
|
|
|
};
|
2016-01-05 23:01:17 +08:00
|
|
|
|
2018-06-01 14:36:51 +08:00
|
|
|
void CreateNewPipe()
|
|
|
|
{
|
|
|
|
CreateThread(nullptr, 0, TextReceiver, new Pipes
|
|
|
|
{
|
|
|
|
CreateNamedPipeW(ITH_TEXT_PIPE, PIPE_ACCESS_INBOUND, PIPE_TYPE_MESSAGE | PIPE_READMODE_MESSAGE, PIPE_UNLIMITED_INSTANCES, PIPE_BUFFER_SIZE, PIPE_BUFFER_SIZE, MAXDWORD, NULL),
|
|
|
|
CreateNamedPipeW(ITH_COMMAND_PIPE, PIPE_ACCESS_OUTBOUND, 0, PIPE_UNLIMITED_INSTANCES, PIPE_BUFFER_SIZE, PIPE_BUFFER_SIZE, MAXDWORD, NULL)
|
|
|
|
},
|
|
|
|
0, nullptr);
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
|
|
|
|
2018-05-21 01:11:55 +08:00
|
|
|
DWORD WINAPI TextReceiver(LPVOID lpThreadParameter)
|
2016-01-05 23:01:17 +08:00
|
|
|
{
|
2018-06-01 14:36:51 +08:00
|
|
|
Pipes* pipes = (Pipes*)lpThreadParameter;
|
|
|
|
ConnectNamedPipe(pipes->hookPipe, nullptr);
|
2018-05-21 01:11:55 +08:00
|
|
|
|
2018-07-12 08:18:04 +08:00
|
|
|
BYTE buffer[PIPE_BUFFER_SIZE] = {};
|
2018-05-21 01:11:55 +08:00
|
|
|
DWORD bytesRead, processId;
|
|
|
|
|
|
|
|
// Artikash 5/20/2018: Shouldn't Windows automatically close the handles when the host process stops running?
|
|
|
|
//if (!::running) {
|
|
|
|
// NtClose(hookPipe);
|
|
|
|
// return 0;
|
|
|
|
//}
|
|
|
|
|
2018-06-01 14:36:51 +08:00
|
|
|
ReadFile(pipes->hookPipe, &processId, sizeof(processId), &bytesRead, nullptr);
|
|
|
|
man->RegisterProcess(processId, pipes->hostPipe);
|
2018-05-21 01:11:55 +08:00
|
|
|
|
|
|
|
// jichi 9/27/2013: why recursion?
|
|
|
|
// Artikash 5/20/2018: To create a new pipe for another process
|
|
|
|
CreateNewPipe();
|
|
|
|
|
|
|
|
while (::running)
|
|
|
|
{
|
2018-06-01 14:36:51 +08:00
|
|
|
if (!ReadFile(pipes->hookPipe, buffer, PIPE_BUFFER_SIZE, &bytesRead, nullptr))
|
2018-05-21 01:11:55 +08:00
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum { DATA_OFFSET = 0xc }; // jichi 10/27/2013: Seem to be the data offset in the pipe
|
|
|
|
|
|
|
|
if (bytesRead < DATA_OFFSET)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
union { DWORD retn; DWORD commandType; };
|
|
|
|
DWORD hook = *(DWORD *)buffer;
|
|
|
|
retn = *(DWORD *)(buffer + 4);
|
|
|
|
DWORD split = *(DWORD *)(buffer + 8);
|
|
|
|
|
|
|
|
buffer[bytesRead] = 0;
|
|
|
|
buffer[bytesRead + 1] = 0;
|
|
|
|
|
|
|
|
if (hook == HOST_NOTIFICATION)
|
|
|
|
{
|
|
|
|
switch (commandType)
|
|
|
|
{
|
2018-05-31 16:44:33 +08:00
|
|
|
case HOST_NOTIFICATION_NEWHOOK: // Artikash 5/30/2018: Useless for now, but could be handy to implement something later
|
|
|
|
break;
|
2018-05-21 01:11:55 +08:00
|
|
|
case HOST_NOTIFICATION_TEXT:
|
|
|
|
USES_CONVERSION;
|
|
|
|
man->AddConsoleOutput(A2W((LPCSTR)(buffer + 8)));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// jichi 9/28/2013: Debug raw data
|
|
|
|
//ITH_DEBUG_DWORD9(RecvLen - 0xc,
|
|
|
|
// buffer[0xc], buffer[0xd], buffer[0xe], buffer[0xf],
|
|
|
|
// buffer[0x10], buffer[0x11], buffer[0x12], buffer[0x13]);
|
|
|
|
|
|
|
|
const BYTE *data = buffer + DATA_OFFSET; // th
|
|
|
|
int dataLength = bytesRead - DATA_OFFSET;
|
2018-06-18 09:04:04 +08:00
|
|
|
man->DispatchText(processId, data, hook, retn, split, dataLength);
|
2018-05-21 01:11:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EnterCriticalSection(&detachCs);
|
|
|
|
|
2018-06-01 14:36:51 +08:00
|
|
|
DisconnectNamedPipe(pipes->hookPipe);
|
|
|
|
DisconnectNamedPipe(pipes->hostPipe);
|
2018-05-21 01:11:55 +08:00
|
|
|
man->UnRegisterProcess(processId);
|
|
|
|
|
|
|
|
LeaveCriticalSection(&detachCs);
|
2018-06-01 14:36:51 +08:00
|
|
|
delete pipes;
|
2018-05-21 01:11:55 +08:00
|
|
|
|
|
|
|
return 0;
|
2016-01-05 23:01:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// EOF
|