The Linux Kernel Module Programming Guide (updated for 5.0+ kernels)
Go to file
Bob Lee 844beed5d7
Fix a logic error in examples/ioctl.c (#137)
Change the "alloc_ret" and "cdev_ret" initial values to non-zero.
According to the source code, "alloc_chrdev_region" and "cdev_add"
return zero on success, and negative code on failure.

So, if the "alloc_chrdev_region" failed, the if condition becomes true,
then we will jump to the label "error" by goto, checking each return
value whether is a success state from both functions mentioned above
and dealing with it properly for exiting the process.

However, it checks the success state by comparing the return value
with zero (means success), and we got "cdev_ret == 0" is true from
the initial value zero, while we didn't execute "cdev_add" yet.
Hence, there was a logic error when the initial value is zero.

Co-authored-by: NOVBobLee <defru04002@gamil.com>
2022-02-21 00:58:47 +08:00
.ci CI: Introduce Smatch for static analysis (#125) 2021-11-01 08:20:41 +08:00
.github/workflows CI: introduce GCC static analysis 2021-10-08 19:41:22 +08:00
assets Add book cover (#136) 2022-01-09 20:26:07 +08:00
examples Fix a logic error in examples/ioctl.c (#137) 2022-02-21 00:58:47 +08:00
lib Introduce \src to generate Linux kernel source hyperlinks 2021-08-09 23:01:34 +08:00
scripts Add script to gen contributor list and contrib.tex 2021-11-03 19:32:48 +08:00
.gitignore Update several example code for newer kernel 2021-08-23 21:30:43 +08:00
.mailmap Add script to gen contributor list and contrib.tex 2021-11-03 19:32:48 +08:00
contrib.tex Add script to gen contributor list and contrib.tex 2021-11-03 19:32:48 +08:00
GPL-2 Initial import 2021-07-22 06:34:19 +08:00
html.cfg Add Manrope variable font (#118) 2021-10-10 21:34:25 +08:00
LICENSE Initial import 2021-07-22 06:34:19 +08:00
lkmpg.tex Fix incoherent ioctl examples (#139) 2022-02-21 00:53:29 +08:00
Makefile Add Manrope variable font (#118) 2021-10-10 21:34:25 +08:00
README.md Merge pull request #128 from sudoliyang/patch-2 2021-11-08 22:30:20 +08:00

The Linux Kernel Module Programming Guide

This project keeps the Linux Kernel Module Programming Guide up to date, with working examples for recent 5.x kernel versions.
The guide has been around since 2001 and most copies of it on the web only describe old 2.6.x kernels.

The book can be freely accessed via https://sysprog21.github.io/lkmpg/ or latest PDF file.
The original guide may be found at Linux Documentation Project.
You may check other freely available programming books listed by The Free Ebook Foundation or Linux online books collected by The Online Books Page.

Getting Started

Summary

  1. Get the latest source code from the GitHub page.
  2. Install the prerequisites.
  3. Generate PDF and/or HTML documents.

Step 1: Get the latest source code

Make sure you can run git with an Internet connection.

$ git clone https://github.com/sysprog21/lkmpg.git && cd lkmpg

Step 2: Install the prerequisites

To generate the book from source, TeXLive (MacTeX) is required.

For Ubuntu Linux, macOS, and other Unix-like systems, run the following command(s):

# Debian / Ubuntu
$ sudo apt install make texlive-full

# Arch / Manjaro
$ sudo pacman -S make texlive-most texlive-bin

# macOS
$ brew install --cask mactex
$ sudo tlmgr update --self

Alternatively, using Docker is recommended, as it guarantees the same dependencies with our GitHub Actions workflow.
After install docker engine on your machine, pull the docker image twtug/lkmpg and run in isolated containers.

# pull docker image and run it as container
$ docker pull twtug/lkmpg
$ docker run --rm -it -v $(pwd):/workdir twtug/lkmpg

nerdctl is a Docker-compatible command line tool for containerd, and you can replace the above docker commands with nerdctl counterparts.

Step 3: Generate PDF and/or HTML documents

Now we could build document with following commands:

$ make all              # Generate PDF document
$ make html             # Convert TeX to HTML
$ make clean            # Delete generated files

License

The Linux Kernel Module Programming Guide is a free book; you may reproduce and/or modify it under the terms of the Open Software License.
Use of this work is governed by a copyleft license that can be found in the LICENSE file.

The complementary sample code is licensed under GNU GPL version 2, as same as Linux kernel.