toaruos/modules
K. Lange 96fe218d2f ata: apply same change for atapi 2018-12-28 09:49:58 +09:00
..
README.md Add module README 2018-08-21 16:45:13 +09:00
ac97.c Fix up AC97 driver? 2018-07-21 21:44:38 +09:00
ata.c ata: apply same change for atapi 2018-12-28 09:49:58 +09:00
ataold.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
debug_sh.c debug_sh: /dev/ttyS* are real pty's these days 2018-12-03 11:13:39 +09:00
dospart.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
e1000.c e1000: add mobile chipset pci id 2018-10-21 20:31:48 +09:00
ext2.c kernel: remove calls to calloc (they confuse the tracker) 2018-12-12 10:31:42 +09:00
hda.c Reorganize headers 2018-03-19 11:38:11 +09:00
iso9660.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
lfbvideo.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
net.c kernel: change some log levels 2018-12-03 11:22:33 +09:00
packetfs.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
pcnet.c PIIX PIRQ handling? 2018-07-21 16:57:36 +09:00
pcspkr.c pcspkr: accept -1 and 0 as special lengths 2018-11-29 20:55:30 +09:00
portio.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
procfs.c procfs: irq isr, irr, imr status 2018-12-03 12:50:33 +09:00
ps2kbd.c ps2kbd: why are we giving current_process this 2018-12-11 23:16:29 +09:00
ps2mouse.c IRQ stuff 2018-07-21 16:02:39 +09:00
random.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
rtl.c PIIX PIRQ handling? 2018-07-21 16:57:36 +09:00
serial.c serial: new direct tty serial driver 2018-10-29 19:55:55 +09:00
snd.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
tarfs.c tarfs: minor speedup, assuming well-ordered archives 2018-12-20 19:06:46 +09:00
tmpfs.c tmpfs: probably off-by-one, let's be safe 2018-12-11 12:20:08 +09:00
usbuhci.c Don't use my given name in copyright headers; update everything to 2018 because why not 2018-05-01 17:12:56 +09:00
vbox.c toggle-relative-mouse: add query option 'get' 2018-11-27 20:40:46 +09:00
vgadbg.c Reorganize headers 2018-03-19 11:38:11 +09:00
vgalog.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00
vidset.c Don't use my given name in copyright headers; update everything to 2018 because why not 2018-05-01 17:12:56 +09:00
vmware.c toggle-relative-mouse: add query option 'get' 2018-11-27 20:40:46 +09:00
xtest.c Don't use my given name in copyright headers; update everything to 2018 because why not 2018-05-01 17:12:56 +09:00
zero.c kernel: 64-bit offsets for VFS 2018-11-23 09:56:44 +09:00

README.md

Kernel Modules

The Toaru kernel supports loadable modules which provide most of the device driver support.

A simple module requires a load and unload method, which are exposed along with a module name through the MODULE_DEF macro available from <kernel/module.h>.

#include <kernel/module.h>

static int load(void) {
	/* Run on module installation */
	return 0;
}

static int unload(void) {
	/* Clean up for removal */
	return 0;
}

MODULE_DEF(example_mod, load, unload);

Module Dependencies

If your module depends on another module being loaded, list each dependency using the MODULE_DEPENDS macro:

MODULE_DEF(extension_mod, load, unload);
MODULE_DEPENDS(example_mod);

Currently, dependencies are tested at load time, but the kernel will not load dependencies for you.

Dependency lists can be parsed by external tools to ensure modules are properly linked.

Kernel Functions

All non-static kernel functions are available for use in modules. For example, the logging functions may be used:

#include <kernel/logging.h>
#include <kernel/module.h>

static int load(void) {
	debug_print(WARNING, "Hello, world.");
	return 0;
}

static int unload(void) {
	return 0;
}

MODULE_DEF(printing_mod, load, unload);

Background Tasks

Device drivers, such as those for network devices, may want to create a background process to manage tasks. This can be done through the create_kernel_tasklet interface at device startup.

#include <kernel/process.h>
#include <kernel/module.h>

static void tasklet_run(void * data, char * name) {
	/* Perform tasklet activities */
	while (1) {
		do_thing();
	}
}

static int load(void) {
	create_kernel_tasklet(tasklet_run, "[demo-tasklet]", NULL);
	return 0;
}

static int unload(void) {
	/* Maybe clean up your tasklet here. */
	return 0;
}

MODULE_DEF(tasklet_mod, load, unload);

Caveats

  • Currently, unloading modules is not supported.
  • Modules which are expected to be loaded at runtime should be very careful of memory allocations they make, as they happen in a context which may not be shared with other processes. If you wish to make use of memory mappings, ensure that you are creating a new kernel tasklet to perform work. Attempting to access mapped memory from an interrupt handler or a device driver may not be possible if it was mapped at module installation.