Tagged Questions
The syscall tag has no wiki summary.
12
votes
2answers
124 views
History of syscalls added to Linux?
Is there anywhere I can get a complete list of the minimum version of Linux needed for each syscall? I'm looking for a general answer to questions of the form "If I use syscall X, what is the minimum ...
10
votes
6answers
579 views
What does brk( ) system call do?
According to Linux programmers manual: "brk() and sbrk() change the location of the program break, which defines the end of the process's data segment." What does the data segment mean over here? Is ...
10
votes
2answers
802 views
How to force gcc use int for system calls, not sysenter?
Is it possible to force gcc use int instruction for all the system calls, but not sysenter? This question may sound strange but I have to compile some projects like Python and Firefox this way.
...
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
...
9
votes
2answers
801 views
Windows equivalent to Linux's readahead syscall?
Is there a Windows equivalent to Linux's readahead syscall?
EDIT:
I would like a full function signature if possible, showing the equivalent offset/count parameters (or lower/upper).
Eg:
The Linux ...
9
votes
2answers
13k views
How do I get a thread ID from an arbitrary pthread_t?
I have a pthread_t, and I'd like to change its CPU affinity. The problem is that I'm using glibc 2.3.2, which doesn't have pthread_setaffinity_np(). That's OK, though, because pthread_setaffinity_np() ...
8
votes
3answers
336 views
Implementation of system calls / traps within Linux kernel source
I'm currently learning about operating systems the use of traps to facilitate system calls within the Linux kernel. I've located the table of the traps in traps.c and the implementation of many of the ...
8
votes
4answers
3k views
How does sched_setaffinity() work?
I am trying to understand how the linux syscall sched_setaffinity() works. This is a follow-on from my question here.
I have this guide, which explains how to use the syscall and has a pretty neat ...
7
votes
4answers
344 views
Loading raw code from C program
I'm writing a program that loads and executes code from file.
But i got a problem: "write" syscall does not work.
Code successfully loads and executes, but does not display any text on the screen.
...
6
votes
3answers
975 views
How to Dynamically Allocate Memory Using Assembly and System Calls Under Linux
I'm looking for some good code examples of dynamic memory allocation using an assembly language under Linux and using system calls, not malloc and friends.
What are some of the simplest but effective ...
6
votes
5answers
407 views
“short read” from filesystem, when can it happen?
It is obvious that in general the read(2) system call can return less bytes than what was asked to be read. However, quite a few programs assume that when working with a local files, read(2) never ...
6
votes
4answers
711 views
How does a syscall actually happen on linux?
Inspired by this question
http://stackoverflow.com/questions/1237489/how-can-i-force-gdb-to-disassemble
and related to this one
http://stackoverflow.com/questions/1245809/what-is-int-21h
How does ...
6
votes
1answer
2k views
Is there a better way than parsing /proc/self/maps to figure out memory protection?
On Linux (or Solaris) is there a better way than hand parsing /proc/self/maps repeatedly to figure out whether or not you can read, write or execute whatever is stored at one or more addresses in ...
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
5answers
588 views
How does compiler know that the function you used is a system call?
For the following snippet of code,
int n;
char buf[100];
int fd = open ("/etc/passwd", O_RDONLY);
n = read ( fd, buf, 100);
How the compiler comes to know that read is a system call not any library ...
5
votes
2answers
1k views
x86 Assembly: Before Making a System Call on Linux Should You Save All Registers?
I have the below code that opens up a file, reads it into a buffer and then closes the file.
The close file system call requires that the file descriptor number be in the ebx register. The ebx ...
5
votes
1answer
435 views
Cross platform way of testing whether a file is a directory
Currently I have some code like (condensed and removed a bunch of error checking):
dp = readdir(dir);
if (dp->d_type == DT_DIR) {
}
This works swimmingly on my Linux machine. However on another ...
4
votes
2answers
159 views
Linux-kernel: printk from “open” syscall don't work
I have a doubt.
I opened the kernel and I changed the directory linux-3.1.1/fs/open.c
I changed the follow code in the open.c.
SYSCALL_DEFINE3(open, const char __user *, filename, int, flags, int, ...
4
votes
2answers
186 views
Startup code of a statically-linked executable issues so many system calls?
I am experimenting by statically compiling a minimal program and examining the system calls that are issued:
$ cat hello.c
#include <stdio.h>
int main (void) {
write(1, "Hello world!", 12);
...
4
votes
1answer
181 views
ptrace and threads
I'm working on an linux application incorporating ptrace to observe the threads of another process. When the application I observe forks a child process this already works quite well. By calling ...
4
votes
1answer
355 views
gdb: break when program opens specific file
Back story: While running a program under strace I notice that '/dev/urandom' is being open'ed. I would like to know where this call is coming from (it is not part of the program itself, it is part ...
4
votes
3answers
105 views
In QEMU, is it possible to intercept packets being sent/received by the Linux Guest OS?
We are doing a little project that involves monitoring the Guest OS (for example Linux) from the hypervisor layer (i.e. QEMU). One of the things that we want to monitor is network traffic going in/out ...
4
votes
2answers
179 views
In Linux, on entry of a sys call, what is the value in %eax? (not orig_eax)
When a syscall returns, I get the syscall return value in %eax, however on entry I am getting -38, which is 0xFFFFFFDA in hex. This is for both write/read. What is this number? Can it be used to ...
4
votes
1answer
358 views
c and LD_PRELOAD. open and open64 calls intercepted, but not stat64
I've done a little shared library that tries to intercept open, open64, stat and stat64 sys calls.
When I export LD_PRELOAD and run oracle's sqlplus, I can see the traces of the open and open64 calls, ...
4
votes
4answers
104 views
Adding a “useful” syscall not normally available to a non-root user
I've implemented a simple Hello World syscall with limited functionality — that simply transitions from user mode to kernel mode, prints a message that is logged with the kernel messages, and ...
4
votes
2answers
947 views
How to reimplement (or wrap) a syscall function in linux?
Suppose I want to completely take over the open() system call, maybe to wrap the actual syscall and perform some logging. One way to do this is to use LD_PRELOAD to load a (user-made) shared object ...
4
votes
1answer
97 views
How to get high resolution time using sparc assembly?
I use syscall SYS_time, but its resolution is 1 second.
Is there any other solution?
4
votes
3answers
945 views
How does linux-kernel read proc/pid file?
How and Where does linux-kernel read proc/pid file which shows all processes in the system. I found linux-source-2.6.31/fs/proc/ Here there are files, but it is hard to understand because it is really ...
3
votes
1answer
83 views
Disabling vsyscalls in Linux
I'm working on a piece of software that monitors other processes' system calls using ptrace(2). Unfortunately most modern operating system implement some kind of fast user-mode syscalls that are ...
3
votes
3answers
93 views
Echo value to Linux console
How can I, in C, output a value from a syscall to the Linux console so that it will be visible after a dmesg? What method do I use for printing?
3
votes
1answer
422 views
Linux: Executing syscall via ptrace()
Hey :)
I am currently developing a memoryhacking-library for x86/x64 Linux.
The point I struggle is to implement some kind of remote syscall execution.
Here is my code which just crashes the other ...
3
votes
2answers
590 views
How to hook syscall table at runtime on PPC Linux?
Subject: PPC Assembly Language - Linux Loadble Kernel Module
Detail: How access local TOC area (r2) when called from kernel in syscall table hook?
I have written a loadable kernel module for Linux ...
3
votes
2answers
102 views
Process state when calling syscall?
What process state has when it calls a syscall?
I mean, don't asume it's an I/O syscall like read or write...
It's the process itselft that executes kernel code, or the process is suspendes and ...
3
votes
2answers
570 views
syscall from within GCC inline assembly
is it possible to write a single character using a syscall from within an inline assembly block? if so, how? it should look "something" like this:
__asm__ __volatile__
(
...
3
votes
1answer
507 views
Invalid argument in sendfile() with two regular files
I'm trying to test the sendfile() system call under Linux 2.6.32 to zero-copy data between two regular files.
As far as I understand, it should work: ever since 2.6.22, sendfile() has been implemented ...
3
votes
1answer
333 views
Invalid argument when calling linux splice()
I wanted to try out the splice syscall. I have this function - it should copy content of one file to another:
static void test_splice( int in, int out ) {
int i = 0, rcvd = 0;
int ...
3
votes
3answers
307 views
select()-able timers
select() is a great system call. You can pack any number of file descriptors, socket descriptors, pipes, etc. and get notified in a synchronous fashion when input becomes available.
Is there a way to ...
3
votes
3answers
182 views
Limiting syscall access for a Linux application
Assume a Linux binary foobar which has two different modes of operation:
Mode A: A well-behaved mode in which syscalls a, b and c are used.
Mode B: A things-gone-wrong mode in which syscalls a, b, c ...
3
votes
1answer
746 views
How do I call Linux syscall from kernel space?
I'm porting linux kernel module written for Linux 2.4 to work with Linux 2.6.
Some syscalls declared through syscallN() macros and wrapped in set_fs() calls were used in the code.
How can I still use ...
3
votes
2answers
219 views
Is writing to a socket an arbitrary limitation of the sendfile() syscall?
Prelude
sendfile() is an extremely useful syscall for two reasons:
First, it's less code than a read()/write() (or recv()/send() if you prefer that jive) loop.
Second, it's faster (less syscalls, ...
2
votes
3answers
160 views
x86_64 Assembly Linux System Call Confusion
I am currently learning Assembly language on Linux. I have been using the book 'Programming From the Ground Up' and all the examples are 32-bit. My OS is 64-bit and I have been trying to do all the ...
2
votes
0answers
73 views
New syscall not found (linux kernel 3.0.0) where should I start looking?
I created two new syscalls, but when I try to test them I get the following error:
matt@ubuntu:~/test$ gcc test.c
test.c: In function ‘newcall’:
test.c:6:17: error: ‘sys_get_slob_amnt_free’ ...
2
votes
1answer
57 views
why the 'pause' system-call always return -1? [closed]
or, why can't we simply declare pause as:
#include <unistd.h>
void pause(void);
since the return value of pause is meaningless.
2
votes
1answer
93 views
MIPS: Can I get unsigned int value from user via syscall?
The title pretty much sums this up. I am writing a program in 32-bit MIPS Assembly Language (using the MARS emulator) for a school project and I'm having zero luck reading in int values > ...
2
votes
1answer
147 views
Problems doing syscall hooking
I use the following module code to hooks syscall, (code credited to someone else, e.g., Linux Kernel: System call hooking example).
#include <linux/kernel.h>
#include <linux/module.h>
...
2
votes
1answer
89 views
Linux set end of file (shrink, truncate, cut out some data @ end)
In windows there is SetEndOfFile() API to cut out some data in the end.
How do I do this in Linux?
The pseudo-code sample of what I'm looking for (Linux-specific):
int fd = ...
2
votes
1answer
262 views
How to use _syscall3 properly
Our embedded Linux has the ability to set the CPU affinity, however, the ucLibc does not have support for the sched_{set/get}affinity functions.
Hence we are attempting to use the syscall interface ...
2
votes
2answers
196 views
Anyone can understand how gettimeofday works?
gettimeofday is a syscall of x86-86 according to this page(just search gettimeofday in the box):
int gettimeofday(struct timeval *tv, struct timezone *tz);
I thought the disas should be easy ...
2
votes
2answers
127 views
How do I write the value in RAX to STDOUT in assembly?
I can use syscall for write to print some data in memory to STDOUT:
ssize_t write(int fd, const void *buf, size_t count);
That is:
movq $1, %rax
movq $1, %rdi
move address_of_variable %rsi
...
2
votes
1answer
222 views
Linux write sys call using string on stack
I have just started to teach myself x86 assembly on linux from these video tutorials. Early on it teaches you how to use the write sys-call to print a string that is stored in the data section. Is it ...