Book description
Gain both a firm practical understanding and sufficient theoretical insight into the inner workings of Linux kernel internals, learn to write high-quality kernel module code, understand the complexities of kernel synchronization Purchase of the print or Kindle book includes a free eBook in PDF format.
Key Features
- Discover how to write Linux kernel and module code for real-world products
- Implement industry-grade techniques in real-world scenarios for fast, efficient memory allocation and data synchronization
- Understand and exploit kernel architecture, CPU scheduling, and kernel synchronization techniques
Book Description
The 2nd Edition of Linux Kernel Programming is an updated, comprehensive guide for new programmers to the Linux kernel. This book uses the recent 6.1 Long-Term Support (LTS) Linux kernel series, which will be maintained until Dec 2026, and also delves into its many new features. Further, the Civil Infrastructure Project has pledged to maintain and support this 6.1 Super LTS (SLTS) kernel right until August 2033, keeping this book valid for years to come!
You’ll begin this exciting journey by learning how to build the kernel from source. In a step by step manner, you will then learn how to write your first kernel module by leveraging the kernel’s powerful Loadable Kernel Module (LKM) framework. With this foundation, you will delve into key kernel internals topics including Linux kernel architecture, memory management, and CPU (task) scheduling. You’ll finish with understanding the deep issues of concurrency, and gain insight into how they can be addressed with various synchronization/locking technologies (e.g., mutexes, spinlocks, atomic/refcount operators, rw-spinlocks and even lock-free technologies such as per-CPU and RCU).
By the end of this book, you’ll have a much better understanding of the fundamentals of writing the Linux kernel and kernel module code that can straight away be used in real-world projects and products.
What you will learn
- Configure and build the 6.1 LTS kernel from source
- Write high-quality modular kernel code (LKM framework) for 6.x kernels
- Explore modern Linux kernel architecture
- Get to grips with key internals details regarding memory management within the kernel
- Understand and work with various dynamic kernel memory alloc/dealloc APIs
- Discover key internals aspects regarding CPU scheduling within the kernel, including cgroups v2
- Gain a deeper understanding of kernel concurrency issues
- Learn how to work with key kernel synchronization primitives
Who this book is for
This book is for beginner Linux programmers and developers looking to get started with the Linux kernel, providing a knowledge base to understand required kernel internal topics and overcome frequent and common development issues. A basic understanding of Linux CLI and C programming is assumed.
Table of contents
- Preface
- Linux Kernel Programming – A Quick Introduction
-
Building the 6.x Linux Kernel from Source – Part 1
- Technical requirements
- Preliminaries for the kernel build
- Steps to build the kernel from source
- Step 1 – Obtaining a Linux kernel source tree
- Step 2 – Extracting the kernel source tree
- Step 3 – Configuring the Linux kernel
- Customizing the kernel menu, Kconfig, and adding our own menu item
- Summary
- Exercise
- Questions
- Further reading
-
Building the 6.x Linux Kernel from Source – Part 2
- Technical requirements
- Step 4 – building the kernel image and modules
- Step 5 – installing the kernel modules
- Step 6 – generating the initramfs image and bootloader setup
- Understanding the initramfs framework
- Step 7 – customizing the GRUB bootloader
- Verifying our new kernel’s configuration
- Kernel build for the Raspberry Pi
- Miscellaneous tips on the kernel build
- Summary
- Questions
- Further reading
-
Writing Your First Kernel Module – Part 1
- Technical requirements
- Understanding the kernel architecture – part 1
- Exploring LKMs
- Writing our very first kernel module
- Common operations on kernel modules
-
Understanding kernel logging and printk
- Using the kernel memory ring buffer
- Kernel logging and systemd’s journalctl
- Using printk log levels
- Rate limiting the printk instances
- Generating kernel messages from user space
- Standardizing printk output via the pr_fmt macro
- Portability and the printk format specifiers
- Understanding the new printk indexing feature
- Understanding the basics of a kernel module Makefile
- Summary
- Questions
- Further reading
-
Writing Your First Kernel Module – Part 2
- Technical requirements
- A “better” Makefile template for your kernel modules
-
Cross-compiling a kernel module
- Setting up the system for cross-compilation
- Attempt 1 – setting the ARCH and CROSS_COMPILE environment variables
- Attempt 2 – pointing the Makefile to the correct kernel source tree for the target
- Attempt 3 – cross-compiling our kernel module
- Attempt 4 – cross-compiling our kernel module
- Summarizing what went wrong with the module cross-buildd/load and how it was fixed
- Gathering minimal system information
- Licensing kernel modules
- Emulating “library-like” features for kernel modules
- Passing parameters to a kernel module
- Floating point not allowed in the kernel
- Auto-loading modules on system boot
- Kernel modules and security – an overview
- Coding style guidelines for kernel developers
- Contributing to the mainline kernel
- Summary
- Questions
- Further reading
-
Kernel Internals Essentials – Processes and Threads
- Technical requirements
- Understanding process and interrupt contexts
- Understanding the basics of the process Virtual Address Space (VAS)
- Organizing processes, threads, and their stacks – user and kernel space
- Understanding and accessing the kernel task structure
- Working with the task structure via ‘current’
- Iterating over the kernel’s task lists
- Summary
- Questions
- Further reading
-
Memory Management Internals – Essentials
- Technical requirements
- Understanding the VM split
- Examining the process VAS
- Examining the kernel VAS
- Randomizing the memory layout – KASLR
- Understanding physical memory organization
- Summary
- Questions
- Further reading
-
Kernel Memory Allocation for Module Authors – Part 1
- Technical requirements
- Introducing kernel memory allocators
- Understanding and using the kernel page allocator (or BSA)
- Understanding and using the kernel slab allocator
- Size limitations of the kmalloc API
- Slab allocator – a few additional details
- Caveats when using the slab allocator
- Summary
- Questions
- Further reading
-
Kernel Memory Allocation for Module Authors – Part 2
- Technical requirements
- Creating a custom slab cache
- Debugging kernel memory issues – a quick mention
- Understanding and using the kernel vmalloc() API
- Memory allocation in the kernel – which APIs to use when
- Memory reclaim – a key kernel housekeeping task
- Stayin’ alive – the OOM killer
- Summary
- Questions
- Further reading
-
The CPU Scheduler – Part 1
- Technical requirements
- Learning about the CPU scheduling internals – part 1 – essential background
- Visualizing the flow
- Learning about the CPU scheduling internals – part 2
- Querying a given thread’s scheduling policy and priority
- Learning about the CPU scheduling internals – part 3
- Summary
- Questions
- Further reading
-
The CPU Scheduler – Part 2
- Technical requirements
- Understanding, querying, and setting the CPU affinity mask
- Querying and setting a thread’s scheduling policy and priority
- An introduction to cgroups
- Running Linux as an RTOS – an introduction
- Miscellaneous scheduling related topics
- Summary
- Questions
- Further reading
-
Kernel Synchronization – Part 1
- Technical requirements
- Critical sections, exclusive execution, and atomicity
- Concurrency concerns within the Linux kernel
- Mutex or spinlock? Which to use when
- Using the mutex lock
- Using the spinlock
-
Locking and interrupts
- Scenario 1 – driver method and hardware interrupt handler run serialized, sequentially
- Scenario 2 – driver method and hardware interrupt handler run interleaved
- Scenario 3 – some interrupts masked, driver method and hardware interrupt handler run interleaved
- Interrupt handling, bottom halves, and locking
- Using spinlocks – a quick summary
- Locking – common mistakes and guidelines
- Solutions
- Summary
- Questions
- Further reading
-
Kernel Synchronization – Part 2
- Technical requirements
- Using the atomic_t and refcount_t interfaces
- Using the RMW atomic operators
- Using the reader-writer spinlock
- Understanding CPU caching basics, cache effects, and false sharing
- Lock-free programming with per-CPU and RCU
- Lock debugging within the kernel
- Introducing memory barriers
- Summary
- Questions
- Further reading
- Other Books You May Enjoy
- Index
Product information
- Title: Linux Kernel Programming - Second Edition
- Author(s):
- Release date: February 2024
- Publisher(s): Packt Publishing
- ISBN: 9781803232225
You might also like
book
Linux Kernel Programming
Learn how to write high-quality kernel module code, solve common Linux kernel programming issues, and understand …
book
Linux Kernel Debugging
Effectively debug kernel modules, device drivers, and the kernel itself by gaining a solid understanding of …
book
Linux Kernel Development, Third Edition
Linux Kernel Development details the design and implementation of the Linux kernel, presenting the content in …
book
Understanding the Linux Kernel, 3rd Edition
In order to thoroughly understand what makes Linux tick and why it works so well on …