This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RFC: gdbserver crash on win XP during watchpoint removal


On 10/14/2014 07:46 PM, Joel Brobecker wrote:
> Hello,
> 
> I started investigating an issue that seems to only show up on Windows
> XP, and only when debugging via GDBserver. I used the following code,
> which matches the code in testsuite/gdb.ada/int_deref:
> 
>     with Pck;
> 
>     procedure Foo is
>     begin
>        Pck.Watch := Pck.Watch + 1;
>     end Foo;
> 
> The test just breaks on line 5, just before the increment, inserts
> a watchhpoint on it, and then continues:
> 
>     (gdb) b foo.adb:5
>     Breakpoint 1 at 0x4017c2: file foo.adb, line 5.
>     (gdb) cont
>     Continuing.
> 
>     Breakpoint 1, foo () at foo.adb:5
>     5          Pck.Watch := Pck.Watch + 1;
>     (gdb) watch watch
>     Hardware watchpoint 2: watch
>     (gdb) c
>     Continuing.
>     Remote communication error.  Target disconnected.: Invalid argument.
> 
> The immediate cause for the communication error is easily explained,
> gdbserver crashes due to a failed assertion:
> 
>     x86_remove_aligned_watchpoint: Assertion `state->dr_control_mirror == 0' failed.
> 
> I think the assertion might be invalid, in this case. Turning debug
> register traces on, I see:

dr_control_mirror is never supposed to be updated from the target.  It's a
one way street - the state we _want_ dr7 to have on next resume.  Where is this
0x400 coming from then?

Also, what's different in native GDB?  This debug registers code is
shared between GDB and GDBserver now.

Thanks,
Pedro Alves

> 
> insert_watchpoint (addr=000000000041c010, len=4, type=data-write):
>         CONTROL (DR7): 00000000000d0101          STATUS (DR6): 0000000000000000
>         DR0: addr=0x0041c010, ref.count=1  DR1: addr=0x00000000, ref.count=0
>         DR2: addr=0x00000000, ref.count=0  DR3: addr=0x00000000, ref.count=0
> stopped_data_addr:
>         CONTROL (DR7): 00000000000d0501          STATUS (DR6): 00000000ffff4ff0
>         DR0: addr=0x0041c010, ref.count=1  DR1: addr=0x00000000, ref.count=0
>         DR2: addr=0x00000000, ref.count=0  DR3: addr=0x00000000, ref.count=0
> watchpoint_hit (addr=000000000041c010, len=-1, type=data-write):
>         CONTROL (DR7): 00000000000d0501          STATUS (DR6): 00000000ffff4ff1
>         DR0: addr=0x0041c010, ref.count=1  DR1: addr=0x00000000, ref.count=0
>         DR2: addr=0x00000000, ref.count=0  DR3: addr=0x00000000, ref.count=0
> watchpoint_hit (addr=000000000041c010, len=-1, type=data-write):
>         CONTROL (DR7): 00000000000d0501          STATUS (DR6): 00000000ffff4ff1
>         DR0: addr=0x0041c010, ref.count=1  DR1: addr=0x00000000, ref.count=0
>         DR2: addr=0x00000000, ref.count=0  DR3: addr=0x00000000, ref.count=0
> 
> What's interesting is the value of DR7, which suddenly gets an extra
> 0x400. So when we unset the bits we set before, we still that that
> extra bit on the 10th bit.
> 
> But looking at Intel documentation I have (IA-32 Intel Architecture
> Software Developer's Manual - Volume 3), it says that bits 12-11-10
> are 001.
> 
> I'm tempted to either clear those bits when reading the register value,
> or else to mask those bits in the assertion. I feel that masking
> those bits would be cleaner, since we'd carry a register value which
> better matches reality. But the fact that this is working elsewhere
> makes me wonder if we might actually be relying elsewhere on those bits
> being zero, or maybe at least assuming that they are.
> 
> Any thoughts before I send a patch?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]