objdump is a program for displaying various information about object files. For instance, it can be used as a disassembler to view executable in assembly form. It is part of the GNU Binutils for fine-grained control over executable and other binary data.

learn more… | top users | synonyms

-1
votes
0answers
43 views

Identifying patterns for global memory addresses

The following program int32_t g_3, g_8 = 0; void main() { int16_t l_2; for (l_2 = 0; l_2 >= -30; l_2--) if (g_3) { int32_t *l_17 = &g_8; *l_17 = 0; } } when compiled with gcc for ...
0
votes
1answer
57 views

Can't find .dtors and .ctors in binary

I am reading the book Hacking, tha art of exploitation. In the book there is a section that explain the use of .dtors and .ctors. I'm trying to reproduce one of the exercices of the book but in my ...
0
votes
1answer
22 views

What is the equivalent command for objdump in IBM AIX

I am not able to find objdump command in IBM AIX 5.1 machine. Actually I want to get the assembly instructions (disassemble) from a library generated in AIX. Linux has objdump command and solaris dis ...
2
votes
1answer
63 views

Debugging : is it possible to print all local variable (with values) of C code without going into each stack frame?

I am trying to explore gdb, objdump, valgrind and nm tools for debugging purpose in linux. I am able to print local variables using info locals in GDB but I need to go into current stack frame to ...
0
votes
0answers
29 views

Creating List-file with CMake and Objdump

is there anyway to say cmake to genrate .lst files with objdump in the same dir as the other compiled object-files? i want to have a list-file of each src-file. Thanks
0
votes
2answers
40 views

which c code will gets changed to rlwinm power PC assembly instruciton

