ELF stands for Executable and Linkable Format, a file format for files containing machine code.
21
votes
4answers
10k views
.bss section in elf file
If I understand correctly, the .bss section in ELF files is used to allocate space for zero-initialized variables. Our tool chain produces ELF files, hence my question: does the .bss section actually ...
14
votes
6answers
2k views
C/C++ with GCC: Statically add resource files to executable/library
Does anybody have an idea how to statically compile any resource file right into the executable or the shared library file using GCC?
For example I'd like add image files that never change (and if ...
13
votes
3answers
727 views
How to reduce default C++ memory consumption?
I have a server application written in C++. After startup, it uses about 480 KB of memory on x86 Linux (Ubuntu 8.04, GCC 4.2.4). I think 480 KB is an excessive amount of memory: the server isn't even ...
12
votes
2answers
886 views
Read GOT entry in Elf Binary
I want to write a little function's tracer. I use ptrace.
I'm on ubuntu x86_64. I want to found the address of the shared library function (like printf).
But i have some problem and some question ...
10
votes
2answers
148 views
Does 32bit x86 code need to be specially PIC-compiled for shared library files?
Compiling code to an object file needs to be done position-independent if the object file is intended to be loaded as a shared library (.so), because the base virtual address that the shared object ...
9
votes
3answers
762 views
Difference in position-independent code: x86 vs x86-64
I was recently building a certain shared library (ELF) targeting x86-64 architecture, like this:
g++ -o binary.so -shared --no-undefined ... -lfoo -lbar
This failed with the following error:
...
9
votes
1answer
550 views
Why do virtual memory addresses for linux binaries start at 0x8048000?
Disassembling an ELF binary on a Ubuntu x86 system I couldn't help but notice that the code(.text) section starts from the virtual address 0x8048000 and all lower memory addresses seem to be unused.
...
9
votes
3answers
1k views
Relocatable symbols in ELF format (assembly language)
We are developing a port of the GNU Assembler for a client architecture.
Now the problem being faced is that:
If an immediate operand to an instruction is an expression involving more than one ...
8
votes
1answer
141 views
What are the ELF header differences between an ELF object file and shared object?
First of all, I'm asking this from a technical perspective, not a perspective of the user of library code. One example of a difference is that shared objects contain program headers and ordinary ...
8
votes
2answers
209 views
Forcing certain compiler-generated variables into specific ELF sections (with gcc)
I'll start with the ultimate question: In C with gcc, is it possible to get the value(s) of __func__ (or equivalently, __FUNCTION__) stored in a section other than .rodata (or wherever -mrodata= ...
8
votes
2answers
2k views
load-time ELF relocation
I am writing a simple user-space ELF loader under Linux (why? for 'fun'). My loader at the moment is quite simple and is designed to load only statically-linked ELF files containing ...
7
votes
1answer
108 views
Mach-O's two-level namespace symbol resolution in ELF/linux
Anyone know of an equivalent to Mach-O's two-level namespace symbol resolution in ELF/linux? I want code that links to lib+sym, not sym.
I'm trying to do what could best be described as ...
7
votes
2answers
517 views
How to get the function name of a C function pointer
I have the following problem: when I get a backtrace in C using the backtrace(3) function the symbols returned the name of the functions is easily determinable with the dwarf library and dladdr(3).
...
7
votes
1answer
199 views
Flush ELF section from RAM after library initialization
I have a lot of code in an ELF shared library that is only used during library initialization (it's called from static initializers). If I put this code in its own section (or perhaps it can go in ...
6
votes
1answer
102 views
How does adding a private member variable break C++ ABI compatibility?
The pimpl idiom is commonly used in order to allow changing code in dynamically linked libraries without breaking ABI compatibility and having to recompile all the code that depends on the library.
...
6
votes
1answer
1k views
arm gcc toolchain as arm-elf or arm-none-eabi, what is the difference?
When you build a gcc toolchain there is the possibility to build it as arm-elf or as arm-none-eabi, but what is the difference?
I use the eabi today, but that is just since everyone else seem to do ...
6
votes
3answers
2k views
ELF binary entry point
why is the entry point in each ELF binary something starting with 0x80xxxxx?
Why doesn't the program start at (virtual) address 0x0?
When executed, program will start running from virtual address ...
6
votes
5answers
504 views
How to load a shared library without loading its dependencies?
Say I have a library libfoo.so.1, which depends (according to ldd) on libbar.so.1. However, libbar.so.1 is not available at the moment. My app needs to call a function in libfoo.so.1 which doesn't ...
6
votes
4answers
990 views
Where do uninitialized Global Variables go after initializing?
I struck a little problem when learning. I know that uninitialized global variables in C are assigned to the .bss section in the executable ELF file. But what happens to them when I start to use them?
...
6
votes
5answers
931 views
Pack shared libraries into the elf
Is there a utility that can take ALL the SO's that an Elf needs turn them into static then converts the Elf to be SO's free?
5
votes
2answers
93 views
Getting the ELF header of the main executable
For various purposes, I am trying to obtain the address of the ELF header of the main executable without parsing /proc/self/maps. I have tried parsing the link_list chain given by dlopen/dlinfo ...
5
votes
2answers
103 views
Is there a way to find leaked memory using a core file?
I have a core dump from an application with a memory leak. I have used the strings command and xdd to examine the file and I've got a few ideas of which part of the program might be responsible for ...
5
votes
2answers
279 views
GCC outputs an executable ELF file when I want a shared library
I'm trying to build a shared library in Cygwin using an i686-elf cross-compiler. The code is very simple:
int add(int a, int b) {
return a + b;
}
void _init() {
add(3, 4);
}
I'm compiling ...
5
votes
3answers
266 views
What does “COM” means in the Ndx column of the .symtab section?
add2.c:
int counter=0;
int a=0;
int b;
int c;
int add(int a, int b) {
return a+b;
}
compilation:
gcc -c add2.c -o add2.o
reading the symbol table:
readelf --symbols add2.o
Symbol table ...
5
votes
4answers
516 views
Patching code/symbols into a dynamic-linked ELF binary
Suppose I have an ELF binary that's dynamic linked, and I want to override/redirect certain library calls. I know I can do this with LD_PRELOAD, but I want a solution that's permanent in the binary, ...
5
votes
1answer
390 views
ELF file by hand
Hey, I've created an ELF file by hand, it has two sections(.text and .shstrtab) and a programm header which loads the .text section. The .text section is very small and it only consists of following ...
5
votes
5answers
1k views
Clarification on Binary file (PE/COFF & ELF) formats & terminology
I'm confusing little in terminology.
A file that is given as input to the linker is called Object File.
The linker produces an Image file, which in turn is used as input by the loader.
I got ...
4
votes
1answer
99 views
Linux ELF files: Which byte will differ for static and dynamic ELF programs?
I'm working with linux elf files.
I want to detect, if the given elf program is statically linked (full static link, ldd says "not a dynamic executable") or dynamically linked. The ELF is for ...
4
votes
1answer
95 views
Templates - huge object file causes linker crash
I have a source file which extensively makes use of templates.
I also have in that file explicit instantiations of different templates ... a lot of them.
This file is compiled as part of a static ...
4
votes
1answer
113 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 ...
4
votes
1answer
234 views
How do I load and execute an ELF binary executable manually?
Suppose the binary is PIC, how can I load it into memory and execute the entry point?
I'm doing this to get familiar with ELF so execve is not allowed.
4
votes
2answers
206 views
Why does Go use its own Code generator? [closed]
The current, official compiler for Go (http://code.google.com/p/go/) currently uses a handcrafted, arguably arcane code generator, which includes injecting custom sections into the ELF Binary.
This ...
4
votes
2answers
1k views
How do you extract only the contents of an ELF section
I've tried the following, but the resulting file is still an ELF and not purely the section content.
$ objcopy --only-section=<name> <infile> <outfile>
I just want the contents of ...
4
votes
3answers
637 views
ELF File Format
I'm attempting to manually load the hexdump of an elf file that I compiled using g++ into a processor simulation I designed. There are 30 sections to a standard elf file and I am loading all 30 ...
4
votes
3answers
1k views
How to retrieve the GCC version used to compile a given ELF executable?
I'd like to retrieve the GCC version used to compile a given executable. I tried readelf but didn't get the information. Any thoughts?
-Ilyes
4
votes
1answer
667 views
Why would the ELF header of a shared library specify Linux as the OSABI?
All the standard shared libraries on my Linux system (Fedora 9) specify ELFOSABI_NONE (0) as their OSABI.
This is fine - however I've received a shared library from a supplier where the OSABI given ...
4
votes
4answers
2k views
Linux user-space ELF loader
I need to do a rather unusual thing: manually execute an elf executable. I.e. load all sections into right places, query main() and call it (and cleanup then). Executable will be statically linked, so ...
4
votes
3answers
1k views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" which makes sense ...
4
votes
8answers
715 views
gcc compiled binaries w/different sizes?
If the same code is built at different times w/gcc, the resulting binary will have different contents. OK, I'm not wild about that, but that's what it is.
However, I've recently run into a situation ...
4
votes
5answers
5k 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.
4
votes
2answers
492 views
in Java: programmatically determining addresses of C/C++ variables given a COFF/ELF/DWARF executable
This is a situation I run into now and then:
For an embedded system which does not use virtual addressing, I have an executable file that was compiled from C or C++ code with debugging information ...
4
votes
5answers
932 views
GCC/ELF - from where comes my symbol?
There is an executable that is dynamically linked to number of shared objects. How can I determine, to which of them some symbol (imported into executable) belongs ?
If there are more than one ...
3
votes
1answer
150 views
ELF format manipulation
I have a requirement where I want to associate an index with a file(in a certain format). I was wondering if I can do any ELF manipulation and still ensure that, consistency is maintained so, the file ...
3
votes
1answer
94 views
with RIP-addressing, why x86-64 still need relocations?
So x86-64 has the RIP-relative addressings which makes PIC codes easy to write and relocations needed much less. Why is relocations still needed then on x86-64? For what features? I can try to explore ...
3
votes
2answers
99 views
relocation entries in a shared lib
I'm investigating relocation of shared libraries, and ran into something strange. Consider this code:
int myglob;
int ml_util_func(int p)
{
return p + 2;
}
int ml_func2(int a, int b)
{
int ...
3
votes
3answers
178 views
Why does the compiler version appear in my ELF executable?
I've recently compiled a simple hello world C program under Debian Linux using gcc:
gcc -mtune=native -march=native -m32 -s -Wunused -O2 -o hello hello.c
The file size was 2980 bytes. I opened it ...
3
votes
2answers
124 views
Why is the program header executable?
I used readelf on several binaries on my linux box and saw something that surprised me in the program headers. This eample is from the 'ld' utility, but it also occurs with anything I compile with ...
3
votes
4answers
647 views
ELF core file format
Short of digging through GDB source, where can I find documentation about the format used to create core files. The ELF specification leaves the core file format open, so I guess this should be part ...
3
votes
3answers
340 views
dumping C structure sizes from ELF object file
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 ...
3
votes
2answers
138 views
loading encryped shared objects using the rtld / free loader/linkers
I am doing some research in encryption/software protection. I want to link dynamically encrypted shared objects (Linux, x86 Architecture, ELF32/64 format)
The code to be protected is contained ...