libkernaux/README.md

174 lines
5.1 KiB
Markdown
Raw Normal View History

2020-11-27 09:28:13 +00:00
libkernaux
==========
Auxiliary library for kernel development.
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)
2020-11-28 23:52:51 +00:00
* [Tips](#tips)
2021-12-12 16:29:39 +00:00
* [Compilation](#compilation)
* [Cross-compilation](#cross-compilation)
2020-12-07 06:55:10 +00:00
* [Portability](#portability)
2020-11-29 16:11:26 +00:00
* [Discussion](#discussion)
2020-11-28 23:52:51 +00:00
2020-11-30 01:21:22 +00:00
API
---
* [Measurement units utils](/include/kernaux/units.h) *(work in progress)*
* [Simple command line parser](/include/kernaux/cmdline.h)
2020-11-30 01:27:55 +00:00
* [Multiboot 2 (GRUB 2) information parser](/include/kernaux/multiboot2.h)
* [Serial console](/include/kernaux/console.h)
2020-11-30 01:27:55 +00:00
* [Page Frame Allocator](/include/kernaux/pfa.h) *(work in progress)*
2021-12-12 20:30:27 +00:00
* [ELF utils](/include/kernaux/elf.h) *(work in progress)*
2020-11-30 01:21:22 +00:00
* [Architecture-specific helpers](/include/kernaux/arch/)
2020-12-06 21:37:53 +00:00
* [printf replacement](/include/kernaux/printf.h) *(work in progress)*
* [stdlib replacement](/include/kernaux/stdlib.h):
2020-11-30 01:21:22 +00:00
* `memset`
* `strlen`
* `strncpy`
2020-12-06 21:37:53 +00:00
* `itoa` *(work in progress)*
2020-11-30 01:21:22 +00:00
2020-11-27 13:38:58 +00:00
Tips
----
2021-12-12 16:29:39 +00:00
### Compilation
```
./autogen.sh
./configure
make
sudo make install
```
You can test with `make check`.
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
### Cross-compilation
2020-11-29 15:49:12 +00:00
Create configuration script with `./autogen.sh`.
2021-12-12 12:18:59 +00:00
Configure with [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-12 12:13:52 +00:00
--host='i386-elftailix' \
AR="$(which i386-elftailix-ar)" \
CC="$(which i386-elftailix-gcc)" \
RANLIB="$(which i386-elftailix-ranlib)" \
2020-12-06 10:16:15 +00:00
CFLAGS='-ffreestanding -nostdlib -fno-builtin -fno-stack-protector'
2020-11-27 13:38:58 +00:00
```
2021-12-12 16:29:39 +00:00
You can see the following messages. It's
2020-12-06 11:41:36 +00:00
[a bug](https://savannah.gnu.org/support/index.php?110393) in **autoconf**, just
ignore it.
2020-12-06 10:27:55 +00:00
```
checking for _Bool... no
2020-12-07 00:11:55 +00: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 12:13:52 +00:00
configure: WARNING: ## ---------------------------------------------------------- ##
configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ##
configure: WARNING: ## ---------------------------------------------------------- ##
2020-12-07 00:11:55 +00:00
checking for stdarg.h... no
2020-12-06 10:27:55 +00: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 12:13:52 +00:00
configure: WARNING: ## ---------------------------------------------------------- ##
configure: WARNING: ## Report this to https://github.com/tailix/libkernaux/issues ##
configure: WARNING: ## ---------------------------------------------------------- ##
2020-12-06 11:22:56 +00:00
checking for stddef.h... no
2020-12-06 10:27:55 +00:00
```
2020-11-27 14:27:59 +00:00
To install into specific directory use full path:
`DESTDIR="$(pwd)/dest" make install` instead of `DESTDIR=dest make install`.
When configured with cross-compiler, library can't be build and installed with
2020-11-29 16:41:24 +00:00
just `make && sudo make install`. Instead use the following commands:
* `make libkernaux.a`
2020-11-30 04:08:08 +00:00
* `sudo make install-exec`
* `sudo make install-data`
2020-12-08 02:56:38 +00:00
Check if compilation targets i386: `objdump -d src/arch/i386.o`. It should
2020-11-28 23:57:59 +00:00
output something like this:
2020-11-27 13:38:58 +00:00
```
2020-12-08 02:56:38 +00:00
src/arch/i386.o: file format elf32-i386
2020-11-27 13:38:58 +00:00
Disassembly of section .text:
2020-12-08 02:56:38 +00:00
00000000 <kernaux_arch_i386_hang>:
2020-11-28 23:56:33 +00:00
0: fa cli
1: f4 hlt
2020-12-08 02:56:38 +00:00
2: eb fc jmp 0 <kernaux_arch_i386_hang>
2020-11-27 13:38:58 +00:00
2020-12-08 02:56:38 +00:00
00000004 <kernaux_arch_i386_read_cr0>:
2020-11-28 23:56:33 +00:00
4: 0f 20 c0 mov %cr0,%eax
2020-11-27 13:38:58 +00:00
7: c3 ret
2020-12-08 02:56:38 +00:00
00000008 <kernaux_arch_i386_read_cr4>:
2020-11-28 23:56:33 +00:00
8: 0f 20 e0 mov %cr4,%eax
b: c3 ret
2020-11-27 13:38:58 +00:00
2020-12-08 02:56:38 +00:00
0000000c <kernaux_arch_i386_write_cr0>:
2020-11-28 23:56:33 +00:00
c: 8b 44 24 04 mov 0x4(%esp),%eax
10: 0f 22 c0 mov %eax,%cr0
13: c3 ret
2020-11-27 13:38:58 +00:00
2020-12-08 02:56:38 +00:00
00000014 <kernaux_arch_i386_write_cr3>:
2020-11-28 23:56:33 +00:00
14: 8b 44 24 04 mov 0x4(%esp),%eax
18: 0f 22 d8 mov %eax,%cr3
1b: c3 ret
2020-12-08 02:56:38 +00:00
0000001c <kernaux_arch_i386_write_cr4>:
2020-11-28 23:56:33 +00:00
1c: 8b 44 24 04 mov 0x4(%esp),%eax
20: 0f 22 e0 mov %eax,%cr4
23: c3 ret
2020-11-27 13:38:58 +00:00
```
2020-11-29 16:11:26 +00:00
2020-12-07 06:55:10 +00:00
Portability
-----------
2020-12-07 06:58:41 +00:00
Except GNU/Linux, the library is periodically successfully built (starting with
`./autogen.sh`) and tested with **autoconf**, **automake**, **binutils** and
2020-12-07 06:55:10 +00:00
**gcc**/**clang** (depending on what is present) on the following operating
systems:
2021-12-13 21:21:45 +00:00
* FreeBSD 13.0
2020-12-07 06:55:10 +00:00
* Minix 3.3.0
2021-12-13 21:21:45 +00:00
* NetBSD 9.2
* OpenBSD 7.0
2020-12-07 06:55:10 +00:00
2020-11-29 16:11:26 +00:00
Discussion
----------
* [Topic on OSDev.org forum](https://forum.osdev.org/viewtopic.php?f=1&t=37958)
2020-11-30 13:33:34 +00:00
* [Thread on r/osdev](https://www.reddit.com/r/osdev/comments/k3ueeu/libkernaux_auxiliary_library_for_kernel/)