Python libdwarf module - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T18:52:49Z http://stackoverflow.com/feeds/question/45954 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/45954/python-libdwarf-module 3 Python libdwarf module DGentry 2008-09-05T14:44:25Z 2009-09-17T01:50:07Z <p>I'm working on a utility which needs to resolve hex addresses to a symbolic function name and source code line number within a binary. The utility will run on Linux on x86, though the binaries it analyzes will be for a MIPS-based embedded system. The MIPS binaries are in ELF format, using DWARF for the symbolic debugging information.</p> <p>I'm currently planning to fork objdump, passing in a list of hex addresses and parsing the output to get function names and source line numbers. I have compiled an objdump with support for MIPS binaries, and it is working.</p> <p>I'd prefer to have a package allowing me to look things up natively from the Python code without forking another process. I can find no mention of libdwarf, libelf, or libbfd on python.org, nor any mention of python on dwarfstd.org.</p> <p>Is there a suitable module available somewhere?</p> http://stackoverflow.com/questions/45954/python-libdwarf-module/46028#46028 3 Answer by Douglas Leeder for Python libdwarf module Douglas Leeder 2008-09-05T15:23:13Z 2008-09-05T15:23:13Z <p>I don't know of any, but if all else fails you could use <a href="http://docs.python.org/lib/module-ctypes.html" rel="nofollow">ctypes</a> to directly use libdwarf, libelf or libbfd.</p> http://stackoverflow.com/questions/45954/python-libdwarf-module/510623#510623 3 Answer by Ber for Python libdwarf module Ber 2009-02-04T09:19:06Z 2009-02-04T09:19:06Z <p>You should give <a href="http://construct.wikispaces.com/" rel="nofollow">Construct</a> a try. It is very useful to parse binary data into python objects. </p> <p>There is even an example for the <a href="http://sebulbasvn.googlecode.com/svn/trunk/construct/formats/executable/elf32.py" rel="nofollow">ELF32</a> file format.</p> http://stackoverflow.com/questions/45954/python-libdwarf-module/1352742#1352742 2 Answer by Craig McQueen for Python libdwarf module Craig McQueen 2009-08-30T00:48:04Z 2009-09-17T01:50:07Z <p>I've been developing a DWARF parser using <a href="http://construct.wikispaces.com/" rel="nofollow">Construct</a>. Currently fairly rough, and parsing is slow. But I thought I should at least let you know. It may suit your needs, with a bit of work.</p> <p>I've got the code in Mercurial, hosted at bitbucket:</p> <ul> <li><a href="http://bitbucket.org/cmcqueen1975/pythondwarf/" rel="nofollow">http://bitbucket.org/cmcqueen1975/pythondwarf/</a></li> <li><a href="http://bitbucket.org/cmcqueen1975/construct/" rel="nofollow">http://bitbucket.org/cmcqueen1975/construct/</a> (necessary modifications to Construct library)</li> </ul> <p><a href="http://construct.wikispaces.com/" rel="nofollow">Construct</a> is a very interesting library. DWARF is a complex format (as I'm discovering) and pushes Construct to its limits I think.</p>