.github | ||
apps | ||
base | ||
boot | ||
build | ||
kernel | ||
kuroko@d859ac5092 | ||
lib | ||
libc | ||
linker | ||
modules | ||
util | ||
.gitignore | ||
.gitmodules | ||
AUTHORS | ||
LICENSE | ||
Makefile | ||
README.md |
ToaruOS
ToaruOS is a hobbyist, educational, Unix-like operating system built entirely from scratch and capable of hosting Python 3 and GCC. It includes a kernel, bootloader, dynamic linker, C standard library, composited windowing system, package manager, and several utilities and applications. All components of the core operating system are original, providing a complete environment in approximately 80,000 lines of C and assembly, all of which is included in this repository.
Demonstration of ToaruOS's UI, terminal emulator, and text editor.
History
The ToaruOS project began in December 2010 and has its roots in an independent student project. The goals of the project have changed throughout its history, initially as a learning experience for the authors, and more recently as a complete, from-scratch ecosystem.
ToaruOS 1.0 was released in January, 2017, and featured a Python userspace built on Newlib. Since 1.6.x, ToaruOS has had its own C library, dependencies on third-party libraries have been removed, and most of the Python userspace has been rewritten in C. More recent releases have focused on improving the C library support, providing more ports in our package repository, and adding new features.
Features
- Dynamically linked userspace with support for runtime
dlopen
ing of additional libraries. - Composited graphical UI with SSE-accelerated alpha blitting and optional Cairo backend.
- Extensible, modular kernel with loadable drivers.
- VM integration for absolute mouse and automatic display sizing in VirtualBox and VMware Workstation.
- Unix-like terminal interface including a feature-rich terminal emulator and several familiar utilities.
- TCP/IPv4 support with utilities to download from HTTP servers and connect to IRC.
- Optional third-party ports including Python 3.6, GCC 6.4.0, Binutils, Cairo, and Freetype.
Notable Components
- Toaru Kernel, kernel/, the core of the operating system.
- Yutani (window compositor), apps/compositor.c, manages window buffers, layout, and input routing.
- Bim (text editor), apps/bim.c, is a vim-inspired editor with syntax highlighting.
- Terminal, apps/terminal.c, xterm-esque terminal emulator with 256 and 24-bit color support.
- ld.so (dynamic linker/loader), linker/linker.c, loads dynamically-linked ELF binaries.
- Esh (shell), apps/sh.c, supports pipes, redirections, variables, and more.
- MSK (package manager), apps/msk.c, with support for online package installation.
- Kuroko, kuroko/, a dynamic bytecode-compiled programming language.
Current Goals
The following projects are currently in progress:
- Improve POSIX coverage especially in regards to signals, synchronization primitives, as well as by providing more common utilities.
- Continue to improve the C library which remains quite incomplete compared to Newlib and is a major source of issues with bringing back old ports.
- Implement a native dynamic, interpreted programming language to replace Python, which was used prior to ToaruOS 1.6.x to provide most of the desktop environment. Completed!
- Replace third-party development tools to get the OS to a state where it is self-hosting with just the addition of a C compiler.
- Implement a C compiler toolchain in toarucc.
Building / Installation
To build ToaruOS from source, it is currently recommended you use a recent Debian- or Ubuntu-derived Linux host environment.
Several packages are necessary for the build system: build-essential
(to build the cross-compiler), xorriso
(to create CD images), python3
(various build scripts), mtools
(for building FAT EFI system partitions), gnu-efi
(for building the EFI loaders).
Beyond package installation, no part of the build needs root privileges.
The build process has two parts: building a cross-compiler, and building the operating system. The cross-compiler uses GCC 6.4.0 and will be built automatically by make
if other dependencies have been met. This only needs to be done once, and the cross-compiler does not depend on any of the components built for the operating system itself, though it is attached to the base directory of the repository so you may need to rebuild the toolchain if you move your checkout. Once the cross-compiler has been built, make
will continue to build the operating system itself.
Building With Docker
You can skip the process of building the cross-compiler toolchain (which doesn't get updated very often anyway) by using our pre-built toolchain through Docker:
git clone --recursive https://github.com/klange/toaruos
cd toaruos
docker pull toaruos/build-tools:1.8.x
docker run -v `pwd`:/root/toaruos -w /root/toaruos -e LANG=C.UTF-8 -t toaruos/build-tools:1.8.x util/build-in-docker.sh
After building like this, you can run the various utility targets (make run
, etc.) by setting TOOLCHAIN=none
. Try TOOLCHAIN=none make shell
to run a ToaruOS shell (using QEMU and a network socket - you'll need netcat for this to work).
Build Process Internals
The Makefile
first checks to see if a toolchain is available and activates it (appends its bin
directory to $PATH
). If a toolchain is not available, users are prompted if they would like to build one. This process downloads and patches both Binutils and GCC and then builds and installs them locally.
The Makefile
then uses a Python tool, auto-dep.py
, to generate additional Makefiles for the userspace applications libraries, automatically resolving dependencies based on #include
directives.
In an indeterminate order, C library, kernel, modules, userspace librares and applications are built. Three boot loaders (one BIOS ATAPI CD loader for emulators, and both a 32-bit and 64-bit EFI loader for general use) are then built. Deployed binaries are stored in base
which is then compiled into a tar archive to use as a ramdisk image. This image, along with the bootloader files and kernel are then placed in fatbase
which is converted into a FAT image for use as the EFI boot payload. That image is then placed in cdbase
along with shadow files representing each of the files in the FAT image, and cdbase
is compiled into an ISO 9660 CD El Torito image. The CD image is then passed through a tool to map the shadow files to their actual data from the FAT image, creating a hybrid ISO 9660 / FAT.
Clang
The kernel and driver modules have been successfully built with Clang using the i686-elf
target. If you would like to experiment with using Clang to build ToaruOS, pass USE_CLANG=1
to make
from a clean build. You may confirm that Clang was used to build the kernel by examining /proc/compiler
within the OS.
Building in ToaruOS
ToaruOS is self-hosting, though the native build environment is different from the hosted build.
To build ToaruOS from within ToaruOS, follow these steps:
# Install the necessary tools (gcc, python)
sudo msk update; sudo msk install src-tools
# Update PATH
source ~/.eshrc; rehash
cd /src
# Build the ISO (root is needed as this process copies some protected files from /etc)
sudo build-the-world.py
The resulting image can be booted in Bochs, or sent to the host for use in another VM.
Third-Party Components
Prior to ToaruOS 1.6.x, many third-party components were included by default (Python, libpng, zlib, Cairo, freetype, and so on). These are no longer part of the default distribution or build process and must be built manually. Complete guides for building these components are currently being drafted. The instructions for building Python are complete and available from the wiki (note that a host installation of Python 3.6 is required to build Python 3.6 and satisfying this is left as an exercise to the reader).
Freetype and Cairo have also been successfully built under the new in-house C library. When either of these are available, optional extension bindings may be built with make ext-freetype
and make ext-cairo
respectively. When the Freetype extension binding is available in the OS, alongside required Truetype font files, Freetype will be used to render text in several applications (including the terminal emulator, menus, and window decorations). When the Cairo extension binding is available, it is used by the compositor to provide improved performance.
Project Layout
- apps - Userspace applications, all first-party.
- base - Ramdisk root filesystem staging directory. Includes C headers in
base/usr/include
, as well as graphical resources for the compositor and window decorator. - boot - Bootloader, including BIOS and EFI IA32 and X64 support.
- cdrom - Staging area for ISO9660 CD image, containing mostly blank shadow files for the FAT image.
- ext - Optional runtime-loaded bindings for third-party libraries.
- fatbase - Staging area for FAT image used by EFI.
- kernel - The Toaru kernel.
- lib - Userspace libraries.
- libc - C standard library implementation.
- linker - Userspace dynamic linker/loader, implements shared library support.
- modules - Kernel modules/drivers.
- util - Utility scripts, staging directory for the toolchain (binutils/gcc).
- .make - Generated Makefiles.
Running ToaruOS
It is highly recommended that interested users run ToaruOS from virtual machines. While we have done some testing on real hardware, driver support is still limited and virtual machines provide easily tested environments where we can guarantee some level of useful functionality.
QEMU and VirtualBox are recommended and provide the most functonality. Audio support is not yet available in VMware. In VirtualBox and VMware, automatic guest display resizing is available (and a tool is available to provide similar functionality in QEMU). All three of the major VMs also support absolute mouse input.
QEMU
1GB of RAM and an Intel AC'97 sound chip are recommended:
qemu-system-i386 -cdrom image.iso -serial mon:stdio -m 1G -soundhw ac97,pcspk -enable-kvm -rtc base=localtime
You may also use OVMF with the appropriate QEMU system target. Our EFI loader supports both IA32 and X64 EFIs:
qemu-system-x86_64 -cdrom image.iso -serial mon:stdio -m 1G -soundhw ac97,pcspk -enable-kvm -rtc base=localtime \
-bios /usr/share/qemu/OVMF.fd
qemu-system-i386 -cdrom image.iso -serial mon:stdio -m 1G -soundhw ac97,pcspk -enable-kvm -rtc base=localtime \
-bios /path/to/OVMFia32.fd
Additionally, a tool is available for running QEMU, under specific environments, with automatic support for resizing the guest display resolution when the QEMU window changes size: util/qemu-harness.py
VirtualBox
ToaruOS should function either as an "Other/Unknown" guest or an "Other/Unknown 64-bit" guest with EFI.
All network chipset options should work except for virtio-net
(work on virtio drivers has not yet begun).
It is highly recommended, due to the existence of Guest Additions drivers, that you provide your VM with at least 32MB of video memory to support larger display resolutions - especially if you are using a 4K display.
Ensure that the audio controller is set to ICH AC97 and that audio output is enabled (as it is disabled by default in some versions of VirtualBox).
Keep the system chipset set to PIIX3 for best compatibility. 1GB of RAM is recommended.
VMWare
Support for VMWare is experimental, though it has improved significantly over the last year. Optional support is provided for VMware's automatic guest display sizing which can be enabled from the bootloader menu (note that the guest resize capability in VMware may be unstable - if your VM boots to an unresponsive black screen, try resetting or disabling the guest display resizing).
- Create a virtual machine for a 64-bit guest. (ToaruOS is 32-bit, but this configuration selects some hardware defaults that are desirable)
- Ensure the VM has 1GB of RAM.
- It is recommended you remove the hard disk and the audio device.
- For network settings, the NAT option is recommended.
Bochs
Using Bochs to run ToaruOS is not advised; however the following configuration options are recommended if you wish to try it:
- Attach the CD and set it as a boot device.
- Ensure that the
pcivga
device is enabled or ToaruOS will not be able to find the video card through PCI. - Provide at least 512MB of RAM to the guest.
- If available, enable the
e1000
network device using theslirp
backend. - Clock settings of
sync=realtime, time0=local, rtc_sync=1
are recommended.
Community
Mirrors
ToaruOS is regularly mirrored to multiple Git hosting sites.
- Gitlab: toaruos/toaruos
- GitHub: klange/toaruos
- Bitbucket: klange/toaruos
- ToaruOS.org: klange/toaruos
IRC
#toaruos
on Freenode (irc.libera.chat
)
FAQs
Is ToaruOS self-hosting?
With a capable compiler toolchain, ToaruOS is able to build its own kernel, userspace, libraries, and bootloader, and turn these into a working ISO CD image.
ToaruOS is not currently capable of building most of its ports, due to a lack of a proper Posix shell and Make implementation. These are eventual goals of the project.
Is ToaruOS a Linux distribution?
ToaruOS is a completely independent project, and all code in this repository - which is the entire codebase of the operating system, including its kernel, bootloaders, libraries, and applications - is original, written by the ToaruOS developers over the course of eight years. The complete source history, going back to when ToaruOS was nothing more than a baremetal "hello world" can be tracked through this git repository.
ToaruOS has taken inspiration from Linux in its choice of binary formats, filesystems, and its approach to kernel modules, but is not derived in any way from Linux code. ToaruOS's userspace is also influenced by the GNU utilities, but does not incorporate any GNU code.
Are there plans for a 64-bit port / SMP support?
Yes, an x86-64/SMP-capable port is in progress as of 2021.