How to debug the entry-point of fork-exec process? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:06:19Zhttp://stackoverflow.com/feeds/question/377195http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/377195/how-to-debug-the-entry-point-of-fork-exec-process6How to debug the entry-point of fork-exec process?Ionut Anghelcovici2008-12-18T08:26:01Z2009-03-23T13:29:49Z
<p>I have a C linux application (A) that spawns another process (P) when it is started. When I want to debug P I start A as usual and I connect with ddd/gdb to P.</p>
<p>Problems appear when I want to debug the entry-point (start of main) of P. If I follow the usual approach when I connect the debugger to P is already to late. The solution I've found was to insert a sleep at the begining of the main of P so I have time to connect with gdb but this is not a very elegant solution.</p>
<p>I've also tried using asm("int $3") but it doesn't seems to work.</p>
<p>Do you have any idea how I could solve this problem? (preferable without altering the code of A or P)</p>
http://stackoverflow.com/questions/377195/how-to-debug-the-entry-point-of-fork-exec-process/377252#3772520Answer by codelogic for How to debug the entry-point of fork-exec process?codelogic2008-12-18T08:51:03Z2008-12-18T08:51:03Z<p>You should be able to do this by making use of gdb's remote debugging features, specifically <code>gdbserver</code>. In effect, launch (P) using <code>gdbserver</code>. These links have more detailed info:</p>
<ul>
<li><a href="http://davis.lbl.gov/Manuals/GDB/gdb_17.html" rel="nofollow">Using gdbserver</a></li>
<li><a href="http://sources.redhat.com/gdb/onlinedocs/gdb_18.html" rel="nofollow">GDB Remote Debugging</a></li>
</ul>
http://stackoverflow.com/questions/377195/how-to-debug-the-entry-point-of-fork-exec-process/377295#37729510Answer by Nathan Fellman for How to debug the entry-point of fork-exec process?Nathan Fellman2008-12-18T09:07:49Z2009-03-23T13:29:49Z<p>You should use this option:</p>
<pre><code>set follow-fork-mode</code> <i>mode</i></pre>
<p>Where <em>mode</em> is one of <code>parent</code>, <code>child</code> or <code>ask</code>.</p>
<p>To follow the parent (this is the default) use:</p>
<pre><code>set follow-fork mode parent
</code></pre>
<p>To follow the child:</p>
<pre><code>set follow-fork mode child
</code></pre>
<p>To have the debugger ask you each time:</p>
<pre><code>set follow-fork mode ask
</code></pre>
<p>So basically you'd start out connecting gdb to A, then set gdb to follow the child, and then when A spawns P, gdb will connect to P and detach from A.</p>