-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathProcessMonitor.cpp
303 lines (261 loc) · 8.65 KB
/
ProcessMonitor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
#include "ProcessMonitor.h"
#include "ntqueries.h"
#include <future>
ProcessMonitor::ProcessMonitor(uint32_t pid) : m_state{ ProcessState::Running } {
m_handle = OpenProcess(PROCESS_ALL_ACCESS, false, pid);
if (m_handle == nullptr) {
err("Cannot attach to a process");
}
if (!get_cmd_line_from_process()) {
err("Cannot get CLI arguments from attached process");
}
if (!RegisterWaitForSingleObject(&m_process_exit_wait_handle, m_handle, ProcessExitedCallback,
this, INFINITE, WT_EXECUTEONLYONCE)) {
err("Cannot subscribe for process termination");
}
}
ProcessMonitor::ProcessMonitor(const std::wstring& path, const std::wstring& args) :
m_cmd(path + L' ' + args), m_state{ ProcessState::Stopped } {
start_process();
}
uint32_t ProcessMonitor::get_pid() {
auto lock = m_lock.LockShared();
return GetProcessId(m_handle);
}
HANDLE ProcessMonitor::get_handle() {
auto lock = m_lock.LockShared();
return m_handle != nullptr ? m_handle : INVALID_HANDLE_VALUE;
}
ProcessMonitor::ProcessState ProcessMonitor::get_state() {
auto lock = m_lock.LockShared();
return m_state;
}
bool ProcessMonitor::stop_process(uint32_t error_code) {
auto lock = m_lock.LockExclusive();
if (m_handle != nullptr) {
m_state = ProcessState::Stopped;
auto success = TerminateProcess(m_handle, error_code);
m_handle = nullptr;
if (success) {
log("Process manually stopped");
run_callbacks(m_on_proc_manually_stopped_callbacks);
}
return success;
}
return false;
}
bool ProcessMonitor::start_process() {
auto lock = m_lock.LockExclusive();
if (m_state == ProcessState::Running || m_handle != nullptr) {
return false;
}
STARTUPINFO si = { sizeof(si) };
PROCESS_INFORMATION pi;
const auto cmd_copy_size = m_cmd.size() + 1;
// Do nothing if allocation fails - exception just bubbles up
// No cleanup needed
auto cmd_copy = new wchar_t[cmd_copy_size];
wcsncpy_s(cmd_copy, cmd_copy_size, m_cmd.c_str(), m_cmd.size());
if (!CreateProcess(
0,
cmd_copy,
0, 0, FALSE, 0, 0, 0,
&si,
&pi)) {
delete[] cmd_copy;
err("Cannot create process");
}
delete[] cmd_copy;
m_handle = pi.hProcess;
if (!RegisterWaitForSingleObject(&m_process_exit_wait_handle, m_handle, ProcessExitedCallback,
this, INFINITE, WT_EXECUTEONLYONCE)) {
err("Cannot subscribe for process termination");
}
m_state = ProcessState::Running;
log("Process started");
run_callbacks(m_on_proc_start_callbacks);
return true;
}
void ProcessMonitor::set_logger(std::shared_ptr<AbstractLogger> logger)
{
auto lock = m_lock.LockExclusive();
m_logger = logger;
}
void ProcessMonitor::log(const std::string& msg) {
if (m_logger) {
m_logger->log(msg);
}
}
void ProcessMonitor::err(const std::string& msg) {
auto lock = m_lock.LockShared();
if (m_logger) {
m_logger->err(msg);
}
DebugBreak();
throw Error(msg);
}
void ProcessMonitor::on_proc_start(const Callback& cb) {
auto lock = m_lock.LockExclusive();
m_on_proc_start_callbacks.push_back(cb);
}
void ProcessMonitor::on_proc_crash(const Callback& cb) {
auto lock = m_lock.LockExclusive();
m_on_proc_crash_callbacks.push_back(cb);
}
void ProcessMonitor::on_proc_normal_exit(const Callback& cb) {
auto lock = m_lock.LockExclusive();
m_on_proc_normal_exit_callbacks.push_back(cb);
}
void ProcessMonitor::on_proc_manually_stopped(const Callback& cb) {
auto lock = m_lock.LockExclusive();
m_on_proc_manually_stopped_callbacks.push_back(cb);
}
ProcessMonitor::~ProcessMonitor()
{
// cleanup resources
if (!m_process_exit_wait_handle) {
UnregisterWait(m_process_exit_wait_handle);
m_process_exit_wait_handle = nullptr;
}
if (m_handle != nullptr) {
if (!CloseHandle(m_handle)) {
DebugBreak();
}
m_handle = nullptr;
}
}
bool ProcessMonitor::get_cmd_line_from_process() {
// BASED ON http://stackoverflow.com/questions/7446887/get-command-line-string-of-64-bit-process-from-32-bit-process
// and a few other internet sources
// and painful 2-hour debugging session (because of the 32 vs 64 bit memory layout problems).
DWORD err = 0;
// determine if 64 or 32-bit processor
SYSTEM_INFO si;
GetNativeSystemInfo(&si);
// determine if this process is running on WOW64
BOOL wow;
IsWow64Process(GetCurrentProcess(), &wow);
// use WinDbg "dt ntdll!_PEB" command and search for ProcessParameters offset to find the truth out
DWORD ProcessParametersOffset = si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64 ? 0x20 : 0x10;
DWORD CommandLineOffset = si.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64 ? 0x70 : 0x40;
// read basic info to get ProcessParameters address, we only need the beginning of PEB
DWORD pebSize = ProcessParametersOffset + 8;
PBYTE peb = new BYTE[pebSize]{};
// read basic info to get CommandLine address, we only need the beginning of ProcessParameters
DWORD ppSize = CommandLineOffset + 16;
PBYTE pp = new BYTE[ppSize]{};
PWSTR cmdLine;
if (wow) {
// we're running as a 32-bit process in a 64-bit OS
PROCESS_BASIC_INFORMATION_WOW64 pbi{};
// get process information from 64-bit world
auto query = (_NtQueryInformationProcess)GetProcAddress(GetModuleHandleA("ntdll.dll"), "NtWow64QueryInformationProcess64");
err = query(m_handle, 0, &pbi, sizeof(pbi), NULL);
if (err != 0) {
CloseHandle(m_handle);
return false;
}
// read PEB from 64-bit address space
auto read = (_NtWow64ReadVirtualMemory64)GetProcAddress(GetModuleHandleA("ntdll.dll"), "NtWow64ReadVirtualMemory64");
err = read(m_handle, pbi.PebBaseAddress, peb, pebSize, NULL);
if (err != 0) {
CloseHandle(m_handle);
return false;
}
// read ProcessParameters from 64-bit address space
auto parameters = (PBYTE*)*(LPVOID*)(peb + ProcessParametersOffset); // address in remote process adress space
err = read(m_handle, parameters, pp, ppSize, NULL);
if (err != 0) {
CloseHandle(m_handle);
return false;
}
// read CommandLine
auto pCommandLine = (UNICODE_STRING_WOW64*)(pp + CommandLineOffset);
cmdLine = (PWSTR) new char[pCommandLine->MaximumLength];
err = read(m_handle, pCommandLine->Buffer, cmdLine, pCommandLine->MaximumLength, NULL);
if (err != 0) {
CloseHandle(m_handle);
return false;
}
} else {
// we're running as a 32-bit process in a 32-bit OS, or as a 64-bit process in a 64-bit OS
PROCESS_BASIC_INFORMATION pbi{};
// get process information
auto query = (_NtQueryInformationProcess)GetProcAddress(GetModuleHandleA("ntdll.dll"), "NtQueryInformationProcess");
err = query(m_handle, 0, &pbi, sizeof(pbi), NULL);
if (err != 0) {
CloseHandle(m_handle);
return false;
}
// read PEB
if (!ReadProcessMemory(m_handle, pbi.PebBaseAddress, peb, pebSize, NULL)) {
CloseHandle(m_handle);
return false;
}
// read ProcessParameters
auto parameters = (PBYTE*)*(LPVOID*)(peb + ProcessParametersOffset); // address in remote process adress space
if (!ReadProcessMemory(m_handle, parameters, pp, ppSize, NULL)) {
CloseHandle(m_handle);
return false;
}
// read CommandLine
auto pCommandLine = (UNICODE_STRING*)(pp + CommandLineOffset);
cmdLine = (PWSTR) new char[pCommandLine->MaximumLength];
if (!ReadProcessMemory(m_handle, pCommandLine->Buffer, cmdLine, pCommandLine->MaximumLength, NULL)) {
CloseHandle(m_handle);
return false;
}
}
m_cmd = std::wstring(cmdLine);
delete[] cmdLine, peb, pp;
return true;
}
void ProcessMonitor::process_exited() {
auto lock = m_lock.LockExclusive();
// Don't restart if manually stopped
if (m_state != ProcessState::Stopped) {
m_state = ProcessState::Restarting;
DWORD exit_code;
GetExitCodeProcess(m_handle, &exit_code);
if (exit_code != 0) {
log("Process crashed (non-zero exit code)");
run_callbacks(m_on_proc_crash_callbacks);
} else {
log("Process exited with 0 exit-code");
run_callbacks(m_on_proc_normal_exit_callbacks);
}
m_handle = nullptr;
lock.Unlock();
start_process();
}
}
void ProcessMonitor::run_callbacks(const Callbacks& callbacks) {
// m_lock is assumed to be already locked
for (const auto& cb : callbacks) {
// First option:
// run callbacks in their own threads
// all exceptions from them are automatically handled
// std::async(cb);
// Second option:
// run callbacks in one thread
// if one callback blocks - other won't be executed
// if exceptions are thrown - program crashes.
cb();
// Third option:
// run callbacks wrapped into try/catch in one thread
// contradicts "fail early" philosophy
// try {
// cb();
// } catch(...) {
//
// }
}
}
void ProcessMonitor::ProcessExitedCallback(void* lpParam, unsigned char) {
// Forward call to instance member function.
// pm is guaranteed to be a valid pointer
// because of the unsubscribing from this callback
// when instance is destructing
auto pm = reinterpret_cast<ProcessMonitor*>(lpParam);
pm->process_exited();
}