I was wondering what happens if from the kernel (Linux in this case) you call ptrace_request with PTRACE_SINGLESTEP in process context (system call, page fault, etc...). Will it single step the user space instruction or the kernel space instruction. I realize that ptrace can only single step user instructions which is why I'm curious as to the behavior that this would produce.

Just to provide a little more information, I am attempting to do so from a page fault handler (single step the instruction that faulted but change PTE so that the instruction goes through). I am wondering if this is even possible at all or if it would require another method to do so such as rescheduling the process to run, etc....

This comes up because the task_struct for the process (if preempted) will still point to the kernel space handler IIRC so would single stepping with ptrace bypass this and do the correct user space instruction or just not do it at all?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I don't fully understand what you mean by all this, PTRACE_SINGLESTEP is always called from kernel in user context: when you do your syscall ptrace(PTRACE_SINGLESTEP), you will end up in kernel context executing that function, which will behave as usually and make the process you are ptracing execute one instruction, no matter if you call it from the page fault handler. You won't be able to single step it while it is in kernel land as usual.

I recommend you take a look at arch/x86/kernel/ptrace.c to understand how the single step actually works. The single stepped instruction is actually emulated by the kernel, IIRC there is no hardware support for this.

link|improve this answer
feedback

To understand the answer to your question, you need to understand Intel hardware.

First we start with the simplest instruction (because SINGLE_STEP is to put the Intel CPU into single stepping mode, and returning back to the interrupt handler after executing one struction):

movl (eax), ebx

Following Intel's format, this means taking the values inside eax, treat it as a memory pointer, access the memory, get the 4 byte values and copy it to ebx.

This ONE assembly instruction - when executed in kernel vs user context will have DIFFERENT behavior/meaning.

If in kernel, the kernel's pagetable will be used to access the the memory, and copy the data to ebx. In a user process, the user's pagetable will be used (by MMU hardware by the way) to read the data from memory and copy to ebx. Identical values in eax, but with different values in CR3 register (meaning different process context), will trigger different parts of the memory to be read. So tracing userspace program in the kernel, is really ridiculous. Because u have to do a context switch (which involved the whole set of registers store and restoration operation), done before and after executing the user instruction - meaning 4 operations effectively.

As you can see, I have not reference any kernel functions API like you have mentioned it. Overall conceptual understanding comes first.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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