Programmable debugger
Go to file
2019-03-29 01:59:53 -07:00
drgn Rename kernel helpers to linux 2019-03-29 01:59:53 -07:00
examples/linux Rename kernel helpers to linux 2019-03-29 01:59:53 -07:00
scripts Support userspace program core dumps 2018-07-09 22:34:03 -07:00
tests Make cast() a function instead of a method 2019-02-22 10:34:53 -08:00
.gitignore Add Python coverage output to .gitignore 2018-07-16 19:42:32 -07:00
COPYING License under GPL-3.0 or later 2018-04-15 15:03:33 -07:00
README.md Rename kernel helpers to linux 2019-03-29 01:59:53 -07:00
setup.py type: add new CompoundType.members() 2018-07-15 08:08:42 -07:00

drgn

drgn is a debugger-as-a-library. It can be used to write Python programs which use the types and data of the program being debugged.

drgn was developed for debugging the Linux kernel (as an alternative to the crash utility), but it can also debug userspace programs written in C. C++ support is planned.

Installation

drgn is built with setuptools. Build it like so:

$ python3 setup.py build_ext -i

Then, you can either run it locally:

$ python3 -m drgn --help

Or install it and run it:

$ sudo python3 setup.py install
$ drgn --help

Or, pick your favorite Python package installation method.

Getting Started

drgn can be used as a command line tool or as a library. For the latter, see the drgn.lib module. The rest of this section describes using the CLI; the CLI is basically a wrapper around the library which provides a nice interface, including history and tab completion.

To debug the running kernel, run sudo drgn -k (or sudo python3 -m drgn -k if running locally). To debug a running program, run sudo drgn -p $PID. To debug a core dump (either a kernel vmcore or a userspace core dump), run drgn -c $PATH.

The drgn CLI has an interactive mode and a script mode. If no arguments are passed, drgn runs in interactive mode; otherwise, the given script is run with the given arguments. The drgn CLI is actually just the Python interpreter initialized with a prog object representing the debugged program:

$ sudo drgn -k
>>> prog.type('struct list_head')
struct list_head {
        struct list_head *next;
        struct list_head *prev;
}
>>> prog['modules']
(struct list_head){
        .next = (struct list_head *)0xffffffffc0b91048,
        .prev = (struct list_head *)0xffffffffc0066148,
}
>>> prog['init_task'].pid
(pid_t)0
>>> from drgn.helpers.linux import list_for_each_entry
>>> for mod in list_for_each_entry('struct module', prog['modules'].address_of_(), 'list'):
...    if mod.refcnt.counter > 10:
...        print(mod.name)
...
(char [56])"snd"
(char [56])"evdev"
(char [56])"i915"

See the in-program documentation in interactive mode with help(drgn) for more information. See examples and drgn/helpers for some examples.

License

Copyright 2018 - Omar Sandoval

Licensed under the GPLv3 or later

Acknowledgements

drgn is named after this because dragons eat dwarves.