Skip to content

A simple kernel written in C and a platform to play with x86_64 extensions

License

Notifications You must be signed in to change notification settings

iankronquist/kernel-of-truth

Repository files navigation

Kernel of Truth build_status

A simple kernel written in C.

The goal of this project is to build a simple kernel which can serve as a platform for future experimentation. The Kernel of Truth includes a variety of modern security features and mitigations. This project currently targets the x86_64 architecture. In the future we may target ARMv7 or x86.

Kernel Features

  • Support for x86_64.
  • Boots from multiboot v1 compliant bootloader.
  • 🔐 Supervisor Memory Access & Execution Protection (SMEP & SMAP).
  • 🔐 Write XOR Execute page permissions AKA Data Execution Prevention.
  • 🔐 Heap red zone protection.
  • 🔐 Stack guard protection.
  • Undefined behavior sanitation (debug builds only).
  • 8259 Programmable Interrupt Controller.
  • 🔐 Process memory isolation.
  • RS232 serial.
  • 8253 Programmable Interrupt Timer.
  • Preemptive multitasking.
  • Higher half.
  • Virtual File System.
  • PS2 keyboard driver.
  • VGA graphics driver.
  • CMOS Real Time Clock.
  • 🔐 Port of Libsodium ed25519 & SHA512 cryptographic algorithms.
  • Elf loader.
  • Loadable kernel modules.
  • 🔐 Kernel module Address Space Layout Randomization (ASLR) & signature verification.
  • Basic syscalls.
  • POSIX syscall layer.
  • EXT2 filesystem.
  • ATA.
  • Symmetric Multiprocessing (SMP).

Bug Reports & Contributing

Advice, ideas, bug reports and pull requests are all welcome! Please take a look at the issue tracker on GitHub. Please submit PRs via GitHub, although I will also take patches via email.

Getting Started

First build an x86_64 GCC and binutils. There is a handy script which works on most Linuxes and OS X in scripts/build_cross_compiler.sh. Then install qemu with your favorite package manager. We'll need qemu-system-x86_64 to run the kernel. Once you have all this installed building and running this little kernel is quite easy:

# Build the kernel
$ make
# Start it with qemu
$ make start

The Makefile also has some targets to make debugging easier.

  • make debug: Include undefined behavior sanitation and debug symbols.
  • make release: Strip symbols.
  • make start-log: Log all assembly instructions executed and interrupts fired to the file qemu.log. Careful, this file can grow to be tens of megabytes in a few seconds!

Code Style

When in Rome, do as the Romans.

Most of the style is enforced via the uncrustify linter. Run it on your code and call it mostly good. However, it doesn't enforce certain variable naming conventions.

Use typedefs extremely sparingly. Prefer native C types instead. Always use the most descriptive type available. Do not use ifdef style header guards, use #pragma once instead. Alphabetize include statements. They should be in paragraphs based on their top level directory. Local includes should go last.

Leave a comment describing every symbol visible in a public header. Otherwise, comment tactically and sparingly.

#include <external/a.h>
#include <external/b.h>
#include <external/c.h>

#include <truth/a.h>
#include <truth/b.h>
#include <truth/c.h>

#include "a.h"
#include "b.h"
#include "c.h"


struct types_like_this;

// Unless the type is an acronym.
struct GDT;

#define Global_Defines_Like_This 42
struct GDT Globals_Like_This;

void *functions_like_this(void *foo) {
    size_t locals_like_this = 15;
    return foo + locals_like_this;
}

About

A simple kernel written in C and a platform to play with x86_64 extensions

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •