When I invoke a system call in user mode,how did the call get processed in OS?
Does it invoke some some executable binary or some standard library?
If yes,what kind of thing it needs to complete the call?
|
When I invoke a system call in user mode,how did the call get processed in OS? Does it invoke some some executable binary or some standard library? If yes,what kind of thing it needs to complete the call? |
||||
|
|
|
Have a look at this.
|
|||
|
|
|
It depends on what you mean by system call. Do you mean a C library call (through glibc) or an actual system call? C library calls always end up using system calls in the end. The old way of doing system calls was through a software interrupt, i.e., the The new way is |
|||||
|
|
http://www.linuxjournal.com/article/4048 appears to be a reasonable introduction. |
|||
|
|
|
Vastly simplified, but what happens is an interrupt occurs when you try to access a reserved memory address. The interrupt switches the context to kernel mode and executes the kernel code (actual system call) on the user's behalf. Once the call is completed, control is returned to the user code. |
|||||
|
|
It goes through glibc, which issues a 0x80 interrupt after filling registers with parameters. The kernel's interrupt handler then looks up the syscall in the syscall table and invokes the relevant sys_*() function. |
|||
|
|
|
int X in assembly translates to a system call number n. VSYSCALL ( FAST SYSTEM CALL) |
||||
|
|