DeanoBurrito / northport

Monolithic kernel and support libraries for riscv64 and x86_64.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Huge stylish northport banner

All builds CI badge Latest Release Version

This repo contains the northport kernel, some support libraries and a collection of drivers for the kernel to use. The kernel is booted via the limine protocol on 64-bit platforms, and has support for generic x86_64 and riscv64 machines, as well as the qemu virt-m68k virtual machine.

Pre-built isos are available with each release, and instructions for building it from source yourself are available in docs/Building.md. Further documentation is available in the manual, which can generated by running make docs in the repository root. Please note that the documentation is currently quite outdated for the current source code.

Project Goals

  1. To build a usable, extensible and relatively complete kernel.
  2. Support for multiple architectures: initial targets were x86_64 and riscv64, but m68k has already been added. More to come!
  3. Be completely self hosting, including cross compiling the system.
  4. Legible code and useful documentation.
  5. Usable on both virtual machines and real hardware.

An extended goal (previously goal #5) is to add a comfortable user experience: a window manager, basic programs like a text editor and file explorer. This has been moved to a separate project.

Current Project Features

Kernel:

  • Support for multiple architectures: x86_64, riscv64, m68k.

  • Memory management:

    • Hybrid PMM, freelist for single page allocations and a slow path for allocations with constraints.
    • Modular and portable VMM, with demand paging options for anon and vfs backed memory. Inspired by the old SunOS design.
    • General purpose heap provided by slabs for smaller objects and a freelist for larger objects. Slab allocation can be accelerated by core-local caches, and several debug features are available.
  • Time management:

    • Global software clock, driven by a number of hardware timers: LAPIC, TSC, HPET, PIT, SBI timer.
    • Run levels, allowing kernel to selectively mask groups of interrupts and prevent execution being hoisted by the scheduler. This also means support for DPCs and APCs.
    • Scheduler with core-local and shared work queues, and work stealing.
    • Waitable events, with support for cancelling, timeouts and waiting on multiple events at once.
  • Filesystem:

    • File contents and metadata are sparsely cached in memory as needed. VFS nodes can also be destroyed and re-created as needed.
    • Robust tempfs driver provided within the kernel.
  • Drivers:

    • Loaded (and dynamically linked) on-demand, based on load conditions described in driver metadata.
    • Drivers, device descriptors and device APIs are organised in a tree, allowing parent drivers to provide functionality to child drivers and device nodes.
    • Dedicated driver API functions, based on C-language API for the target platform - meaning drivers can be written in any language, although all first-party drivers are C++.
  • Debugging:

    • Lock-free logging infrastructure, with per-core log buffers for maximum speed. Support for early log outputs via simple devices like uart chips or the built-in graphical terminal (based on gterm for Limine).
    • UB sanitizer, helpful for catching bugs or increasing code size.
    • Stack walker and symbol lookup, including symbols of loaded drivers. De-mangling C++ names not currently supported.
  • Drivers:

    • pci: provides bus enumeration and access to the kernel.
    • qemu: for manipulating emulated display and simple system power control (shutdown, reboot).
    • nvme: only supports PCI-based controllers, reading and writing supported (tested on real hardware).
    • fwcfg: exposes qemu's fw_cfg interface as a filesystem and allows the kernel to use ramfb as a graphics adaptor.
    • uacpi: provides an aml interpreter and other acpi runtime services to the kernel, like enumerating devices not discoverable via other means. Upstream repo can be found here.

Glorious Screenshots

02/06/2024: General state of the kernel after incremental changes.

02/06/2024: Kernel panic, showing symbol lookup for kernel and loaded drivers.

Older Screenshots

02/06/2024: Driver tree being shown after booting on my framework 13

14/02/2024: Status bar showing virtual memory and driver statistics

14/02/2024: Device node tree being printed shortly after adding the IO manager.

11/10/2023: Kernel panic while loading a malformed driver from the initdisk.

20/11/2022: x86 and riscv kernels running side by side in qemu.

Related Projects

  • DreamOS64: another 64-bit OS by one of the northport contributors, Ivan G.
  • OSdev notes: a repository of notes about various osdev topics. Feel free to contribute!

This is a complete rewrite of the original. If you're looking for that, it's available on the archive-2022-version branch.

About

Monolithic kernel and support libraries for riscv64 and x86_64.

License:MIT License


Languages

Language:C++ 87.1%Language:C 9.0%Language:Makefile 2.9%Language:Assembly 1.0%