Tagged Questions
0
votes
1answer
48 views
How does the resolve function in ELF files know what libs are the symbols in?
In the symbol table there is only the offset of symbol name but no information on which lib the symbol belongs to.
typedef struct {
Elf32_Word st_name;
Elf32_Addr st_value;
...
0
votes
1answer
137 views
How do I convert an elf file from dwarf to stabs format?
Have a ELF debugging file.
The file uses the DWARF format.
How can I convert it into the stabs format?
Are there any tools or methods that may be helpful to do this?
Thank You.
0
votes
1answer
48 views
How to set arg using gdbinit but just when a specific binary is loaded in gdb?
How to set arg -d through the file ~/.gdbinit but just when a specific binary is loaded in gdb?
0
votes
2answers
100 views
Am I getting the wrong ebp using instrumentation routines (pin), or am I missing something here?
So here's the deal. I am working on a debugger using a pin tool and the dwarf info from the process that I am attaching to. Pin is a framework that lets you create instrumentation tools for processes ...
1
vote
1answer
126 views
In ELF or DWARF, how can I get .PLT section values? — Trying to get the address of a function on where an instrumentation tool is in
I am working in obtaining all the data of a program using its ELF and DWARF info and by hooking a pin tool to a process that is currently running -- It is kind of a debugger using a Pin tool.
For ...
1
vote
1answer
118 views
Any experienced DWARF parsers/users? Need to get the attribute type offset of a DIE
So I'm trying to parse the DWARF file of a program using libdwarf (I have to stick with C for this purposes), I am trying to specifically get the DW_AT_type tag from each DIE. Most of them (I am not ...
1
vote
0answers
118 views
ELF Parsing : Accessing a DIE Directly using pyelftools
I need a method for accessing DIE's directly using their offset. So far, I have found that there is a method for the Computation Unit (CU) object in which you can access a DIE from its offset.
...
5
votes
1answer
424 views
Why works addr2line only for functions
I've got addr2line working for function addresses:
$ nm -S executable | grep main
08048742 000000a0 T main
$ addr2line -e executable 08048742
/home/blablabla/src/main.c:80
Unfortunately it only ...
0
votes
4answers
225 views
Obtain source using debugging symbols
Is it possible to obtain the source of a linux shared library (.so) that was compiled with debugging information (gcc .. -g) ? Thank you for your time.
1
vote
2answers
268 views
BDM elf file vs normal elf file
Whats the advantage that the BDM ELF file has over the normal ELF file in terms of memory used?
I know the following things about both:
BDM ELF file could be used for debugging through any debugger ...
10
votes
5answers
10k views
Library to read ELF file DWARF debug information
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.
3
votes
3answers
2k views
Convert memory address range in running Linux process to symbols in object file?
Here is a snippet of the file /proc/self/smaps:
00af8000-00b14000 r-xp 00000000 fd:00 16417 /lib/ld-2.8.so
Size: 112 kB
Rss: 88 kB
Pss: 1 kB
...