dumping C structure sizes from ELF object file

2019-03-10 02:04发布

How can you extract the sizes of all C structures from an ELF object file with debugging symbols?

Individual struct sizes can be obtained from GDB using "print sizeof(some_struct)", but what I need is to get a listing of all structures.

I've looked at "nm" and "objdump", but I don't see options to do what I'm looking for. Is there a way to do this with standard Unix tools, or do I need to extract the debug symbol section from the ELF file and process it myself? I'm hoping it's not the latter.

Thanks in advance for any advice. Ray

标签: c struct size elf
4条回答
Rolldiameter
2楼-- · 2019-03-10 02:47

pahole shows this and other details about structs. Its git repo is at http://www.kernel.org/git/?p=linux/kernel/git/acme/pahole.git;a=summary.

查看更多
你好瞎i
3楼-- · 2019-03-10 02:47

Install package dwarves, then you have the command "pahole".

Use the "pahole" command against a elf object file, you can get all the structure information, or you can use the "-C" parameter to specific a structure name, for example:

$ pahole vmlinux -C task_struct

查看更多
地球回转人心会变
4楼-- · 2019-03-10 02:48

You will have to dig in .debug_info section, objdump will dump it for you if you run it with --dwarf parameter.

You will see your structures there as *DW_TAG_structure_type* and *DW_AT_byte_size* attribute is equivalent to sizeof. Standard Unix tool should be enough to format this data into more readable list.

查看更多
甜甜的少女心
5楼-- · 2019-03-10 02:54

Unless someone else known something, I think you will have to process the output of nm .

However, nm only gives you the start of each struct and knows nothing about its end so even that may not work unless each strut is immediately followed by some other symbol. Watch out for this issue!

查看更多
登录 后发表回答