0
votes
0answers
29 views

GNU ld: How to get physical address of a section (not segment)?

Using the GNU binutils, I can inspect the physical vs. virtual addresses of segments, but not of individual sections. Is there a way to contrast the physical vs. virtual addresses for all sections?
0
votes
1answer
210 views

How to extract a few functions out of a compiled ELF-executable (no disassembly)?

I'm dealing with a large executable, for which I do not have sources (long story). I'd like to extract the binary code of several functions from it -- and try to call them from my own program. The ...
0
votes
1answer
282 views

objdump won't show my ELF sections

I have a tool emitting an ELF, which as far as I can tell is compliant to the spec. Readelf output looks fine, but objdump refuses to disassemble anything. I have simplified the input to a single ...
2
votes
1answer
107 views

readelf utility for Visual Studio C++ ABI and VS compiled objects?

I'm looking for alternatives to the readelf and objdump duo when using Visual Studio for compiling C++ source code and investigating lib, obj and dll. I'm aware that MinGW offers a porting of this ...
0
votes
1answer
687 views

objdump/readelf get variables information

I need to get the information about global variables from a compiled c program. I asked a similar question in here. The problem that I have now is that the program where I am trying to extract the ...
5
votes
1answer
1k views

readelf vs. objdump: why are both needed

I need to learn about the ELF file layout for a project I am working on and I noticed the existence of these tools. Why do all Linux distributions include both readelf and objdump? Do these tools ...