Are there any good books or online resources dealing with writing your own debugger? I can't seem to find any. The platform I would prefer would be windows or linux.
feedback
|
closed as not constructive by Tim Post♦ Oct 3 '11 at 16:31
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
It's an esoteric subject, and it's often platform-dependent, hence the paucity of general resources on it. Often platform "internals" books will cover some debugger stuff. Try "Windows Internals" or "Mac OS X internals" for general ideas on hooks in the OS. At the bottom end, the CPU itself will often offer some level of support for debugging, usually in the form of a software interrupt and a no-op instruction (both of which are present for other reasons, too) which enable debuggers to rewrite and manipulate running code with breakpoints and etc. The kernel usually then must include some support for these behaviors. The kernel itself then will export some sort of debugger interface, which allows certain privileged processes to "attach" to another running process. The level of explicit intervention that the debugger process can do depends on what the kernel exports, but it can often then go access that process's memory, and etc. UNIX variants have a "ptrace" (process trace) facility that exposes a reasonably high level of debuggability in a process. Here is a link showing some of the Windows debug API available to you. That's the process side; as far as building the "application side" of the debugger, you'll probably be in charge of using symbol data to map actual source code to the machine instructions that are generated at compile time (and are what you can actually inspect inside the process), and present a nice UI that does the right things with the control flow. Thanks to a commenter below, here's a detailed look (PDF) at GDB's internals. | |||||||||
feedback
|