Tagged Questions
9
votes
5answers
5k views
What are the calling conventions for UNIX & Linux system calls on x86-64
Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32:
http://www.int80h.org/bsdasm/#system-calls
...
5
votes
3answers
102 views
Where do you check the prototypes of syscalls on x86-64 machines?
That is, how do you know
how many parameters a specific syscall expects,
which register each parameter should be in,
and finally what each parameter means?
Is there a man alike command to tell ...
5
votes
2answers
85 views
Build modern (4.x) GCC to target a 2.4.x kernel on the same architecture as the host?
The question is relatively straight forward: how can I build a GCC of the 4.x series (along with binutils and friends) that targets a 2.4 ABI on the same architecture as the host for the compiler?
...
5
votes
2answers
620 views
What is the format of the x86_64 va_list structure?
Anyone have a reference for the representation of va_list in the x86_64 ABI (the one used on Linux)? I'm trying to debug some code where the stack or arguments seem corrupt and it would really help to ...
4
votes
1answer
668 views
Why would the ELF header of a shared library specify Linux as the OSABI?
All the standard shared libraries on my Linux system (Fedora 9) specify ELFOSABI_NONE (0) as their OSABI.
This is fine - however I've received a shared library from a supplier where the OSABI given ...
3
votes
4answers
3k views
Why I need to re-compile vmware kernel module after a linux kernel upgrade?
After a linux kernel upgrade, my VMWare server cannot start until using vmware-config.pl to do some re-config work (including build some kernel modules).
If I update my windows VMWare host with ...
2
votes
2answers
118 views
ELF generation using libelf hints
I'm trying to generate a simple static ELF using libelf, but I seem to be having troubles.
I do not wish to generate an object file and then link it w/ LD, instead I wish to generate it on my own.
...
2
votes
2answers
1k views
glibc: elf file OS ABI invalid
downloaded and compiled glibc-2.13. when i try to run a sample C program which does a malloc(). I get following error
"elf file OS ABI invalid"
Can anybody please pass my any ...
2
votes
1answer
345 views
Making syscalls on Linux without a stack
On Linux i386, the int $0x80 syscall ABI makes it easy to perform syscalls without having a valid userspace stack. The vdso/vsyscall interface, on the other hand, requires access to a stack. How do ...
1
vote
1answer
46 views
How to avoid STT_GNU_IFUNC symbols in your binary?
I need to deploy to a Red Hat 4.1.2 box (which has gcc 4.1.2). I use GCC 4.6.1 on Ubuntu 11.10 for development. Unfortunately some of the binaries that my build process creates are not usable on the ...
0
votes
1answer
23 views
What does “CXXABI_x.y” mean?
My RPM package has this in its dependencies list:
libstdc++.so.6()(64bit)
libstdc++.so.6(CXXABI_1.3)(64bit)
What do the strings in parenthesis mean? And if it is an ABI version, how can I change, ...