I am writing application that uses ptrace's singlestepping. In general this works, but I have one question. This is what I do:

  • from waitpid I know that traced process has stopped because signal was sent.
  • if signal is SIGTRAP ensure this is not any special case, like PTRACE_EVENT_*, and so on ...
  • check if this was caused by singlestep or hw breakpoint ( either by checking DR_STATUS for DR_SINGLESTEP / DR_TRAPx, or check siginfo's si.code for TRAP_TRACE / TRAP_HWBKPT )
  • and if it was NOT singlestep nor breakpoint assume that this signal should be delivered to the traced process.

And this works, until traced program uses syscall during singlestep.
When it does so, SIGTRAP is to be delivered, and checking for singlestep / hw breakpoint gives answer that this is neither of these, so SIGTRAP is delivered. And this is wrong, because traced process itself doesn't do anything which should result in SIGTRAP, so this one should not be delivered.

What I've checked for now:
- This doesn't happen when process is not traced (of course)
- This doesn't happen when process is traced but not singlestepping
- When this do happen, DR_TRAPx and DR_SINGLESTEP are not set
- When this do happen siginfo's si.code == TRAP_BKPT ( not TRAP_HWBKPT like for dr breakpoint )
- It happens when 32-bit app is traced by 32-bit tracer, 32-bit traced by 64-bit app tracer, and 64-bit traced by 64-bit tracer.

My question is: why do I get this SIGTRAP?
( and where this exacly comes from / can TRAP_BKPT occur in yet other case?)

link|improve this question
Does it happen for every system call? Are you setting any options via PTRACE_SETOPTIONS? If you can isolate the ptrace code, it might help diagnose the problem. – 80x25 Nov 2 '11 at 0:13
Yes, every system call. The only option set is PTRACE_O_TRACEEXIT. I'll try isolate it, but still this will be a lot of code (recognizing ptrace events, stops, checking debug registers etc) – Rafał W. Nov 3 '11 at 20:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.