0
votes
0answers
11 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
vote
1answer
36 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 ...
3
votes
2answers
46 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
1answer
54 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 ...
-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
64 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
1answer
33 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
202 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
37 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 ...
1
vote
1answer
66 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 ...
1
vote
1answer
31 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
47 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 ...
3
votes
0answers
41 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 ...
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 ...
3
votes
1answer
128 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 ...
0
votes
0answers
72 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
72 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 ...
5
votes
1answer
127 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
0answers
70 views

How to check entry point of non-striped Linux Kernel bin image

I have linux kernel image of which I would like to know the entry point and load address .This image is in bin format and output of the file command is below file linux_kernel.bin ...
0
votes
1answer
72 views

How can I view function names and parameters contained in an ELF file?

If I look at the file's bytes I can definately see some of the function names in there. Is there any tool that will list them for me? Maybe even their parameters too?
1
vote
1answer
79 views

examining text segment in a statically linked executable

I have a statically linked application binary that links against multiple user libraries and the pthread library. The application only uses a limited set of functions from each of these libraries. ...
-3
votes
1answer
43 views

How to find Number of Program Headers of a ELF

I need to find number of program headers of an ELF executable (a.out) without using objdump or readelf. I think it can be done be through hexdump. But i have no idea about it. Please give me a idea on ...
1
vote
0answers
45 views

PLT redirection and dlsym

I want to redirect a few functions in an arbitrary program and be able to call the old functions in the new functions. I use hotpatch to inject my shared library and PLT redirection seems to be the ...
0
votes
0answers
52 views

Not able to get all Section names of Elf File using sprintf

plz help m only getting one section name from the below code using sprintf i am working on qt creator ..plz help there is some wrong with sprintf only displaying one section name... QString set; ...
3
votes
1answer
116 views

Removing entry from DYNAMIC section of elf file

I have 3rd party library A, that requires some library B. A is linked to binrary, which is linked with static version B. Therefore there's no need in dynamic version of B any more. A is not under ...
4
votes
2answers
200 views

Build static ELF without libc using unistd.h from Linux headers

I'm interested in building a static ELF program without (g)libc, using unistd.h provided by the Linux headers. I've read through these articles/question which give a rough idea of what I'm trying to ...
0
votes
1answer
64 views

Delayed Symbol Resolving

I am working on some diagnostic tools to help locate memory issues on an embedded ARM platform. Due to memory constraints, I can't load all symbols for all libraries on the unit itself. What ...
0
votes
1answer
45 views

linux executable doesn't executes but exits silently

I've got 2 virtual PC with CentOS with the same executable. On 1st pc it runs and gives command line options. On second it doesn't say anything and exits. How can I diagnose second PC? What goes on ...
2
votes
1answer
214 views

What's the difference of section and segment in ELF file format

From wiki Executable and Linkable Format: The segments contain information that is necessary for runtime execution of the file, while sections contain important data for linking and relocation. ...
1
vote
1answer
161 views

Why Linux/gnu linker chose address 0x400000?

I'm experimenting with ELF executables and the gnu toolchain on Linux x86_64: I've linked and stripped (by hand) a "Hello World" test.s: .global _start .text _start: mov ...
1
vote
2answers
125 views

Is it possible to execute an array numbers as a function?

Long story short, I have an array of integers that represents the .text section of an ELF binary with one function. I want to execute this function. I have run this command prior to trying to execute ...
4
votes
1answer
140 views

How convert address in elf to physical address

I know os will load elf in physical memory. When execute jmp elf-address,system will check tlb and convert the elf-address to physical address. I am confused that elf-address does not have segment num ...
0
votes
1answer
148 views

Reason for SIGSEGV

I have a sample application that I have created to understand an experiment with ELF binary format. When I run it, it crashes after receiving SIGSEGV. After attaching it with gdb and then running, I ...
3
votes
1answer
129 views

strange ELF binary

I have a strange ELF binary. I can run this binary in 32bit linux. but if I open this binary with IDA disassembler IDA says "invalid entry point". result of readelf is as below ...
2
votes
1answer
621 views

What do the .eh_frame and .eh_frame_hdr sections store, exactly?

I know that, when using languages that support exceptions, such as C++, additional information must be provided to the runtime environment that describes the call frames that much be unwound during ...
1
vote
1answer
68 views

What kinds of symbols will the linker put into an executable ELF?

Consider the following command: g++ -Wl,--start-group main.o liba.a -Wl,--end-group -o a.out Is it possible that in a.out there are some symbols defined in liba.a but not used by main.o? If yes, in ...
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 ...
2
votes
3answers
912 views

loading ELF file in C in user space

I am trying to load an ELF file compiled with "gcc -m32 test.c -o test.exe" on Linux in a 64 bit x86 environment. I am trying to load that 32bit file (test.exe) inside a user space ELF loader which ...
1
vote
1answer
145 views

Can I change 'rpath' in an already compiled binary?

I have an old executable that's scheduled for the scrap heap, but it's not there yet. It relies on some libs that have been removed from my environment, but I have some stub libs someplace where it ...
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 ...
1
vote
1answer
111 views

ELF Program Headers: MemSiz vs. FileSiz

readelf -l /bin/bash gives me this: Program Headers: Type Offset VirtAddr PhysAddr FileSiz MemSiz Flags Align PHDR ...
1
vote
1answer
36 views

How to get the name of a segment by using its `Elf64_Phdr` program header?

As I know, a ELF object consists of a number of segments, each of which has a corresponding program header describing the segment. In libelf, a program header is defined as a Elf64_Phdr (or ...
2
votes
1answer
94 views

How to get a pointer to an specific section of a dynamic library (Linux ELF)?

As can be seen in the second answer for this question , it's quite simple to get a pointer to an specific section of a program from within itself, using the section's name. With libelf, just open the ...
1
vote
2answers
74 views

What is meant by “dynamic tag” refered to in this text:

Copied from http://wiki.debian.org/Multiarch/LibraryPathOverview : any directory named in the (deprecated) DT_RPATH dynamic tag of the requesting object, or, recursively, any parent object (note ...
0
votes
0answers
47 views

how linker makes elf header

Please, explain how linker makes elf-file header? What does elf-file header depend on? I have two different toolchains for different platforms, and every binary file has its own header, which has ...
1
vote
1answer
245 views

Loading ELF shared library and custom binfmt executable into same Linux address space

I am working on a project to load and run a custom binary format executable (PE, in my case) on a Linux platform. I've done this pretty successfully so far by first loading the executable and then ...
2
votes
1answer
58 views

Determine time required to start a program in GNU/Linux?

In GNU/Linux, is it possible to determine the time required to start a program? Where "start" is defined as having executed load_elf_binary() (or some other applicable function). In particular I want ...
1
vote
0answers
51 views

Dynamic ELF patching on BSD with libmonkey

I played a little bit with nice library called libmonkey which gives nice interface for dynamic ELF patching on Linux. However, I'm trying to run it on FreeBSD; compilation passed, but I'm getting ...
0
votes
1answer
76 views

'/usr/lib/mozilla/plugins/npPluginTest.so' is not an ELF executable for sh

I have created NPAPI plugin, which is workig fine on linux where I have created the .so file but when I deployed this plugin on our production device where we have linux environment with limited ...
0
votes
0answers
78 views

What happened to _start and the arguments of __libc_start_main on 64-bit Linux?

I'm reading http://dbp-consulting.com/tutorials/debugging/linuxProgramStartup.html and trying to verify things by hand. The disassembly of _start is given as follows: 080482e0 <_start>: ...

1 2 3 4