A system call is how a program requests a service from an operating system's kernel

learn more… | top users | synonyms

0
votes
1answer
20 views

MIPS Print String that was red without BREAKS

.data: str2: .space 20 #read string la $a0,str2 li $a1,20 li $v0,8 syscall #print string la $a0, str2 li $v0, 4 syscall #print string la $a0, str2 li $v0, 4 syscall The ...
0
votes
1answer
20 views

valgrind give error when printing the second line to file

I'm using valgrind to find faults in my code. The command I use is valgrind --leak-check=yes ./a.out and I compile the code with -g code alone. I get many errors pointing to a single write line ...
2
votes
1answer
91 views

What does “Syscall()” means in go package “syscall”?

During the research of my another question Go package syscall conn.Read() is non-blocking and cause high CPU usage, I read source code in syscall package. Since I found my last issue on OS X 10.8.3, ...
1
vote
1answer
51 views

Go package syscall conn.Read() is non-blocking and cause high CPU usage

Strangely, in my case Read() is non-blocking and caused high CPU usage. My code: In function main: l, err := net.Listen("tcp", ":13798") if err != nil { log.Fatal(err) } for { // ...
0
votes
1answer
53 views

The assembly code (x86) with jumps and a syscall read function

I would like to ask anyone for help with understanding an assembly code. My problem is: the code after the label L2 is important, it calls subroutine function. But it seems to me that the program ...
0
votes
1answer
54 views

mmap in nasm using int 0x80 on linux x86

I'm writing a small library in nasm for linux and I'm implementing malloc atm. The C representation of the code would look like void * malloc(int size) { return mmap(0, size, 3, 34, -1, 0); } ...
0
votes
0answers
14 views

System Call Error (Expected “)” before struct)

