2020-11-27 04:28:13 -05:00
libkernaux
==========
2022-01-31 04:27:39 -05:00
[![Build status ](https://github.com/tailix/libkernaux/actions/workflows/main.yml/badge.svg )](https://github.com/tailix/libkernaux/actions/workflows/main.yml)
2022-01-31 10:39:41 -05:00
[![Build status (FreeBSD) ](https://api.cirrus-ci.com/github/tailix/libkernaux.svg?task=Main%20(FreeBSD ))](https://cirrus-ci.com/github/tailix/libkernaux)
2021-12-13 17:36:06 -05:00
2020-11-27 04:28:13 -05:00
Auxiliary library for kernel development.
2020-11-27 08:38:58 -05:00
2022-01-20 16:39:56 -05:00
[Topic on OSDev.org forum ](https://forum.osdev.org/viewtopic.php?f=1&t=37958 ).
2020-11-27 08:38:58 -05:00
2020-11-28 18:52:51 -05:00
Table of contents
-----------------
* [Overview ](#libkernaux )
* [Table of contents ](#table-of-contents )
2020-11-29 20:21:22 -05:00
* [API ](#api )
2022-01-22 12:18:18 -05:00
* [Configuration ](#configuration )
2021-12-17 20:47:01 -05:00
* [Non-default options ](#non-default-options )
2022-01-10 11:03:37 -05:00
* [Default options ](#default-options )
2022-01-22 12:18:18 -05:00
* [Tips ](#tips )
2021-12-16 03:14:39 -05:00
* [Installation ](#installation )
* [Development ](#development )
2021-12-14 19:03:40 -05:00
* [Cross ](#cross )
2022-01-13 01:35:25 -05:00
* [Architectures ](#architectures )
2020-11-28 18:52:51 -05:00
2020-11-29 20:21:22 -05:00
API
---
2022-01-20 07:40:18 -05:00
We use [semantic versioning ](https://semver.org ) for stable APIs. Stable APIs
can only change when major version number is increased (or minor while major is
zero). Work-in-progress APIs can change at any time.
2021-12-15 06:03:14 -05:00
* Runtime environment
2022-01-20 07:40:18 -05:00
* Architecture-specific code (*work in progress*)
2021-12-20 01:14:40 -05:00
* [Declarations ](/include/kernaux/arch/ )
* [Functions ](/include/kernaux/asm/ )
2022-01-22 19:26:58 -05:00
* [Assertions ](/include/kernaux/assert.h ) (*stable since* **0.1.0** , *non-breaking since* **0.2.0** )
2022-01-20 11:51:54 -05:00
* [Assert: simple ](/examples/assert_simple.c )
* [Assert: guards ](/examples/assert_guards.c )
* [Panic: simple ](/examples/panic_simple.c )
2022-01-20 12:18:18 -05:00
* [Panic: guards ](/examples/panic_guards.c )
2022-01-12 05:56:39 -05:00
* Stack trace *(planned)*
2021-12-15 10:34:02 -05:00
* Device drivers (for debugging only)
2022-01-20 07:40:18 -05:00
* [Serial console ](/include/kernaux/console.h ) (*work in progress*)
* [Framebuffer ](/include/kernaux/framebuffer.h ) (*planned*)
* USB (*planned*)
2021-12-15 06:03:14 -05:00
* Algorithms
2022-01-22 19:26:58 -05:00
* [Simple command line parser ](/include/kernaux/cmdline.h ) (*stable since* **0.2.0** )
2021-12-15 06:03:14 -05:00
* [Example ](/examples/cmdline.c )
2022-01-20 07:40:18 -05:00
* [Page Frame Allocator ](/include/kernaux/pfa.h ) (*work in progress*)
2021-12-15 06:03:14 -05:00
* [Example ](/examples/pfa.c )
* Data formats
2022-01-20 07:40:18 -05:00
* [ELF ](/include/kernaux/elf.h ) (*work in progress*)
* [Master Boot Record ](/include/kernaux/mbr.h ) (*work in progress*)
* [Multiboot 2 (GRUB 2) ](/include/kernaux/multiboot2.h ) (*work in progress*)
* Stivale 2 (Limine) (*planned*)
2021-12-15 06:03:14 -05:00
* Utilities
2022-01-20 07:40:18 -05:00
* [Measurement units utils ](/include/kernaux/units.h ) (*work in progress*)
2021-12-15 06:03:14 -05:00
* [To human ](/examples/units_human.c )
* Usual functions
2022-01-20 07:40:18 -05:00
* [libc replacement ](/include/kernaux/libc.h ) (*stable since* **0.1.0** )
* [itoa/ftoa replacement ](/include/kernaux/ntoa.h ) (*stable since* **0.1.0** )
* [printf replacement ](/include/kernaux/printf.h ) (*stable since* **0.1.0** )
2022-01-19 17:56:58 -05:00
* Code from [https://github.com/mpaland/printf ](https://github.com/mpaland/printf ). Thank you!
2022-01-19 17:45:50 -05:00
* [printf ](/examples/printf.c )
* [vprintf ](/examples/printf_va.c )
2022-01-20 05:28:24 -05:00
* [snprintf ](/examples/snprintf.c )
* [vsnprintf ](/examples/snprintf_va.c )
2020-11-29 20:21:22 -05:00
2022-01-22 12:18:18 -05:00
Configuration
-------------
Because this library has no external dependencies, we use **autoconf** features
to control behavior of the library, and packages to choose it's components.
Configuration options also follow the [semantic versioning ](https://semver.org )
2022-01-22 16:37:53 -05:00
scheme and are split into stable and work-in-progress ones. Here we cover only
2022-01-22 12:18:18 -05:00
stable options.
2020-11-27 08:38:58 -05:00
2021-12-17 20:47:01 -05:00
### Non-default options
2022-05-24 13:46:19 -04:00
#### Features
* `--enable-tests` - enable usual tests and examples
* `--enable-tests-all` - enable all tests
* `--enable-tests-python` - enable tests that require Python 3 with YAML and
Jinja2
2022-01-22 12:18:18 -05:00
#### Packages
2021-12-17 20:47:01 -05:00
* `--with-libc` - provides the replacement for some standard C functions. Useful
2021-12-18 22:14:30 -05:00
in freestanding environment, where no libc is present. You can also separately
2021-12-19 21:22:43 -05:00
include or exclude components:
2022-01-23 13:41:07 -05:00
* `--with[out]-libc-atoi`
2022-01-23 13:17:03 -05:00
* `--with[out]-libc-isdigit`
2022-01-23 13:25:36 -05:00
* `--with[out]-libc-isspace`
2021-12-18 22:16:36 -05:00
* `--with[out]-libc-memset`
* `--with[out]-libc-strcpy`
* `--with[out]-libc-strlen`
2022-01-19 06:14:46 -05:00
* `--with[out]-libc-strnlen`
2021-12-17 20:47:01 -05:00
2022-01-10 11:03:37 -05:00
### Default options
2022-01-20 07:25:58 -05:00
#### Features
2022-01-20 07:22:34 -05:00
2022-05-24 14:47:10 -04:00
* `--(enable|disable)-bloat` - heavy binary data
* `--(enable|disable)-float` - floating-point arithmetic
* `--(enable|disable)-pic` - generate position-independent code
* `--(enable|disable)-werror` - fail on warning (`CFLAGS+='-Werror'`)
2022-01-19 06:40:12 -05:00
2022-01-20 07:25:58 -05:00
#### Packages
2022-05-24 21:57:28 -04:00
All packages are included by default. To exclude all packages except those
2022-01-20 07:25:58 -05:00
explicitly included, use `--without-all` .
2022-01-20 07:22:34 -05:00
2022-02-01 22:23:33 -05:00
* `--with[out]-cmdline` - command line parser
* `--with[out]-ntoa` - itoa/ftoa
* `--with[out]-printf` - printf
2022-01-22 12:18:18 -05:00
Tips
----
2022-01-10 11:03:37 -05:00
2021-12-16 03:14:39 -05:00
### Installation
2021-12-12 11:29:39 -05:00
```
2022-05-24 15:12:50 -04:00
./autogen.sh # if present
2022-02-01 21:26:35 -05:00
./configure
2021-12-12 11:29:39 -05:00
make
sudo make install
```
2021-12-13 17:26:53 -05:00
This is just a usual library. You can use most of it's APIs in hosted
environment.
2021-12-12 11:29:39 -05:00
2021-12-16 03:14:39 -05:00
### Development
```
2022-05-24 15:12:50 -04:00
./autogen.sh # if present
2022-05-24 13:46:19 -04:00
./configure --enable-tests # or --enable-tests-all, but see prerequisites
2021-12-16 03:14:39 -05:00
make
```
You can test with `make check` .
2021-12-14 19:03:40 -05:00
### Cross
2021-12-12 11:29:39 -05:00
2022-05-24 15:12:50 -04:00
Create configuration script with `./autogen.sh` (if present).
2020-11-29 10:49:12 -05:00
2021-12-14 19:10:40 -05:00
Let's assume that your target triplet is `i386-elf` . Configure with
2022-01-12 00:07:53 -05:00
[cross-compiler ](https://wiki.osdev.org/GCC_Cross-Compiler ) in `$PATH` to make
without it in `$PATH` :
2020-11-27 08:38:58 -05:00
```
./configure \
2021-12-14 19:10:40 -05:00
--host='i386-elf' \
2022-02-01 21:26:35 -05:00
--disable-pic \
2021-12-17 20:27:45 -05:00
--with-libc \
2021-12-14 19:10:40 -05:00
AR="$(which i386-elf-ar)" \
CC="$(which i386-elf-gcc)" \
RANLIB="$(which i386-elf-ranlib)" \
2022-02-02 00:08:31 -05:00
CFLAGS='-ffreestanding -nostdlib -fno-stack-protector'
2020-11-27 08:38:58 -05:00
```
2021-12-12 11:29:39 -05:00
You can see the following messages. It's
2020-12-06 06:41:36 -05:00
[a bug ](https://savannah.gnu.org/support/index.php?110393 ) in **autoconf** , just
ignore it.
2020-12-06 05:27:55 -05:00
```
checking for _Bool... no
2020-12-06 19:11:55 -05:00
checking stdarg.h usability... no
checking stdarg.h presence... yes
configure: WARNING: stdarg.h: present but cannot be compiled
configure: WARNING: stdarg.h: check for missing prerequisite headers?
configure: WARNING: stdarg.h: see the Autoconf documentation
configure: WARNING: stdarg.h: section "Present But Cannot Be Compiled"
configure: WARNING: stdarg.h: proceeding with the compiler's result
2021-12-12 07:13:52 -05:00
configure: WARNING: ## ---------------------------------------------------------- ##
configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ##
configure: WARNING: ## ---------------------------------------------------------- ##
2020-12-06 19:11:55 -05:00
checking for stdarg.h... no
2020-12-06 05:27:55 -05:00
checking stddef.h usability... no
checking stddef.h presence... yes
configure: WARNING: stddef.h: present but cannot be compiled
configure: WARNING: stddef.h: check for missing prerequisite headers?
configure: WARNING: stddef.h: see the Autoconf documentation
configure: WARNING: stddef.h: section "Present But Cannot Be Compiled"
configure: WARNING: stddef.h: proceeding with the compiler's result
2021-12-12 07:13:52 -05:00
configure: WARNING: ## ---------------------------------------------------------- ##
configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ##
configure: WARNING: ## ---------------------------------------------------------- ##
2020-12-06 06:22:56 -05:00
checking for stddef.h... no
2020-12-06 05:27:55 -05:00
```
2022-01-17 07:33:28 -05:00
To install into specific directory use full path: `DESTDIR="$(pwd)/dest" make
install` instead of `DESTDIR=dest make install` .
2020-11-29 11:01:11 -05:00
2021-12-20 01:14:40 -05:00
Check if compilation targets i386: `objdump -d src/asm/i386.o` . It should output
something like this:
2020-11-27 08:38:58 -05:00
```
2021-12-20 01:14:40 -05:00
src/asm/i386.o: file format elf32-i386
2020-11-27 08:38:58 -05:00
Disassembly of section .text:
2022-01-15 05:42:13 -05:00
00000000 < kernaux_asm_i386_read_cr0 > :
0: 0f 20 c0 mov %cr0,%eax
3: c3 ret
2020-11-27 08:38:58 -05:00
2022-01-15 05:42:13 -05:00
00000004 < kernaux_asm_i386_read_cr4 > :
4: 0f 20 e0 mov %cr4,%eax
2020-11-27 08:38:58 -05:00
7: c3 ret
2022-01-15 05:42:13 -05:00
00000008 < kernaux_asm_i386_write_cr0 > :
8: 8b 44 24 04 mov 0x4(%esp),%eax
c: 0f 22 c0 mov %eax,%cr0
f: c3 ret
2020-11-27 08:38:58 -05:00
2022-01-15 05:42:13 -05:00
00000010 < kernaux_asm_i386_write_cr3 > :
10: 8b 44 24 04 mov 0x4(%esp),%eax
14: 0f 22 d8 mov %eax,%cr3
17: c3 ret
2020-11-27 08:38:58 -05:00
2022-01-15 05:42:13 -05:00
00000018 < kernaux_asm_i386_write_cr4 > :
18: 8b 44 24 04 mov 0x4(%esp),%eax
1c: 0f 22 e0 mov %eax,%cr4
1f: c3 ret
2020-11-27 08:38:58 -05:00
```
2020-11-29 11:11:26 -05:00
2022-01-13 01:35:25 -05:00
Architectures
-------------
Architectures should be properly identified. We use the following scheme, but it
may change in future:
* `x86`
* `i386`
* `x86_64`
* `riscv`
* `riscv64`
2022-01-22 15:53:30 -05:00
* `arm` - we need more info, now similar to [Debian ](https://www.debian.org/ports/arm/ )
* `armel`
* `armhf`
* `arm64`