14 - System calls Flashcards

1
Q

What is a system call?

A

A system call is an interface between a program running in user space and the operating system, allowing the process to request actions that cannot be performed by normal functions. It provides services via the OS’s API.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the difference between user mode and kernel mode?

A

User mode is where applications run with restricted access to system resources, while kernel mode grants the CPU unrestricted access to hardware, allowing the OS to execute privileged instructions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does a system call work in a typical operating system?

A

A system call is invoked by a process, triggering a context switch from user mode to kernel mode via a software interrupt. The OS then executes the corresponding kernel function and returns the result to the user application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are some key features of system calls?

A

Key features include security (preventing direct hardware access), abstraction (hiding hardware specifics), access control (ensuring permission checks), and consistent interaction between applications and the OS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the main types of system calls?

A

The five main types are
* Process Control (creation, deletion)
* File Management (read, write, open, close)
* Device Management (requesting and releasing devices),
* Information Maintenance (managing system info like time and date),
* Communication (inter-process communication and message passing).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How is the read() system call executed?

A

For the read() system call, the process pushes parameters onto the stack, calls the library routine which places the system call code into a register, and then issues a trap instruction to switch to kernel mode where the read operation is performed before returning control to user mode.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How are system calls implemented on Intel x86 architectures?

A

On Intel x86, system calls use registers (with EAX holding the system call number and other registers for parameters) and the INT 0x80 instruction is used to trigger an interrupt that hands control over to the kernel.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the purpose of the exit system call?

A

The exit system call terminates the calling process, returning an exit status code. The kernel uses registers (such as %eax for the system call number and %ebx for additional parameters) to process this request.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What role do libraries play in the use of system calls?

A

Libraries like GNU C’s libc provide wrapper functions that simplify invoking system calls. These wrappers enhance code portability and provide a consistent interface across different systems, even if the underlying implementations differ.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why are system calls essential for operating systems?

A

They serve as the only entry points into the kernel, ensuring that user applications access hardware resources securely and in a controlled manner, while also facilitating essential functions like process management, file handling, and inter-process communication.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly