X-Git-Url: http://git.iain.cx/?a=blobdiff_plain;f=process.cpp;h=b63cc4134276e38acd8aceb9e31c0ca56eaeb42c;hb=9884e231415258809dfb1ef117b6bc9a5b011514;hp=97b6e38421480d5176d791648c1afe5c33f514a5;hpb=293f2a969fcda19b59436269cba68d748270de3e;p=nssm.git diff --git a/process.cpp b/process.cpp index 97b6e38..b63cc41 100644 --- a/process.cpp +++ b/process.cpp @@ -1,5 +1,66 @@ #include "nssm.h" +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; + } + + memmove(ft, &exit_time, sizeof(exit_time)); + + return 0; +} + +int check_parent(char *service_name, PROCESSENTRY32 *pe, unsigned long ppid, FILETIME *pft, FILETIME *exit_time) { + /* 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) { + char pid_string[16]; + _snprintf(pid_string, sizeof(pid_string), "%d", pe->th32ProcessID); + log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_OPENPROCESS_FAILED, pid_string, service_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(pft, &ft) > 0) return 4; + + /* Verify that the parent's exit time is not earlier. */ + if (CompareFileTime(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; @@ -43,6 +104,7 @@ int kill_threads(char *service_name, kill_t *k) { if (! Thread32First(snapshot, &te)) { log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_THREAD_ENUMERATE_FAILED, service_name, error_string(GetLastError()), 0); + CloseHandle(snapshot); return 0; } @@ -57,6 +119,7 @@ int kill_threads(char *service_name, kill_t *k) { unsigned long error = GetLastError(); if (error == ERROR_NO_MORE_FILES) break; log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_THREAD_ENUMERATE_FAILED, service_name, error_string(GetLastError()), 0); + CloseHandle(snapshot); return ret; } @@ -65,6 +128,8 @@ int kill_threads(char *service_name, kill_t *k) { } } + CloseHandle(snapshot); + return ret; } @@ -72,6 +137,12 @@ int kill_threads(char *service_name, kill_t *k) { int kill_process(char *service_name, HANDLE process_handle, unsigned long pid, unsigned long exitcode) { /* Shouldn't happen. */ if (! pid) return 1; + if (! process_handle) return 1; + + unsigned long ret; + if (GetExitCodeProcess(process_handle, &ret)) { + if (ret != STILL_ACTIVE) return 1; + } kill_t k = { pid, exitcode, 0 }; @@ -98,7 +169,7 @@ int kill_process(char *service_name, HANDLE process_handle, unsigned long pid, u return TerminateProcess(process_handle, exitcode); } -void kill_process_tree(char *service_name, unsigned long pid, unsigned long exitcode, unsigned long ppid) { +void kill_process_tree(char *service_name, unsigned long pid, unsigned long exitcode, unsigned long ppid, FILETIME *parent_creation_time, FILETIME *parent_exit_time) { /* Shouldn't happen unless the service failed to start. */ if (! pid) return; @@ -120,11 +191,12 @@ void kill_process_tree(char *service_name, unsigned long pid, unsigned long exit if (! Process32First(snapshot, &pe)) { log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_PROCESS_ENUMERATE_FAILED, service_name, error_string(GetLastError()), 0); + CloseHandle(snapshot); return; } /* This is a child of the doomed process so kill it. */ - if (pe.th32ParentProcessID == pid) kill_process_tree(service_name, pe.th32ProcessID, exitcode, ppid); + if (! check_parent(service_name, &pe, pid, parent_creation_time, parent_exit_time)) kill_process_tree(service_name, pe.th32ProcessID, exitcode, ppid, parent_creation_time, parent_exit_time); while (true) { /* Try to get the next process. */ @@ -132,12 +204,15 @@ void kill_process_tree(char *service_name, unsigned long pid, unsigned long exit unsigned long ret = GetLastError(); if (ret == ERROR_NO_MORE_FILES) break; log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_PROCESS_ENUMERATE_FAILED, service_name, error_string(GetLastError()), 0); + CloseHandle(snapshot); return; } - if (pe.th32ParentProcessID == pid) kill_process_tree(service_name, pe.th32ProcessID, exitcode, ppid); + if (! check_parent(service_name, &pe, pid, parent_creation_time, parent_exit_time)) kill_process_tree(service_name, pe.th32ProcessID, exitcode, ppid, parent_creation_time, parent_exit_time); } + CloseHandle(snapshot); + /* 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) { @@ -151,7 +226,8 @@ void kill_process_tree(char *service_name, unsigned long pid, unsigned long exit if (! kill_process(service_name, process_handle, pid, exitcode)) { /* Maybe it already died. */ unsigned long ret; - if (! GetExitCodeProcess(process_handle, &ret)) log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_TERMINATEPROCESS_FAILED, pid_string, service_name, error_string(GetLastError()), 0); - return; + if (! GetExitCodeProcess(process_handle, &ret) || ret == STILL_ACTIVE) log_event(EVENTLOG_ERROR_TYPE, NSSM_EVENT_TERMINATEPROCESS_FAILED, pid_string, service_name, error_string(GetLastError()), 0); } + + CloseHandle(process_handle); }