ELF stands for Executable and Linkable Format, a file format for files containing machine code.
1
vote
1answer
22 views
Where is global variable in elf file
Recently,I want to learn about some knowledge about elf file,but when I encounter the global variable,global static variable and scope static variable,I have a little confusion,for example:
int a = ...
0
votes
0answers
5 views
Codewarrior debugger not showing C source after compiling some code and data into a new ELF section
In our project, we are building an ELF file and a partially linked file (PLF) which is converted to a proprietary format and loaded into memory after the ELF is loaded. We use Codewarrior to run and ...
1
vote
2answers
16 views
libraries which exist in a binary's elf RUNPATH are not being used?
I have custom built gcc-4.7.2 in my environment. The system gcc is gcc-4.3.4.
I have patched the RUNPATH for all my custom gcc's binaries and shared libraries using patchelf --set-rpath
However, ...
0
votes
0answers
13 views
objdump architecture unknown
I want to see section contents of elf executable file. I use cross compiler arm-linux-gnueabi-gcc. This is what I do:
arm-linux-gnueabi-gcc file.c -o file
objdump -d file
It says unknown ...
0
votes
0answers
8 views
Libdwarf - how to extract the size and type of a variable from an ELF file
I would like to create a program in C under Windows using the libdwarf library that is able to extract information about a variable given as input. The program should output the size in bytes of the ...
0
votes
0answers
23 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?
1
vote
0answers
20 views
create real mode elf file and link it to my kernel
I'm trying to turn on graphic mode in VGA (in a our course kernel - JOS).
I found that to do so I need to call interrupt 10h from real mode (8086).
However, getting to real mode after you got to ...
2
votes
1answer
25 views
Where is Import Table in ELF file?
I found ".dynsym" in String Table, got index.
Then I found section with sh_name = index && sh_type = SHT_DYNSYM.
So I got sh_offset = 464 and sh_size = 64.
But you can see in the attached ...
1
vote
1answer
25 views
Searching .init section in ELF file
How can I find section .init?
Section header has field Elf32_Word sh_name. So I suppose I have to go through all sections to find one with name .init But sh_name is not an array of chars. It is an ...
0
votes
1answer
11 views
How to get src file names from ELF file
How can I get the names of object files(source files will even be better) other than library from a ELF file?
0
votes
1answer
12 views
What assurances, if any, are given by the ELF linker for locating indirect dependencies?
Consider that I have an ELF shared library liba.so, which exports a symbol from_a. The implementation of from_a is defined in terms of a symbol from_b, which is exported from a shared library libb.so, ...
1
vote
2answers
52 views
Convert a dynamically linked elf binary to statically linked
Is it possible to convert a dynamically linked elf binary to a statically linked one?
0
votes
0answers
31 views
Can I compile COFF files on Linux?
I am using the latest version of g++ to compile .cpp files on the latest version of Linux Red Hat. Is there any way I can compile COFF files instead of ELF-64 files?
0
votes
0answers
41 views
How to move section entry from elf?
ELF format:
0x00 ~ 0x33 is file header
section headers and segment headers must be consecutive
And section entry can store in any position, specify by offset
So I want to move a section ...
0
votes
0answers
10 views
What's the point of GOT table? [duplicate]
From what I understood, the Procedure Linkage Table (PLT) serves just like the Import Table of PE format,
So when the ELF loader loads a file, it could just modify the PLT table and set the correct ...
0
votes
0answers
9 views
Finding the entry point in ELF?
The entry point in ELF is in the ELF header, e_entry. But when the file has no associated entry point, e_entry is 0. How can I know to which virtual address does the system transfer control?
0
votes
3answers
46 views
What's past the end of `environ`?
I'm facing an issue with the Free Pascal shared library startup code on Android. The Free Pascal RTL sources have the following fragment:
type
TAuxiliaryValue = cuInt32;
TInternalUnion = record
...
2
votes
0answers
42 views
Processing ELF relocations - understanding the relocs, symbols, section data, and how they work together
TL;DR
I tried to make this a short question but it's a complicated problem so it ended up being long. If you can answer any part of this or give any suggestions or tips or resources or anything at ...
1
vote
2answers
37 views
What parts of ELF file should be loaded in to the memory?
I am writing a c program that gets an elf file, loads it and then executes it. I have read all of the headers (elf, section, program, relocation). The next part should be getting what is going to be ...
1
vote
4answers
36 views
.bss vs COMMON: what goes where?
From my book:
.bss:
Uninitialized global C variables
COMMON:
Uninitalized data objects that are not yet allocated
I have to say, I don't quite see a clear distinction. I don't even quite ...
1
vote
1answer
22 views
ELF files - What is a section and why do we need it?
I've been reading ELF standard here. From what I understand, each ELF contains ELF header, program headers (why more than one?) and section headers. Can anyone please explain:
How are ELF files ...
0
votes
0answers
35 views
ldd doesn't work on dynamically linked binary
I have a binary that uses a bunch of .so files.
bash-3.00$ file foo
foo: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.6.21, dynamically linked (uses shared libs), not ...
2
votes
1answer
42 views
The value of a symbol determined by GCC during compiling/linking
Why in below code "if (sqrt)" condition is alway true? When compiling, gcc warns like this,
weak.c: In function âfâ:
weak.c:6: warning: the address of âsqrtâ, will always evaluate as âtrueâ
Source ...
0
votes
1answer
43 views
Difficulty in using C standard libraries in the SoCLib tool
I'm an electronic engineering student from Brazil and I'm currently working with embedded systems.
I'm trying to port a MP3 decoder (written in C), called minimp3, to a platform built with the aid of ...
0
votes
1answer
24 views
Can instructions exist in sections other than text?
Is it safe to assume that all instructions within an executable are located inside that executable's text section? I have never seen an executable with a format that violates this assumption.
0
votes
0answers
34 views
Compress Win32 binary with UPX in Ubuntu 12.04
I'm trying to compress notepad.exe using UPX in Ubuntu and getting the following error:
upx: notepad.exe: CantPackException: can't pack new-exe
Anyone know why?
Detailed Description:
I copied ...
0
votes
0answers
17 views
Hook functions while the application is running on linux
I want to hook functions in a way similar to Windows madCodeHook library, which goes handles all the complicate details of patching the assembly in memory and reroute a function call to your code. Is ...
-1
votes
0answers
46 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 ...
2
votes
0answers
56 views
ELF Relocation reverse engineering
I am hoping you guys could help me understand how relocation entries and ELF section data are related, and how it is all processed and generated.
I have an ancient unsupported tool that takes an ...
1
vote
1answer
39 views
How do you get the start and end addresses of a custom ELF section in C (gcc)?
I've seen the usage of of the gcc __section__ attribute (especially in the Linux kernel) to collect data (usually function pointers) into custom ELF sections. How is the "stuff" that gets put in those ...
1
vote
1answer
38 views
Sharing Linux binaries
I’ve been wondering something for a long time. Is it sane to release ELF (32 and 64 bits) binaries in order people to use them? I know we better have to release sources – that’s what I’m used to doing ...
0
votes
0answers
29 views
Loader for statically linked ELF file
I need to write loader for statically linked ELF file. ELF file have predefined loading address. How to free space on that address if it is allocated by another program? How to transfer control to ...
2
votes
1answer
45 views
Inheriting from Classes in Shared Object
I want to extend the C++ namespace of classes in a Linux shared object through inheritance. What are the issues that can arise, in particular involving static objects and member data?
// as a crude ...
0
votes
0answers
8 views
Generating elf format executable
I am using the "arm-none-linux-gnueabi-" toolchain for building my application.
This generates a .out which is in eabi format.
Is there a way to get an elf format executable as the output using the ...
1
vote
0answers
51 views
Recognize native android file
I want to write a file classificator - something like the linux file command does. The main feature should be to detect the target OS (especially Android). It has to work on compiled/native files (ELF ...
3
votes
2answers
66 views
Does gcc have any options to add version info in ELF binary file?
I mean whether gcc can insert some source code version infor into ELF binary as section or something similar. I do not want to change my source file, but add some info with gcc option in Makefile.
0
votes
2answers
50 views
distinguish shared objects from position independent executables
I'm looking for a fast way to check if a ELF binary is a shared object or a position independend executable. I think a can do that by checking the contained symbols / functions. I'm looking for a more ...
0
votes
1answer
67 views
.comment section with two lines
I have an executable with two lines in comment section as readelf shows :
readelf -p .comment ac_test
String dump of section '.comment':
[ 0] GCC: (SUSE Linux) 4.3.4 [gcc-4_3-branch revision ...
0
votes
0answers
99 views
binary/ELF silently exits on different ARM system
I have an ELF that was compiled on a armv7a Cortex-A9 CPU. It runs fine there with no problems, but when it's moved onto an armv7a Cortex-A8 CPU the file silently exits as follows:
...
0
votes
0answers
29 views
IAR Elf file alignment
Sorry if this has been posted before, but I am developing a simple library in .NET to read ELF files, add sections / segments to the file, such as a fill section and some other basic custom stuff. ...
0
votes
0answers
103 views
Opening ELF file and examining
I need to write C program which examine a object file in ELF Linking View format and translate it to Executable View format, load it to memory.
First question: how to open file and read it?
0
votes
0answers
78 views
readelf error: not an elf file, wrong magic bytes at the start
I am trying to learn and use Elfreader by compiling a simple hello world program to a elf file as-
gcc -o test test.c
The file compiles correctly and runs perfect.
But when I try to run ReadElf on ...
-1
votes
1answer
65 views
Inspecting Machine Instruction in Runtime
I am trying to print the op code of a function in run time. For that I have written a C program which should print the address and hex data at that address.
Here it tries to print the content of mul ...
1
vote
1answer
76 views
How to genernate position-dependent code for executable file when linking with shared library in gcc?
I'm learning ELF.I want to find the difference of elf format between position-dependent executable file and position-independent executable file when linking shared library.
But I can't genernate ...
0
votes
2answers
57 views
No .debug_str found in ELF file?
Im doing a project that works with ELF files. Right now Im using the following as a sample input -
class C {
public:
C();
C(int x, int y);
int getX();
private:
int x;
int y;
};
...
0
votes
3answers
165 views
How to get address of printf function in arm executable
I have assingment to make loader for ARM elf relocatible files. I have managed to parse elf somehow, and managed to make some simple relocations, but i have to do the following and i have trouble. I ...
0
votes
1answer
40 views
Symbol addresses in ELF
I am trying to read ELF symbol table.
I am facing following discrepancy in shared libraries and can't understand the reason behind it.
For libc, using readelf i got following output.
Num: Value ...
0
votes
1answer
40 views
Force GNU linker to generate 32 bit ELF executables
Hi I am currently generating x86 assembly for a compiler that I am writing and am having some trouble linking the file on my 64-bit VM (the assembly code is 32 bit).
I was able to assemble the ...
1
vote
3answers
307 views
Reading elf file - section header string table
I have to write a C program that prints an ELF file (it's for a school assignment so it needs to be custom made, without any libraries). I've read an documentation for the ELF file format and figured ...
0
votes
1answer
44 views
Executing a ELF binary without creating a local file?
Is it possible to execute a binary file without copying it to hard drive?
I know /lib/ld-linux.so.2 can load arbitrary binaries, but that still requires a locally stored file, my thought was to ...