which c code will gets changed to rlwinm power PC assembly instruciton?? This is the snapshot of objdump.. if(!pool || pool->maxPoolSize > SEQ_MODULUS ) /* Invalid mask or pointer is null ...
0
votes
2answers
56 views

get shared library soname in a Python program

I'm writing a Python wrapper for a shared Linux library using ctypes. Is there some way to extract the library's soname programmatically (e.g., possibly via some library for accessing its ELF data)? ...
6
votes
2answers
238 views

Local variable location in memory

For a homework assignment I have been given some c files, and compiled them using arm-linux-gcc (we will eventually be targeting gumstix boards, but for these exercises we have been working with qemu ...
0
votes
1answer
65 views

Tool for Windows to view symbols in .so files

Is there a tool for Windows with which one could open an .so file and see which functions are inside it? For Linux, there is binutils and objdump does that as well as other ways listed here How do I ...
2
votes
2answers
203 views

Post process `objdump --disassemble` with ARM cycle counts

Is there a script available for post processing some objdump --disassemble output to annotate with cycle counts? Especially for the ARM family. Most of the time this would only be a pattern match ...
2
votes
1answer
90 views

Why do common section variables only show up in object file not the executable?

I'm trying to understand more about the "common" section of an executable and I noticed that when doing an objdump on compiled code, I can see variables placed in the common code only on object files ...
0
votes
0answers
79 views

List bss symbols in elf-file

I'm looking for a way to show the contents of the .bss-segment of an elf-file, in order to see which variables in the project take the most space. When I use nm, and look for symbols with the tag 'd' ...
2
votes
3answers
115 views

Problems about decoding the data dumped from ARM memory

Now I got some content dumped from the memory of an ARM machine. The thing is actually they are ARM instructions, but I don't know how to convert those hex numbers to ARM instructions. What I have now ...
1
vote
1answer
499 views

Disassembling A Flat Binary File Using objdump

Can I disassemble a flat binary file using objdump? I'm familiar with disassembling a structured binary executable such as an ELF file using: objdump -d file.elf But if I have a flat binary file ...
0
votes
1answer
179 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 ...
6
votes
5answers
317 views

How are functions stored in memory?

I've been delving deeper into Linux and C, and I'm curious how functions are stored in memory. I have the following function: void test(){ printf( "test\n" ); } Simple enough. When I run ...
0
votes
0answers
23 views

How to get compilable assembly using `objdump`? [duplicate]

Possible Duplicate: Disassembling, modifying and then reassembling a Linux executable I tried -D and -s but it didn't help. When I try to compile it I get something like: 2.s: Assembler ...
0
votes
1answer
50 views

“gcc -S” differs from “objdump -D”

I wrote a small piece of code and compiled it with gcc -S to see the ASM output: ... movl %esp, %ebp .cfi_def_cfa_register 5 subl $16, %esp movl $0, -4(%ebp) ... Now I expect that on Linux ...
0
votes
1answer
847 views

Objdump/GCC - BFD: Dwarf Error: mangled line number section

While trying to generate assembly code(intermixed with source code) using objdump, gcc -g -c test.c ; objdump -S -M intel test.o > out.asm I get the following error. BFD: Dwarf Error: mangled ...
0
votes
1answer
254 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
100 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
2answers
95 views

nm: how to show object file of a symbol in a shared library?

I have 25 object files which are combined to form one shared library. I have generated the shared library with gcc and while I was looking for exposed symbols with nm -D libmylib.so, I found two ...
-2
votes
1answer
220 views

can some help understand this objdump of c [closed]

08048544 <compare_password>: 8048544: 55 push %ebp 8048545: 89 e5 mov %esp,%ebp 8048547: 83 ec 38 sub $0x38,%esp 804854a: ...
1
vote
0answers
21 views

what does objdump mean by 'unsafe'?

objdump, run on a relatively modern 64-bit linux system, complains as follows about one of our shared libs: use of unsafe function-scope static in ‘lib64/libwhatever.so’. What does that mean? The ...
2
votes
1answer
168 views

Using sed and awk together to create replacement maps

I'm attempting to reverse engineer some software to gain a better understanding the lower-level workings of the OS. I want to replace the raw address dumps from objdump -d with the corresponding ...
0
votes
1answer
177 views

How do I get the real position of a section in an ELF archive file?

I want to extract a binary section fron a .a ELF archive file in Linux. When I run objdump -h on an archive file, it lists the object files it contains, and the section headers for each section. ...
0
votes
1answer
145 views

How to map $eip in gdb to output of objdump -d?

I have an incomplete stacktrace which stops at a known library (linux i686 architecture). In order to ascertain the function last called, I am trying to map $eip as output by gdb, to an address within ...
4
votes
3answers
246 views

How to disassemble movb instruction

I am writing a disassembler and I was reviewing the instruction format (and doing some disassembling by hand) and I ran into an instruction that I can't seem to be able to decode. The output for that ...
0
votes
1answer
195 views

Register value debugging

I have an objdump of the crashing method. I found that the crash is due to a bad memory access. The memory address is present in the MIPS register a0. Is there a way to track on how the register got ...
3
votes
1answer
237 views

How to list linker allocated code objects w/ gcc?

I am building an embedded application comprised of several code modules and a static library. Some global variables are explicitly placed in dedicated memory sections (i.e, not the default .data ...
0
votes
0answers
60 views

how can I tell if an executable was compiled by a DW2 vs. SJLJ version of gcc?

I have an executable for windows, compiled with gcc. $ objdump ffmpeg-32.exe -s -x| egrep -i "tdm|sjlj|dwarf|dw2|Longjmp|setjmp|unwind" 1510a04 637 _setjmp3 1510c3c 1059 longjmp ...
0
votes
1answer
446 views

How to use objdump to interleave source code in highly optimized object file?

I've got a highly optimized compiled C++ object file (compiled with g++, specifying -O3 -g -march=amdfam10 -Wall) with debug info. I'm using objdump -S "objname". Unfortunately interleaving the ...
0
votes
1answer
157 views

how objdump handles global variables

I have made the following dummy code for testing /tmp/test.c contains the following: #include "test.h" #include <stdio.h> #include <stdlib.h> struct s* p; unsigned char *c; void ...
1
vote
2answers
427 views

Tool to analyze size of ELF sections and symbol

I need a way to analyze output file of my GCC compiler for ARM. I am compiling for bare metal and I am quite concerned with size. I can use arm-none-eabi-objdump provided by the cross-compiler but ...
0
votes
1answer
94 views

Replacing Binary function in a Shared Object with a custom One (Under MIPSEL)

I'm trying to break inside a device of mine which has a MIPSEL core (Little endian MIPS). I mainly want to do that because the software that came on it is kinda broken and doesn't works as intended ...
2
votes
1answer
392 views

What is the difference between ldd and objdump?

I am running these two commands, and I'm getting different output: $ ldd `which ls` linux-gate.so.1 => (0x00db3000) libselinux.so.1 => /lib/i386-linux-gnu/libselinux.so.1 (0x00ba2000) ...
5
votes
2answers
262 views

Disassembly library used by objdump

I am searching for a library which performs disassembly of a binary code. I found that that libdisasm performs exactly same task as I want. However, I have found some links indicating that libdisasm ...
0
votes
0answers
35 views

Make a new shared library linked other library

Is it possible that making a new .so file that has just dynamic linkage information? What I mean is.. there are two library. a.so : function a(), function b() b.so : function a(), function ...
6
votes
2answers
424 views

What does “.hidden” mean in objdump output?

I wonder what .hidden means in objdump -t output. Example: $ objdump Logger.cpp.o -t 00000000 g F .text 00000000 .hidden __sti___10_Logger_cpp_0b2ae32b Please enlighten me, mighty Internet.
3
votes
2answers
574 views

Flags in objdump output of object file

There is this output of objdump on some object file: $ objdump -h main.o main.o: file format elf32-i386 Sections: Idx Name Size VMA LMA File off Algn 0 .text ...
1
vote
2answers
137 views

How to separate ARM instructions and data during dis-assembly

I am writing/(using binutils) a piece code to do an manual dis-assembly of thumb2(16bit and 32 bit) instructions. I am facing a problem to differentiate between genuine ARM instructions and DATA ...
0
votes
1answer
120 views

Why doesn't my objdump -D of program look different from .S

I am learning the toolchains for my C++ and trying out the objdump. The disassembled file from objdump doesn't even have the word "Hello World". Why is that? Is it not reliable at all?
3
votes
1answer
2k views

How to use/intall GNU binutils (objdump)

I need to use the objdump and readelf commands in my application that runs on windows. I know I can install cygwin in order to use them. The reason why I don't want to use cygwin is because I want to ...
0
votes
3answers
116 views

big-endian && little -endian?

Can any one tell me what this statement means: "Specify the endianness of the object files. This only affects disassembly. This can be useful when disassembling a file format which does not describe ...
0
votes
1answer
644 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 ...
1
vote
1answer
359 views

objdump not found on cygwin

I will like to use the objdump command on cygwin. I get the exception: -bash: objdump: command not found why cygwin is not able to find objdump? EDIT ---- I am able to see binutils at ...
0
votes
1answer
283 views

objdump in windows in order to see debug info

I need to get the addresses and member names of the variables in a .out file. I basically compiled a c program in linux using gcc and I will like to see the info of the file. There are a lot of ...
0
votes
0answers
135 views

change .data section in the objdump to little-endian mode

can any one told me how I can change the content of .data section that exist in objdump file (file that result after disassembling binary file using objdump tool) from big-endian to little-endian ...
0
votes
0answers
61 views

What does the # symbol represent in objdump output?

The following is typically part of the output of objdump when used with the -Dslx flags: 00000000004003c0 <__libc_start_main@plt-0x10>: 4003c0: ff 35 2a 0c 20 00 pushq ...
0
votes
0answers
192 views

data type of global array in assembly x86?

I want to ask about the assembly x86 language. when I declare a global array specially array of characters, its values should be proceeded by .byte, other global array types are proceeded by .long. Is ...

1 2 3