All Projects → metta-systems → vesper

metta-systems / vesper

Licence: other
Single-address-space capability-based nanokernel

Programming Languages

rust
11053 projects
assembly
5116 projects
shell
77523 projects

Projects that are alternatives of or similar to vesper

Rust Raspberrypi Os Tutorials
📚 Learn to write an embedded OS in Rust 🦀
Stars: ✭ 7,275 (+13127.27%)
Mutual labels:  operating-system, armv8
Raspberry Pi Os
Learning operating system development using Linux kernel and Raspberry Pi
Stars: ✭ 11,000 (+19900%)
Mutual labels:  operating-system, armv8
Synestiaos
The Synestia Operating System
Stars: ✭ 159 (+189.09%)
Mutual labels:  operating-system, armv8
basicdos
A new 8086-based reimagining of PC DOS and BASIC
Stars: ✭ 72 (+30.91%)
Mutual labels:  operating-system
CS Offer
后台开发基础知识总结(春招/秋招)
Stars: ✭ 352 (+540%)
Mutual labels:  operating-system
discolix
distroless arm docker images
Stars: ✭ 22 (-60%)
Mutual labels:  armv8
greenteaos.github.io
🏠 Homepage of the @GreenteaOS
Stars: ✭ 16 (-70.91%)
Mutual labels:  operating-system
kwast
Rust operating system running WebAssembly as userspace in ring 0
Stars: ✭ 83 (+50.91%)
Mutual labels:  operating-system
kora-kernel
Kernel for my operating system KoraOS
Stars: ✭ 15 (-72.73%)
Mutual labels:  operating-system
MeetixOS
An hobby OS written in modern C++20 which aims to be Unix-like. Currently based on EvangelionNG, a GhostOS derived kernel
Stars: ✭ 179 (+225.45%)
Mutual labels:  operating-system
register-rs
Unified interface for type-safe MMIO and CPU register access in Rust
Stars: ✭ 48 (-12.73%)
Mutual labels:  operating-system
abanu
Abanu is an operating system written in C#
Stars: ✭ 18 (-67.27%)
Mutual labels:  operating-system
xkdb
Xinu Kernel DeBugger (xkdb) - GDB for Xinu backends
Stars: ✭ 19 (-65.45%)
Mutual labels:  operating-system
NOS
Operating system project
Stars: ✭ 32 (-41.82%)
Mutual labels:  operating-system
alpine-qbittorrent-openvpn
qBittorrent docker container with OpenVPN client running as unprivileged user on alpine linux
Stars: ✭ 230 (+318.18%)
Mutual labels:  armv8
Face-Recognition-Raspberry-Pi-64-bits
Recognize 2000+ faces on your Raspberry Pi 4 with database auto-fill and anti-spoofing
Stars: ✭ 48 (-12.73%)
Mutual labels:  armv8
OpenGnsys
OpenGnsys (pronounced Open Genesis) is a free and open source project that provides tools for managing and deploying different operating systems.
Stars: ✭ 15 (-72.73%)
Mutual labels:  operating-system
saturn
A microkernel based operating system developed from scratch. This repository also includes all Saturn services and applications.
Stars: ✭ 21 (-61.82%)
Mutual labels:  operating-system
go-traits
A concept package that helps implement mixin behavior using embedded structs and hook interfaces.
Stars: ✭ 21 (-61.82%)
Mutual labels:  capabilities
vinix
Vinix is an effort to write a modern, fast, and useful operating system in the V programming language
Stars: ✭ 1,512 (+2649.09%)
Mutual labels:  operating-system

Vesper

About kernel

Vesper is a capability-based single-address-space nanokernel, it tries to remain small and secure. To achieve this, kernel functionality is extremely limited - it provides only address space isolation and IPC, after bootup kernel does not allocate any memory itself.

Exokernel's distinctive trait is that it provides mechanisms but not policies. Vesper tries to move as many policy decisions as possible to the library OS.

  • Single-address-space is a mechanism for providing pointer transparency between processes. Sharing a buffer is nearly as simple as passing out its address. Even though single-address-space is not a basic requirement and may be seen as an imposed policy decision, it does provide mechanism for efficient data passing between protection domains. This is important for modern media-rich communications.

  • IPC is a mechanism providing secure interaction between processes.

  • Capabilities are a mechanism providing access rights control and universal authority delegation for OS objects.

  • Interrupts come from hardware, usually in privileged mode and kernel is responsible for translating them into invocations of the device drivers' handlers.

