This is the mail archive of the gdb@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: GDB library to insert and delete watchpoints


Aravinda wrote:
Hi,

Im working on a project that currently requires inserting and deleting
watchpoints to monitor buffer overruns. I was looking at the
gdb-internals documentation which talks about a gdb library that can
be used to do exactly this. But I couldnt find more info on this. Im
looking for a ready to use library to be used with a kernel module
that allows for modifying the debug registers. kindly point me to any
sources if it can be done.
It just so happens that CodeSourcery recently did this for a customer that was using a debugging stub that ran as one of several threads in the application. It does need its own driver to modify the debug registers, and the stub calls it once it has done the bit-twiddling on mirrors of the registers. While it works well enough to have one thread set the debug registers of a different thread in a Linux app, there is some fancy dancing to make this work in nonstop - with all the threads running at once, you can get nasty races all over the place. Unfortunately, this is all CodeSourcery proprietary code and intermingled with the customer's app to boot, so I can't send you a copy.

Stan


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