week 7 kernel programming Flashcards

1
Q

write simplified structure of kernel

A

initialise data structures at boot time;
while (true) {
while (timer not gone off) {
assign CPU to suitable process;
execute process;
}
select next suitable process;
}

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

describe kernel programming

A

Kernel has access to all resources
Kernel programs not subject to any constraints for memory acces
or hardware access
⇒ faulty kernel programs can cause system crash

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

describe Interaction between kernel and user programs

A

Interaction between kernel and user programs
Kernel provides its functions only via special functions, called
system calls
standard C-library provides them
Have strict separation of kernel data and data for user programs
⇒ need explicit copying between user program and kernel
(copy_to_user(), copy_from_user())
25 / 44

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

how does kernel provide functions

A

Kernel provides its functions only via special functions, called system calls

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

what library provides the system calls

A

stanard c libraray

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

does user and kernel programneed strict seperation

A

yes

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

describe interrupts in kernel

A

in addition, have interrupts:
kernel asks HW to perform certain action
HW sends interrupt to kernel which performs desired action
interrupts must be processed quickly
⇒ any code called from interrupts must not sleep

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

what are the two main modes in kernel structure for kernel code

A

proces context
interrupt context

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

what is process context

A

kernel code working for user programs by
executing a system call
have access to user data only in process context
Any code running in process context may be pre-empted at any
time by an interrupt
Interrupts have priority levels
Interrupt of lower priority are pre-empted by interrupts of higher
priority

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

wha is interrupt context

A

kernel code handling an interrupt (eg by a
device)
have access to user data only in process context
Any code running in process context may be pre-empted at any
time by an interrupt
Interrupts have priority levels
Interrupt of lower priority are pre-empted by interrupts of higher
priority

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

describe kernel modules

A

can add code to running kernel
useful for providing device drivers which are required only if
hardware present
modprobe inserts module into running kernel
rmmod removes module from running kernel (if unused)
lsmod lists currently running modules

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

what does modprobe do

A

inserts module into running kernel

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

what does rmmod do

A

removes module from running kernel (if unused)

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

what does lsmod do

A

lists currently running modules

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

describe concurrency in kernel

A

Correct handling concurrency in the kernel important:
Manipulation of data structures which are shared between
code running in process mode and code running in interrupt
mode
code running in interrupt mode
must happen only within critical regions
In multi-processor system even manipulation of data structures
shared between code running in process context must happen only
within critical sections

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

how to achieve mutual exclucion in kernel

A

Semaphores/Mutex
spinlocks

17
Q

describe semaphores/mutexes

A

when entering critical section fails,
current process is put to sleep until critical region is available
⇒ only usable if all critical regions are in process context
Functions: DEFINE_MUTEX(), mutex_lock(),
mutex_unlock()

18
Q

describe spinlocks

A

processor tries repeatedly to enter critical section
Usable anywhere
Disadvantage: Have busy waiting
Functions: spin_lock_init(), spin_lock(),
spin_unlock()

19
Q

disadvantage of spin locks

A

Disadvantage: Have busy waiting

20
Q

2 types of semaphores

A

Normal semaphores
Read-Write semaphores: useful if some critical regions only
read shared data structures, and this happens often

21
Q

describe Programming data transfer between userspace and kernel

A

Linux maintains a directory called proc as interface between user space and kernel
Files in this directory do not exist on disk
Read-and write-operations on these files translated into kernel operations, together with data transfer between user space and kernel
Useful mechanism for information exchange between kernel and user space

22
Q

where can we find device drivers in kernel

A

in the subdirectory drivers, sorted according
to category

23
Q

where can we find file system in kernel

A

in the subdirectory fs

24
Q

where can we find scheduling and process management in kernel

A

in the subdirectory kernel

25
Q

where can we find memory managemen in kernel

A

in the subdirectory mm

26
Q

where can we find architecture specific low-level code (including assembly code) in kernel

A

in the subdirectory arch

27
Q

where can we find include-files in kernel

A

in the subdirectory include

28
Q

where can we find networking code in kernel

A

in the subdirectory net