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?)