读取ELF文件DWARF调试信息的库
有没有推荐一个好的跨平台库来读取 DWARF 格式的 ELF 文件调试信息? 我想读取 Python 程序中的 DWARF 调试信息。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有没有推荐一个好的跨平台库来读取 DWARF 格式的 ELF 文件调试信息? 我想读取 Python 程序中的 DWARF 调试信息。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
有一个新的东西 - pyelftools - 一个用于解析 ELF 和 DWARF 格式的纯 Python 库。 试一试。
它的目标是功能完整,目前正在积极开发中,因此任何问题都应该快速而热情地处理:-)
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 :-)
“ELF 调试信息”的概念实际上并不存在:ELF 规范故意未指定 .debug 部分的内容。
常见的调试格式是 STAB 和 DWARF。 读取 DWARF 的库是 libdwarf。
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.
您可能对 pydevtools 中的 DWARF 库感兴趣:
You might be interested in the DWARF library from pydevtools:
遗憾的是,您读取 DWARF 调试信息的选项非常有限。
据我所知,只有一个用于解析 DWARF 调试信息的通用库,那就是 libdwarf. 不幸的是,没有人为 libdwarf 编写 Python 绑定(也许您可以自己承担并与其他人分享:))您当然可以尝试使用 ctypes 或 Python C API。
然而,一个不太优雅的解决方案是使用现有的 DWARF 解析器并解析它输出的文本信息。 您对此的选择(在 Linux 上)是
我目前使用一个基于 readelf 构建的项目,它对 DWARF 调试信息的支持功能非常齐全。 您可以简单地使用 Python 在 shell 中执行任一命令,然后根据需要解析信息。 当然不如图书馆那么理想,但应该可以解决问题。
编辑:我注意到您在之前的评论中提到了 Windows。 这两个程序(objdump 和 readelf)都是 GNU-binutils 的一部分,因此它们应该可以在 Cygwin 或 mingw 中使用。
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 libdwarf. 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
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.