1
vote
1answer
709 views

What is __gmon_start__ symbol?

I'm compiling this code with gcc hello.c -o hello -O3 #include <stdio.h> int main(void) { printf("Hello world\n"); return 0; } when I list the relocations I get: test@southpark$ ...
3
votes
2answers
188 views

ELF Dynamic loader symbol lookup ordering

What is the search order for symbol lookup when resolving dynamic relocations? When resolving symbols for a shared library does the loader first search in the 'main executable' (to let the main ...
0
votes
0answers
59 views

Dynamic Loader Relocations

What the dynamic loader for Linux x86 32 bits does when it encounters the following types of relocation: 1) R_386_COPY; 2) R_386_GLOB_DAT and 3) R_386_JMP_SLOT ? The ELF Specification (with Intel ...
3
votes
2answers
98 views

Is there a tool to obtain info on a particular symbol in an ELF .o or executable file?

I'm looking for a convenient way (for use in a build testing script) to query individual symbols in an object file. Is there a tool that can answer the question (preferably by its exit status) "does ...
3
votes
1answer
720 views

Is the ELF .notes section really needed?

On Linux, I'm trying to strip a statically linked ELF file to the bare essentials. When I run: strip --strip-unneeded foo or strip --strip-all foo The resulting file still has a fat .notes ...
3
votes
1answer
445 views

MIPS, ELF and partial linking

I have a big software project with a complicated build process, which works like this: Compile individual source files. Partially link object files for each module together into another .o using ld ...
4
votes
1answer
252 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 ...
3
votes
1answer
475 views

Merge additional code into executable (arm-linux)

I'm trying to merge some extra logging code into a statically linked (android arm linux) executable. (Normal tracing methods don't seem to work, as it's a daemon process that clone()s just before ...
0
votes
1answer
794 views

Creating a relocatable shared library with binutils

I have a custom toolchain that generates relocatable shared libraries. This works with an equally custom ELF loader which loads these into memory, fixing them up. I am now trying to persuade gcc and ...
5
votes
4answers
2k 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, ...
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 ...
4
votes
2answers
2k views

objdump ELF and Windows

I am fairly new to this subject, that is ELF and any Linux related stuff. I am trying to write an ELF file and would prefer to do it on WinXP. My question is, can this be done with MS Visual Studio ...