libkernaux/README.md

255 lines
8.5 KiB
Markdown
Raw Permalink Normal View History

2020-11-27 09:28:13 +00:00
libkernaux
==========
2022-01-31 09:27:39 +00: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 15:39:41 +00: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 22:36:06 +00:00
2020-11-27 09:28:13 +00:00
Auxiliary library for kernel development.
2020-11-27 13:38:58 +00:00
2022-01-20 21:39:56 +00:00
[Topic on OSDev.org forum](https://forum.osdev.org/viewtopic.php?f=1&t=37958).
2020-11-27 13:38:58 +00:00
2020-11-28 23:52:51 +00:00
Table of contents
-----------------
* [Overview](#libkernaux)
* [Table of contents](#table-of-contents)
2020-11-30 01:21:22 +00:00
* [API](#api)
2022-06-15 11:24:42 +00:00
* [Headers](#headers)
* [Definitions](#definitions)
* [Global variables](#global-variables)
* [Configuration](#configuration)
2021-12-18 01:47:01 +00:00
* [Non-default options](#non-default-options)
2022-01-10 16:03:37 +00:00
* [Default options](#default-options)
* [Tips](#tips)
2021-12-16 08:14:39 +00:00
* [Installation](#installation)
* [Development](#development)
* [Cross](#cross)
2020-11-28 23:52:51 +00:00
2020-11-30 01:21:22 +00:00
API
---
2022-06-15 11:24:42 +00:00
### Headers
2022-01-20 12:40:18 +00:00
We use [semantic versioning](https://semver.org) for stable APIs. Stable APIs
2022-12-01 19:42:43 +00:00
may only change when major version number is increased (or minor while major is
2022-01-20 12:40:18 +00:00
zero). Work-in-progress APIs can change at any time.
* Basic features
* [Feature macros](/include/kernaux/version.h.in) (*work in progress*)
2022-12-23 09:18:48 +00:00
* [Runtime environment](/include/kernaux/runtime.h) (*non-breaking since* **0.7.0**)
2022-12-03 22:08:26 +00:00
* [Macros](/include/kernaux/macro.h) (*non-breaking since* **0.6.0**)
2022-11-29 01:19:35 +00:00
* [Example: packing](/examples/macro_packing.c)
2022-12-23 08:28:52 +00:00
* [Example: BITS](/examples/macro_bits.c)
* [Example: CAST\_\*](/examples/macro_cast.c);
2022-12-11 13:40:49 +00:00
* [Example: CONTAINER\_OF](/examples/macro_container_of.c)
* [Example: STATIC\_TEST\*](/examples/macro_static_test.c)
2022-01-12 10:56:39 +00:00
* Stack trace *(planned)*
2022-06-20 21:28:35 +00:00
* Generic types
2022-12-23 09:18:48 +00:00
* [Display](/include/kernaux/generic/display.h) (*non-breaking since* **0.7.0**)
* [Example](/examples/generic_display.c)
2022-11-26 20:12:57 +00:00
* [Memory allocator](/include/kernaux/generic/malloc.h) (*non-breaking since* **0.5.0**)
2022-06-21 08:37:52 +00:00
* [Example](/examples/generic_malloc.c)
2022-11-26 20:12:57 +00:00
* [Mutex](/include/kernaux/generic/mutex.h) (*non-breaking since* **0.5.0**)
* [Example](/examples/generic_mutex.c)
2021-12-15 11:03:14 +00:00
* Algorithms
2022-11-26 20:12:57 +00:00
* [Free list memory allocator](/include/kernaux/free_list.h) (*non-breaking since* **0.5.0**)
* [Simple command line parser](/include/kernaux/cmdline.h) (*non-breaking since* **0.2.0**)
2022-06-28 23:51:24 +00:00
* [Example](/examples/cmdline.c)
2022-01-20 12:40:18 +00:00
* [Page Frame Allocator](/include/kernaux/pfa.h) (*work in progress*)
2021-12-15 11:03:14 +00:00
* [Example](/examples/pfa.c)
* Data formats
2022-01-20 12:40:18 +00:00
* [ELF](/include/kernaux/elf.h) (*work in progress*)
* [MBR](/include/kernaux/mbr.h) (*work in progress*)
2022-12-23 09:18:48 +00:00
* [Multiboot 2 (GRUB 2)](/include/kernaux/multiboot2.h.in) (*non-breaking since* **0.7.0**)
2022-11-30 23:49:16 +00:00
* [Example: header macros](/examples/multiboot2_header_macro.c)
2021-12-15 11:03:14 +00:00
* Utilities
2022-01-20 12:40:18 +00:00
* [Measurement units utils](/include/kernaux/units.h) (*work in progress*)
* [Example: To human](/examples/units_human.c)
2022-12-23 09:18:48 +00:00
* [Memory map](/include/kernaux/memmap.h) (*non-breaking since* **0.7.0**)
2022-06-15 07:58:14 +00:00
* [Example](/examples/memmap.c)
2022-12-03 22:08:26 +00:00
* [printf format parser](/include/kernaux/printf_fmt.h) (*non-breaking since* **0.6.0**)
2022-06-04 01:37:25 +00:00
* [Example](/examples/printf_fmt.c)
2021-12-15 11:03:14 +00:00
* Usual functions
2022-06-16 15:27:48 +00:00
* [itoa/ftoa replacement](/include/kernaux/ntoa.h) (*non-breaking since* **0.4.0**)
2022-05-30 20:43:58 +00:00
* [Example](/examples/ntoa.c)
2022-11-26 20:12:57 +00:00
* [printf replacement](/include/kernaux/printf.h) (*non-breaking since* **0.5.0**)
* [Example: fprintf](/examples/printf_file.c)
* [Example: vfprintf](/examples/printf_file_va.c)
* [Example: snprintf](/examples/printf_str.c)
* [Example: vsnprintf](/examples/printf_str_va.c)
* Architecture-specific code (*work in progress*)
* [Declarations](/include/kernaux/arch/)
* [Functions](/include/kernaux/asm/)
2020-11-30 01:21:22 +00:00
### Definitions
2022-06-21 09:42:31 +00:00
`#define` the following C preprocessor macros before including `<kernaux.h>` and
`<kernaux/*.h>` files. They have effect on your code, not the library code.
2022-06-20 21:28:35 +00:00
* `KERNAUX_ACCESS_PRIVATE` - disable access modifier "private". Don't do this!
* `KERNAUX_ACCESS_PROTECTED` - disable access modifier "protected". Only do this
2022-06-21 09:42:31 +00:00
in a file where you implement an inherited type.
2022-12-07 23:13:27 +00:00
* `KERNAUX_BITFIELDS` - enable bitfields in packed structs. It doesn't follow
the C standard and may be incompatible with some compilers.
### Global variables
```c
// in <kernaux/runtime.h>
void (*kernaux_assert_cb)(const char *file, int line, const char *msg)
```
Assertion callback. It's better to always set it to some function which always
interrupts the execution, even when assertions are disabled. It may for example
call `abort()` in hosted environment, raise an exception in Ruby, panic in Rust
or power off the machine in freestanding environment. It may also log the error
location and message.
2020-11-30 01:21:22 +00: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 21:37:53 +00:00
scheme and are split into stable and work-in-progress ones. Here we cover only
stable options.
2020-11-27 13:38:58 +00:00
2021-12-18 01:47:01 +00:00
### Non-default options
#### Features
* `--enable-checks` - enable usual tests and examples
2022-12-12 01:08:15 +00:00
* `--enable-checks-all` - enable all checks
2022-12-03 10:23:52 +00:00
* `--enable-checks-cppcheck` - enable cppcheck
2022-12-12 01:08:15 +00:00
* `--enable-checks-pthreads` - enable tests that require pthreads
* `--enable-checks-python` - enable tests that require Python 3 with YAML and
Jinja2
2022-12-17 12:26:20 +00:00
* `--enable-fixtures` - enable fixtures for tests and bindings
2022-12-23 08:28:52 +00:00
* `--enable-pkg-config[=PATH]` - install pkg-config files
[PATH='${libdir}/pkgconfig']
2022-01-10 16:03:37 +00:00
### Default options
2022-01-20 12:25:58 +00:00
#### Features
* `--(enable|disable)-assert` - assertions
2022-05-24 18:47:10 +00:00
* `--(enable|disable)-float` - floating-point arithmetic
* `--(enable|disable)-werror` - fail on warning (`CFLAGS+='-Werror'`)
2022-01-19 11:40:12 +00:00
2022-01-20 12:25:58 +00:00
#### Packages
2022-05-25 01:57:28 +00:00
All packages are included by default. To exclude all packages except those
2022-01-20 12:25:58 +00:00
explicitly included, use `--without-all`.
* `--with[out]-arch-all` - all architectures
* `--with[out]-arch-i386` - architecture i386
* `--with[out]-arch-riscv64` - architecture riscv64
* `--with[out]-arch-x86-64` - architecture x86-64
* `--with[out]-asm` - kernel assembler helpers
* `--with[out]-cmdline` - command line parser
* `--with[out]-free-list` - free list memory allocator
* `--with[out]-memmap` - memory map
* `--with[out]-multiboot2` - Multiboot 2 utils
* `--with[out]-ntoa` - itoa/ftoa
* `--with[out]-printf` - printf
Tips
----
2022-01-10 16:03:37 +00:00
2021-12-16 08:14:39 +00:00
### Installation
2021-12-12 16:29:39 +00:00
```
2022-05-24 19:12:50 +00:00
./autogen.sh # if present
./configure
2021-12-12 16:29:39 +00:00
make
sudo make install
2022-12-14 07:03:47 +00:00
sudo ldconfig # on GNU/Linux
2021-12-12 16:29:39 +00:00
```
2021-12-13 22:26:53 +00:00
This is just a usual library. You can use most of it's APIs in hosted
environment.
2021-12-12 16:29:39 +00:00
2021-12-16 08:14:39 +00:00
### Development
```
2022-05-24 19:12:50 +00:00
./autogen.sh # if present
2022-12-17 12:26:20 +00:00
./configure --enable-fixtures --enable-checks # or --enable-checks-all, but see prerequisites
2021-12-16 08:14:39 +00:00
make
```
You can test with `make check`.
2022-12-18 05:18:55 +00:00
#### See also
* [GitHub Actions](/.github/) for **GNU/Linux** build environment
* [Cirrus CI](/.cirrus.yml) for **FreeBSD** build environment
* [sourcehut CI](/.openbsd.yml) for **OpenBSD** build environment
### Cross
2021-12-12 16:29:39 +00:00
2022-05-24 19:12:50 +00:00
Create configuration script with `./autogen.sh` (if present).
2020-11-29 15:49:12 +00:00
The library requires some functions from the standard C library.
Use [libclayer](https://github.com/tailix/libclayer).
2021-12-15 00:10:40 +00:00
Let's assume that your target triplet is `i386-elf`. Configure with
2022-01-12 05:07:53 +00:00
[cross-compiler](https://wiki.osdev.org/GCC_Cross-Compiler) in `$PATH` to make
without it in `$PATH`:
2020-11-27 13:38:58 +00:00
```
./configure \
2021-12-15 00:10:40 +00:00
--host='i386-elf' \
2022-12-14 07:03:47 +00:00
--disable-shared \
--enable-freestanding \
CC="$(which i386-elf-gcc)" \
CFLAGS='-I<path/to/libc/headers>'
2020-11-27 13:38:58 +00:00
```
2022-12-12 22:55:25 +00:00
The variables include `AR`, `AS`, `CC`, `CCAS`, `LD`, `NM`, `OBJDUMP`, `RANLIB`,
`STRIP`. See the generated `config.log` for more information.
2022-01-17 12:33:28 +00:00
To install into specific directory use full path: `DESTDIR="$(pwd)/dest" make
install` instead of `DESTDIR=dest make install`.
Check if compilation targets i386: `objdump -d src/asm/i386.o`. It should output
something like this:
2020-11-27 13:38:58 +00:00
```
src/asm/i386.o: file format elf32-i386
2020-11-27 13:38:58 +00:00
Disassembly of section .text:
2022-01-15 10:42:13 +00:00
00000000 <kernaux_asm_i386_read_cr0>:
0: 0f 20 c0 mov %cr0,%eax
3: c3 ret
2020-11-27 13:38:58 +00:00
2022-01-15 10:42:13 +00:00
00000004 <kernaux_asm_i386_read_cr4>:
4: 0f 20 e0 mov %cr4,%eax
2020-11-27 13:38:58 +00:00
7: c3 ret
2022-01-15 10:42:13 +00: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 13:38:58 +00:00
2022-01-15 10:42:13 +00: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 13:38:58 +00:00
2022-01-15 10:42:13 +00: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 13:38:58 +00:00
```