forked from puppetlabs/nssm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
process.cpp
435 lines (356 loc) · 14.4 KB
/
process.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
#include "nssm.h"
extern imports_t imports;
HANDLE get_debug_token() {
long error;
HANDLE token;
if (! OpenThreadToken(GetCurrentThread(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, false, &token)) {
error = GetLastError();
if (error == ERROR_NO_TOKEN) {
(void) ImpersonateSelf(SecurityImpersonation);
(void) OpenThreadToken(GetCurrentThread(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, false, &token);
}
}
if (! token) return INVALID_HANDLE_VALUE;
TOKEN_PRIVILEGES privileges, old;
unsigned long size = sizeof(TOKEN_PRIVILEGES);
LUID luid;
if (! LookupPrivilegeValue(NULL, SE_DEBUG_NAME, &luid)) {
CloseHandle(token);
return INVALID_HANDLE_VALUE;
}
privileges.PrivilegeCount = 1;
privileges.Privileges[0].Luid = luid;
privileges.Privileges[0].Attributes = 0;
if (! AdjustTokenPrivileges(token, false, &privileges, size, &old, &size)) {
CloseHandle(token);
return INVALID_HANDLE_VALUE;
}
old.PrivilegeCount = 1;
old.Privileges[0].Luid = luid;
old.Privileges[0].Attributes |= SE_PRIVILEGE_ENABLED;
if (! AdjustTokenPrivileges(token, false, &old, size, NULL, NULL)) {
CloseHandle(token);
return INVALID_HANDLE_VALUE;
}
return token;
}
void service_kill_t(nssm_service_t *service, kill_t *k) {
if (! service) return;
if (! k) return;
ZeroMemory(k, sizeof(*k));
k->name = service->name;
k->process_handle = service->process_handle;
k->pid = service->pid;
k->exitcode = service->exitcode;
k->stop_method = service->stop_method;
k->kill_console_delay = service->kill_console_delay;
k->kill_window_delay = service->kill_window_delay;
k->kill_threads_delay = service->kill_threads_delay;
k->status_handle = service->status_handle;
k->status = &service->status;
k->creation_time = service->creation_time;
k->exit_time = service->exit_time;
}
int get_process_creation_time(HANDLE process_handle, FILETIME *ft) {
FILETIME creation_time, exit_time, kernel_time, user_time;
if (! GetProcessTimes(process_handle, &creation_time, &exit_time, &kernel_time, &user_time)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_GETPROCESSTIMES_FAILED, error_string(GetLastError()), 0);
return 1;
}
memmove(ft, &creation_time, sizeof(creation_time));
return 0;
}
int get_process_exit_time(HANDLE process_handle, FILETIME *ft) {
FILETIME creation_time, exit_time, kernel_time, user_time;
if (! GetProcessTimes(process_handle, &creation_time, &exit_time, &kernel_time, &user_time)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_GETPROCESSTIMES_FAILED, error_string(GetLastError()), 0);
return 1;
}
if (! (exit_time.dwLowDateTime || exit_time.dwHighDateTime)) return 2;
memmove(ft, &exit_time, sizeof(exit_time));
return 0;
}
int check_parent(kill_t *k, PROCESSENTRY32 *pe, unsigned long ppid) {
/* Check parent process ID matches. */
if (pe->th32ParentProcessID != ppid) return 1;
/*
Process IDs can be reused so do a sanity check by making sure the child
has been running for less time than the parent.
Though unlikely, it's possible that the parent exited and its process ID
was already reused, so we'll also compare against its exit time.
*/
HANDLE process_handle = OpenProcess(PROCESS_QUERY_INFORMATION, false, pe->th32ProcessID);
if (! process_handle) {
TCHAR pid_string[16];
_sntprintf_s(pid_string, _countof(pid_string), _TRUNCATE, _T("%lu"), pe->th32ProcessID);
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_OPENPROCESS_FAILED, pid_string, k->name, error_string(GetLastError()), 0);
return 2;
}
FILETIME ft;
if (get_process_creation_time(process_handle, &ft)) {
CloseHandle(process_handle);
return 3;
}
CloseHandle(process_handle);
/* Verify that the parent's creation time is not later. */
if (CompareFileTime(&k->creation_time, &ft) > 0) return 4;
/* Verify that the parent's exit time is not earlier. */
if (CompareFileTime(&k->exit_time, &ft) < 0) return 5;
return 0;
}
/* Send some window messages and hope the window respects one or more. */
int CALLBACK kill_window(HWND window, LPARAM arg) {
kill_t *k = (kill_t *) arg;
unsigned long pid;
if (! GetWindowThreadProcessId(window, &pid)) return 1;
if (pid != k->pid) return 1;
/* First try sending WM_CLOSE to request that the window close. */
k->signalled |= PostMessage(window, WM_CLOSE, k->exitcode, 0);
/*
Then tell the window that the user is logging off and it should exit
without worrying about saving any data.
*/
k->signalled |= PostMessage(window, WM_ENDSESSION, 1, ENDSESSION_CLOSEAPP | ENDSESSION_CRITICAL | ENDSESSION_LOGOFF);
return 1;
}
/*
Try to post a message to the message queues of threads associated with the
given process ID. Not all threads have message queues so there's no
guarantee of success, and we don't want to be left waiting for unsignalled
processes so this function returns only true if at least one thread was
successfully prodded.
*/
int kill_threads(nssm_service_t *service, kill_t *k) {
int ret = 0;
/* Get a snapshot of all threads in the system. */
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPTHREAD, 0);
if (snapshot == INVALID_HANDLE_VALUE) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_CREATETOOLHELP32SNAPSHOT_THREAD_FAILED, k->name, error_string(GetLastError()), 0);
return 0;
}
THREADENTRY32 te;
ZeroMemory(&te, sizeof(te));
te.dwSize = sizeof(te);
if (! Thread32First(snapshot, &te)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_THREAD_ENUMERATE_FAILED, k->name, error_string(GetLastError()), 0);
CloseHandle(snapshot);
return 0;
}
/* This thread belongs to the doomed process so signal it. */
if (te.th32OwnerProcessID == k->pid) {
ret |= PostThreadMessage(te.th32ThreadID, WM_QUIT, k->exitcode, 0);
}
while (true) {
/* Try to get the next thread. */
if (! Thread32Next(snapshot, &te)) {
unsigned long error = GetLastError();
if (error == ERROR_NO_MORE_FILES) break;
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_THREAD_ENUMERATE_FAILED, k->name, error_string(GetLastError()), 0);
CloseHandle(snapshot);
return ret;
}
if (te.th32OwnerProcessID == k->pid) {
ret |= PostThreadMessage(te.th32ThreadID, WM_QUIT, k->exitcode, 0);
}
}
CloseHandle(snapshot);
return ret;
}
int kill_threads(kill_t *k) {
return kill_threads(NULL, k);
}
/* Give the process a chance to die gracefully. */
int kill_process(nssm_service_t *service, kill_t *k) {
if (! k) return 1;
unsigned long ret;
if (GetExitCodeProcess(k->process_handle, &ret)) {
if (ret != STILL_ACTIVE) return 1;
}
/* Try to send a Control-C event to the console. */
if (k->stop_method & NSSM_STOP_METHOD_CONSOLE) {
if (! kill_console(k)) return 1;
}
/*
Try to post messages to the windows belonging to the given process ID.
If the process is a console application it won't have any windows so there's
no guarantee of success.
*/
if (k->stop_method & NSSM_STOP_METHOD_WINDOW) {
EnumWindows((WNDENUMPROC) kill_window, (LPARAM) k);
if (k->signalled) {
if (! await_single_handle(k->status_handle, k->status, k->process_handle, k->name, _T(__FUNCTION__), k->kill_window_delay)) return 1;
k->signalled = 0;
}
}
/*
Try to post messages to any thread message queues associated with the
process. Console applications might have them (but probably won't) so
there's still no guarantee of success.
*/
if (k->stop_method & NSSM_STOP_METHOD_THREADS) {
if (kill_threads(k)) {
if (! await_single_handle(k->status_handle, k->status, k->process_handle, k->name, _T(__FUNCTION__), k->kill_threads_delay)) return 1;
}
}
/* We tried being nice. Time for extreme prejudice. */
if (k->stop_method & NSSM_STOP_METHOD_TERMINATE) {
return TerminateProcess(k->process_handle, k->exitcode);
}
return 0;
}
int kill_process(kill_t *k) {
return kill_process(NULL, k);
}
/* Simulate a Control-C event to our console (shared with the app). */
int kill_console(nssm_service_t *service, kill_t *k) {
unsigned long ret;
if (! k) return 1;
/* Check we loaded AttachConsole(). */
if (! imports.AttachConsole) return 4;
/* Try to attach to the process's console. */
if (! imports.AttachConsole(k->pid)) {
ret = GetLastError();
switch (ret) {
case ERROR_INVALID_HANDLE:
/* The app doesn't have a console. */
return 1;
case ERROR_GEN_FAILURE:
/* The app already exited. */
return 2;
case ERROR_ACCESS_DENIED:
default:
/* We already have a console. */
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_ATTACHCONSOLE_FAILED, k->name, error_string(ret), 0);
return 3;
}
}
/* Ignore the event ourselves. */
ret = 0;
BOOL ignored = SetConsoleCtrlHandler(0, TRUE);
if (! ignored) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_SETCONSOLECTRLHANDLER_FAILED, k->name, error_string(GetLastError()), 0);
ret = 4;
}
/* Send the event. */
if (! ret) {
if (! GenerateConsoleCtrlEvent(CTRL_C_EVENT, 0)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_GENERATECONSOLECTRLEVENT_FAILED, k->name, error_string(GetLastError()), 0);
ret = 5;
}
}
/* Detach from the console. */
if (! FreeConsole()) {
log_event(EVENTLOG_WARNING_TYPE, NSSM_EVENT_FREECONSOLE_FAILED, k->name, error_string(GetLastError()), 0);
}
/* Wait for process to exit. */
if (await_single_handle(k->status_handle, k->status, k->process_handle, k->name, _T(__FUNCTION__), k->kill_console_delay)) ret = 6;
/* Remove our handler. */
if (ignored && ! SetConsoleCtrlHandler(0, FALSE)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_SETCONSOLECTRLHANDLER_FAILED, k->name, error_string(GetLastError()), 0);
}
return ret;
}
int kill_console(kill_t *k) {
return kill_console(NULL, k);
}
void walk_process_tree(nssm_service_t *service, walk_function_t fn, kill_t *k, unsigned long ppid) {
if (! k) return;
/* Shouldn't happen unless the service failed to start. */
if (! k->pid) return; /* XXX: needed? */
unsigned long pid = k->pid;
unsigned long depth = k->depth;
TCHAR pid_string[16], code[16];
_sntprintf_s(pid_string, _countof(pid_string), _TRUNCATE, _T("%lu"), pid);
_sntprintf_s(code, _countof(code), _TRUNCATE, _T("%lu"), k->exitcode);
if (fn == kill_process) log_event(EVENTLOG_INFORMATION_TYPE, NSSM_EVENT_KILLING, k->name, pid_string, code, 0);
/* We will need a process handle in order to call TerminateProcess() later. */
HANDLE process_handle = OpenProcess(SYNCHRONIZE | PROCESS_QUERY_INFORMATION | PROCESS_VM_READ | PROCESS_TERMINATE, false, pid);
if (process_handle) {
/* Kill this process first, then its descendents. */
TCHAR ppid_string[16];
_sntprintf_s(ppid_string, _countof(ppid_string), _TRUNCATE, _T("%lu"), ppid);
if (fn == kill_process) log_event(EVENTLOG_INFORMATION_TYPE, NSSM_EVENT_KILL_PROCESS_TREE, pid_string, ppid_string, k->name, 0);
k->process_handle = process_handle; /* XXX: open directly? */
if (! fn(service, k)) {
/* Maybe it already died. */
unsigned long ret;
if (! GetExitCodeProcess(process_handle, &ret) || ret == STILL_ACTIVE) {
if (k->stop_method & NSSM_STOP_METHOD_TERMINATE) log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_TERMINATEPROCESS_FAILED, pid_string, k->name, error_string(GetLastError()), 0);
else log_event(EVENTLOG_WARNING_TYPE, NSSM_EVENT_PROCESS_STILL_ACTIVE, k->name, pid_string, NSSM, NSSM_REG_STOP_METHOD_SKIP, 0);
}
}
CloseHandle(process_handle);
}
else log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_OPENPROCESS_FAILED, pid_string, k->name, error_string(GetLastError()), 0);
/* Get a snapshot of all processes in the system. */
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (snapshot == INVALID_HANDLE_VALUE) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_CREATETOOLHELP32SNAPSHOT_PROCESS_FAILED, k->name, error_string(GetLastError()), 0);
return;
}
PROCESSENTRY32 pe;
ZeroMemory(&pe, sizeof(pe));
pe.dwSize = sizeof(pe);
if (! Process32First(snapshot, &pe)) {
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_PROCESS_ENUMERATE_FAILED, k->name, error_string(GetLastError()), 0);
CloseHandle(snapshot);
return;
}
/* This is a child of the doomed process so kill it. */
k->depth++;
if (! check_parent(k, &pe, pid)) {
k->pid = pe.th32ProcessID;
walk_process_tree(service, fn, k, ppid);
}
k->pid = pid;
while (true) {
/* Try to get the next process. */
if (! Process32Next(snapshot, &pe)) {
unsigned long ret = GetLastError();
if (ret == ERROR_NO_MORE_FILES) break;
log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_PROCESS_ENUMERATE_FAILED, k->name, error_string(GetLastError()), 0);
CloseHandle(snapshot);
k->depth = depth;
return;
}
if (! check_parent(k, &pe, pid)) {
k->pid = pe.th32ProcessID;
walk_process_tree(service, fn, k, ppid);
}
k->pid = pid;
}
k->depth = depth;
CloseHandle(snapshot);
}
void kill_process_tree(kill_t *k, unsigned long ppid) {
return walk_process_tree(NULL, kill_process, k, ppid);
}
int print_process(nssm_service_t *service, kill_t *k) {
TCHAR exe[EXE_LENGTH];
TCHAR *buffer = 0;
if (k->depth) {
buffer = (TCHAR *) HeapAlloc(GetProcessHeap(), 0, (k->depth + 1) * sizeof(TCHAR));
if (buffer) {
unsigned long i;
for (i = 0; i < k->depth; i++) buffer[i] = _T(' ');
buffer[i] = _T('\0');
}
}
unsigned long size = _countof(exe);
if (! imports.QueryFullProcessImageName || ! imports.QueryFullProcessImageName(k->process_handle, 0, exe, &size)) {
/*
Fall back to GetModuleFileNameEx(), which won't work for WOW64 processes.
*/
if (! GetModuleFileNameEx(k->process_handle, NULL, exe, _countof(exe))) {
long error = GetLastError();
if (error == ERROR_PARTIAL_COPY) _sntprintf_s(exe, _countof(exe), _TRUNCATE, _T("[WOW64]"));
else _sntprintf_s(exe, _countof(exe), _TRUNCATE, _T("???"));
}
}
_tprintf(_T("% 8lu %s%s\n"), k->pid, buffer ? buffer : _T(""), exe);
if (buffer) HeapFree(GetProcessHeap(), 0, buffer);
return 1;
}
int print_process(kill_t *k) {
return print_process(NULL, k);
}