ELF stands for Executable and Linkable Format, a file format for files containing machine code.
-1
votes
0answers
35 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 ...
1
vote
0answers
20 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
31 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
35 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
23 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
43 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
6 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
45 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
43 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
29 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
0answers
24 views
How to hook a function for a particular shared ELF library used in another program?
I try to implement the technique from:
How to hook a function for a particular shared ELF library?
on an Android device.
I would like to know, if the changes on the ELF-partition of a ...
0
votes
1answer
51 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
80 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
17 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
88 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
36 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
62 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
60 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
45 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
117 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 ...
-1
votes
0answers
34 views
extend ELF string on android ARM
I want to extend ELF file string . like "hello" -> "hello,stackoverflow"
i think should modify the offset .
.text section
.text:00008500 sub_8500 ; DATA XREF: ...
0
votes
1answer
29 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
32 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
173 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
36 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 ...
0
votes
0answers
23 views
How to build a binary with both code and private data from separate object files?
I have a software that I need to flash on an embedded device. However, this software is composed of two parts: the code itself (I have the source and can recompile if needed) and some binary private ...
1
vote
1answer
63 views
Loading Linux libraries at runtime
I think a major design flaw in Linux is the shared object hell when it comes to distributing programs in binary instead of source code form.
Here is my specific problem: I want to publish a Linux ...
0
votes
0answers
32 views
Minor version checks for ELF shared libraries
Short version: How can I emulate Mach-O's compatibility version feature with ELF shared libraries?
Long version: I want to create ELF shared libraries with "major.minor.patchlevel" versions. The ...
0
votes
1answer
53 views
Is there a tool similar to fromelf for extracting binary images on Windows
I wanted to integrate image extraction from an ELF system image based on address range, into a tool on windows. Is there any way i could do this on windows similar to using the fromelf tool from ARM ...
0
votes
1answer
25 views
readelf: meaning of column headers
In the outupt of readelf -S, I'd like to know what the column headers ES, Lk, Inf and Al mean.
For example:
Section Headers:
[Nr] Name Type Addr Off Size ES Flg ...
1
vote
0answers
77 views
bcrypt invalid elf header when running node app
I'm working on a nodejs project for school.
I wasn't able to install bcrypt with npm so i installed bcrypt-nodejs and the project worked fine yesterday.
But today, when I do a "node app" i have this ...
1
vote
1answer
30 views
syscall return 07 when call _exit
I am looking a paper Size Is EverythingSize Is Everything with kernel 3.8.4 x64 nasm gcc-4.7.2 fedora
by type in moretiny.asm
BITS 64
EXTERN _exit
GLOBAL _start
SECTION .text
_start:
push ...
0
votes
2answers
43 views
Intel binary to ELF
Really quick question here. I'm working in Ubuntu, I have a simple "Hello World!" program in assembly which I have assembled into x86 assembly. Now I want to turn that machine code into an ELF ...
0
votes
0answers
201 views
GCC arm-elf linker error: undefined reference to “strlen”, “malloc”, “strcpy”
I'm using GCC (CygWin) cross-compiling targeting an Arm7 processor. the problem is none of the standard library functions are available for my program. as I understand it, libc.a is the library i ...
3
votes
0answers
37 views
Canonical way to sign (and verify) an ELF file?
I would like to sign ELF files, preferably with a PGP key and later be able to verify the signature. Failing that I'll also go with a Authenticode or SSL certificate for signing if that makes more ...
4
votes
3answers
140 views
Maximum stack size needed for a C program on MSP430
In a C program that doesn't use recursion, it should be possible in theory to work out the maximum/worst case stack size needed to call a given function, and anything that it calls. Are there any ...
0
votes
1answer
45 views
why does a stack program segment have executable attribute
Here is a dump from a.out
STACK off 0x00000000 vaddr 0x00000000 paddr 0x00000000 align 2**2
filesz 0x00000000 memsz 0x00000000 flags rwx
Why does a stack segment have executable attribute?
Why ...
0
votes
1answer
21 views
How to extend a ELF binary
I am writing a small instrumentation tool. I must insert the instrumentation routine within the binary file. A good approach should be to insert those routines in a separate code segment and a ...
4
votes
0answers
130 views
Control order of libraries with libtool
We have an autotools-built project that requires both lcrypto (from OpenSSL) and lXXX (from a third party hardware vendor). Unfortunately, lXXX exposes an old version of the lcrypto library(!).
When ...
3
votes
1answer
122 views
Working with ELF files
I need to work with simple ELF files in my C program.
I can't use any external libraries, but I can use elf.h.
Let's take hello.o file for source:
int Hello() { return 3; }
How could I access to ...
1
vote
1answer
73 views
How to extract function prototype from an ELF file?
I have been searching quite a lot, but haven't found a way to extract function prototype, atleast the argument types and return type from an ELF executable file. Using GNU BinUtils or any other ...
0
votes
0answers
67 views
Following Linux installation, Cygwin creates ELF executables
Programming with UNIX system calls has never really given me trouble, as I have been able to use Cygwin for both compilation and execution of my C++ programs that contained them.
Recently, however, I ...
1
vote
2answers
66 views
How to count static initializer in an ELF file?
I'm trying to count static initializers in a C++ file.
Solution I already have (which used to work with gcc-4.4) is looking at size of the .ctors ELF section.
After an upgrade to gcc-4.6, this seems ...
2
votes
2answers
76 views
Extracting and Instrumenting elf files for powerPC on windows platform
I am trying to extract information like function name and its parameters from elf file, with the goal to perform robustness testing by changing the parameter values for functions, I am working on ...
10
votes
2answers
261 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 ...
0
votes
1answer
42 views
Elf custom loader
What steps do i need to do in order to load an elf file and execute it without glibc(compile it with gcc by using -nostdlib attribute).
0
votes
0answers
35 views
Elf zero padding
I compile a test.c file with gcc -nostdlib -Wl,-Ttext=0x100000 -o test.o test.c, .text section lies at offset 0x1000. When I compile-link as gcc -nostdlib -Wl,-Ttext=0x123456 -o test.o test.c, .text ...
0
votes
0answers
72 views
ld linker script producing huge binary
I'm using binutils-2.21.53.0.1-6.fc16.x86_64.
I have a small object file, hello.o with just enough "stuff" to have contents in all sections:
Section Headers:
[Nr] Name Type ...
5
votes
1answer
122 views
making proprietary ELF binaries portable on Linux
I am searching for a way to make existing proprietary ELF-binaries, which are linked against specific versions of system libraries, portable. With portable I mean making the executable work on every ...
0
votes
1answer
122 views
Get programs flags with a C program
I'm actually trying to get the flags of given by the objdump -s command through a C program. But I don't know where to look for them. For example here:
./my_objdump: file format elf64-x86-64
...


