Re: [GIT PULL v4.5] Fix INT1 recursion with unregistered breakpoints

From: Jeff Merkey
Date: Mon Jan 11 2016 - 19:55:47 EST


On 1/11/16, Andy Lutomirski <luto@xxxxxxxxxxxxxx> wrote:
> On Mon, Jan 11, 2016 at 4:44 PM, Jeff Merkey <linux.mdb@xxxxxxxxx> wrote:
>> Hi Thomas,
>>
>> I agree with #2, we should clear the breakpoint. As for #1, if
>> there's an execute breakpoint it MUST be cleared or it will just fire
>> off again when it sees the iretd from the int1 exception handler. I
>> do use the breakpoint API Thomas, this showed up while debugging and
>> testing the API with "lazy debug register switching".
>>
>> So do you want me to expand the patch and clear the breakpoint? Just
>> give the word and I'll get busy and GIT -R- DONE.
>
> It seems to me that you're papering over some issue instead of fixing
> the root cause. If you're using the API, then either you're doing it
> wrong or the API is broken. Can you figure out which and fix it?
>
> --Andy
>

That's what I did, the API is broken, you can't trigger an int1
exception and not set the resume flag -- this is what clears the
exception, otherwise the hardware will just keep firing off the int1
exception until someone sets and loads the resume flag in the
processor.

I can try to explain this again, but the way the hardware works is:

INT1 -> call exception handler (execute breakpoint)
handler clears traps flag and sets resume flag
(Exception cleared)

if you don't set the resume flag then

INT1 -> call exeception handler
RF not set
iretd instruction
INT1 -> call exception handler
INT1 -> call exception handler
INT1 -> call exception handler
... forever ...

So the hardware just keep firing off at the same execution address and
not move forward. the resume flag tells the processor to step into
the next instruction in the pipeline. If never set, the instruction
pointer will never advance. This is how intel processors work.

Jeff