<div dir="ltr">Hi all,<div><br></div><div>In source/Host/common/Host.cpp, there is a posix process spawning method called LaunchProcessPosixSpawn.  On my Linux system, it is used to start the target process in lldb-gdbserver.  It looks like FreeBSD uses it as well.  Most of the Platform launchers appear to funnel to it as well (via Host::LaunchProcess ()).</div>
<div><br></div><div>There is a section of code in LaunchProcessPosixSpawn that masks all signals for the child process that is started up:</div><div><br></div><div>::posix_spawnattr_setsigmask(&attr, &all_signals)</div>
<div><br></div><div>When that is set, it seems to be preventing the child from receiving everything except the non-blockable signals.  This has the effect of (at the very least) blocking SIGINT (i.e. ^C from the keyboard) and SIGTERM (standard unadorned "kill pid").  This appears to be the cause of a few bugs as I try to get lldb-gdbserver working on Linux.  For example:</div>
<div><br></div><div>1. hitting ^C on an lldb-gdbserver that spawned a debuggee target process would kill the lldb-gdbserver, but not the debuggee target, which continues to run.</div><div><br></div><div>2. sending a SIGTERM (kill {debuggee pid}) while it is getting debugged and running is ignored.</div>
<div><br></div><div>3. sending a SIGTERM to the debuggee after issue #1 (where lldb-gdbserver is no longer running) is ignored.</div><div><br></div><div>4. killing lldb-gdbserver from an attached lldb that shuts down and kills the remote does indeed kill lldb-gebserver, but does not kill the target process.</div>
<div><br></div><div>(Of course sending a 'kill -9 {debuggee pid}' works fine to kill the target process).</div><div><br></div><div><br></div><div>I've modified this method locally to not mask any signals:</div>
<div><br></div><div><div>::posix_spawnattr_setsigmask (&attr, &no_signals)</div></div><div><br></div><div>This seems to address all the problems I had above for lldb-gdbserver as signals propagate properly, and the target responds correctly to signals sent when the parent dies, etc.</div>
<div><br></div><div>I've also run all the existing tests (on my system, that amounts to 275 tests that really run), and those are all passing.</div><div><br></div><div>However, given that so much code flows through here (or at least appears to) that is not directly related to the lldb-gdbserver --- i.e. local linux/FreeBSD debugging --- I'm highly skeptical that this is the right fix.  I did try using local debugging with lldb with my change in place, and that seemed to work fine.  But I'm thinking that perhaps the signal blocking was intended and that behavior is needed in some cases that (perhaps) are not covered by tests that run on Linux.</div>
<div><br></div><div>Any thoughts on why all the signals were getting masked on process spawning?  Does that change look okay as is?</div><div><br></div><div>Thanks!</div><div><br></div><div>Sincerely,</div><div>Todd Fiala</div>
</div>