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.

link|improve this question

If you're thinking of something specific, you should mention the platform in the question or tags. – quixoto Jun 12 '11 at 20:03
@quixoto, ty updated – Adam Jun 12 '11 at 20:11
Do you mean a complete debugger, or an interface to an existing one like gdb? – nbt Jun 12 '11 at 20:42
@Neil, a complete debugger. – Adam Jun 12 '11 at 21:03
1  
You might want to look at codeproject.com/KB/system/writing_debugger_1.aspx and codeproject.com/KB/system/writing_debugger_2.aspx as a starting point. Very windows specific though. – nbt Jun 12 '11 at 21:12
show 1 more comment
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.

1 Answer

up vote 4 down vote accepted

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.

link|improve this answer
1  
So it would appear there is no 'dragon book' to debuggers. That sucks, looks like a have a lot of reading ahead. – Adam Jun 12 '11 at 21:02
@Adam: Yeah, there's no canonical reference. Working on debuggers is more like a craft apprenticeship you need to do by learning from the old masters. That said, they are a phenomenal, mind-blowing exercise in understanding how software (and hardware) works. Good luck. – quixoto Jun 13 '11 at 14:24
feedback

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