When you execute a single step operation using ptrace does the process do one "line" of code or does it do one line of assembly instead. If it's the former case is there a way to step a process in linux by one processor instruction only?

I mean to do this within the kernel but the GDB source is kind of large and it's hard to track exactly what it's doing to do it's ASM singlestepping. I want to single step a process it's just that I'm not sure what the exact behavior of ptrace's single step is (just 1 instruction or more?)

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

It does one line of assembly. You can verify this by opening two sessions, in one session you can have your program running which displays the contents of IP register( EIP in 32 bit and RIP in 64 bit) and in other run objdump using the following command - objdump -d -j.code | less and verify

link|improve this answer
feedback

Use gdb: http://condor.depaul.edu/glancast/373class/docs/gdb.html#Running_the_Program_being_Debugged

If you have access to the source code or debug symbols, you can step one line at a time. If you don't, you'll have to step one instruction at a time.

link|improve this answer
For some reason my edit didn't stick I mean to do this inside the linux kernel, I'm not sure if ptrace_request(SINGLESTEP...) will do exactly what I want. – Jesus Ramos Sep 28 '11 at 4:16
Are you saying you intend to single-step the kernel? Or that you want the kernel to do the single-stepping of a process? – Mahmoud Al-Qudsi Sep 28 '11 at 4:38
Of a process I already know you can single step the kernel with KGDB modules. – Jesus Ramos Sep 28 '11 at 5:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.