Jump to content

About book The Linux Kernel

From Wikibooks, open books for an open world


The book's title page and structure were originally influenced by the article "Splitting the Kernel" in the Linux Device Drivers book, which included a diagram. The diagram's colorful matrix design was borrowed from the Interactive map of the Linux kernel. Additionally, the layered presentation of information in the book was inspired by the OSI model's layers. The number of layers and functionalities is intentionally close to the magical number seven.

Layers

[edit | edit source]

Applications and libraries in user mode above the kernel can be associated with the Application layer of the OSI model.

Upper layers:

User space interfaces - Facade of the kernel, mostly represented by system calls. It can be associated with the Presentation layer of the OSI model.
Virtual - Provides aggregated services to the upper layer, named after virtual memory and the Virtual File System. Similar to the Session layer.

Middle layers:

Bridges - Manages interoperability, named after the Bridge pattern. Similar to the Transport layer.
Logical - Provides logical implementations, named after logical memory, addresses, and logical file systems. Similar to the Network layer.

Lower layers, similar to the Data link layer:

Devices control - Abstractions and control of hardware interfaces, including classes of devices and hardware-independent generic devices.
Hardware interfaces - Direct hardware interfaces and hardware-dependent drivers.

Functionalities

[edit | edit source]

The functionalities Multitasking, Memory, Storage, and Networking are familiar and obvious, while Human Interface and System need some explanation. The Human Interface functionality covers topics more associated with human users than fundamental computing. Naturally, HID (Human Interface Devices) belongs here, hence the name, along with Multimedia. Character devices, though used as byte streams in System and Storage, are also assigned to this functionality. The System functionality covers fundamental and common functions. The common system calls infrastructure of the kernel is described under this functionality, while specific system calls and interfaces are detailed under their corresponding functionalities.

The two-dimensional layout, instead of a linear TOC layout, allows effective organization of the book content and indexing of existing documentation and man pages.

Contribution

[edit | edit source]

The book needs contributors. Here are the guidelines:

  1. Make articles complete, continuous, and appealing.
    • Fix typos and rephrase for clarity.
    • Maintain consistent formatting.
  2. Keep information updated by replacing obsolete content with modern equivalents.
  3. Share your knowledge and experience about the kernel.
  4. Explore the source code and describe it.
  5. Add explanations to incomplete sections.
  6. Copy-paste text from Wikipedia where appropriate.
  7. Add links to external resources using templates:

Paragraph template

[edit | edit source]

This template is for contributors to structure their content. Fill in the placeholders as needed.

🔧 TODO

...

🗝️ Acronyms and/or key terms

API – Application Program Interface
...

🖱️ GUI

man 1 git-gui – A portable graphical interface to Git
...

⚲ APIs

man 1 intro – Introduction to user commands
man 2 intro – Introduction to system calls
man 4 intro – Introduction to special files
uapi inc – User-space API
man 2 syscall
entry_SYSCALL_64 id ↯ Call hierarchy:
do_syscall_64 id
...
...

🛠️ Utilities

man 1 ls – Lists directory contents
...

👁️ Example

samples src
...

⚙️ Internals

printk id
kernel src
tools/testing/selftests src
...

🚀 Advanced features

...

📖 References

The Linux Kernel documentation doc
Documentation for /proc/sys/kernel/ doc
...

📚 Further reading

Kernel mailing lists
LKML
linux-doc ML
KernelNewbies ML
...

💾 Historical

Linux Kernel Internals
Kernel Analysis HOWTO
Kernel documentation archive
...

Thank you