up vote 4 down vote favorite
1
share [g+] share [fb]

Any recommendations for a good cross-platform library for reading ELF file debug information in DWARF format? I'd like to read the DWARF debug info in a Python program.

link|improve this question

feedback

5 Answers

up vote 1 down vote accepted

There's a new kid on the block - pyelftools - a pure Python library for parsing the ELF and DWARF formats. Give it a try.

It aims to be feature-complete and is currently in active development, so any problems should be handled quickly and enthusiastically :-)

link|improve this answer
feedback

The concept of "ELF debug info" doesn't really exist: the ELF specification leaves the content of the .debug section deliberately unspecified.

Common debug formats are STAB and DWARF. A library to read DWARF is libdwarf.

link|improve this answer
Yes, quite right. DWARF is what I'm interested in. – Craig McQueen Jul 9 '09 at 2:28
1  
I updated the question accordingly. – Craig McQueen Jul 9 '09 at 2:31
Is libdwarf cross-platform, do you know? The page doesn't say, but seems to have an overall Unix flavour to it. – Craig McQueen Jul 14 '09 at 7:59
I haven't tried porting it. It seems that it has some Unix specificisms in it (e.g. in the darfdump executable); it's also based on libelf. However, porting it to a different system should be straight-forward. – Martin v. Löwis Jul 14 '09 at 12:11
1  
I successfully ported libdwarf to compile on windows with visual studio 2008. – Torleif Sep 23 '09 at 6:00
show 2 more comments
feedback

You might find useful informations here:

link|improve this answer
Thanks, I missed that other SO question, I guess because I wasn't searching for "DWARF". I'll update the title of this question. – Craig McQueen Jul 9 '09 at 2:29
feedback

You might be interested in the DWARF library from pydevtools:

>>> from devtools.dwarf import DWARF
>>> dwarf = DWARF('test/test')
>>> dwarf.get_loc_by_addr(0x8048475)
('/home/emilmont/Workspace/dbg/test/main.c', 36, 0)
>>> print dwarf
.debug_info
COMPILE_UNIT<header overall offset = 0>
<0><11> compile_unit
producer: GNU C 4.4.3
language: C89
name: a/test.c
comp_dir: /home/emilmont/Workspace/dbg/test
low_pc: 0x080483e4
high_pc: 0x08048410
stmt_list: 0
[...]
link|improve this answer
That's great to know. Couple of questions: 1) What platforms are supported (Windows, Linux)? 2) Can you put it on the PyPI? – Craig McQueen Sep 6 '10 at 0:28
It is on PyPI: pypi.python.org/pypi/BinTools/0.1.0 – emilmont Oct 31 '11 at 11:14
Great! The documentation doesn't mention supported platforms. Does it work on Windows? – Craig McQueen Nov 1 '11 at 20:52
I've had a look at it, and it doesn't read my ELF files (from GCC compiler targeting embedded ARM). I guess it's a partial implementation. Should I submit sample ELF files to you? – Craig McQueen Dec 1 '11 at 0:44
feedback

Your options for reading the DWARF debugging information are unfortunately quite limited.

As far as I know there is only one general purpose library for parsing DWARF debugging information and that is link text. Unfortunately no one has written Python bindings for libdwarf (maybe you could take it up upon yourself and share it with everyone else :) ) You could certainly attempt to access the library's functions using ctypes or the Python C API.

A much less elegant solution, however, is to use an existing DWARF parser and parse the textual information it outputs. Your options for this (on Linux) are

objdump -W
readelf --debug-dump=[OPTIONS]

I currently use a project that builds off of readelf and it's support for the DWARF debugging information is very full featured. You could simply use Python to execute either command in the shell and then parse the information as you need. Certainly not as ideal as a library, but should do the trick.

EDIT: I noticed in a previous comment you mentioned Windows. Both of these programs(objdump and readelf) are part of GNU-binutils, so they should be available with Cygwin or mingw.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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