ELF stands for Executable and Linkable Format, a file format for files containing machine code.
59
votes
2answers
2k views
Floating point exception ( SIGFPE ) on 'int main(){ return(0); }'
I am trying to build a simple C program for two different Linux environments. On one device the program runs fine, on the other device the program generates a floating point exception. The program ...
28
votes
4answers
15k 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 ...
25
votes
7answers
10k 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 ...
16
votes
2answers
186 views
Why is function's length information of other shared lib in ELF?
Our project (C++, Linux, gcc, PowerPC) consists of several shared libraries. When releasing a new version of the package, only those libs should change whose source code was actually affected. With ...
15
votes
1answer
476 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 ...
15
votes
2answers
3k 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 ...
14
votes
1answer
1k 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.
...
14
votes
2answers
6k 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 ...
13
votes
3answers
9k views
How to install GCC from scratch with GMP, MPFR, MPC, ELF, without shared libraries?
How do I install GCC (the GNU Compiler Collection) from scratch using the current version,
using the correct versions of dependencies, not using a package manager (like yum, rpm, apt, dpkg), and not ...
13
votes
3answers
8k views
How do I find the direct shared object dependencies of a Linux (ELF) binary?
How can I easily find out the direct shared object dependencies of a Linux binary (in ELF format)?
I'm aware of the ldd tool, but that appears to output all dependencies of a binary, including the ...
13
votes
3answers
1k 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 ...
13
votes
2answers
1k 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 ...
11
votes
3answers
9k views
what is the difference between ELF files and bin files
The final images produced by compliers contain both bin file and extended loader format ELf file ,what is the difference between too , especially the utility of ELF file.
11
votes
1answer
4k views
How can I examine contents of a data section of an ELF file on Linux?
I've been using objdump to look at assembly code in Linux ELF binaries. Sometimes there is an indirect jump through a jump table that is stored in the rodata (read-only data) section. I have tried ...
11
votes
3answers
1k 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:
...
11
votes
1answer
216 views
Function pointer equality in C
My questions:
Is function pointer equality guaranteed by the C standard?
If the answer of (1) is yes. Is that the case regardless of the pointer being obtained in different final compilation units ...
10
votes
5answers
4k 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
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.
10
votes
2answers
447 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 ...
10
votes
3answers
2k 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 ...
10
votes
2answers
265 views
Is it possible to write a zero-cost exception handling in C?
g++ compiler has the feature of zero-cost exception handling. To my understanding, try does nothing, but when exception is thrown, a subroutine for the exception handler is executed. Like this:
void ...
9
votes
5answers
4k views
How do I find out which functions of a shared object are used by a program or an other library?
How do I find out which functions of a shared object are used by a program or an other library?
In this specific case, I would like to see which functions in /lib/libgcc1_s.so.1 are used by an other ...
9
votes
5answers
2k 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?
9
votes
5answers
946 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 ...
8
votes
3answers
2k 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 ...
8
votes
2answers
4k 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 ...
8
votes
3answers
2k views
When are ELF directives needed?
I'm working on an assembly program for an ARM Cortex-M3 based microcontroller (Thumb 2 instruction set), using GNU as.
In some example code I find directives like .size, .section and .type which I ...
8
votes
5answers
2k 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 ...
8
votes
2answers
713 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= ...
7
votes
2answers
4k 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 ...
7
votes
1answer
260 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.
...
7
votes
4answers
2k 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?
...
7
votes
2answers
675 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 ...
7
votes
1answer
238 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
1answer
271 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 ...
7
votes
4answers
3k 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 ...
7
votes
2answers
846 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).
...
6
votes
2answers
278 views
Example of executable stack in Linux (i386 architecture)
I found that when we use nested functions, GCC requires an executable stack for trampoline code. However, following code, when compiled using gcc doesn't show an executable stack. (I used execstack to ...
6
votes
4answers
2k 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 ...
6
votes
1answer
243 views
Symbol visibility, exceptions, runtime error
I try to understand symbol visibility better. The GCC Wiki (http://gcc.gnu.org/wiki/Visibility) has a section about "Problems with C++ exceptions". According to GCC Wiki it is possible the have ...
6
votes
1answer
205 views
Convert a statically linked elf binary to dynamically linked
I have a elf binary which has been statically linked to libc.
I do not have access to its C code.
I would like to use OpenOnload library, which has implementation of sockets in user-space and ...
6
votes
1answer
2k views
How to hook a function for a particular shared ELF library?
LD_PRELOAD hooks some functions for the entire process, but I need to hook a particular function for only one dynamically linked library by its name.
6
votes
1answer
119 views
What are the real ELF TLS ABI requirements for each cpu arch?
Ulrich Drepper's paper on thread-local storage outlines the TLS ABI for several different cpu architectures, but I'm finding it insufficient as a basis for implementing TLS for two reasons:
It omits ...
6
votes
1answer
402 views
How do I merge two binary executables?
This question follows on from another question I asked before. In short, this is one of my attempts at merging two fully linked executables into a single fully linked executable. The difference is ...
5
votes
3answers
274 views
How to prevent user from reading strings stored in a binary?
Here's a minimal test case:
#include <stdio.h>
#include <stdlib.h>
int main ( int argc , char **argv )
{
const char abc [15] = "abcdefg\0";
printf ("%s\n" , abc);
...
5
votes
2answers
177 views
What is default register state when program launches (asm, linux)?
When the program launches (linux, elf) - is there zeros in eax, ebx, etc. or there can be anything (i'm not doing any calls or using extern libraryies)? On my machine it is really so, can I relay on ...
5
votes
4answers
770 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 ...
5
votes
2answers
292 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 ...
5
votes
1answer
926 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 ...
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 ...