ELF stands for Executable and Linkable Format, a file format for files containing machine code.
0
votes
2answers
625 views
differences in byte code and machine code executables
What are the differences between the byte code binary executables such as Java class files, Parrot bytecode files or CLR files and machine code executables such as ELF, Mach-O and PE
what are the ...
0
votes
5answers
230 views
GDB assembler debugging
I have to do a some binary analyses for a class, and I am stuck on one of the programs. When I set some breakpoints and disas, I see that it looks like this :
Dump of assembler code for function ...
0
votes
2answers
200 views
How to get a pointer to an specific section of a program from within itself? (Maybe with libelf)
I'm on a Linux environment and I need to make a program that retrieves some data that is placed in one of its sections. So, how to get a pointer to a section of a program (by its name) from within ...
2
votes
1answer
309 views
Linux ELF 32 Bits Loading
I'm writing an x86 binary interpreter.
At the moment I'm dealing with loading the executable file and shared objects. However I'm stuck with some doubts:
1) Does the dynamic linker/loader ...
0
votes
1answer
214 views
Wrong ELF class - PHP extension
I am trying to load a PHP extension (sdo.so) but I am getting the following error when I try to run XAMPP.
PHP Warning: PHP Startup: Unable to load dynamic library ...
2
votes
1answer
160 views
Why is my binary much smaller than my object file?
I'm using GCC 4.7 to compile a large app that consists of only one C++ source file, so there's only one compilation unit, but it includes many long headers. The final optimized executable, myapp, is ...
0
votes
2answers
146 views
linux ELF section and header access permission
In my understanding, ELF header is for program execution view.
section is for linker's view.
but linux command 'readelf' shows that there are
memory access permission flag for each section (AWX)
and ...
0
votes
1answer
166 views
Using pahole (from dwarves package) on Windows
Is there a way to easily configure/install the dwarves Linux package/tools on Windows systems? I need to use the pahole command in an automation script that will be run on Windows systems.
I'm not ...
0
votes
2answers
133 views
Determine address of _dl_start
I want to get the address of function _dl_start (entry point of the dynamic linker). I am able to set a breakpoint using gdb. I expected to find the symbol using readelf but I did not. How can I get ...
0
votes
2answers
130 views
system wide elf compression script using find, file, and upx
I'm working on my first script, and it is to compress all elf executables on a system.
find / * -executable -type f -exec file '{}' \; | grep ELF | sed -e "s/[:].*//" |
upx --best ...
3
votes
3answers
597 views
dladdr doesnt return the function name
I'm trying to use dladdr. It correctly locates the library, but it does not find the function name. I can call objdump, do a little math, and get the address of the function that I pass dladdr. If ...
2
votes
1answer
645 views
What is the difference between .got and .got.plt section?
What is the difference between .got and .got.plt section in ELF format?
0
votes
1answer
164 views
Improper section to segment mapping in ELF executable binary
I am analyzing an ELF file using readelf command. I looked at the program headers and section headers, but found that not all of the sections were getting mapped to a segment. I am providing some part ...
2
votes
1answer
165 views
When is static data (.bss) allocated?
I have been looking into reducing the memory footprint of an application. Following on from a previous question: GDB - can I find large data elements in memory I have found and removed most of the ...
0
votes
0answers
43 views
LMA of a function from ELF file
Able to get the virtual and physical addresses of different sections from ELF, is it possible to get the LMA of a function?
Note: LMA and VMA are not same due to code overlay.
0
votes
0answers
434 views
Cross Compiling GSL for Android
Cross Compiling GSL for Android
I am attempting to cross compile the GNU Scientific Library (GSL) for Android 4.1 using Autotools. My build and host are as follows:
build="i386-apple-darwin10.8.0"
...
1
vote
1answer
166 views
programatic way to find ELF aux header (or envp) in shared library code?
I'm looking for a programatic way to find the powerpc cpu type on Linux. Performing some google searches associated an answer suggesting the mfpvr instruction I found that this is available in the ...
0
votes
1answer
181 views
Change sourcefiles listed in elf debug info
Basically I want to be able to change the path to the source file in debug dwarf section in a elf binary.
0
votes
0answers
151 views
Inject code into not running application
I need to put my function into elf linux application, and then replace call to my function. Is it possible to do it just editing file in hiew (or something like this). The question is how to find a ...
5
votes
2answers
825 views
How to get the size of a C function?
Suppose I have a function like below:
# cat 003.c
int foo(int a, int b)
{
return a+b;
}
And compile it like this:
gcc -S 003.c
The gets the following assembly result:
.file "003.c"
...
2
votes
1answer
205 views
Source files missing from ELF symbol table - how to include them?
I am working with a project that was handed off to me and some of the building and linking concepts are new to me. I have a makefile, several assembly and C source files, an ELF file and binary file. ...
0
votes
1answer
98 views
Every executable must have an ELF header?
Every executable must have an ELF header?
Also i would like to know why libraries and header's properties are often associated with HEX values; what is this HEX related to? Why HEX and not just ...
1
vote
0answers
99 views
How ld decides offset for relocation type MIPS GPREL16?
I'm writing a runtime linker for MIPS32 arch, and have problems with
GPREL16 relocation type.
For instance, the compiler/assembler outputs a relocatable object with
an instruction as below :
ff838018 ...
0
votes
1answer
238 views
Find the value of a symbol from an ELF file hex dump
I have a hex dump of an ELF file (last page of a past exam). I know the offset of strtab and the offset of symtab and I am asked 2 question:
what is the value of 'ooo' symbol ?
In which section is ...
0
votes
1answer
535 views
string table in elf
I get some symbol and I get the hexedit of an elf file. How can I know in which section this symbol appear?
What is the different between strtab and shstrtab? there is also an array of symbol ...
0
votes
0answers
57 views
elf-find the section in which some string is appear
I have an hexedit of an elf file and I get some string.
How can I find the section in which some string is appear?
What is the different between strtab and shstrtab? There is also an array of symbol ...
1
vote
3answers
899 views
Can a running C program access its own symbol table?
I have a linux C program that handles request sent to a TCP socket (bound to a particular port). I want to be able to query the internal state of the C program via a request to that port, but I dont ...
0
votes
1answer
261 views
readelf -s does not output full variable names
I need to get the global symbols from a compiled c program file. What I use is the linux command readelf -s filePath when I use that command this is what I get:
I draw a blue rectangle to show ...
3
votes
2answers
570 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
1answer
255 views
understand hexedit of an elf
Consider the following hexedit display of an ELF file.
00000000 7F 45 4C 46 01 01 01 00 00 00 00 00 .ELF........
0000000C 00 00 00 00 02 00 03 00 01 00 00 00 ............
00000018 30 83 ...
1
vote
1answer
195 views
How do I override the linker specified in the .interp header of an elf executable under Linux?
I have a cross compiler that specifies a custom loader in its .interp header:
objdump -s beaglebone/x86_64-angstromsdk-linux/usr/bin/armv7a-angstrom-linux-gnueabi/arm-angstrom-linux-gnueabi-g++ | ...
1
vote
2answers
201 views
print the sections of elf
i need to write the function write_file:
This function, write_file(int fdOut, char *start1, char *start2), receives a file descriptor for the output file and two pointers to ELF file structures which ...
0
votes
1answer
153 views
Get location of symbols in a.out file
This question does a great job explaining how to get the symbols (variables, functions, etc) of an elf file.
Now that I have the symbols I will like to know on what location (module) they are.
For ...
1
vote
1answer
353 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 ...
1
vote
1answer
46 views
Constituant of data segments
So, I have this idea and I've searched around to see if its true, but haven't found anything to confirm it yet.
I'm working on an elf parser and I'd like to construct the program's data from the ...
5
votes
1answer
912 views
Extract global variables from a.out file
Edit (updated question)
I have a simple C program:
// it is not important to know what the code does you may skip the code
main.c
#include <bsp.h>
unsigned int AppCtr;
unsigned ...
1
vote
1answer
391 views
How can I link the source path of a compiled library to a different location in Eclipse?
I've installed the msp430-gcc compiler and associated tools to do some open-source msp430 development at home using Eclipse. I'm developing on a slightly older Macbook Pro running OS X Lion and ...
1
vote
1answer
157 views
How to make the GNU assembler output an ELF object instead of a Mach-O object?
I am new to OS development and I want to compile a kernel to an ELF binary. I have a loader written in assembly (GAS syntax). I compile it on Mac OS X 10.7 using as (Apple Inc version cctools-822, GNU ...
0
votes
0answers
160 views
sign Linux/ELF executables and libraries
I am looking for some (de facto) standard tool for signing executables and libraries on GNU/Linux systems. I have noticed similar SO question and its answers but it is fairly old. I would like to know ...
0
votes
1answer
219 views
Trouble using Libelf/Elfio libraries : ELF not executable anymore
I'm using Libelf and Elfio to try and add a new section to ELF files. I would like it to be executable, just like .text.
This is my problem : with Libelf, as soon as I load (elf_begin()), update ...
0
votes
1answer
208 views
How to prevent ld from combining writable and executable sections?
When I link together object files, the resulting ELF executable has (only) the following LOAD segment:
LOAD off 0x00000000 vaddr 0x00008000 paddr 0x00008000 align 2**15
filesz 0x000010f0 ...
0
votes
1answer
228 views
Change in Binary without change in Source Code
I have the following requirement: To Find if my binary has changed or not.
My source code is unchanged. When I recompile the binary (without change in Source Code), I notice that the Binary is ...
0
votes
2answers
278 views
why segments in elf file can overlap
simple C file:
#include <stdio.h>
int main(){
printf("Hello World");
return 0;
}
after compile the code, using readelf -a a.out, elf info is follow:
Questions:
several sections ...
2
votes
1answer
483 views
getting the sh_name member in a section header elf file
I'm trying to get the correct offset to the section name by accessing the sh_name member of an elf file, but it keep giving me zero, or null...
I'm supposed to only use mmap() and the elf.h - no ...
1
vote
1answer
628 views
Using the string table and printing sections names
We recieved a homework assignment in which we need to take an ELF file and print its sections' names.
We are supposed to do all that using only the data we receive directly from the ELF header,
...
0
votes
0answers
113 views
how to modify the section name?
# cat tiny.S
.global _start
.extern _exit
.section .text
_start:
pushl $4
call _exit
_table:
# as tiny.S -o tiny.o
# gcc -nostartfiles tiny.o -o tiny
# ./tiny
# echo $?
4
# nm tiny.o
U ...
0
votes
1answer
196 views
getting to an ELF file information
ok...
so im suppose to write a program that prints all of the sections name in an elf file using only mmap (thats not important...)
so what i did so far is this -
maped the file into the stat ...
1
vote
1answer
266 views
x86_64: Is it possible to “in-line substitute” PLT/GOT references?
I'm not sure what a good subject line for this question is, but here we go ...
In order to force code locality / compactness for a critical section of code, I'm looking for a way to call a function ...
0
votes
1answer
58 views
define code section
I'm tring to assemble the following code using Nasm:
section .stage1_main
extern stage1_get_stage2_addr
global stage1_main
stage1_main:
sub rsp, 0x8
call stage1_get_stage2_addr
cmp ...
3
votes
1answer
1k views
Compile C program using dlopen and dlsym with -fPIC
I am having a problem about a wrong symbol resolution. My main program loads a shared library with dlopen and a symbol from it with dlsym. Both the program and the library are written in C.
Library ...
