Tagged Questions
The system-calls tag has no wiki summary.
16
votes
1answer
748 views
How do 32-bit applications make system calls on 64-bit Linux?
Some (many? all?) 64-bit1 Linux distros allow running 32-bit applications by shipping parallel collections of 32-bit and 64-bit libraries (including libc). So a 32-bit application can link against ...
13
votes
2answers
223 views
Bad address when adding a system call
I have downloaded kernel 2.6.38-5 and want to add a system call.
I did the following:
I have added my system call to system call table;
<src folder>/arc/x86/kernel/syscall_table_32.S
.long ...
11
votes
7answers
3k views
How to control which core a process runs on?
I can understand how one can write a program that uses multiple processes or threads: fork() a new process and use IPC, or create multiple threads and use those sorts of communication mechanisms.
I ...
9
votes
6answers
1k views
Why is my “cat” function with system calls slower compared to Linux's “cat”?
I've done this function in C using system calls (open, read and write) to simulate the "cat" function in Linux systems and it's slower than the real one...
I'm using the same buffer size as the real ...
8
votes
1answer
240 views
If close(2) fails with EIO, will the file descriptor still be deleted?
If a close(2) system call fails with EIO, will the file descriptor still be deleted?
8
votes
3answers
148 views
What system calls to block/allow/inspect to create a program supervisor
as per http://stackoverflow.com/questions/3642370/using-ptrace-to-write-a-program-supervisor-in-userspace, I'm attempting to create the program supervisor component of an online judge.
What system ...
7
votes
4answers
359 views
How do system calls work?
I understand that a user can own a process and each process has an address space (which contains valid memory locations, this process can reference). I know that a process can call a system call and ...
7
votes
3answers
868 views
What encoding used when invoke fopen or open?
When we invoke system call in linux like 'open' or stdio function like 'fopen' we must provide a 'const char * filename'. My question is what is the encoding used here? It's utf-8 or ascii or ...
6
votes
1answer
125 views
How to make a system call and read the stdout, in D?
I thought to try using D for some system administration scripts which require high performance (for comparing performance with python/perl etc).
I can't find an example in the tutorials I looked ...
6
votes
4answers
287 views
How can I get a list of Linux system calls and number of args they take automatically?
I writing a Linux system call map for the radare2 debugger. This means providing a huge static array mapping system call number to a syscall name name and the number of arguments it takes. This was ...
6
votes
4answers
3k views
How is malloc() implemented internally?
Can anyone explain how malloc() works internally?
I have sometimes done strace program and I see a lot of sbrk system calls, doing man sbrk talks about it being used in malloc() but not much more.
...
6
votes
3answers
403 views
Assembly, hello world question
I'm learning asm on Linux (noobuntu 10.04)
I got the following code off of: http://asm.sourceforge.net/intro/hello.html
section .text
global _start ;must be declared for linker (ld)
_start: ;tell ...
6
votes
2answers
435 views
what happens at the lower levels after a fork system call?
I know what the fork() does at the higher level. What I'd like to know is this -
As soon as there is a fork call, a trap instruction follows and control jumps to execute the fork "handler" . ...
5
votes
1answer
217 views
Elegant system calls in haskell
I'm making a web-site where users can log in using the kerberos service. Though, it's quite irrelevant for my problem.
Since I'm using kerberos I want to use a system call to invoke kinit, but I ...
5
votes
3answers
269 views
Overloading fork( )
I have overloaded the fork( ) system call, and created my own version of fork( ) using RTLD_NEXT. That is, dlsym(RTLD_NEXT, fork). This will hit my version of fork. After this i want to replicate the ...
5
votes
1answer
1k views
Magic numbers of the Linux reboot() system call
The Linux Programming Interface has an exercise in Chapter 3 that goes like this:
When using the Linux-specific reboot()
system call to reboot the system, the
second argument, magic2, must be
...
5
votes
3answers
625 views
system call to map memory to a file descriptor (inverse mmap)?
I want to be able to map memory to a file descriptor so I can use some existing functions that need a file descriptor. Here's essentially what I'm looking for:
void do_operation1(int fd);
char ...
5
votes
7answers
864 views
Where can I obtain a list of UNIX system calls?
Where are some lists of system calls on UNIX?
This wasn't my original question, but thanks anyway :)
5
votes
4answers
4k views
Write a signal handler to catch SIGSEGV
I want to write a signal handler to catch SIGSEGV.
First , I would protect a block of memory for read or writes using
char *buffer;
char *p;
char a;
int pagesize = 4096;
" ...
5
votes
3answers
319 views
How to determine values saved on the stack?
I'm doing some experimenting and would like to be able to see what is saved on the stack during a system call (the saved state of the user land process). According to ...
4
votes
6answers
91 views
C++ object hierarchy dependencies code design
I want to make two classes: object and object_manager but I'm confused about how they should see/include each other. I've heard that it's forbidden for two headers to include each other and if my code ...
4
votes
1answer
511 views
4
votes
5answers
4k views
How are sbrk/brk implemented in Linux?
I was thinking about how the Linux kernel implements system calls and I was wondering if someone could give me a high level view of how sbrk/brk work?
I've reviewed the kernel code, but there is just ...
4
votes
1answer
1k views
Spurious readiness notification for Select System call
On http://linux.die.net/man/2/select, under BUGS section it is mentioned that the select system call may sometimes spuriously set the FD ready and the subsequent read call will return 0. The text ...
4
votes
2answers
322 views
Redundant Linux Kernel System Calls
I'm currently working on a project that hooks into various system calls and writes things to a log, depending on which one was called. So, for example, when I change the permissions of a file, I ...
4
votes
7answers
1k views
Recovery from optical media ignoring read errors
I have backups of files archived in optical media (CDs and DVDs). These all have par2 recovery files, stored on separate media. Even in cases where there are no par2 files, minor errors when reading ...
3
votes
2answers
38 views
What determines the order directory entries are returned by getdents?
Background is I have an existing application which lists directory entries; strace reveals it just calls getdents and lists them in the order returned. I would like them displayed in the same order as ...
3
votes
2answers
151 views
Disassembling running kernel
I tried running gdb to disassemble the kernel and tried running:
root@debian:/home/jestinjoy# gdb /usr/src/linux-2.6.38.8/vmlinux
GNU gdb (GDB) 7.0.1-debian
Copyright (C) 2009 Free Software ...
3
votes
3answers
149 views
C Programming - Stat system call - Error
I'm new to C but trying some system calls.
I'm writing program that iterates through all files in a directory and prints the current file name and size. I can get the program to print the file name ...
3
votes
3answers
184 views
Difference between nice and setpriority in unix
I'm trying to implement a different flavor of the 'nice' command of unix in C. I have seen the definitions of nice() system call and setpriority() call. The nice() call only increments/decrements the ...
3
votes
2answers
89 views
Can I capture shell invocations from Perl?
I have a Perl script which invokes other programs, i.e. it calls system and/or exec and/or open with a pipe and/or uses the backtick operator.
Can I run this script in such a way that it will print ...
3
votes
2answers
84 views
Prevent a file descriptor's closure on POSIX systems
There is a library (libvte, a terminal emulation library) that uses a pair of file descriptors for a pty master/slave pair. I need to be able to "steal" the master fd from the library for my own use ...
3
votes
4answers
234 views
in linux, is it normal that there is no null character at the end of file
in linux, is it normal that there is no null character at the end of file?
I made a empty file and open with mouse pad write az.
save it.
when I open the file up with hex editor, there is no null ...
3
votes
3answers
121 views
Reading lines in c with windows.h
I need to use system-calls of windows.h to read a file which I get from command line. I can read to whole file to buffer using ReadFile() and then cut the buffer at the first \0, but how can I read ...
3
votes
3answers
230 views
Reason for Segmentation Fault
I have written a program using clone() system call having CLONE_VM and CLONE_FILES set.
I am not able to understand why the output is showing Segmentation Fault. Can somebody please correct my code ...
3
votes
7answers
333 views
How can I get rid of the STDERR in Perl
I'm using some system commands in Perl.
In the below case I was getting output as follows:
ls: import-log.*: No such file or directory
ls: error-log.*: No such file or directory
No specified ...
3
votes
3answers
263 views
NASM Guessing Number Game Gone Wrong
I have decided to create a simple guessing number game that uses Linux system calls, and some C functions to provide a more simpler interface. I seem to get a segmentation fault when I convert the int ...
3
votes
3answers
689 views
What is the minimum SO_RCVBUF value?
To minimize latency (I don't care about packet loss) I want the smallest possible receive buffer for UDP. However, when I set SO_RCVBUF to below 1000 (with setsockopt), my program never receives any ...
3
votes
2answers
266 views
Changing the Fork() system call
Hi I am trying create a system call that will count the number of forks that were called. I was going to change the fork system call so that it has a counter that will keep track of the number of ...
3
votes
2answers
2k views
How to record call in android? Is it possible?
I want to record call from android phone.
I am using android.media.MediaRecorder pckg.
Also used following code:
mrec.setAudioSource(MediaRecorder.AudioSource.VOICE_CALL);
...
3
votes
2answers
389 views
How does one maintain memory with the putenv system call?
The POSIX system call putenv states that the allocated memory string cannot be freed by the caller after the call to putenv. Therefore, you cannot call putenv with an automatic variable.
Example:
...
3
votes
5answers
875 views
Using system calls to implement the unix cat command
For my OS class I have the assignment of implementing Unix's cat command with system calls (no scanf or printf). Here's what I got so far:
(Edited thanks to responses)
#include <sys/types.h>
...
3
votes
2answers
413 views
Using ptrace to write a program supervisor in userspace
I'll looking for advice/resources to write a program that can intercept system calls from a programm to supervise it's filesystem, network, etc access.
The aim of this is to write an online judge, so ...
3
votes
6answers
423 views
GCC how to block system calls within a program?
Does anyone tell me how to block some specific system calls within a program, please? I am building a system which takes a piece of C source code, compiles it with gcc and runs it. For security ...
3
votes
2answers
205 views
Doubts in System call mechanism in linux
We transit from ring3 to ring0 using 'int' or the new 'syscall/sysenter' instruction. Does that mean that the page tables and other stuffs that needs to be modified for the kernel is automatically ...
3
votes
3answers
568 views
How to find which type of system call is used by a program
I am working on x86_64 machine. My linux kernel is also 64 bit kernel. As there are different ways to implement a system call (int 80, syscall, sysenter), i wanted to know what type of system call my ...
3
votes
1answer
1k views
C system calls open / read / write / close problem
given the following code (it's supposed to write "hellowolrd" in a "helloworld" file, and then read the text):
#include <fcntl.h>
#include <sys/types.h>
#include <sys/stat.h>
...
3
votes
1answer
218 views
Kernel panic when altering system_call in entry.S
I'm trying to implement a system call counter, and as a result I included an int value in task_struct, and a function that increments it in a separate file. This function is supposed to be called from ...
3
votes
2answers
506 views
Linux Kernel programming: trying to get vm_area_struct->vm_start crashes kernel
this is for an assignment at school, where I need to determine the size of the processes on the system using a system call. My code is as follows:
...
struct task_struct *p;
struct vm_area_struct *v;
...
3
votes
1answer
855 views
SystemParametersInfo parameter definitions for C#
I want to make a call to SystemParametersInfo from C#. The first argument to this function is one of a large collection of possible values like SPI_GETACCESSTIMEOUT, which are listed in the ...