I am trying to write a system call to get the current time. However, I keep getting expected ) before struct. My system call definition is SYSCALL_DEFINE1(current_xtime,struct timespec *, ...
1
vote
1answer
41 views

sys_read will “spill” characters when buffer overflows

Using NASM for Linux x86 mov ecx,eax mov edx,ebx mov eax,3 mov ebx,0 int 80h ret EAX initially has a mov'd db constant, EBX has the length of the buffer This is the code i am using to read from ...
0
votes
0answers
30 views

Random number generation through /proc directory

I am currently working on a project on "Kernel call to generate random numbers". This is a project for implementing a system call to generate random numbers. The algorithm used in my code is Linear ...
1
vote
1answer
21 views

dtrace: doesn't catch any write sys call

I'm new to dtrace and trying to write some a basic dtrace scripting. I found a example to catch read(2) and write(2) syscall on seperate terminal as following, syscall::read:entry, ...
0
votes
2answers
31 views

MIPS — print a value in a variable

Following is the code: .text .ent main .type main, @function main: .frame $fp,24,$31 # vars= 8, regs= 1/0, args= 0, gp= 8 addiu $sp,$sp,-24 sw $fp,20($sp) move $fp,$sp li $2,1 ...
0
votes
2answers
117 views

Weird syscall numbers on Linux 32 bits

The story I have a C program which generates automatically a list of syscall numbers, as I prefer automated generation from real world reference than hand‑written generated files when, applicable. ...
1
vote
1answer
113 views

Hijacking sys calls

I'm writing a kernel module and I need to hijack/wrap some sys calls. I'm brute-forcing the sys_call_table address and I'm using cr0 to disable/enable page protection. So far so good (I'll make public ...
2
votes
1answer
67 views

Counting syscalls of a program and checking validity of the results with strace

I am using ptrace to count the syscalls of a program. The problem is that given a program A, my program prints out the number of the syscalls made (open, close, read, write). The results of my ...
0
votes
1answer
31 views

DTrace script never reports write syscalls

I'm using the following DTrace script to follow the read and write syscalls of bash: syscall::write:entry, syscall::read:entry /execname == "bash"/ { } It successfully matches 2 probes, but no ...
0
votes
1answer
53 views

Can we call system call in kernel space?

Sometimes, when we have to call system call in kernel system, we invoke it's helper or related kernel functions, instead do 'syscall'. I am still wondering can we call system call in kernel space? If ...
0
votes
0answers
23 views

Auditing procfs

I want to keep track on important system changes on GNU/Linux boxes, like disabling PaX, enabling traffic forwarding, ICMP redirects, changing printk verbosity level and so on. At general all these ...
2
votes
0answers
38 views

Auditing specific syscall parameter value

I want to deploy auditing focused on some more sophisticated scenarious on my GNU/Linux boxes, for instance execution of commands like touch -m 'faketime' somefile. I straced the exec and found out ...
0
votes
0answers
27 views

Is there a way to capture any specific function call from a specific module that I may/may not have control over?

Say I have a DLL which includes stdlib.h and allocates some memory using malloc and later frees it using free. Is it possible for my main application to define a malloc function and a free function ...
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
3answers
145 views

Let the gcc compile syscalls in “int 0x80” way?

code here: void main() { _exit(0); } By disassembling the main section: 80483d4: 55 push %ebp 80483d5: 89 e5 mov %esp,%ebp 80483d7: 83 e4 ...
0
votes
0answers
17 views

how can I set posix_fadvise in scheduling class idle

I need do lots of prefetch ,but I dont wanna these prefetch slow some of my thread.I try to use posix_fadvise or readahead and set them in scheduling class idle,but it does not work.I can just set ...
1
vote
3answers
148 views

How to take advantage of the VDSO object with your own programming language?

Recent Linux kernels (at least on amd64) provide a magic object file called linux-vdso.so.1 that abstracts away the syscall interface to the kernel, allowing the kernel to choose the optimal calling ...
0
votes
1answer
136 views

Syscall or sysenter on 32 bits Linux?

Since MS‑DOS, I know system invocation using interrupts. In old papers, I saw reference to int 80h to invoke system functions on Linux. Since a rather long time now, I know int 80h is deprecated in ...
1
vote
2answers
69 views

Understanding simple Linux syscall in libc.a

I'm running a 64-bit Debian 4.7.2-5 Linux system, using glibc-2.13-1. While I was searching for the assembly code of some function calls in libc.a I came across this: file format elf64-x86-64 ...
0
votes
1answer
88 views

Is there a golang library for creating loopback devices on Linux?

I have a file. Let's call it "x". I'd like to associate "x" with a loopback device in linux. From bash, I'd type: losetup -f x That will create something like /dev/loop0 that I can mount wherever ...
0
votes
0answers
35 views

Hide system call output of a code that I don't own

I'm using a python API in order to retrieve data from a file. Unfortunately I don't own the code behind the API and the call to the method to get the data prints in the console. I tried to redirect ...
0
votes
2answers
124 views

difference between POLLIN and POLLPRI in poll() syscall

The documentation of poll() did not explain this in detail. While polling on an fd, when should one POLLIN and when should one use POLLPRI? Any insights will be useful.
0
votes
0answers
96 views

Kernel panic while trying to find sys_call_table

I am trying to write a function that will find the address of the sys_call_table searching by bruteforce from a start address to an end address. #define START_ADDRESS 0x815056d0 #define END_ADDRESS ...
1
vote
0answers
117 views

sys_execve hooking on 3.5 kernel

I am trying to hook sys_execve syscall in Linux kernel v3.5 on x86_32. I simply change sys_call_table entry address to my hook function asmlinkage long (*real_execve)( const char __user*, const char ...
0
votes
1answer
116 views

infinite loop in shellcode

I want to display an hello world from shellcode, c code is simple: #include <stdio.h> char shellcode[] = ...
0
votes
2answers
167 views

System call modification

I'm doing two system calls (linux 3.2). I've created these two system calls, and I have compiled the kernel. These two system calls need to write and read on a file. I'll modify two system calls, read ...
7
votes
2answers
62 views

open() system call polymorphism

I just discovered that the open() (man 2 open) system call has two versions: int open(const char *pathname, int flags); int open(const char *pathname, int flags, mode_t mode); And indeed, one ...
3
votes
1answer
98 views

How does the clock() function in <ctime> access the system clock?

I'm using an STM32 microcontroller with minimal libraries attached. I'd like to use the clock() function from <ctime> (and potentially the new std::chrono) but I'm stuck at clock() returning -1. ...
6
votes
2answers
465 views

Can we call Native Windows API from Delphi?

Is it possible to call the kernel Native APIs from within a Delphi application? Like nt and zw syscalls.
0
votes
1answer
79 views

read_char syscall not working correctly in command line spim

I wrote this simple program in MIPS assembly: .data .text main: li $v0, 12 # read_char syscall move $a0, $v0 li $v0, 11 # print_char syscall j main # repeat forever When I run it in QtSpim it works ...
0
votes
1answer
71 views

How can I check whether a syscall has been made from a signal handler?

I'm trying to make a syscall behave in a different way if it has been called from a signal handler, but I cannot find a way of checking this condition. Is there a flag in the current thread or task ...
2
votes
1answer
81 views

How to find a definition of a specific syscall in Linux sources?

I recently wanted to see how is open() system call implemented in Linux kernel. Looking at the syscall table suggested that the name of the function I'm looking for is sys_open(), so I grepped for it. ...
0
votes
0answers
57 views

undefined reference to `sched_setaffinity' in linux

What can be the reasons for this error???? I am building an app on MIPS linux platform with toolchain mipsel-linux-uclibc, I have the header at right place. Please help... Following is the error I ...
2
votes
1answer
278 views

how does open works for normal file and device drivers

Currently, I am learning Linux device drivers. And got stuck over how opening a device file works ? What I got until now... Consider the a simple code that opens a normal file.. ...
1
vote
0answers
106 views

Why system call hooking produces different result everytime in Linux/Android 2.6.29?

I have implemented system call hooking for Android 2.6.29 kernel through a LKM module. I am tracing down one Android app for system calls. But interestingly, it returns different results every time I ...
0
votes
1answer
106 views

Why sys_mmap is not present in syscalls.h file in Android 2.6.29?

In syscalls.h file of Android 2.6.29, there is unmap sys call but not mmap. Is there any reason for not including mmap in syscalls.h file?
4
votes
2answers
148 views

sendfile doesn't copy file contents

I create files 1.txt 2.txt and write some content into 1.txt. Then I use the code below and want to copy the content to 2.txt. But it doesn't work. There is nothing in 2.txt. Can you explain my ...
0
votes
0answers
324 views

sys_read syscall vs. int 0x80 in GNU Assembler

I'm attempting to write a simple program which grabs a number of characters from stdin. For the sake of brevity, the relevant code is: mov $3, %rax # sys_read = 3 mov $0, %rbx # stdin fd = 0 ...
0
votes
1answer
76 views

What are the differences between LD_PRELOAD and strace?

Both methods are used to gather system calls also parameters and return values of them. When we prefer LD_PRELOAD and why? Maybe we can say that we can only gather syscalls via strace but we can ...
2
votes
1answer
64 views

Running gnuplot in background with Qt4

I tried the solution proposed in this thread for plotting some simulation results in a program using Qt4 for the configuration interface. The problem is that in order not to prevent the main results ...
0
votes
2answers
98 views

How to check whether a buffer is writable?

I am writing a shared library that overrides some syscalls. Among them is the read(int fd, void *buf, size_t count) syscall. This library is, of course, in User Space. So, in my library, I'm catching ...
5
votes
4answers
225 views

changing linux kernel system call number

I wanted to build my own custom kernel with a different syscall table. (same syscalls but in different position/numbers) I was working on kernel 3.2.29 changing the kernel was quite easy, 1) ...
2
votes
6answers
423 views

efficiency of fwrite for massive numbers of small writes

I have a program that saves many large files >1GB using fwrite It works fine, but unfortunately due to the nature of the data each call to fwrite only writes 1-4bytes. with the result that the write ...
0
votes
1answer
174 views

opening binary file for reading

I'm trying to open binary file for reading in mars mips simulator: .data file: .asciiz "o.bmp" .text li $v0, 13 la $a0, file li $a1, 0 li $a2, 0 syscall #file descriptor of oepened file in ...

1 2 3 4 5