Modular Kernel

From OSDev Wiki
Jump to: navigation, search
Kernel Designs
Models
Other Concepts

A modular kernel is an attempt to merge the good points of kernel-level drivers and third-party drivers. In a modular kernel, some parts of the system core will be located in independent files called modules that can be added to the system at run time. Depending on the content of those modules, the goal can vary such as:

  • only loading drivers if a device is actually found
  • only load a filesystem if it gets actually requested
  • only load the code for a specific (scheduling/security/whatever) policy when it should be evaluated
  • etc.

The basic goal remains however the same: keep what is loaded at boot-time minimal while still allowing the kernel to perform more complex functions. The basics of modular kernel are very close to what we find in implementation of plugins in applications or dynamic libraries in general.

Contents

What are some advantages and disadvantages for a Modular Kernel?

Advantages

  • The kernel doesn't have to load everything at boot time; it can be expanded as needed. This can decrease boot time, as some drivers won't be loaded unless the hardware they run is used (NOTE: This boot time decrease can be negligible depending on what drivers are modules, how they're loaded, etc.)
  • The core kernel isn't as big
  • If you need a new module, you don't have to recompile.

Disadvantages

  • It may lose stability. If there is a module that does something bad, the kernel can crash, as modules should have full permissions.
  • ...and therefore security is compromised. A module can do anything, so one could easily write an evil module to crash things. (Some OSs, like Linux, only allow modules to be loaded by the root user.)
  • Coding can be more difficult, as the module cannot reference kernel procedures without kernel symbols.

What does a Modular Kernel look like ?

There are several components that can be identified in virtually every modular kernel:

The core
This is the collection of features in the kernel that are absolutely mandatory regardless of whether you have modules or not.
The modules loader
This is a part of the system that will be responsible of preparing a module file so that it can be used as if it was a part of the core itself.
The kernel symbols table
This contains additional information about the core and loaded modules that the module loader needs in order to link a new module to the existing kernel.
The dependencies tracking
As soon as you want to unload some module, you'll have to know whether you can do it or not. Especially, if a module X has requested symbols from module Z, trying to unload Z while X is present in the system is likely to cause havoc.
Modules
Every part of the system you might want (or don't want) to have.

How can such a system boot in first place ?

Modularization must be done within certain limits if you still want your system to boot. Pushing all filesystem and device drivers (including the boot device driver) into modules will likely make the boot time more complicated. The following solutions can, however, be used:

  • The kernel is provided with an extremely simple filesystem (e.g. SCO's BFS) driver and that filesystem contains modules to access the rest of system storage (e.g. module for ATA, SCSI, EXT2FS, ReiserFS, FAT, NTFS ...).
  • The kernel comes with a built-in native file system driver with other storage modules, and primary configuration files should be stored using that native filesystem. This was the approach followed by Linux, and when some people decided to use reiser everywhere, ext2-fs only kernels started having trouble on some machines.
  • The bootloader knows it should not only load the kernel but also a collection of pre-configured modules so the kernel only needs to check and initialize pre-loaded modules to access other modules and primary configuration files. This means that your bootloader acts as an OS of its own, such as GRUB.

In this case, ramdisk drivers and dedicated boot partitions/reserved sectors will be your friends.

See Also

Forum Threads

Personal tools
Namespaces
Variants
Actions
Navigation
About
Toolbox