diff options
author | Marvin Borner | 2021-04-05 14:04:28 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-05 14:04:28 +0200 |
commit | 1f957aafa4423c1579627a279d861d03d76f3dbb (patch) | |
tree | 0cd952e06bfaaa2ed9a97081bd3c1ac737d9780d /kernel/README.md | |
parent | 225f2c8da7aeb3a694da790fc42f99cbe23bdf82 (diff) |
Added some documentation
Diffstat (limited to 'kernel/README.md')
-rw-r--r-- | kernel/README.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/README.md b/kernel/README.md new file mode 100644 index 0000000..0b25f39 --- /dev/null +++ b/kernel/README.md @@ -0,0 +1,7 @@ +# Kernel + +The kernel is the interface between the computer hardware and the userspace. It handles everything from file and process management to resource allocation, computer interfaces like keyboards/mice and networking features. This interface is mainly established using syscalls (`features/syscall.c`). + +While the main goal of Melvix is definitely not the security aspect, the kernel should be fairly secure. It implements memory protecting features like paging and address validation, SMEP/SMAP, ASLR, ring 3 processes, protected memory sharing, process based syscall validation (abstraction to default, super and kernel processes) and much more. + +The directory structure consists of `drivers/`, the home of all hardware-interacting device drivers, and `features/`, the home of interfaces that are not directly tied to the hardware but rather to other features of the kernel or userspace. The `inc/` directory is the location of all kernel header files. |