Scheduling

Scheduling can be viewed as the process of multiplexing the CPU resource between computational tasks. The schedulable entity of an operating system often places constraints both on the scheduling algorithms which may be employed and the functionality provided to the application. The recent gain in popularity of multi-threaded programming due to languages such as Modula-3 [Nelson 91] has led many operating system designers to provide kernel-level thread support mechanisms [Accetta 86, Rozier 90]. The kernel therefore schedules threads rather than processes. Whilst this reduces the functionality required in applications and usually results in more efficient processor context-switches, the necessary thread scheduling policy decisions must also be migrated into the kernel. As pointed out in [Barham 96], this is highly undesirable.

The desire to move such decisions out of the kernel make interesting variants where actual scheduling is performed by the user-level domain scheduler upon an upcall from the kernel. TBD

Real Time

At the moment this is not a real-time kernel. It has a small number of potentially long-running kernel operations that are not preemptable (e.g., endpoint deletion and recycling, scheduling, frame and CNode initialisation). This may change in future versions.

Credits

Vesper has been influenced by the kernels in L4 family, notably seL4. Fawn and Nemesis provided inspiration for single-address-space and vertical integration of the applications.

Build instructions

MSRV: 1.61.0

We require cargo build --build-std feature (since 2020-07-15), compiler_builtins memory operations (since 2020-09-30) and const_fn_fn_ptr_basics feature (stable since Rust 1.61.0).

  • Install tools: cargo install just cargo-make.
  • Install qemu (at least version 4.1.1): brew install qemu.
  • Optionally install OpenOCD with RTT patches.
  • Install aarch64 gdb.

You can override invoked qemu, openocd and gdb by specifying full paths to them as env variables QEMU, OPENOCD and GDB, respectively.

You can override the name of mounted sdcard volume by specifying env variable VOLUME (it defaults to /Volumes/BOOT).

To build kernel and run it in QEMU emulator

just qemu

To build kernel for Raspberry Pi and copy it to the mounted SDCard

just device

On the device boot SD card you'll need a configuration file instructing RasPi to launch in 64-bit mode.

# config.txt on RPi3
arm_64bit=1

To run tests (tests require QEMU)

just test

To launch JTAG connected JLink probe

just ocd

To launch GDB and load kernel binary into it

just gdb

If you launch OpenOCD or QEMU before, then gdb shall connect to it and allow you to load the kernel binary directly into memory. Type load in gdb to do that.

To see kernel symbols and their values

just nm

To see kernel disassembly

You need to have Hopper and hopperv4 cli helper installed.

just disasm

To see other available commands

just

It will list all just commands with their short descriptions.

Development flow

mainline, develop and released branches:

  • feature branches are fluid development lines which may be discarded or merged into develop. Feature branches must be either merged or fast-forward merged ("landed") into develop. Squashing history during merge is not permitted - commits must be sorted and squashed as necessary before merge.
  • develop is currenly developed changes. History is recommended to be immutable, however mutations are possible in some cases. Feature branches are merged into develop for stabilisation, then develop is merged into the mainline. Develop must be either merged or fast-forward merged ("landed") into mainline. Squashing history during merge is not permitted - commits must be sorted as necessary before merge. Avoid direct commits to develop. It is recommended to perform stabilisation fixes in a separate branch and then landing it into develop.
  • mainline is for generally accepted changes. History is immutable, to record reversals make a revert commit with explanations why. Changes from develop are merged or landed into the mainline after stabilisation.
  • released branch records points from mainline which were officially released. Mutations are not possible. Only non-fast-forward merges from mainline are acceptable. Releases are marked as annotated tags on this branch.

OSdev help

Based on Raspi3 tutorials by Andre Richter, which are in turn based on Raspi3 tutorials by bzt. Various references from OSDev Wiki and RaspberryPi.org manuals.

Debug with JTAG.

Badges

Built with cargo-make

Build

License

Dependency Status

Gitpod Ready-to-Code

License scan

FOSSA Status

Individual files contain the following tag instead of the full license text.

SPDX-License-Identifier: BlueOak-1.0.0

This enables machine processing of license information based on the SPDX License Identifiers that are here available: http://spdx.org/licenses/


For more information please re-read.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].