2020-11-27 04:28:13 -05:00
|
|
|
libkernaux
|
|
|
|
==========
|
|
|
|
|
2021-12-13 20:30:30 -05:00
|
|
|
[![Test](https://github.com/tailix/libkernaux/actions/workflows/test.yml/badge.svg)](https://github.com/tailix/libkernaux/actions/workflows/test.yml)
|
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
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
2021-12-16 03:14:39 -05:00
|
|
|
* [Tips](#tips)
|
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)
|
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)
|
2021-12-26 01:09:23 -05:00
|
|
|
* [Portability](#portability)
|
|
|
|
* [Discussion](#discussion)
|
2020-11-28 18:52:51 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2020-11-29 20:21:22 -05:00
|
|
|
API
|
|
|
|
---
|
|
|
|
|
2021-12-15 06:03:14 -05:00
|
|
|
* Runtime environment
|
2021-12-20 01:14:40 -05:00
|
|
|
* Architecture-specific code
|
|
|
|
* [Declarations](/include/kernaux/arch/)
|
|
|
|
* [Functions](/include/kernaux/asm/)
|
2021-12-15 06:03:14 -05:00
|
|
|
* [Assertions](/include/kernaux/assert.h)
|
2021-12-17 19:51:12 -05:00
|
|
|
* [Simple](/examples/assert_simple.c)
|
2021-12-19 21:22:43 -05:00
|
|
|
* [Guards](/examples/assert_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-14 00:48:29 -05:00
|
|
|
* [Serial console](/include/kernaux/console.h) *(work in progress)*
|
2022-01-11 03:58:47 -05:00
|
|
|
* [Framebuffer](/include/kernaux/framebuffer.h) *(planned)*
|
2022-01-12 05:39:22 -05:00
|
|
|
* USB *(planned)*
|
2021-12-15 06:03:14 -05:00
|
|
|
* Algorithms
|
|
|
|
* [Simple command line parser](/include/kernaux/cmdline.h)
|
|
|
|
* [Example](/examples/cmdline.c)
|
2022-01-14 00:48:29 -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-14 00:48:29 -05:00
|
|
|
* [Multiboot 2 (GRUB 2) information parser](/include/kernaux/multiboot2.h) *(work in progress)*
|
2022-01-12 05:52:58 -05:00
|
|
|
* Stivale 2 (Limine) information parser *(planned)*
|
2021-12-15 06:03:14 -05:00
|
|
|
* [ELF utils](/include/kernaux/elf.h) *(work in progress)*
|
|
|
|
* Utilities
|
|
|
|
* [Measurement units utils](/include/kernaux/units.h) *(work in progress)*
|
|
|
|
* [To human](/examples/units_human.c)
|
|
|
|
* Usual functions
|
|
|
|
* [libc replacement](/include/kernaux/libc.h)
|
|
|
|
* `memset`
|
|
|
|
* `strcpy`
|
|
|
|
* `strlen`
|
|
|
|
* [itoa replacement](/include/kernaux/itoa.h) *(work in progress)*
|
|
|
|
* [printf replacement](/include/kernaux/printf.h) *(work in progress)*
|
|
|
|
* [printf](/examples/printf.c)
|
|
|
|
* [printf_va](/examples/printf_va.c)
|
2020-11-29 20:21:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-16 03:14:39 -05:00
|
|
|
Tips
|
|
|
|
----
|
2020-11-27 08:38:58 -05:00
|
|
|
|
2021-12-17 20:47:01 -05:00
|
|
|
### Non-default options
|
|
|
|
|
|
|
|
Because this library has no external dependencies, we use **autoconf** features
|
|
|
|
to control behavior of the library, and packages to choose it's components. Here
|
|
|
|
are some non-default options:
|
|
|
|
|
|
|
|
* `--enable-assert` - use value of extern variable `kernaux_assert_cb` as a
|
|
|
|
callback function for internal assertions. You still can use assertions in
|
|
|
|
your own application (kernel) even if this option was not enabled.
|
2021-12-19 21:22:43 -05:00
|
|
|
* `--enable-guard` - safely return from functions even when assertions are
|
|
|
|
disabled. This option doesn't have effect if your assetion function was set
|
|
|
|
and ends execution of application (kernel). However it prevents crashes and
|
2022-01-12 05:52:04 -05:00
|
|
|
undefined behavior in other cases. You can also separately enable or disable
|
2021-12-19 21:22:43 -05:00
|
|
|
guards:
|
|
|
|
* `--(enable|disable)-guard-cond`
|
|
|
|
* `--(enable|disable)-guard-null`
|
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:
|
2021-12-18 22:16:36 -05:00
|
|
|
* `--with[out]-libc-memset`
|
|
|
|
* `--with[out]-libc-strcpy`
|
|
|
|
* `--with[out]-libc-strlen`
|
2021-12-17 20:47:01 -05:00
|
|
|
|
2022-01-10 11:03:37 -05:00
|
|
|
### Default options
|
|
|
|
|
|
|
|
* `--with[out]-cmdline`
|
|
|
|
* `--with[out]-console`
|
|
|
|
* `--with[out]-elf`
|
2022-01-11 03:58:47 -05:00
|
|
|
* `--with[out]-framebuffer`
|
2022-01-10 11:03:37 -05:00
|
|
|
* `--with[out]-multiboot2`
|
|
|
|
* `--with[out]-pfa`
|
|
|
|
* `--with[out]-units`
|
|
|
|
|
2021-12-16 03:14:39 -05:00
|
|
|
### Installation
|
2021-12-12 11:29:39 -05:00
|
|
|
|
|
|
|
```
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
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
|
|
|
|
|
|
|
|
```
|
|
|
|
./autogen.sh
|
2021-12-19 21:22:43 -05:00
|
|
|
./configure --enable-assert --enable-guard
|
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
|
|
|
|
2020-11-29 10:49:12 -05:00
|
|
|
Create configuration script with `./autogen.sh`.
|
|
|
|
|
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-01-11 08:31:48 -05:00
|
|
|
--enable-assert \
|
|
|
|
--enable-guard \
|
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)" \
|
2020-12-06 05:16:15 -05:00
|
|
|
CFLAGS='-ffreestanding -nostdlib -fno-builtin -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
|
|
|
```
|
|
|
|
|
2020-11-29 11:01:11 -05:00
|
|
|
When configured with cross-compiler, library can't be build and installed with
|
2020-11-29 11:41:24 -05:00
|
|
|
just `make && sudo make install`. Instead use the following commands:
|
2020-11-29 11:01:11 -05:00
|
|
|
|
|
|
|
* `make libkernaux.a`
|
2021-12-19 19:19:31 -05:00
|
|
|
* `sudo make install-exec install-data`
|
|
|
|
|
|
|
|
To install into specific directory use full path:
|
2022-01-12 05:38:30 -05:00
|
|
|
`DESTDIR="$(pwd)/dest" make install-exec install-data` instead of
|
|
|
|
`DESTDIR=dest make install-exec install-data`.
|
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`
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-12-26 01:09:23 -05:00
|
|
|
Portability
|
|
|
|
-----------
|
|
|
|
|
|
|
|
Except GNU/Linux, the library is periodically successfully built (starting with
|
|
|
|
`./autogen.sh`) and tested with **autoconf**, **automake**, **binutils** and
|
|
|
|
**gcc**/**clang** (depending on what is present) on the following operating
|
|
|
|
systems:
|
|
|
|
|
|
|
|
* FreeBSD 13.0
|
|
|
|
* Minix 3.3.0
|
|
|
|
* NetBSD 9.2
|
|
|
|
* OpenBSD 7.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Discussion
|
|
|
|
----------
|
|
|
|
|
|
|
|
* [Topic on OSDev.org forum](https://forum.osdev.org/viewtopic.php?f=1&t=37958)
|
|
|
|
* [Thread on r/osdev](https://www.reddit.com/r/osdev/comments/k3ueeu/libkernaux_auxiliary_library_for_kernel/)
|