Skip to content

Commit c4ba4e3

Browse files
committed
Kill also children of the process to be killed via Ctrl+C
When a Win32 process needs to be terminated, the child processes it spawned off also need to be terminated. This is no issue for MSys2 processes because MSys2 emulates Unix' signal system accurately, both for the process sending the kill signal and the process receiving it. Win32 processes do not have such a signal handler, though, instead MSys2 shuts them down via `TerminateProcess()`. As `TerminateProcess()` leaves the Win32 process no chance to do anything, and also does not care about child processes, we have to grow a different solution. For console processes, it should be enough to call `GenerateConsoleCtrlEvent()`, but sadly even then this seems to handle child processes correctly only on Windows 8 but not Windows 7. So let's identify the tree of processes spawned directly and indirectly from the process to be killed, and kill them all. To do so, we do not use the NtQueryInformationProcess() function because 1) it is marked internal and subject to change at any time of Microsoft's choosing, and 2) it does not even officially report the child/parent relationship (the pid of the parent process is stored in the `Reserved3` slot of the `PROCESS_BASIC_INFORMATION` structure). Instead, we resort to the Toolhelp32 API -- which happily also works on 64-bit Windows -- to enumerate the process tree and reconstruct the process tree rooted in the process we intend to kill. This fixes the bug where interrupting `git clone https://...` would send the spawned-off `git remote-https` process into the background instead of interrupting it, i.e. the clone would continue and its progress would be reported mercilessly to the console window without the user being able to do anything about it (short of firing up the task manager and killing the appropriate task manually). Note that this special-handling is only necessary when *MSys* handles the Ctrl+C event, e.g. when interrupting a process started from within mintty or any other non-cmd-based terminal emulator. If the process was started from within `cmd.exe`'s terminal window, child processes are already killed appropriately upon Ctrl+C. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent eb1d093 commit c4ba4e3

File tree

3 files changed

+62
-1
lines changed

3 files changed

+62
-1
lines changed

winsup/cygwin/exceptions.cc

+4-1
Original file line numberDiff line numberDiff line change
@@ -1479,7 +1479,10 @@ sigpacket::process ()
14791479
if (have_execed)
14801480
{
14811481
sigproc_printf ("terminating captive process");
1482-
TerminateProcess (ch_spawn, sigExeced = si.si_signo);
1482+
if ((sigExeced = si.si_signo) == SIGINT)
1483+
kill_process_tree (GetProcessId (ch_spawn), sigExeced = si.si_signo);
1484+
else
1485+
TerminateProcess (ch_spawn, sigExeced = si.si_signo);
14831486
}
14841487
/* Dispatch to the appropriate function. */
14851488
sigproc_printf ("signal %d, signal handler %p", si.si_signo, handler);

winsup/cygwin/include/cygwin/signal.h

+1
Original file line numberDiff line numberDiff line change
@@ -400,6 +400,7 @@ extern const char *sys_siglist[];
400400
extern const char __declspec(dllimport) *sys_sigabbrev[];
401401
extern const char __declspec(dllimport) *sys_siglist[];
402402
#endif
403+
void kill_process_tree(pid_t pid, int sig);
403404

404405
#ifdef __cplusplus
405406
}

winsup/cygwin/signal.cc

+57
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Cygwin license. Please consult the file "CYGWIN_LICENSE" for
1313
details. */
1414

1515
#include "winsup.h"
16+
#include <tlhelp32.h>
1617
#include <stdlib.h>
1718
#include <sys/cygwin.h>
1819
#include "pinfo.h"
@@ -361,6 +362,62 @@ killpg (pid_t pgrp, int sig)
361362
return kill (-pgrp, sig);
362363
}
363364

365+
/**
366+
* Terminates the process corresponding to the process ID and all of its
367+
* directly and indirectly spawned subprocesses.
368+
*/
369+
extern "C" void
370+
kill_process_tree(pid_t pid, int sig)
371+
{
372+
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
373+
PROCESSENTRY32 entry;
374+
DWORD pids[16384];
375+
int max_len = sizeof(pids) / sizeof(*pids), i, len;
376+
377+
pids[0] = (DWORD) pid;
378+
len = 1;
379+
380+
/*
381+
* Even if Process32First()/Process32Next() seem to traverse the
382+
* processes in topological order (i.e. parent processes before
383+
* child processes), there is nothing in the Win32 API documentation
384+
* suggesting that this is guaranteed.
385+
*
386+
* Therefore, run through them at least twice and stop when no more
387+
* process IDs were added to the list.
388+
*/
389+
for (;;) {
390+
int orig_len = len;
391+
392+
memset(&entry, 0, sizeof(entry));
393+
entry.dwSize = sizeof(entry);
394+
395+
if (!Process32First(snapshot, &entry))
396+
break;
397+
398+
do {
399+
for (i = len - 1; i >= 0; i--) {
400+
if (pids[i] == entry.th32ProcessID)
401+
break;
402+
if (pids[i] == entry.th32ParentProcessID)
403+
pids[len++] = entry.th32ProcessID;
404+
}
405+
} while (len < max_len && Process32Next(snapshot, &entry));
406+
407+
if (orig_len == len || len >= max_len)
408+
break;
409+
}
410+
411+
for (i = len - 1; i >= 0; i--) {
412+
HANDLE process = OpenProcess(PROCESS_TERMINATE, FALSE, pids[i]);
413+
414+
if (process) {
415+
TerminateProcess(process, sig << 8);
416+
CloseHandle(process);
417+
}
418+
}
419+
}
420+
364421
extern "C" void
365422
abort (void)
366423
{

0 commit comments

Comments
 (0)