<p></p>
<p>There is a problem when mutual debugging of 2 processes can stuck in unkillable stopped state.</p>
<p>When one process, let's say "A", is tracing the another process "B", and the process "B" is trying to attach to the process "A", then both of them are getting stuck in the "t+" state. And they are ignoring all of the signals including the SIGKILL, so it is not possible to terminate them without a reboot.</p>
<p>To reproduce:</p>
<ol>
<li>Open two terminals.</li>
<li>Attach with <code>strace -p ...</code> from the first terminal to the shell (bash) of the second terminal.</li>
<li>In the second terminal run <code>exec strace -p ...</code> to attach to the PID of the first strace.</li>
</ol>
<p>Then you'll see that the second strace is hanging without any output. And the first strace will output following and hang too:</p>
<pre><code>ptrace(PTRACE_SEIZE, 11795, NULL, PTRACE_O_TRACESYSGOOD|PTRACE_O_TRACEEXEC|PTRACE_O_TRACEEXIT
</code></pre>
<p>(The 11795 is the PID of the first strace itself.)</p>
<p>And in the process list you will see following:</p>
<pre><code>ps awux | grep strace
user   11776  0.0  0.0  24752  2248 pts/3    t+   13:53   0:00 strace -p 11795
user   11795  0.0  0.0  24752  3888 pts/1    t+   13:54   0:00 strace -p 11776
</code></pre>
<p>I've sent a letter to linux-trace-devel mailing list. But the strace itself is able to forbid to attaching to itself, at least when it sees such an attempt.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/strace/strace/issues/178">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AOVBTR4IBPF4LGFBLSPM6DLTGCPVLANCNFSM4Z73TGPQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AOVBTR7DEQFYZ2OY7CH3MU3TGCPVLA5CNFSM4Z73TGP2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4MSHAMXQ.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/strace/strace/issues/178",
"url": "https://github.com/strace/strace/issues/178",
"name": "View Issue"
},
"description": "View this Issue on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>