Linux Kernel Module Programming
Linux Kernel Module Programming
Peter Jay Salzman, Michael Burian, Ori Pomerantz, Bob Mottram, Jim Huang
May 2, 2023
Peter Jay Salzman, Michael Burian,
Ori Pomerantz, Bob Mottram,
Jim Huang
Contents
1 Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1 Authorship . . . . . . . . . . . . . . . . . . . . . . . . . . 4
1.2 Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 4
1.3 What Is A Kernel Module? . . . . . . . . . . . . . . . . . 5
1.4 Kernel module package . . . . . . . . . . . . . . . . . . . 5
1.5 What Modules are in my Kernel? . . . . . . . . . . . . . . 5
1.6 Do I need to download and compile the kernel? . . . . . . 6
1.7 Before We Begin . . . . . . . . . . . . . . . . . . . . . . . 6
2 Headers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
3 Examples . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
4 Hello World . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
4.1 The Simplest Module . . . . . . . . . . . . . . . . . . . . 8
4.2 Hello and Goodbye . . . . . . . . . . . . . . . . . . . . . . 12
4.3 The __init and __exit Macros . . . . . . . . . . . . . . 13
4.4 Licensing and Module Documentation . . . . . . . . . . . 14
4.5 Passing Command Line Arguments to a Module . . . . . 15
4.6 Modules Spanning Multiple Files . . . . . . . . . . . . . . 18
4.7 Building modules for a precompiled kernel . . . . . . . . . 19
5 Preliminaries . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
5.1 How modules begin and end . . . . . . . . . . . . . . . . . 21
5.2 Functions available to modules . . . . . . . . . . . . . . . 22
5.3 User Space vs Kernel Space . . . . . . . . . . . . . . . . . 23
5.4 Name Space . . . . . . . . . . . . . . . . . . . . . . . . . . 23
5.5 Code space . . . . . . . . . . . . . . . . . . . . . . . . . . 24
5.6 Device Drivers . . . . . . . . . . . . . . . . . . . . . . . . 24
6 Character Device drivers . . . . . . . . . . . . . . . . . . . . . . . 26
6.1 The file_operations Structure . . . . . . . . . . . . . . . . 26
6.2 The file structure . . . . . . . . . . . . . . . . . . . . . . . 28
2
6.3 Registering A Device . . . . . . . . . . . . . . . . . . . . . 28
6.4 Unregistering A Device . . . . . . . . . . . . . . . . . . . 30
6.5 chardev.c . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
6.6 Writing Modules for Multiple Kernel Versions . . . . . . . 34
7 The /proc File System . . . . . . . . . . . . . . . . . . . . . . . . 34
7.1 The proc_ops Structure . . . . . . . . . . . . . . . . . . . 37
7.2 Read and Write a /proc File . . . . . . . . . . . . . . . . 37
7.3 Manage /proc file with standard filesystem . . . . . . . . 39
7.4 Manage /proc file with seq_file . . . . . . . . . . . . . . . 42
8 sysfs: Interacting with your module . . . . . . . . . . . . . . . . . 44
9 Talking To Device Files . . . . . . . . . . . . . . . . . . . . . . . 47
10 System Calls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 58
11 Blocking Processes and threads . . . . . . . . . . . . . . . . . . . 67
11.1 Sleep . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 67
11.2 Completions . . . . . . . . . . . . . . . . . . . . . . . . . 74
12 Avoiding Collisions and Deadlocks . . . . . . . . . . . . . . . . . 76
12.1 Mutex . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76
12.2 Spinlocks . . . . . . . . . . . . . . . . . . . . . . . . . . . 77
12.3 Read and write locks . . . . . . . . . . . . . . . . . . . . . 78
12.4 Atomic operations . . . . . . . . . . . . . . . . . . . . . . 80
13 Replacing Print Macros . . . . . . . . . . . . . . . . . . . . . . . 82
13.1 Replacement . . . . . . . . . . . . . . . . . . . . . . . . . 82
13.2 Flashing keyboard LEDs . . . . . . . . . . . . . . . . . . . 83
14 Scheduling Tasks . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
14.1 Tasklets . . . . . . . . . . . . . . . . . . . . . . . . . . . . 86
14.2 Work queues . . . . . . . . . . . . . . . . . . . . . . . . . 88
15 Interrupt Handlers . . . . . . . . . . . . . . . . . . . . . . . . . . 89
15.1 Interrupt Handlers . . . . . . . . . . . . . . . . . . . . . . 89
15.2 Detecting button presses . . . . . . . . . . . . . . . . . . . 90
15.3 Bottom Half . . . . . . . . . . . . . . . . . . . . . . . . . 93
16 Crypto . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 96
16.1 Hash functions . . . . . . . . . . . . . . . . . . . . . . . . 96
16.2 Symmetric key encryption . . . . . . . . . . . . . . . . . . 98
17 Virtual Input Device Driver . . . . . . . . . . . . . . . . . . . . . 101
18 Standardizing the interfaces: The Device Model . . . . . . . . . . 113
19 Optimizations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 115
19.1 Likely and Unlikely conditions . . . . . . . . . . . . . . . 115
19.2 Static keys . . . . . . . . . . . . . . . . . . . . . . . . . . 116
20 Common Pitfalls . . . . . . . . . . . . . . . . . . . . . . . . . . . 120
20.1 Using standard libraries . . . . . . . . . . . . . . . . . . . 120
20.2 Disabling interrupts . . . . . . . . . . . . . . . . . . . . . 121
21 Where To Go From Here? . . . . . . . . . . . . . . . . . . . . . . 121
1 Introduction
The Linux Kernel Module Programming Guide is a free book; you may repro-
duce and/or modify it under the terms of the Open Software License, version
3.0.
This book is distributed in the hope that it would be useful, but without
any warranty, without even the implied warranty of merchantability or fitness
for a particular purpose.
The author encourages wide distribution of this book for personal or com-
mercial use, provided the above copyright notice remains intact and the method
adheres to the provisions of the Open Software License. In summary, you may
copy and distribute this book free of charge or for a profit. No explicit permis-
sion is required from the author for reproduction of this book in any medium,
physical or electronic.
Derivative works and translations of this document must be placed un-
der the Open Software License, and the original copyright notice must remain
intact. If you have contributed new material to this book, you must make
the material and source code available for your revisions. Please make revi-
sions and updates available directly to the document maintainer, Jim Huang
<jserv@ccns.ncku.edu.tw>. This will allow for the merging of updates and
provide consistent revisions to the Linux community.
If you publish or distribute this book commercially, donations, royalties,
and/or printed copies are greatly appreciated by the author and the Linux
Documentation Project (LDP). Contributing in this way shows your support for
free software and the LDP. If you have questions or comments, please contact
the address above.
1.1 Authorship
The Linux Kernel Module Programming Guide was originally written for the
2.2 kernels by Ori Pomerantz. Eventually, Ori no longer had time to maintain
the document. After all, the Linux kernel is a fast moving target. Peter Jay
Salzman took over maintenance and updated it for the 2.4 kernels. Eventually,
Peter no longer had time to follow developments with the 2.6 kernel, so Michael
Burian became a co-maintainer to update the document for the 2.6 kernels. Bob
Mottram updated the examples for 3.8+ kernels. Jim Huang upgraded to recent
kernel versions (v5.x) and revised the LATEX document.
1.2 Acknowledgements
The following people have contributed corrections or good suggestions:
On Arch Linux:
1 sudo lsmod
Modules are stored within the file /proc/modules, so you can also see them
with:
1. Modversioning. A module compiled for one kernel will not load if you boot
a different kernel unless you enable CONFIG_MODVERSIONS in the kernel.
We will not go into module versioning until later in this guide. Until we
cover modversions, the examples in the guide may not work if you are
running a kernel with modversioning turned on. However, most stock
Linux distribution kernels come with it turned on. If you are having
trouble loading the modules because of versioning errors, compile a kernel
with modversioning turned off.
2. Using X Window System. It is highly recommended that you extract,
compile and load all the examples this guide discusses from a console.
You should not be working on this stuff in X Window System.
Modules can not print to the screen like printf() can, but they can log
information and warnings, which ends up being printed on your screen, but
only on a console. If you insmod a module from an xterm, the information
and warnings will be logged, but only to your systemd journal. You will
not see it unless you look through your journalctl . See 4 for details.
To have immediate access to this information, do all your work from the
console.
3. SecureBoot. Many contemporary computers are pre-configured with UEFI
SecureBoot enabled. It is a security standard that can make sure the
device boots using only software that is trusted by original equipment
manufacturer. The default Linux kernel from some distributions have also
enabled the SecureBoot. For such distributions, the kernel module has to
be signed with the security key or you would get the "ERROR: could not
insert module" when you insert your first hello world module:
1 insmod ./hello-1.ko
And then you can check further with dmesg and see the following text:
Lockdown: insmod: unsigned module loading is restricted; see man kernel
lockdown.7
If you got this message, the simplest way is to disable the UEFI SecureBoot
from the PC/laptop boot menu to have your "hello-1" to be inserted. Of
course you can go through complicated steps to generate keys, install keys
to your system, and finally sign your module to make it work. However,
this is not suitable for beginners. You could read and follow the steps in
SecureBoot if you are interested.
2 Headers
Before you can build anything you’ll need to install the header files for your
kernel.
On Ubuntu/Debian:
This will tell you what kernel header files are available. Then for example:
On Arch Linux:
3 Examples
All the examples from this document are available within the examples subdi-
rectory.
If there are any compile errors then you might have a more recent kernel
version or need to install the corresponding kernel header files.
4 Hello World
4.1 The Simplest Module
Most people learning programming start out with some sort of "hello world "
example. I don’t know what happens to people who break with this tradition,
but I think it is safer not to find out. We will start with a series of hello world
programs that demonstrate the different aspects of the basics of writing a kernel
module.
Here is the simplest module possible.
Make a test directory:
1 mkdir -p ~/develop/kernel/hello-1
2 cd ~/develop/kernel/hello-1
1 /*
2 * hello-1.c - The simplest kernel module.
3 */
4 #include <linux/module.h> /* Needed by all modules */
5 #include <linux/printk.h> /* Needed for pr_info() */
6
7 int init_module(void)
8 {
9 pr_info("Hello world 1.\n");
10
11 /* A non 0 return means init_module failed; module can't be loaded. */
12 return 0;
13 }
14
15 void cleanup_module(void)
16 {
17 pr_info("Goodbye world 1.\n");
18 }
19
20 MODULE_LICENSE("GPL");
Now you will need a Makefile. If you copy and paste this, change the
indentation to use tabs, not spaces.
1 obj-m += hello-1.o
2
3 PWD := $(CURDIR)
4
5 all:
6 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
7
8 clean:
9 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
In Makefile, $(CURDIR) can set to the absolute pathname of the current
working directory(after all -C options are processed, if any). See more about
CURDIR in GNU make manual.
And finally, just run make directly.
1 make
1 all:
2 echo $(PWD)
Then, we can use -p flag to print out the environment variable values from
the Makefile.
$ make -p | grep PWD
PWD = /home/ubuntu/temp
OLDPWD = /home/ubuntu
echo $(PWD)
The PWD variable won’t be inherited with sudo.
$ sudo make -p | grep PWD
echo $(PWD)
However, there are three ways to solve this problem.
1. You can use the -E flag to temporarily preserve them.
1 ## sudoers file.
2 ##
3 ...
4 Defaults env_reset
5 ## Change env_reset to !env_reset in previous line to keep all
,→ environment variables
You can view and compare these logs to find differences between env_reset
and !env_reset.
3. You can preserve environment variables by appending them to env_keep
in /etc/sudoers.
After applying the above change, you can check the environment variable
settings by:
$ sudo -s
# sudo -V
If all goes smoothly you should then find that you have a compiled hello-1.ko
module. You can find info on it with the command:
1 modinfo hello-1.ko
should return nothing. You can try loading your shiny new module with:
The dash character will get converted to an underscore, so when you again
try:
you should now see your loaded module. It can be removed again with:
Notice that the dash was replaced by an underscore. To see what just hap-
pened in the logs:
You now know the basics of creating, compiling, installing and removing
modules. Now for more of a description of how this module works.
Kernel modules must have at least two functions: a "start" (initialization)
function called init_module() which is called when the module is insmoded into
the kernel, and an "end" (cleanup) function called cleanup_module() which is
called just before it is removed from the kernel. Actually, things have changed
starting with kernel 2.3.13. You can now use whatever name you like for the start
and end functions of a module, and you will learn how to do this in Section 4.2.
In fact, the new method is the preferred method. However, many people still
use init_module() and cleanup_module() for their start and end functions.
Typically, init_module() either registers a handler for something with the
kernel, or it replaces one of the kernel functions with its own code (usually code
to do something and then call the original function). The cleanup_module()
function is supposed to undo whatever init_module() did, so the module can
be unloaded safely.
Lastly, every kernel module needs to include <linux/module.h>. We needed
to include <linux/printk.h> only for the macro expansion for the pr_alert()
log level, which you’ll learn about in Section 2.
1. A point about coding style. Another thing which may not be immediately
obvious to anyone getting started with kernel programming is that inden-
tation within your code should be using tabs and not spaces. It is one
of the coding conventions of the kernel. You may not like it, but you’ll
need to get used to it if you ever submit a patch upstream.
2. Introducing print macros. In the beginning there was printk, usually fol-
lowed by a priority such as KERN_INFO or KERN_DEBUG. More recently this
can also be expressed in abbreviated form using a set of print macros,
such as pr_info and pr_debug. This just saves some mindless key-
board bashing and looks a bit neater. They can be found within in-
clude/linux/printk.h. Take time to read through the available priority
macros.
3. About Compiling. Kernel modules need to be compiled a bit differently
from regular userspace apps. Former kernel versions required us to care
much about these settings, which are usually stored in Makefiles. Al-
though hierarchically organized, many redundant settings accumulated in
sublevel Makefiles and made them large and rather difficult to maintain.
Fortunately, there is a new way of doing these things, called kbuild, and
the build process for external loadable modules is now fully integrated into
the standard kernel build mechanism. To learn more on how to compile
modules which are not part of the official kernel (such as all the examples
you will find in this guide), see file Documentation/kbuild/modules.rst.
Additional details about Makefiles for kernel modules are available in Doc-
umentation/kbuild/makefiles.rst. Be sure to read this and the related files
before starting to hack Makefiles. It will probably save you lots of work.
Here is another exercise for the reader. See that comment above
the return statement in init_module()? Change the return
value to something negative, recompile and load the module
again. What happens?
1 /*
2 * hello-2.c - Demonstrating the module_init() and module_exit() macros.
3 * This is preferred over using init_module() and cleanup_module().
4 */
5 #include <linux/init.h> /* Needed for the macros */
6 #include <linux/module.h> /* Needed by all modules */
7 #include <linux/printk.h> /* Needed for pr_info() */
8
9 static int __init hello_2_init(void)
10 {
11 pr_info("Hello, world 2\n");
12 return 0;
13 }
14
15 static void __exit hello_2_exit(void)
16 {
17 pr_info("Goodbye, world 2\n");
18 }
19
20 module_init(hello_2_init);
21 module_exit(hello_2_exit);
22
23 MODULE_LICENSE("GPL");
So now we have two real kernel modules under our belt. Adding another
module is as simple as this:
1 obj-m += hello-1.o
2 obj-m += hello-2.o
3
4 PWD := $(CURDIR)
5
6 all:
7 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
8
9 clean:
10 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
1 /*
2 * hello-3.c - Illustrating the __init, __initdata and __exit macros.
3 */
4 #include <linux/init.h> /* Needed for the macros */
5 #include <linux/module.h> /* Needed by all modules */
6 #include <linux/printk.h> /* Needed for pr_info() */
7
8 static int hello3_data __initdata = 3;
9
10 static int __init hello_3_init(void)
11 {
12 pr_info("Hello, world %d\n", hello3_data);
13 return 0;
14 }
15
16 static void __exit hello_3_exit(void)
17 {
18 pr_info("Goodbye, world 3\n");
19 }
20
21 module_init(hello_3_init);
22 module_exit(hello_3_exit);
23
24 MODULE_LICENSE("GPL");
1 /*
2 * hello-4.c - Demonstrates module documentation.
3 */
4 #include <linux/init.h> /* Needed for the macros */
5 #include <linux/module.h> /* Needed by all modules */
6 #include <linux/printk.h> /* Needed for pr_info() */
7
8 MODULE_LICENSE("GPL");
9 MODULE_AUTHOR("LKMPG");
10 MODULE_DESCRIPTION("A sample driver");
11
12 static int __init init_hello_4(void)
13 {
14 pr_info("Hello, world 4\n");
15 return 0;
16 }
17
18 static void __exit cleanup_hello_4(void)
19 {
20 pr_info("Goodbye, world 4\n");
21 }
22
23 module_init(init_hello_4);
24 module_exit(cleanup_hello_4);
1 int myint = 3;
2 module_param(myint, int, 0);
Arrays are supported too, but things are a bit different now than they were
in the olden days. To keep track of the number of parameters you need to pass
a pointer to a count variable as third parameter. At your option, you could also
ignore the count and pass NULL instead. We show both possibilities here:
1 int myintarray[2];
2 module_param_array(myintarray, int, NULL, 0); /* not interested in count */
3
4 short myshortarray[4];
5 int count;
6 module_param_array(myshortarray, short, &count, 0); /* put count into "count"
,→ variable */
A good use for this is to have the module variable’s default values set, like
a port or IO address. If the variables contain the default values, then perform
autodetection (explained elsewhere). Otherwise, keep the current value. This
will be made clear later on.
Lastly, there is a macro function, MODULE_PARM_DESC(), that is used to
document arguments that the module can take. It takes two parameters: a
variable name and a free form string describing that variable.
1 /*
2 * hello-5.c - Demonstrates command line argument passing to a module.
3 */
4 #include <linux/init.h>
5 #include <linux/kernel.h> /* for ARRAY_SIZE() */
6 #include <linux/module.h>
7 #include <linux/moduleparam.h>
8 #include <linux/printk.h>
9 #include <linux/stat.h>
10
11 MODULE_LICENSE("GPL");
12
13 static short int myshort = 1;
14 static int myint = 420;
15 static long int mylong = 9999;
16 static char *mystring = "blah";
17 static int myintarray[2] = { 420, 420 };
18 static int arr_argc = 0;
19
20 /* module_param(foo, int, 0000)
21 * The first param is the parameters name.
22 * The second param is its data type.
23 * The final argument is the permissions bits,
24 * for exposing parameters in sysfs (if non-zero) at a later stage.
25 */
26 module_param(myshort, short, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP);
27 MODULE_PARM_DESC(myshort, "A short integer");
28 module_param(myint, int, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
29 MODULE_PARM_DESC(myint, "An integer");
30 module_param(mylong, long, S_IRUSR);
31 MODULE_PARM_DESC(mylong, "A long integer");
32 module_param(mystring, charp, 0000);
33 MODULE_PARM_DESC(mystring, "A character string");
34
35 /* module_param_array(name, type, num, perm);
36 * The first param is the parameter's (in this case the array's) name.
37 * The second param is the data type of the elements of the array.
38 * The third argument is a pointer to the variable that will store the number
39 * of elements of the array initialized by the user at module loading time.
40 * The fourth argument is the permission bits.
41 */
42 module_param_array(myintarray, int, &arr_argc, 0000);
43 MODULE_PARM_DESC(myintarray, "An array of integers");
44
45 static int __init hello_5_init(void)
46 {
47 int i;
48
49 pr_info("Hello, world 5\n=============\n");
50 pr_info("myshort is a short integer: %hd\n", myshort);
51 pr_info("myint is an integer: %d\n", myint);
52 pr_info("mylong is a long integer: %ld\n", mylong);
53 pr_info("mystring is a string: %s\n", mystring);
54
55 for (i = 0; i < ARRAY_SIZE(myintarray); i++)
56 pr_info("myintarray[%d] = %d\n", i, myintarray[i]);
57
58 pr_info("got %d arguments for myintarray.\n", arr_argc);
59 return 0;
60 }
61
62 static void __exit hello_5_exit(void)
63 {
64 pr_info("Goodbye, world 5\n");
65 }
66
67 module_init(hello_5_init);
68 module_exit(hello_5_exit);
1 /*
2 * start.c - Illustration of multi filed modules
3 */
4
5 #include <linux/kernel.h> /* We are doing kernel work */
6 #include <linux/module.h> /* Specifically, a module */
7
8 int init_module(void)
9 {
10 pr_info("Hello, world - this is the kernel speaking\n");
11 return 0;
12 }
13
14 MODULE_LICENSE("GPL");
1 /*
2 * stop.c - Illustration of multi filed modules
3 */
4
5 #include <linux/kernel.h> /* We are doing kernel work */
6 #include <linux/module.h> /* Specifically, a module */
7
8 void cleanup_module(void)
9 {
10 pr_info("Short is the life of a kernel module\n");
11 }
12
13 MODULE_LICENSE("GPL");
1 obj-m += hello-1.o
2 obj-m += hello-2.o
3 obj-m += hello-3.o
4 obj-m += hello-4.o
5 obj-m += hello-5.o
6 obj-m += startstop.o
7 startstop-objs := start.o stop.o
8
9 PWD := $(CURDIR)
10
11 all:
12 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
13
14 clean:
15 make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
This is the complete makefile for all the examples we have seen so far. The
first five lines are nothing special, but for the last example we will need two
lines. First we invent an object name for our combined module, second we tell
make what object files are part of that module.
insmod: ERROR: could not insert module poet.ko: Invalid module format
In other words, your kernel refuses to accept your module because version
strings (more precisely, version magic, see include/linux/vermagic.h) do not
match. Incidentally, version magic strings are stored in the module object in
the form of a static string, starting with vermagic:. Version data are inserted
in your module when it is linked against the kernel/module.o file. To inspect
version magics and other strings stored in a given module, issue the command
modinfo module.ko:
$ modinfo hello-4.ko
description: A sample driver
author: LKMPG
license: GPL
srcversion: B2AA7FBFCC2C39AED665382
depends:
retpoline: Y
name: hello_4
vermagic: 5.4.0-70-generic SMP mod_unload modversions
VERSION = 5
PATCHLEVEL = 14
SUBLEVEL = 0
EXTRAVERSION = -rc2
Here linux-`uname -r` is the Linux kernel source you are attempting to build.
Now, please run make to update configuration and version headers and ob-
jects:
$ make
SYNC include/config/auto.conf.cmd
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
HOSTCC scripts/kconfig/expr.o
LEX scripts/kconfig/lexer.lex.c
YACC scripts/kconfig/parser.tab.[ch]
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
If you do not desire to actually compile the kernel, you can interrupt the
build process (CTRL-C) just after the SPLIT line, because at that time, the
files you need are ready. Now you can turn back to the directory of your module
and compile it: It will be built exactly according to your current kernel settings,
and it will load into it without any errors.
5 Preliminaries
5.1 How modules begin and end
A program usually begins with a main() function, executes a bunch of instruc-
tions and terminates upon completion of those instructions. Kernel modules
work a bit differently. A module always begin with either the init_module or
the function you specify with module_init call. This is the entry function for
modules; it tells the kernel what functionality the module provides and sets up
the kernel to run the module’s functions when they are needed. Once it does
this, entry function returns and the module does nothing until the kernel wants
to do something with the code that the module provides.
All modules end by calling either cleanup_module or the function you spec-
ify with the module_exit call. This is the exit function for modules; it undoes
whatever entry function did. It unregisters the functionality that the entry
function registered.
Every module must have an entry function and an exit function. Since
there’s more than one way to specify entry and exit functions, I will try my best
to use the terms “entry function” and “exit function”, but if I slip and simply
refer to them as init_module and cleanup_module, I think you will know what
I mean.
5.2 Functions available to modules
Programmers use functions they do not define all the time. A prime example
of this is printf(). You use these library functions which are provided by the
standard C library, libc. The definitions for these functions do not actually enter
your program until the linking stage, which insures that the code (for printf()
for example) is available, and fixes the call instruction to point to that code.
Kernel modules are different here, too. In the hello world example, you
might have noticed that we used a function, pr_info() but did not include a
standard I/O library. That is because modules are object files whose symbols
get resolved upon running insmod or modprobe. The definition for the symbols
comes from the kernel itself; the only external functions you can use are the
ones provided by the kernel. If you’re curious about what symbols have been
exported by your kernel, take a look at /proc/kallsyms.
One point to keep in mind is the difference between library functions and
system calls. Library functions are higher level, run completely in user space
and provide a more convenient interface for the programmer to the functions
that do the real work — system calls. System calls run in kernel mode on
the user’s behalf and are provided by the kernel itself. The library function
printf() may look like a very general printing function, but all it really does is
format the data into strings and write the string data using the low-level system
call write(), which then sends the data to standard output.
Would you like to see what system calls are made by printf()? It is easy!
Compile the following program:
1 #include <stdio.h>
2
3 int main(void)
4 {
5 printf("hello");
6 return 0;
7 }
with gcc -Wall -o hello hello.c. Run the executable with strace ./hello.
Are you impressed? Every line you see corresponds to a system call. strace is
a handy program that gives you details about what system calls a program
is making, including which call is made, what its arguments are and what it
returns. It is an invaluable tool for figuring out things like what files a pro-
gram is trying to access. Towards the end, you will see a line which looks
like write(1, "hello", 5hello). There it is. The face behind the printf()
mask. You may not be familiar with write, since most people use library func-
tions for file I/O (like fopen, fputs, fclose). If that is the case, try looking
at man 2 write. The 2nd man section is devoted to system calls (like kill()
and read()). The 3rd man section is devoted to library calls, which you would
probably be more familiar with (like cosh() and random()).
You can even write modules to replace the kernel’s system calls, which we
will do shortly. Crackers often make use of this sort of thing for backdoors or
trojans, but you can write your own modules to do more benign things, like
have the kernel write Tee hee, that tickles! every time someone tries to delete a
file on your system.
If you want to see which major numbers have been assigned, you can look
at Documentation/admin-guide/devices.txt.
When the system was installed, all of those device files were created by the
mknod command. To create a new char device named coffee with major/minor
number 12 and 2, simply do mknod /dev/coffee c 12 2. You do not have
to put your device files into /dev, but it is done by convention. Linus put his
device files in /dev, and so should you. However, when creating a device file for
testing purposes, it is probably OK to place it in your working directory where
you compile the kernel module. Just be sure to put it in the right place when
you’re done writing the device driver.
I would like to make a few last points which are implicit from the above
discussion, but I would like to make them explicit just in case. When a device
file is accessed, the kernel uses the major number of the file to determine which
driver should be used to handle the access. This means that the kernel doesn’t
really need to use or even know about the minor number. The driver itself is
the only thing that cares about the minor number. It uses the minor number
to distinguish between different pieces of hardware.
By the way, when I say "hardware", I mean something a bit more abstract
than a PCI card that you can hold in your hand. Look at these two device files:
$ ls -l /dev/sda /dev/sdb
brw-rw---- 1 root disk 8, 0 Jan 3 09:02 /dev/sda
brw-rw---- 1 root disk 8, 16 Jan 3 09:02 /dev/sdb
By now you can look at these two device files and know instantly that they
are block devices and are handled by same driver (block major 8). Sometimes
two device files with the same major but different minor number can actually
represent the same piece of physical hardware. So just be aware that the word
“hardware” in our discussion can mean something very abstract.
1 struct file_operations {
2 struct module *owner;
3 loff_t (*llseek) (struct file *, loff_t, int);
4 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
5 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
6 ssize_t (*read_iter) (struct kiocb *, struct iov_iter *);
7 ssize_t (*write_iter) (struct kiocb *, struct iov_iter *);
8 int (*iopoll)(struct kiocb *kiocb, bool spin);
9 int (*iterate) (struct file *, struct dir_context *);
10 int (*iterate_shared) (struct file *, struct dir_context *);
11 __poll_t (*poll) (struct file *, struct poll_table_struct *);
12 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
13 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
14 int (*mmap) (struct file *, struct vm_area_struct *);
15 unsigned long mmap_supported_flags;
16 int (*open) (struct inode *, struct file *);
17 int (*flush) (struct file *, fl_owner_t id);
18 int (*release) (struct inode *, struct file *);
19 int (*fsync) (struct file *, loff_t, loff_t, int datasync);
20 int (*fasync) (int, struct file *, int);
21 int (*lock) (struct file *, int, struct file_lock *);
22 ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *,
,→ int);
23 unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned
,→ long, unsigned long, unsigned long);
24 int (*check_flags)(int);
25 int (*flock) (struct file *, int, struct file_lock *);
26 ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *,
,→ size_t, unsigned int);
27 ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *,
,→ size_t, unsigned int);
28 int (*setlease)(struct file *, long, struct file_lock **, void **);
29 long (*fallocate)(struct file *file, int mode, loff_t offset,
30 loff_t len);
31 void (*show_fdinfo)(struct seq_file *m, struct file *f);
32 ssize_t (*copy_file_range)(struct file *, loff_t, struct file *,
33 loff_t, size_t, unsigned int);
34 loff_t (*remap_file_range)(struct file *file_in, loff_t pos_in,
35 struct file *file_out, loff_t pos_out,
36 loff_t len, unsigned int remap_flags);
37 int (*fadvise)(struct file *, loff_t, loff_t, int);
38 } __randomize_layout;
The meaning is clear, and you should be aware that any member of the
structure which you do not explicitly assign will be initialized to NULL by gcc.
An instance of struct file_operations containing pointers to functions
that are used to implement read, write, open, . . . system calls is commonly
named fops.
Since Linux v3.14, the read, write and seek operations are guaranteed for
thread-safe by using the f_pos specific lock, which makes the file position update
to become the mutual exclusion. So, we can safely implement those operations
without unnecessary locking.
Additionally, since Linux v5.6, the proc_ops structure was introduced to re-
place the use of the file_operations structure when registering proc handlers.
See more information in the 7.1 section.
Where unsigned int major is the major number you want to request, const char *name
is the name of the device as it will appear in /proc/devices and struct file_operations *fops
is a pointer to the file_operations table for your driver. A negative return
value means the registration failed. Note that we didn’t pass the minor number
to register_chrdev. That is because the kernel doesn’t care about the minor
number; only our driver uses it.
Now the question is, how do you get a major number without hijacking one
that’s already in use? The easiest way would be to look through Documentation/admin-
guide/devices.txt and pick an unused one. That is a bad way of doing things
because you will never be sure if the number you picked will be assigned later.
The answer is that you can ask the kernel to assign you a dynamic major num-
ber.
If you pass a major number of 0 to register_chrdev, the return value will
be the dynamically allocated major number. The downside is that you can not
make a device file in advance, since you do not know what the major number
will be. There are a couple of ways to do this. First, the driver itself can print
the newly assigned number and we can make the device file by hand. Second,
the newly registered device will have an entry in /proc/devices, and we can
either make the device file by hand or write a shell script to read the file in and
make the device file. The third method is that we can have our driver make the
device file using the device_create function after a successful registration and
device_destroy during the call to cleanup_module.
However, register_chrdev() would occupy a range of minor numbers as-
sociated with the given major. The recommended way to reduce waste for char
device registration is using cdev interface.
The newer interface completes the char device registration in two distinct
steps. First, we should register a range of device numbers, which can be com-
pleted with register_chrdev_region or alloc_chrdev_region.
The choice between two different functions depends on whether you know
the major numbers for your device. Using register_chrdev_region if you
know the device major number and alloc_chrdev_region if you would like to
allocate a dynamicly-allocated major number.
Second, we should initialize the data structure struct cdev for our char
device and associate it with the device numbers. To initialize the struct cdev,
we can achieve by the similar sequence of the following codes.
However, the common usage pattern will embed the struct cdev within a
device-specific structure of your own. In this case, we’ll need cdev_init for the
initialization.
1 void cdev_init(struct cdev *cdev, const struct file_operations *fops);
Once we finish the initialization, we can add the char device to the system
by using the cdev_add.
To find a example using the interface, you can see ioctl.c described in
section 9.
1 cat /proc/devices
(or open the file with a program) and the driver will put the number of times
the device file has been read from into the file. We do not support writing to
the file (like echo "hi" > /dev/hello), but catch these attempts and tell the
user that the operation is not supported. Don’t worry if you don’t see what we
do with the data we read into the buffer; we don’t do much with it. We simply
read in the data and print a message acknowledging that we received it.
In the multiple-threaded environment, without any protection, concurrent
access to the same memory may lead to the race condition, and will not pre-
serve the performance. In the kernel module, this problem may happen due
to multiple instances accessing the shared resources. Therefore, a solution is
to enforce the exclusive access. We use atomic Compare-And-Swap (CAS) to
maintain the states, CDEV_NOT_USED and CDEV_EXCLUSIVE_OPEN, to determine
whether the file is currently opened by someone or not. CAS compares the
contents of a memory location with the expected value and, only if they are the
same, modifies the contents of that memory location to the desired value. See
more concurrency details in the 12 section.
1 /*
2 * chardev.c: Creates a read-only char device that says how many times
3 * you have read from the dev file
4 */
5
6 #include <linux/atomic.h>
7 #include <linux/cdev.h>
8 #include <linux/delay.h>
9 #include <linux/device.h>
10 #include <linux/fs.h>
11 #include <linux/init.h>
12 #include <linux/kernel.h> /* for sprintf() */
13 #include <linux/module.h>
14 #include <linux/printk.h>
15 #include <linux/types.h>
16 #include <linux/uaccess.h> /* for get_user and put_user */
17
18 #include <asm/errno.h>
19
20 /* Prototypes - this would normally go in a .h file */
21 static int device_open(struct inode *, struct file *);
22 static int device_release(struct inode *, struct file *);
23 static ssize_t device_read(struct file *, char __user *, size_t, loff_t *);
24 static ssize_t device_write(struct file *, const char __user *, size_t,
25 loff_t *);
26
27 #define SUCCESS 0
28 #define DEVICE_NAME "chardev" /* Dev name as it appears in /proc/devices */
29 #define BUF_LEN 80 /* Max length of the message from the device */
30
31 /* Global variables are declared as static, so are global within the file. */
32
33 static int major; /* major number assigned to our device driver */
34
35 enum {
36 CDEV_NOT_USED = 0,
37 CDEV_EXCLUSIVE_OPEN = 1,
38 };
39
40 /* Is device open? Used to prevent multiple access to device */
41 static atomic_t already_open = ATOMIC_INIT(CDEV_NOT_USED);
42
43 static char msg[BUF_LEN + 1]; /* The msg the device will give when asked */
44
45 static struct class *cls;
46
47 static struct file_operations chardev_fops = {
48 .read = device_read,
49 .write = device_write,
50 .open = device_open,
51 .release = device_release,
52 };
53
54 static int __init chardev_init(void)
55 {
56 major = register_chrdev(0, DEVICE_NAME, &chardev_fops);
57
58 if (major < 0) {
59 pr_alert("Registering char device failed with %d\n", major);
60 return major;
61 }
62
63 pr_info("I was assigned major number %d.\n", major);
64
65 cls = class_create(THIS_MODULE, DEVICE_NAME);
66 device_create(cls, NULL, MKDEV(major, 0), NULL, DEVICE_NAME);
67
68 pr_info("Device created on /dev/%s\n", DEVICE_NAME);
69
70 return SUCCESS;
71 }
72
73 static void __exit chardev_exit(void)
74 {
75 device_destroy(cls, MKDEV(major, 0));
76 class_destroy(cls);
77
78 /* Unregister the device */
79 unregister_chrdev(major, DEVICE_NAME);
80 }
81
82 /* Methods */
83
84 /* Called when a process tries to open the device file, like
85 * "sudo cat /dev/chardev"
86 */
87 static int device_open(struct inode *inode, struct file *file)
88 {
89 static int counter = 0;
90
91 if (atomic_cmpxchg(&already_open, CDEV_NOT_USED, CDEV_EXCLUSIVE_OPEN))
92 return -EBUSY;
93
94 sprintf(msg, "I already told you %d times Hello world!\n", counter++);
95 try_module_get(THIS_MODULE);
96
97 return SUCCESS;
98 }
99
100 /* Called when a process closes the device file. */
101 static int device_release(struct inode *inode, struct file *file)
102 {
103 /* We're now ready for our next caller */
104 atomic_set(&already_open, CDEV_NOT_USED);
105
106 /* Decrement the usage count, or else once you opened the file, you will
107 * never get rid of the module.
108 */
109 module_put(THIS_MODULE);
110
111 return SUCCESS;
112 }
113
114 /* Called when a process, which already opened the dev file, attempts to
115 * read from it.
116 */
117 static ssize_t device_read(struct file *filp, /* see include/linux/fs.h */
118 char __user *buffer, /* buffer to fill with data */
119 size_t length, /* length of the buffer */
120 loff_t *offset)
121 {
122 /* Number of bytes actually written to the buffer */
123 int bytes_read = 0;
124 const char *msg_ptr = msg;
125
126 if (!*(msg_ptr + *offset)) { /* we are at the end of message */
127 *offset = 0; /* reset the offset */
128 return 0; /* signify end of file */
129 }
130
131 msg_ptr += *offset;
132
133 /* Actually put the data into the buffer */
134 while (length && *msg_ptr) {
135 /* The buffer is in the user data segment, not the kernel
136 * segment so "*" assignment won't work. We have to use
137 * put_user which copies data from the kernel data segment to
138 * the user data segment.
139 */
140 put_user(*(msg_ptr++), buffer++);
141 length--;
142 bytes_read++;
143 }
144
145 *offset += bytes_read;
146
147 /* Most read functions return the number of bytes put into the buffer. */
148 return bytes_read;
149 }
150
151 /* Called when a process writes to dev file: echo "hi" > /dev/hello */
152 static ssize_t device_write(struct file *filp, const char __user *buff,
153 size_t len, loff_t *off)
154 {
155 pr_alert("Sorry, this operation is not supported.\n");
156 return -EINVAL;
157 }
158
159 module_init(chardev_init);
160 module_exit(chardev_exit);
161
162 MODULE_LICENSE("GPL");
$ cat /proc/helloworld
HelloWorld!
1 /*
2 * procfs1.c
3 */
4
5 #include <linux/kernel.h>
6 #include <linux/module.h>
7 #include <linux/proc_fs.h>
8 #include <linux/uaccess.h>
9 #include <linux/version.h>
10
11 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
12 #define HAVE_PROC_OPS
13 #endif
14
15 #define procfs_name "helloworld"
16
17 static struct proc_dir_entry *our_proc_file;
18
19 static ssize_t procfile_read(struct file *file_pointer, char __user *buffer,
20 size_t buffer_length, loff_t *offset)
21 {
22 char s[13] = "HelloWorld!\n";
23 int len = sizeof(s);
24 ssize_t ret = len;
25
26 if (*offset >= len || copy_to_user(buffer, s, len)) {
27 pr_info("copy_to_user failed\n");
28 ret = 0;
29 } else {
30 pr_info("procfile read %s\n",
,→ file_pointer->f_path.dentry->d_name.name);
31 *offset += len;
32 }
33
34 return ret;
35 }
36
37 #ifdef HAVE_PROC_OPS
38 static const struct proc_ops proc_file_fops = {
39 .proc_read = procfile_read,
40 };
41 #else
42 static const struct file_operations proc_file_fops = {
43 .read = procfile_read,
44 };
45 #endif
46
47 static int __init procfs1_init(void)
48 {
49 our_proc_file = proc_create(procfs_name, 0644, NULL, &proc_file_fops);
50 if (NULL == our_proc_file) {
51 proc_remove(our_proc_file);
52 pr_alert("Error:Could not initialize /proc/%s\n", procfs_name);
53 return -ENOMEM;
54 }
55
56 pr_info("/proc/%s created\n", procfs_name);
57 return 0;
58 }
59
60 static void __exit procfs1_exit(void)
61 {
62 proc_remove(our_proc_file);
63 pr_info("/proc/%s removed\n", procfs_name);
64 }
65
66 module_init(procfs1_init);
67 module_exit(procfs1_exit);
68
69 MODULE_LICENSE("GPL");
7.1 The proc_ops Structure
The proc_ops structure is defined in include/linux/proc_fs.h in Linux v5.6+.
In older kernels, it used file_operations for custom hooks in /proc file system,
but it contains some members that are unnecessary in VFS, and every time
VFS expands file_operations set, /proc code comes bloated. On the other
hand, not only the space, but also some operations were saved by this structure
to improve its performance. For example, the file which never disappears in
/proc can set the proc_flag as PROC_ENTRY_PERMANENT to save 2 atomic ops,
1 allocation, 1 free in per open/read/close sequence.
1 /*
2 * procfs2.c - create a "file" in /proc
3 */
4
5 #include <linux/kernel.h> /* We're doing kernel work */
6 #include <linux/module.h> /* Specifically, a module */
7 #include <linux/proc_fs.h> /* Necessary because we use the proc fs */
8 #include <linux/uaccess.h> /* for copy_from_user */
9 #include <linux/version.h>
10
11 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
12 #define HAVE_PROC_OPS
13 #endif
14
15 #define PROCFS_MAX_SIZE 1024
16 #define PROCFS_NAME "buffer1k"
17
18 /* This structure hold information about the /proc file */
19 static struct proc_dir_entry *our_proc_file;
20
21 /* The buffer used to store character for this module */
22 static char procfs_buffer[PROCFS_MAX_SIZE];
23
24 /* The size of the buffer */
25 static unsigned long procfs_buffer_size = 0;
26
27 /* This function is called then the /proc file is read */
28 static ssize_t procfile_read(struct file *file_pointer, char __user *buffer,
29 size_t buffer_length, loff_t *offset)
30 {
31 char s[13] = "HelloWorld!\n";
32 int len = sizeof(s);
33 ssize_t ret = len;
34
35 if (*offset >= len || copy_to_user(buffer, s, len)) {
36 pr_info("copy_to_user failed\n");
37 ret = 0;
38 } else {
39 pr_info("procfile read %s\n",
,→ file_pointer->f_path.dentry->d_name.name);
40 *offset += len;
41 }
42
43 return ret;
44 }
45
46 /* This function is called with the /proc file is written. */
47 static ssize_t procfile_write(struct file *file, const char __user *buff,
48 size_t len, loff_t *off)
49 {
50 procfs_buffer_size = len;
51 if (procfs_buffer_size > PROCFS_MAX_SIZE)
52 procfs_buffer_size = PROCFS_MAX_SIZE;
53
54 if (copy_from_user(procfs_buffer, buff, procfs_buffer_size))
55 return -EFAULT;
56
57 procfs_buffer[procfs_buffer_size & (PROCFS_MAX_SIZE - 1)] = '\0';
58 *off += procfs_buffer_size;
59 pr_info("procfile write %s\n", procfs_buffer);
60
61 return procfs_buffer_size;
62 }
63
64 #ifdef HAVE_PROC_OPS
65 static const struct proc_ops proc_file_fops = {
66 .proc_read = procfile_read,
67 .proc_write = procfile_write,
68 };
69 #else
70 static const struct file_operations proc_file_fops = {
71 .read = procfile_read,
72 .write = procfile_write,
73 };
74 #endif
75
76 static int __init procfs2_init(void)
77 {
78 our_proc_file = proc_create(PROCFS_NAME, 0644, NULL, &proc_file_fops);
79 if (NULL == our_proc_file) {
80 proc_remove(our_proc_file);
81 pr_alert("Error:Could not initialize /proc/%s\n", PROCFS_NAME);
82 return -ENOMEM;
83 }
84
85 pr_info("/proc/%s created\n", PROCFS_NAME);
86 return 0;
87 }
88
89 static void __exit procfs2_exit(void)
90 {
91 proc_remove(our_proc_file);
92 pr_info("/proc/%s removed\n", PROCFS_NAME);
93 }
94
95 module_init(procfs2_init);
96 module_exit(procfs2_exit);
97
98 MODULE_LICENSE("GPL");
1 /*
2 * procfs3.c
3 */
4
5 #include <linux/kernel.h>
6 #include <linux/module.h>
7 #include <linux/proc_fs.h>
8 #include <linux/sched.h>
9 #include <linux/uaccess.h>
10 #include <linux/version.h>
11 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
12 #include <linux/minmax.h>
13 #endif
14
15 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
16 #define HAVE_PROC_OPS
17 #endif
18
19 #define PROCFS_MAX_SIZE 2048UL
20 #define PROCFS_ENTRY_FILENAME "buffer2k"
21
22 static struct proc_dir_entry *our_proc_file;
23 static char procfs_buffer[PROCFS_MAX_SIZE];
24 static unsigned long procfs_buffer_size = 0;
25
26 static ssize_t procfs_read(struct file *filp, char __user *buffer,
27 size_t length, loff_t *offset)
28 {
29 if (*offset || procfs_buffer_size == 0) {
30 pr_debug("procfs_read: END\n");
31 *offset = 0;
32 return 0;
33 }
34 procfs_buffer_size = min(procfs_buffer_size, length);
35 if (copy_to_user(buffer, procfs_buffer, procfs_buffer_size))
36 return -EFAULT;
37 *offset += procfs_buffer_size;
38
39 pr_debug("procfs_read: read %lu bytes\n", procfs_buffer_size);
40 return procfs_buffer_size;
41 }
42 static ssize_t procfs_write(struct file *file, const char __user *buffer,
43 size_t len, loff_t *off)
44 {
45 procfs_buffer_size = min(PROCFS_MAX_SIZE, len);
46 if (copy_from_user(procfs_buffer, buffer, procfs_buffer_size))
47 return -EFAULT;
48 *off += procfs_buffer_size;
49
50 pr_debug("procfs_write: write %lu bytes\n", procfs_buffer_size);
51 return procfs_buffer_size;
52 }
53 static int procfs_open(struct inode *inode, struct file *file)
54 {
55 try_module_get(THIS_MODULE);
56 return 0;
57 }
58 static int procfs_close(struct inode *inode, struct file *file)
59 {
60 module_put(THIS_MODULE);
61 return 0;
62 }
63
64 #ifdef HAVE_PROC_OPS
65 static struct proc_ops file_ops_4_our_proc_file = {
66 .proc_read = procfs_read,
67 .proc_write = procfs_write,
68 .proc_open = procfs_open,
69 .proc_release = procfs_close,
70 };
71 #else
72 static const struct file_operations file_ops_4_our_proc_file = {
73 .read = procfs_read,
74 .write = procfs_write,
75 .open = procfs_open,
76 .release = procfs_close,
77 };
78 #endif
79
80 static int __init procfs3_init(void)
81 {
82 our_proc_file = proc_create(PROCFS_ENTRY_FILENAME, 0644, NULL,
83 &file_ops_4_our_proc_file);
84 if (our_proc_file == NULL) {
85 remove_proc_entry(PROCFS_ENTRY_FILENAME, NULL);
86 pr_debug("Error: Could not initialize /proc/%s\n",
87 PROCFS_ENTRY_FILENAME);
88 return -ENOMEM;
89 }
90 proc_set_size(our_proc_file, 80);
91 proc_set_user(our_proc_file, GLOBAL_ROOT_UID, GLOBAL_ROOT_GID);
92
93 pr_debug("/proc/%s created\n", PROCFS_ENTRY_FILENAME);
94 return 0;
95 }
96
97 static void __exit procfs3_exit(void)
98 {
99 remove_proc_entry(PROCFS_ENTRY_FILENAME, NULL);
100 pr_debug("/proc/%s removed\n", PROCFS_ENTRY_FILENAME);
101 }
102
103 module_init(procfs3_init);
104 module_exit(procfs3_exit);
105
106 MODULE_LICENSE("GPL");
Still hungry for procfs examples? Well, first of all keep in mind, there are
rumors around, claiming that procfs is on its way out, consider using sysfs in-
stead. Consider using this mechanism, in case you want to document something
kernel related yourself.
1 /*
2 * procfs4.c - create a "file" in /proc
3 * This program uses the seq_file library to manage the /proc file.
4 */
5
6 #include <linux/kernel.h> /* We are doing kernel work */
7 #include <linux/module.h> /* Specifically, a module */
8 #include <linux/proc_fs.h> /* Necessary because we use proc fs */
9 #include <linux/seq_file.h> /* for seq_file */
10 #include <linux/version.h>
11
12 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
13 #define HAVE_PROC_OPS
14 #endif
15
16 #define PROC_NAME "iter"
17
18 /* This function is called at the beginning of a sequence.
19 * ie, when:
20 * - the /proc file is read (first time)
21 * - after the function stop (end of sequence)
22 */
23 static void *my_seq_start(struct seq_file *s, loff_t *pos)
24 {
25 static unsigned long counter = 0;
26
27 /* beginning a new sequence? */
28 if (*pos == 0) {
29 /* yes => return a non null value to begin the sequence */
30 return &counter;
31 }
32
33 /* no => it is the end of the sequence, return end to stop reading */
34 *pos = 0;
35 return NULL;
36 }
37
38 /* This function is called after the beginning of a sequence.
39 * It is called untill the return is NULL (this ends the sequence).
40 */
41 static void *my_seq_next(struct seq_file *s, void *v, loff_t *pos)
42 {
43 unsigned long *tmp_v = (unsigned long *)v;
44 (*tmp_v)++;
45 (*pos)++;
46 return NULL;
47 }
48
49 /* This function is called at the end of a sequence. */
50 static void my_seq_stop(struct seq_file *s, void *v)
51 {
52 /* nothing to do, we use a static value in start() */
53 }
54
55 /* This function is called for each "step" of a sequence. */
56 static int my_seq_show(struct seq_file *s, void *v)
57 {
58 loff_t *spos = (loff_t *)v;
59
60 seq_printf(s, "%Ld\n", *spos);
61 return 0;
62 }
63
64 /* This structure gather "function" to manage the sequence */
65 static struct seq_operations my_seq_ops = {
66 .start = my_seq_start,
67 .next = my_seq_next,
68 .stop = my_seq_stop,
69 .show = my_seq_show,
70 };
71
72 /* This function is called when the /proc file is open. */
73 static int my_open(struct inode *inode, struct file *file)
74 {
75 return seq_open(file, &my_seq_ops);
76 };
77
78 /* This structure gather "function" that manage the /proc file */
79 #ifdef HAVE_PROC_OPS
80 static const struct proc_ops my_file_ops = {
81 .proc_open = my_open,
82 .proc_read = seq_read,
83 .proc_lseek = seq_lseek,
84 .proc_release = seq_release,
85 };
86 #else
87 static const struct file_operations my_file_ops = {
88 .open = my_open,
89 .read = seq_read,
90 .llseek = seq_lseek,
91 .release = seq_release,
92 };
93 #endif
94
95 static int __init procfs4_init(void)
96 {
97 struct proc_dir_entry *entry;
98
99 entry = proc_create(PROC_NAME, 0, NULL, &my_file_ops);
100 if (entry == NULL) {
101 remove_proc_entry(PROC_NAME, NULL);
102 pr_debug("Error: Could not initialize /proc/%s\n", PROC_NAME);
103 return -ENOMEM;
104 }
105
106 return 0;
107 }
108
109 static void __exit procfs4_exit(void)
110 {
111 remove_proc_entry(PROC_NAME, NULL);
112 pr_debug("/proc/%s removed\n", PROC_NAME);
113 }
114
115 module_init(procfs4_init);
116 module_exit(procfs4_exit);
117
118 MODULE_LICENSE("GPL");
If you want more information, you can read this web page:
• https://lwn.net/Articles/22355/
• https://kernelnewbies.org/Documents/SeqFileHowTo
You can also read the code of fs/seq_file.c in the linux kernel.
1 ls -l /sys
Attributes can be exported for kobjects in the form of regular files in the
filesystem. Sysfs forwards file I/O operations to methods defined for the at-
tributes, providing a means to read and write kernel attributes.
An attribute definition in simply:
1 struct attribute {
2 char *name;
3 struct module *owner;
4 umode_t mode;
5 };
6
7 int sysfs_create_file(struct kobject * kobj, const struct attribute * attr);
8 void sysfs_remove_file(struct kobject * kobj, const struct attribute * attr);
1 struct device_attribute {
2 struct attribute attr;
3 ssize_t (*show)(struct device *dev, struct device_attribute *attr,
4 char *buf);
5 ssize_t (*store)(struct device *dev, struct device_attribute *attr,
6 const char *buf, size_t count);
7 };
8
9 int device_create_file(struct device *, const struct device_attribute *);
10 void device_remove_file(struct device *, const struct device_attribute *);
1 /*
2 * hello-sysfs.c sysfs example
3 */
4 #include <linux/fs.h>
5 #include <linux/init.h>
6 #include <linux/kobject.h>
7 #include <linux/module.h>
8 #include <linux/string.h>
9 #include <linux/sysfs.h>
10
11 static struct kobject *mymodule;
12
13 /* the variable you want to be able to change */
14 static int myvariable = 0;
15
16 static ssize_t myvariable_show(struct kobject *kobj,
17 struct kobj_attribute *attr, char *buf)
18 {
19 return sprintf(buf, "%d\n", myvariable);
20 }
21
22 static ssize_t myvariable_store(struct kobject *kobj,
23 struct kobj_attribute *attr, char *buf,
24 size_t count)
25 {
26 sscanf(buf, "%du", &myvariable);
27 return count;
28 }
29
30 static struct kobj_attribute myvariable_attribute =
31 __ATTR(myvariable, 0660, myvariable_show, (void *)myvariable_store);
32
33 static int __init mymodule_init(void)
34 {
35 int error = 0;
36
37 pr_info("mymodule: initialised\n");
38
39 mymodule = kobject_create_and_add("mymodule", kernel_kobj);
40 if (!mymodule)
41 return -ENOMEM;
42
43 error = sysfs_create_file(mymodule, &myvariable_attribute.attr);
44 if (error) {
45 pr_info("failed to create the myvariable file "
46 "in /sys/kernel/mymodule\n");
47 }
48
49 return error;
50 }
51
52 static void __exit mymodule_exit(void)
53 {
54 pr_info("mymodule: Exit success\n");
55 kobject_put(mymodule);
56 }
57
58 module_init(mymodule_init);
59 module_exit(mymodule_exit);
60
61 MODULE_LICENSE("GPL");
1 make
2 sudo insmod hello-sysfs.ko
1 cat /sys/kernel/mymodule/myvariable
1 /*
2 * ioctl.c
3 */
4 #include <linux/cdev.h>
5 #include <linux/fs.h>
6 #include <linux/init.h>
7 #include <linux/ioctl.h>
8 #include <linux/module.h>
9 #include <linux/slab.h>
10 #include <linux/uaccess.h>
11
12 struct ioctl_arg {
13 unsigned int val;
14 };
15
16 /* Documentation/ioctl/ioctl-number.txt */
17 #define IOC_MAGIC '\x66'
18
19 #define IOCTL_VALSET _IOW(IOC_MAGIC, 0, struct ioctl_arg)
20 #define IOCTL_VALGET _IOR(IOC_MAGIC, 1, struct ioctl_arg)
21 #define IOCTL_VALGET_NUM _IOR(IOC_MAGIC, 2, int)
22 #define IOCTL_VALSET_NUM _IOW(IOC_MAGIC, 3, int)
23
24 #define IOCTL_VAL_MAXNR 3
25 #define DRIVER_NAME "ioctltest"
26
27 static unsigned int test_ioctl_major = 0;
28 static unsigned int num_of_dev = 1;
29 static struct cdev test_ioctl_cdev;
30 static int ioctl_num = 0;
31
32 struct test_ioctl_data {
33 unsigned char val;
34 rwlock_t lock;
35 };
36
37 static long test_ioctl_ioctl(struct file *filp, unsigned int cmd,
38 unsigned long arg)
39 {
40 struct test_ioctl_data *ioctl_data = filp->private_data;
41 int retval = 0;
42 unsigned char val;
43 struct ioctl_arg data;
44 memset(&data, 0, sizeof(data));
45
46 switch (cmd) {
47 case IOCTL_VALSET:
48 if (copy_from_user(&data, (int __user *)arg, sizeof(data))) {
49 retval = -EFAULT;
50 goto done;
51 }
52
53 pr_alert("IOCTL set val:%x .\n", data.val);
54 write_lock(&ioctl_data->lock);
55 ioctl_data->val = data.val;
56 write_unlock(&ioctl_data->lock);
57 break;
58
59 case IOCTL_VALGET:
60 read_lock(&ioctl_data->lock);
61 val = ioctl_data->val;
62 read_unlock(&ioctl_data->lock);
63 data.val = val;
64
65 if (copy_to_user((int __user *)arg, &data, sizeof(data))) {
66 retval = -EFAULT;
67 goto done;
68 }
69
70 break;
71
72 case IOCTL_VALGET_NUM:
73 retval = __put_user(ioctl_num, (int __user *)arg);
74 break;
75
76 case IOCTL_VALSET_NUM:
77 ioctl_num = arg;
78 break;
79
80 default:
81 retval = -ENOTTY;
82 }
83
84 done:
85 return retval;
86 }
87
88 static ssize_t test_ioctl_read(struct file *filp, char __user *buf,
89 size_t count, loff_t *f_pos)
90 {
91 struct test_ioctl_data *ioctl_data = filp->private_data;
92 unsigned char val;
93 int retval;
94 int i = 0;
95
96 read_lock(&ioctl_data->lock);
97 val = ioctl_data->val;
98 read_unlock(&ioctl_data->lock);
99
100 for (; i < count; i++) {
101 if (copy_to_user(&buf[i], &val, 1)) {
102 retval = -EFAULT;
103 goto out;
104 }
105 }
106
107 retval = count;
108 out:
109 return retval;
110 }
111
112 static int test_ioctl_close(struct inode *inode, struct file *filp)
113 {
114 pr_alert("%s call.\n", __func__);
115
116 if (filp->private_data) {
117 kfree(filp->private_data);
118 filp->private_data = NULL;
119 }
120
121 return 0;
122 }
123
124 static int test_ioctl_open(struct inode *inode, struct file *filp)
125 {
126 struct test_ioctl_data *ioctl_data;
127
128 pr_alert("%s call.\n", __func__);
129 ioctl_data = kmalloc(sizeof(struct test_ioctl_data), GFP_KERNEL);
130
131 if (ioctl_data == NULL)
132 return -ENOMEM;
133
134 rwlock_init(&ioctl_data->lock);
135 ioctl_data->val = 0xFF;
136 filp->private_data = ioctl_data;
137
138 return 0;
139 }
140
141 static struct file_operations fops = {
142 .owner = THIS_MODULE,
143 .open = test_ioctl_open,
144 .release = test_ioctl_close,
145 .read = test_ioctl_read,
146 .unlocked_ioctl = test_ioctl_ioctl,
147 };
148
149 static int ioctl_init(void)
150 {
151 dev_t dev;
152 int alloc_ret = -1;
153 int cdev_ret = -1;
154 alloc_ret = alloc_chrdev_region(&dev, 0, num_of_dev, DRIVER_NAME);
155
156 if (alloc_ret)
157 goto error;
158
159 test_ioctl_major = MAJOR(dev);
160 cdev_init(&test_ioctl_cdev, &fops);
161 cdev_ret = cdev_add(&test_ioctl_cdev, dev, num_of_dev);
162
163 if (cdev_ret)
164 goto error;
165
166 pr_alert("%s driver(major: %d) installed.\n", DRIVER_NAME,
167 test_ioctl_major);
168 return 0;
169 error:
170 if (cdev_ret == 0)
171 cdev_del(&test_ioctl_cdev);
172 if (alloc_ret == 0)
173 unregister_chrdev_region(dev, num_of_dev);
174 return -1;
175 }
176
177 static void ioctl_exit(void)
178 {
179 dev_t dev = MKDEV(test_ioctl_major, 0);
180
181 cdev_del(&test_ioctl_cdev);
182 unregister_chrdev_region(dev, num_of_dev);
183 pr_alert("%s driver removed.\n", DRIVER_NAME);
184 }
185
186 module_init(ioctl_init);
187 module_exit(ioctl_exit);
188
189 MODULE_LICENSE("GPL");
190 MODULE_DESCRIPTION("This is test_ioctl module");
1 /*
2 * chardev.h - the header file with the ioctl definitions.
3 *
4 * The declarations here have to be in a header file, because they need
5 * to be known both to the kernel module (in chardev2.c) and the process
6 * calling ioctl() (in userspace_ioctl.c).
7 */
8
9 #ifndef CHARDEV_H
10 #define CHARDEV_H
11
12 #include <linux/ioctl.h>
13
14 /* The major device number. We can not rely on dynamic registration
15 * any more, because ioctls need to know it.
16 */
17 #define MAJOR_NUM 100
18
19 /* Set the message of the device driver */
20 #define IOCTL_SET_MSG _IOW(MAJOR_NUM, 0, char *)
21 /* _IOW means that we are creating an ioctl command number for passing
22 * information from a user process to the kernel module.
23 *
24 * The first arguments, MAJOR_NUM, is the major device number we are using.
25 *
26 * The second argument is the number of the command (there could be several
27 * with different meanings).
28 *
29 * The third argument is the type we want to get from the process to the
30 * kernel.
31 */
32
33 /* Get the message of the device driver */
34 #define IOCTL_GET_MSG _IOR(MAJOR_NUM, 1, char *)
35 /* This IOCTL is used for output, to get the message of the device driver.
36 * However, we still need the buffer to place the message in to be input,
37 * as it is allocated by the process.
38 */
39
40 /* Get the n'th byte of the message */
41 #define IOCTL_GET_NTH_BYTE _IOWR(MAJOR_NUM, 2, int)
42 /* The IOCTL is used for both input and output. It receives from the user
43 * a number, n, and returns message[n].
44 */
45
46 /* The name of the device file */
47 #define DEVICE_FILE_NAME "char_dev"
48 #define DEVICE_PATH "/dev/char_dev"
49
50 #endif
1 /* userspace_ioctl.c - the process to use ioctl's to control the kernel
,→ module
2 *
3 * Until now we could have used cat for input and output. But now
4 * we need to do ioctl's, which require writing our own process.
5 */
6
7 /* device specifics, such as ioctl numbers and the
8 * major device file. */
9 #include "../chardev.h"
10
11 #include <stdio.h> /* standard I/O */
12 #include <fcntl.h> /* open */
13 #include <unistd.h> /* close */
14 #include <stdlib.h> /* exit */
15 #include <sys/ioctl.h> /* ioctl */
16
17 /* Functions for the ioctl calls */
18
19 int ioctl_set_msg(int file_desc, char *message)
20 {
21 int ret_val;
22
23 ret_val = ioctl(file_desc, IOCTL_SET_MSG, message);
24
25 if (ret_val < 0) {
26 printf("ioctl_set_msg failed:%d\n", ret_val);
27 }
28
29 return ret_val;
30 }
31
32 int ioctl_get_msg(int file_desc)
33 {
34 int ret_val;
35 char message[100] = { 0 };
36
37 /* Warning - this is dangerous because we don't tell
38 * the kernel how far it's allowed to write, so it
39 * might overflow the buffer. In a real production
40 * program, we would have used two ioctls - one to tell
41 * the kernel the buffer length and another to give
42 * it the buffer to fill
43 */
44 ret_val = ioctl(file_desc, IOCTL_GET_MSG, message);
45
46 if (ret_val < 0) {
47 printf("ioctl_get_msg failed:%d\n", ret_val);
48 }
49 printf("get_msg message:%s", message);
50
51 return ret_val;
52 }
53
54 int ioctl_get_nth_byte(int file_desc)
55 {
56 int i, c;
57
58 printf("get_nth_byte message:");
59
60 i = 0;
61 do {
62 c = ioctl(file_desc, IOCTL_GET_NTH_BYTE, i++);
63
64 if (c < 0) {
65 printf("\nioctl_get_nth_byte failed at the %d'th byte:\n", i);
66 return c;
67 }
68
69 putchar(c);
70 } while (c != 0);
71
72 return 0;
73 }
74
75 /* Main - Call the ioctl functions */
76 int main(void)
77 {
78 int file_desc, ret_val;
79 char *msg = "Message passed by ioctl\n";
80
81 file_desc = open(DEVICE_PATH, O_RDWR);
82 if (file_desc < 0) {
83 printf("Can't open device file: %s, error:%d\n", DEVICE_PATH,
84 file_desc);
85 exit(EXIT_FAILURE);
86 }
87
88 ret_val = ioctl_set_msg(file_desc, msg);
89 if (ret_val)
90 goto error;
91 ret_val = ioctl_get_nth_byte(file_desc);
92 if (ret_val)
93 goto error;
94 ret_val = ioctl_get_msg(file_desc);
95 if (ret_val)
96 goto error;
97
98 close(file_desc);
99 return 0;
100 error:
101 close(file_desc);
102 exit(EXIT_FAILURE);
103 }
10 System Calls
So far, the only thing we’ve done was to use well defined kernel mechanisms to
register /proc files and device handlers. This is fine if you want to do something
the kernel programmers thought you’d want, such as write a device driver. But
what if you want to do something unusual, to change the behavior of the system
in some way? Then, you are mostly on your own.
If you are not being sensible and using a virtual machine then this is where
kernel programming can become hazardous. While writing the example below, I
killed the open() system call. This meant I could not open any files, I could not
run any programs, and I could not shutdown the system. I had to restart the
virtual machine. No important files got annihilated, but if I was doing this on
some live mission critical system then that could have been a possible outcome.
To ensure you do not lose any files, even within a test environment, please run
sync right before you do the insmod and the rmmod.
Forget about /proc files, forget about device files. They are just minor
details. Minutiae in the vast expanse of the universe. The real process to kernel
communication mechanism, the one used by all processes, is system calls. When
a process requests a service from the kernel (such as opening a file, forking to a
new process, or requesting more memory), this is the mechanism used. If you
want to change the behaviour of the kernel in interesting ways, this is the place
to do it. By the way, if you want to see which system calls a program uses, run
strace <arguments>.
In general, a process is not supposed to be able to access the kernel. It can
not access kernel memory and it can’t call kernel functions. The hardware of
the CPU enforces this (that is the reason why it is called “protected mode” or
“page protection”).
System calls are an exception to this general rule. What happens is that the
process fills the registers with the appropriate values and then calls a special
instruction which jumps to a previously defined location in the kernel (of course,
that location is readable by user processes, it is not writable by them). Under
Intel CPUs, this is done by means of interrupt 0x80. The hardware knows that
once you jump to this location, you are no longer running in restricted user
mode, but as the operating system kernel — and therefore you’re allowed to do
whatever you want.
The location in the kernel a process can jump to is called system_call.
The procedure at that location checks the system call number, which tells
the kernel what service the process requested. Then, it looks at the table
of system calls (sys_call_table) to see the address of the kernel function
to call. Then it calls the function, and after it returns, does a few system
checks and then return back to the process (or to a different process, if the
process time ran out). If you want to read this code, it is at the source file
arch/$(architecture)/kernel/entry.S, after the line ENTRY(system_call).
So, if we want to change the way a certain system call works, what we need
to do is to write our own function to implement it (usually by adding a bit of our
own code, and then calling the original function) and then change the pointer at
sys_call_table to point to our function. Because we might be removed later
and we don’t want to leave the system in an unstable state, it’s important for
cleanup_module to restore the table to its original state.
To modify the content of sys_call_table, we need to consider the control
register. A control register is a processor register that changes or controls the
general behavior of the CPU. For x86 architecture, the cr0 register has various
control flags that modify the basic operation of the processor. The WP flag in
cr0 stands for write protection. Once the WP flag is set, the processor disallows
further write attempts to the read-only sections Therefore, we must disable the
WP flag before modifying sys_call_table. Since Linux v5.3, the write_cr0
function cannot be used because of the sensitive cr0 bits pinned by the security
issue, the attacker may write into CPU control registers to disable CPU protec-
tions like write protection. As a result, we have to provide the custom assembly
routine to bypass it.
However, sys_call_table symbol is unexported to prevent misuse. But
there have few ways to get the symbol, manual symbol lookup and kallsyms_lookup_name.
Here we use both depend on the kernel version.
Because of the control-flow integrity, which is a technique to prevent the
redirect execution code from the attacker, for making sure that the indirect calls
go to the expected addresses and the return addresses are not changed. Since
Linux v5.7, the kernel patched the series of control-flow enforcement (CET) for
x86, and some configurations of GCC, like GCC versions 9 and 10 in Ubuntu,
will add with CET (the -fcf-protection option) in the kernel by default.
Using that GCC to compile the kernel with retpoline off may result in CET
being enabled in the kernel. You can use the following command to check out
the -fcf-protection option is enabled or not:
$ gcc -v -Q -O2 --help=target | grep protection
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
...
gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)
COLLECT_GCC_OPTIONS='-v' '-Q' '-O2' '--help=target' '-mtune=generic' '-march=x86-64'
/usr/lib/gcc/x86_64-linux-gnu/9/cc1 -v ... -fcf-protection ...
GNU C17 (Ubuntu 9.3.0-17ubuntu1~20.04) version 9.3.0 (x86_64-linux-gnu)
...
But CET should not be enabled in the kernel, it may break the Kprobes and bpf.
Consequently, CET is disabled since v5.11. To guarantee the manual symbol
lookup worked, we only use up to v5.4.
Unfortunately, since Linux v5.7 kallsyms_lookup_name is also unexported,
it needs certain trick to get the address of kallsyms_lookup_name. If CONFIG_KPROBES
is enabled, we can facilitate the retrieval of function addresses by means of
Kprobes to dynamically break into the specific kernel routine. Kprobes inserts
a breakpoint at the entry of function by replacing the first bytes of the probed
instruction. When a CPU hits the breakpoint, registers are stored, and the
control will pass to Kprobes. It passes the addresses of the saved registers and
the Kprobe struct to the handler you defined, then executes it. Kprobes can be
registered by symbol name or address. Within the symbol name, the address
will be handled by the kernel.
Otherwise, specify the address of sys_call_table from /proc/kallsyms
and /boot/System.map into sym parameter. Following is the sample usage for
/proc/kallsyms:
$ sudo grep sys_call_table /proc/kallsyms
ffffffff82000280 R x32_sys_call_table
ffffffff820013a0 R sys_call_table
ffffffff820023e0 R ia32_sys_call_table
$ sudo insmod syscall.ko sym=0xffffffff820013a0
Using the address from /boot/System.map, be careful about KASLR (Ker-
nel Address Space Layout Randomization). KASLR may randomize the address
of kernel code and data at every boot time, such as the static address listed
in /boot/System.map will offset by some entropy. The purpose of KASLR is
to protect the kernel space from the attacker. Without KASLR, the attacker
may find the target address in the fixed address easily. Then the attacker can
use return-oriented programming to insert some malicious codes to execute or
receive the target data by a tampered pointer. KASLR mitigates these kinds of
attacks because the attacker cannot immediately know the target address, but a
brute-force attack can still work. If the address of a symbol in /proc/kallsyms
is different from the address in /boot/System.map, KASLR is enabled with the
kernel, which your system running on.
$ grep GRUB_CMDLINE_LINUX_DEFAULT /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
$ sudo grep sys_call_table /boot/System.map-$(uname -r)
ffffffff82000300 R sys_call_table
$ sudo grep sys_call_table /proc/kallsyms
ffffffff820013a0 R sys_call_table
# Reboot
$ sudo grep sys_call_table /boot/System.map-$(uname -r)
ffffffff82000300 R sys_call_table
$ sudo grep sys_call_table /proc/kallsyms
ffffffff86400300 R sys_call_table
If KASLR is enabled, we have to take care of the address from /proc/kallsyms
each time we reboot the machine. In order to use the address from /boot/System.map,
make sure that KASLR is disabled. You can add the nokaslr for disabling KASLR
in next booting time:
$ grep GRUB_CMDLINE_LINUX_DEFAULT /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
$ sudo perl -i -pe 'm/quiet/ and s//quiet nokaslr/' /etc/default/grub
$ grep quiet /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet nokaslr splash"
$ sudo update-grub
For more information, check out the following:
• Cook: Security things in Linux v5.3
• Unexporting the system call table
• Control-flow integrity for the kernel
• Unexporting kallsyms_lookup_name()
• Kernel Probes (Kprobes)
• Kernel address space layout randomization
1 tail -f
This function changes the status of the task (a task is the kernel data struc-
ture which holds information about a process and the system call it is in, if
any) to TASK_INTERRUPTIBLE, which means that the task will not run until it is
woken up somehow, and adds it to WaitQ, the queue of tasks waiting to access
the file. Then, the function calls the scheduler to context switch to a different
process, one which has some use for the CPU.
When a process is done with the file, it closes it, and module_close is called.
That function wakes up all the processes in the queue (there’s no mechanism to
only wake up one of them). It then returns and the process which just closed the
file can continue to run. In time, the scheduler decides that that process has had
enough and gives control of the CPU to another process. Eventually, one of the
processes which was in the queue will be given control of the CPU by the sched-
uler. It starts at the point right after the call to wait_event_interruptible.
This means that the process is still in kernel mode - as far as the process is
concerned, it issued the open system call and the system call has not returned
yet. The process does not know somebody else used the CPU for most of the
time between the moment it issued the call and the moment it returned.
It can then proceed to set a global variable to tell all the other processes
that the file is still open and go on with its life. When the other processes get
a piece of the CPU, they’ll see that global variable and go back to sleep.
So we will use tail -f to keep the file open in the background, while trying
to access it with another process (again in the background, so that we need not
switch to a different vt). As soon as the first background process is killed with
kill %1 , the second is woken up, is able to access the file and finally terminates.
To make our life more interesting, module_close does not have a monopoly
on waking up the processes which wait to access the file. A signal, such as
Ctrl +c (SIGINT) can also wake up a process. This is because we used
wait_event_interruptible. We could have used wait_event instead, but
that would have resulted in extremely angry users whose Ctrl+c’s are ignored.
In that case, we want to return with -EINTR immediately. This is important
so users can, for example, kill the process before it receives the file.
There is one more point to remember. Some times processes don’t want to
sleep, they want either to get what they want immediately, or to be told it cannot
be done. Such processes use the O_NONBLOCK flag when opening the file. The
kernel is supposed to respond by returning with the error code -EAGAIN from
operations which would otherwise block, such as opening the file in this example.
The program cat_nonblock, available in the examples/other directory, can be
used to open a file with O_NONBLOCK.
1 /*
2 * cat_nonblock.c - open a file and display its contents, but exit rather
,→ than
3 * wait for input.
4 */
5 #include <errno.h> /* for errno */
6 #include <fcntl.h> /* for open */
7 #include <stdio.h> /* standard I/O */
8 #include <stdlib.h> /* for exit */
9 #include <unistd.h> /* for read */
10
11 #define MAX_BYTES 1024 * 4
12
13 int main(int argc, char *argv[])
14 {
15 int fd; /* The file descriptor for the file to read */
16 size_t bytes; /* The number of bytes read */
17 char buffer[MAX_BYTES]; /* The buffer for the bytes */
18
19 /* Usage */
20 if (argc != 2) {
21 printf("Usage: %s <filename>\n", argv[0]);
22 puts("Reads the content of a file, but doesn't wait for input");
23 exit(-1);
24 }
25
26 /* Open the file for reading in non blocking mode */
27 fd = open(argv[1], O_RDONLY | O_NONBLOCK);
28
29 /* If open failed */
30 if (fd == -1) {
31 puts(errno == EAGAIN ? "Open would block" : "Open failed");
32 exit(-1);
33 }
34
35 /* Read the file and output its contents */
36 do {
37 /* Read characters from the file */
38 bytes = read(fd, buffer, MAX_BYTES);
39
40 /* If there's an error, report it and die */
41 if (bytes == -1) {
42 if (errno == EAGAIN)
43 puts("Normally I'd block, but you told me not to");
44 else
45 puts("Another read error");
46 exit(-1);
47 }
48
49 /* Print the characters */
50 if (bytes > 0) {
51 for (int i = 0; i < bytes; i++)
52 putchar(buffer[i]);
53 }
54
55 /* While there are no errors and the file isn't over */
56 } while (bytes > 0);
57
58 return 0;
59 }
11.2 Completions
Sometimes one thing should happen before another within a module having
multiple threads. Rather than using /bin/sleep commands, the kernel has
another way to do this which allows timeouts or interrupts to also happen.
In the following example two threads are started, but one needs to start
before another.
1 /*
2 * completions.c
3 */
4 #include <linux/completion.h>
5 #include <linux/err.h> /* for IS_ERR() */
6 #include <linux/init.h>
7 #include <linux/kthread.h>
8 #include <linux/module.h>
9 #include <linux/printk.h>
10 #include <linux/version.h>
11
12 static struct {
13 struct completion crank_comp;
14 struct completion flywheel_comp;
15 } machine;
16
17 static int machine_crank_thread(void *arg)
18 {
19 pr_info("Turn the crank\n");
20
21 complete_all(&machine.crank_comp);
22 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
23 kthread_complete_and_exit(&machine.crank_comp, 0);
24 #else
25 complete_and_exit(&machine.crank_comp, 0);
26 #endif
27 }
28
29 static int machine_flywheel_spinup_thread(void *arg)
30 {
31 wait_for_completion(&machine.crank_comp);
32
33 pr_info("Flywheel spins up\n");
34
35 complete_all(&machine.flywheel_comp);
36 #if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 17, 0)
37 kthread_complete_and_exit(&machine.flywheel_comp, 0);
38 #else
39 complete_and_exit(&machine.flywheel_comp, 0);
40 #endif
41 }
42
43 static int completions_init(void)
44 {
45 struct task_struct *crank_thread;
46 struct task_struct *flywheel_thread;
47
48 pr_info("completions example\n");
49
50 init_completion(&machine.crank_comp);
51 init_completion(&machine.flywheel_comp);
52
53 crank_thread = kthread_create(machine_crank_thread, NULL, "KThread
,→ Crank");
54 if (IS_ERR(crank_thread))
55 goto ERROR_THREAD_1;
56
57 flywheel_thread = kthread_create(machine_flywheel_spinup_thread, NULL,
58 "KThread Flywheel");
59 if (IS_ERR(flywheel_thread))
60 goto ERROR_THREAD_2;
61
62 wake_up_process(flywheel_thread);
63 wake_up_process(crank_thread);
64
65 return 0;
66
67 ERROR_THREAD_2:
68 kthread_stop(crank_thread);
69 ERROR_THREAD_1:
70
71 return -1;
72 }
73
74 static void completions_exit(void)
75 {
76 wait_for_completion(&machine.crank_comp);
77 wait_for_completion(&machine.flywheel_comp);
78
79 pr_info("completions exit\n");
80 }
81
82 module_init(completions_init);
83 module_exit(completions_exit);
84
85 MODULE_DESCRIPTION("Completions example");
86 MODULE_LICENSE("GPL");
The machine structure stores the completion states for the two threads. At
the exit point of each thread the respective completion state is updated, and
wait_for_completion is used by the flywheel thread to ensure that it does not
begin prematurely.
So even though flywheel_thread is started first you should notice if you
load this module and run dmesg that turning the crank always happens first
because the flywheel thread waits for it to complete.
There are other variations upon the wait_for_completion function, which
include timeouts or being interrupted, but this basic mechanism is enough for
many common situations without adding a lot of complexity.
12.1 Mutex
You can use kernel mutexes (mutual exclusions) in much the same manner that
you might deploy them in userland. This may be all that is needed to avoid
collisions in most cases.
1 /*
2 * example_mutex.c
3 */
4 #include <linux/module.h>
5 #include <linux/mutex.h>
6 #include <linux/printk.h>
7
8 static DEFINE_MUTEX(mymutex);
9
10 static int example_mutex_init(void)
11 {
12 int ret;
13
14 pr_info("example_mutex init\n");
15
16 ret = mutex_trylock(&mymutex);
17 if (ret != 0) {
18 pr_info("mutex is locked\n");
19
20 if (mutex_is_locked(&mymutex) == 0)
21 pr_info("The mutex failed to lock!\n");
22
23 mutex_unlock(&mymutex);
24 pr_info("mutex is unlocked\n");
25 } else
26 pr_info("Failed to lock\n");
27
28 return 0;
29 }
30
31 static void example_mutex_exit(void)
32 {
33 pr_info("example_mutex exit\n");
34 }
35
36 module_init(example_mutex_init);
37 module_exit(example_mutex_exit);
38
39 MODULE_DESCRIPTION("Mutex example");
40 MODULE_LICENSE("GPL");
12.2 Spinlocks
As the name suggests, spinlocks lock up the CPU that the code is running on,
taking 100% of its resources. Because of this you should only use the spinlock
mechanism around code which is likely to take no more than a few milliseconds
to run and so will not noticeably slow anything down from the user’s point of
view.
The example here is "irq safe" in that if interrupts happen during the
lock then they will not be forgotten and will activate when the unlock happens,
using the flags variable to retain their state.
1 /*
2 * example_spinlock.c
3 */
4 #include <linux/init.h>
5 #include <linux/module.h>
6 #include <linux/printk.h>
7 #include <linux/spinlock.h>
8
9 static DEFINE_SPINLOCK(sl_static);
10 static spinlock_t sl_dynamic;
11
12 static void example_spinlock_static(void)
13 {
14 unsigned long flags;
15
16 spin_lock_irqsave(&sl_static, flags);
17 pr_info("Locked static spinlock\n");
18
19 /* Do something or other safely. Because this uses 100% CPU time, this
20 * code should take no more than a few milliseconds to run.
21 */
22
23 spin_unlock_irqrestore(&sl_static, flags);
24 pr_info("Unlocked static spinlock\n");
25 }
26
27 static void example_spinlock_dynamic(void)
28 {
29 unsigned long flags;
30
31 spin_lock_init(&sl_dynamic);
32 spin_lock_irqsave(&sl_dynamic, flags);
33 pr_info("Locked dynamic spinlock\n");
34
35 /* Do something or other safely. Because this uses 100% CPU time, this
36 * code should take no more than a few milliseconds to run.
37 */
38
39 spin_unlock_irqrestore(&sl_dynamic, flags);
40 pr_info("Unlocked dynamic spinlock\n");
41 }
42
43 static int example_spinlock_init(void)
44 {
45 pr_info("example spinlock started\n");
46
47 example_spinlock_static();
48 example_spinlock_dynamic();
49
50 return 0;
51 }
52
53 static void example_spinlock_exit(void)
54 {
55 pr_info("example spinlock exit\n");
56 }
57
58 module_init(example_spinlock_init);
59 module_exit(example_spinlock_exit);
60
61 MODULE_DESCRIPTION("Spinlock example");
62 MODULE_LICENSE("GPL");
1 /*
2 * example_rwlock.c
3 */
4 #include <linux/module.h>
5 #include <linux/printk.h>
6 #include <linux/rwlock.h>
7
8 static DEFINE_RWLOCK(myrwlock);
9
10 static void example_read_lock(void)
11 {
12 unsigned long flags;
13
14 read_lock_irqsave(&myrwlock, flags);
15 pr_info("Read Locked\n");
16
17 /* Read from something */
18
19 read_unlock_irqrestore(&myrwlock, flags);
20 pr_info("Read Unlocked\n");
21 }
22
23 static void example_write_lock(void)
24 {
25 unsigned long flags;
26
27 write_lock_irqsave(&myrwlock, flags);
28 pr_info("Write Locked\n");
29
30 /* Write to something */
31
32 write_unlock_irqrestore(&myrwlock, flags);
33 pr_info("Write Unlocked\n");
34 }
35
36 static int example_rwlock_init(void)
37 {
38 pr_info("example_rwlock started\n");
39
40 example_read_lock();
41 example_write_lock();
42
43 return 0;
44 }
45
46 static void example_rwlock_exit(void)
47 {
48 pr_info("example_rwlock exit\n");
49 }
50
51 module_init(example_rwlock_init);
52 module_exit(example_rwlock_exit);
53
54 MODULE_DESCRIPTION("Read/Write locks example");
55 MODULE_LICENSE("GPL");
Of course, if you know for sure that there are no functions triggered by
irqs which could possibly interfere with your logic then you can use the simpler
read_lock(&myrwlock) and read_unlock(&myrwlock) or the corresponding
write functions.
1 /*
2 * example_atomic.c
3 */
4 #include <linux/atomic.h>
5 #include <linux/bitops.h>
6 #include <linux/module.h>
7 #include <linux/printk.h>
8
9 #define BYTE_TO_BINARY_PATTERN "%c%c%c%c%c%c%c%c"
10 #define BYTE_TO_BINARY(byte)
,→ \
11 ((byte & 0x80) ? '1' : '0'), ((byte & 0x40) ? '1' : '0'),
,→ \
12 ((byte & 0x20) ? '1' : '0'), ((byte & 0x10) ? '1' : '0'),
,→ \
13 ((byte & 0x08) ? '1' : '0'), ((byte & 0x04) ? '1' : '0'),
,→ \
14 ((byte & 0x02) ? '1' : '0'), ((byte & 0x01) ? '1' : '0')
15
16 static void atomic_add_subtract(void)
17 {
18 atomic_t debbie;
19 atomic_t chris = ATOMIC_INIT(50);
20
21 atomic_set(&debbie, 45);
22
23 /* subtract one */
24 atomic_dec(&debbie);
25
26 atomic_add(7, &debbie);
27
28 /* add one */
29 atomic_inc(&debbie);
30
31 pr_info("chris: %d, debbie: %d\n", atomic_read(&chris),
32 atomic_read(&debbie));
33 }
34
35 static void atomic_bitwise(void)
36 {
37 unsigned long word = 0;
38
39 pr_info("Bits 0: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
40 set_bit(3, &word);
41 set_bit(5, &word);
42 pr_info("Bits 1: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
43 clear_bit(5, &word);
44 pr_info("Bits 2: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
45 change_bit(3, &word);
46
47 pr_info("Bits 3: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
48 if (test_and_set_bit(3, &word))
49 pr_info("wrong\n");
50 pr_info("Bits 4: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
51
52 word = 255;
53 pr_info("Bits 5: " BYTE_TO_BINARY_PATTERN, BYTE_TO_BINARY(word));
54 }
55
56 static int example_atomic_init(void)
57 {
58 pr_info("example_atomic started\n");
59
60 atomic_add_subtract();
61 atomic_bitwise();
62
63 return 0;
64 }
65
66 static void example_atomic_exit(void)
67 {
68 pr_info("example_atomic exit\n");
69 }
70
71 module_init(example_atomic_init);
72 module_exit(example_atomic_exit);
73
74 MODULE_DESCRIPTION("Atomic operations example");
75 MODULE_LICENSE("GPL");
Before the C11 standard adopts the built-in atomic types, the kernel already
provided a small set of atomic types by using a bunch of tricky architecture-
specific codes. Implementing the atomic types by C11 atomics may allow the
kernel to throw away the architecture-specific codes and letting the kernel code
be more friendly to the people who understand the standard. But there are
some problems, such as the memory model of the kernel doesn’t match the
model formed by the C11 atomics. For further details, see:
• kernel documentation of atomic types
• Time to move to C11 atomics?
1 /*
2 * print_string.c - Send output to the tty we're running on, regardless if
3 * it is through X11, telnet, etc. We do this by printing the string to the
4 * tty associated with the current task.
5 */
6 #include <linux/init.h>
7 #include <linux/kernel.h>
8 #include <linux/module.h>
9 #include <linux/sched.h> /* For current */
10 #include <linux/tty.h> /* For the tty declarations */
11
12 static void print_string(char *str)
13 {
14 /* The tty for the current task */
15 struct tty_struct *my_tty = get_current_tty();
16
17 /* If my_tty is NULL, the current task has no tty you can print to (i.e.,
18 * if it is a daemon). If so, there is nothing we can do.
19 */
20 if (my_tty) {
21 const struct tty_operations *ttyops = my_tty->driver->ops;
22 /* my_tty->driver is a struct which holds the tty's functions,
23 * one of which (write) is used to write strings to the tty.
24 * It can be used to take a string either from the user's or
25 * kernel's memory segment.
26 *
27 * The function's 1st parameter is the tty to write to, because the
28 * same function would normally be used for all tty's of a certain
29 * type.
30 * The 2nd parameter is a pointer to a string.
31 * The 3rd parameter is the length of the string.
32 *
33 * As you will see below, sometimes it's necessary to use
34 * preprocessor stuff to create code that works for different
35 * kernel versions. The (naive) approach we've taken here does not
36 * scale well. The right way to deal with this is described in
37 * section 2 of
38 * linux/Documentation/SubmittingPatches
39 */
40 (ttyops->write)(my_tty, /* The tty itself */
41 str, /* String */
42 strlen(str)); /* Length */
43
44 /* ttys were originally hardware devices, which (usually) strictly
45 * followed the ASCII standard. In ASCII, to move to a new line you
46 * need two characters, a carriage return and a line feed. On Unix,
47 * the ASCII line feed is used for both purposes - so we can not
48 * just use \n, because it would not have a carriage return and the
49 * next line will start at the column right after the line feed.
50 *
51 * This is why text files are different between Unix and MS Windows.
52 * In CP/M and derivatives, like MS-DOS and MS Windows, the ASCII
53 * standard was strictly adhered to, and therefore a newline requires
54 * both a LF and a CR.
55 */
56 (ttyops->write)(my_tty, "\015\012", 2);
57 }
58 }
59
60 static int __init print_string_init(void)
61 {
62 print_string("The module has been inserted. Hello world!");
63 return 0;
64 }
65
66 static void __exit print_string_exit(void)
67 {
68 print_string("The module has been removed. Farewell world!");
69 }
70
71 module_init(print_string_init);
72 module_exit(print_string_exit);
73
74 MODULE_LICENSE("GPL");
1 struct timer_list {
2 unsigned long expires;
3 void (*function)(unsigned long);
4 unsigned long data;
5 u32 flags;
6 /* ... */
7 };
8
9 void setup_timer(struct timer_list *timer, void (*callback)(unsigned long),
10 unsigned long data);
Since Linux v4.14, timer_setup is adopted and the kernel step by step
converting to timer_setup from setup_timer. One of the reasons why API
was changed is it need to coexist with the old version interface. Moreover, the
timer_setup was implemented by setup_timer at first.
The setup_timer was then removed since v4.15. As a result, the timer_list
structure had changed to the following.
1 struct timer_list {
2 unsigned long expires;
3 void (*function)(struct timer_list *);
4 u32 flags;
5 /* ... */
6 };
The following source code illustrates a minimal kernel module which, when
loaded, starts blinking the keyboard LEDs until it is unloaded.
1 /*
2 * kbleds.c - Blink keyboard leds until the module is unloaded.
3 */
4
5 #include <linux/init.h>
6 #include <linux/kd.h> /* For KDSETLED */
7 #include <linux/module.h>
8 #include <linux/tty.h> /* For tty_struct */
9 #include <linux/vt.h> /* For MAX_NR_CONSOLES */
10 #include <linux/vt_kern.h> /* for fg_console */
11 #include <linux/console_struct.h> /* For vc_cons */
12
13 MODULE_DESCRIPTION("Example module illustrating the use of Keyboard LEDs.");
14
15 static struct timer_list my_timer;
16 static struct tty_driver *my_driver;
17 static unsigned long kbledstatus = 0;
18
19 #define BLINK_DELAY HZ / 5
20 #define ALL_LEDS_ON 0x07
21 #define RESTORE_LEDS 0xFF
22
23 /* Function my_timer_func blinks the keyboard LEDs periodically by invoking
24 * command KDSETLED of ioctl() on the keyboard driver. To learn more on
,→ virtual
25 * terminal ioctl operations, please see file:
26 * drivers/tty/vt/vt_ioctl.c, function vt_ioctl().
27 *
28 * The argument to KDSETLED is alternatively set to 7 (thus causing the led
29 * mode to be set to LED_SHOW_IOCTL, and all the leds are lit) and to 0xFF
30 * (any value above 7 switches back the led mode to LED_SHOW_FLAGS, thus
31 * the LEDs reflect the actual keyboard status). To learn more on this,
32 * please see file: drivers/tty/vt/keyboard.c, function setledstate().
33 */
34 static void my_timer_func(struct timer_list *unused)
35 {
36 struct tty_struct *t = vc_cons[fg_console].d->port.tty;
37
38 if (kbledstatus == ALL_LEDS_ON)
39 kbledstatus = RESTORE_LEDS;
40 else
41 kbledstatus = ALL_LEDS_ON;
42
43 (my_driver->ops->ioctl)(t, KDSETLED, kbledstatus);
44
45 my_timer.expires = jiffies + BLINK_DELAY;
46 add_timer(&my_timer);
47 }
48
49 static int __init kbleds_init(void)
50 {
51 int i;
52
53 pr_info("kbleds: loading\n");
54 pr_info("kbleds: fgconsole is %x\n", fg_console);
55 for (i = 0; i < MAX_NR_CONSOLES; i++) {
56 if (!vc_cons[i].d)
57 break;
58 pr_info("poet_atkm: console[%i/%i] #%i, tty %p\n", i, MAX_NR_CONSOLES,
59 vc_cons[i].d->vc_num, (void *)vc_cons[i].d->port.tty);
60 }
61 pr_info("kbleds: finished scanning consoles\n");
62
63 my_driver = vc_cons[fg_console].d->port.tty->driver;
64 pr_info("kbleds: tty driver magic %x\n", my_driver->magic);
65
66 /* Set up the LED blink timer the first time. */
67 timer_setup(&my_timer, my_timer_func, 0);
68 my_timer.expires = jiffies + BLINK_DELAY;
69 add_timer(&my_timer);
70
71 return 0;
72 }
73
74 static void __exit kbleds_cleanup(void)
75 {
76 pr_info("kbleds: unloading...\n");
77 del_timer(&my_timer);
78 (my_driver->ops->ioctl)(vc_cons[fg_console].d->port.tty, KDSETLED,
79 RESTORE_LEDS);
80 }
81
82 module_init(kbleds_init);
83 module_exit(kbleds_cleanup);
84
85 MODULE_LICENSE("GPL");
If none of the examples in this chapter fit your debugging needs, there might
yet be some other tricks to try. Ever wondered what CONFIG_LL_DEBUG in
make menuconfig is good for? If you activate that you get low level access to
the serial port. While this might not sound very powerful by itself, you can
patch kernel/printk.c or any other essential syscall to print ASCII characters,
thus making it possible to trace virtually everything what your code does over
a serial line. If you find yourself porting the kernel to some new and former
unsupported architecture, this is usually amongst the first things that should
be implemented. Logging over a netconsole might also be worth a try.
While you have seen lots of stuff that can be used to aid debugging here,
there are some things to be aware of. Debugging is almost always intrusive.
Adding debug code can change the situation enough to make the bug seem to
disappear. Thus, you should keep debug code to a minimum and make sure it
does not show up in production code.
14 Scheduling Tasks
There are two main ways of running tasks: tasklets and work queues. Tasklets
are a quick and easy way of scheduling a single function to be run. For example,
when triggered from an interrupt, whereas work queues are more complicated
but also better suited to running multiple things in a sequence.
14.1 Tasklets
Here is an example tasklet module. The tasklet_fn function runs for a few sec-
onds. In the meantime, execution of the example_tasklet_init function may
continue to the exit point, depending on whether it is interrupted by softirq.
1 /*
2 * example_tasklet.c
3 */
4 #include <linux/delay.h>
5 #include <linux/interrupt.h>
6 #include <linux/module.h>
7 #include <linux/printk.h>
8
9 /* Macro DECLARE_TASKLET_OLD exists for compatibility.
10 * See https://lwn.net/Articles/830964/
11 */
12 #ifndef DECLARE_TASKLET_OLD
13 #define DECLARE_TASKLET_OLD(arg1, arg2) DECLARE_TASKLET(arg1, arg2, 0L)
14 #endif
15
16 static void tasklet_fn(unsigned long data)
17 {
18 pr_info("Example tasklet starts\n");
19 mdelay(5000);
20 pr_info("Example tasklet ends\n");
21 }
22
23 static DECLARE_TASKLET_OLD(mytask, tasklet_fn);
24
25 static int example_tasklet_init(void)
26 {
27 pr_info("tasklet example init\n");
28 tasklet_schedule(&mytask);
29 mdelay(200);
30 pr_info("Example tasklet init continues...\n");
31 return 0;
32 }
33
34 static void example_tasklet_exit(void)
35 {
36 pr_info("tasklet example exit\n");
37 tasklet_kill(&mytask);
38 }
39
40 module_init(example_tasklet_init);
41 module_exit(example_tasklet_exit);
42
43 MODULE_DESCRIPTION("Tasklet example");
44 MODULE_LICENSE("GPL");
1 /*
2 * sched.c
3 */
4 #include <linux/init.h>
5 #include <linux/module.h>
6 #include <linux/workqueue.h>
7
8 static struct workqueue_struct *queue = NULL;
9 static struct work_struct work;
10
11 static void work_handler(struct work_struct *data)
12 {
13 pr_info("work handler function.\n");
14 }
15
16 static int __init sched_init(void)
17 {
18 queue = alloc_workqueue("HELLOWORLD", WQ_UNBOUND, 1);
19 INIT_WORK(&work, work_handler);
20 schedule_work(&work);
21 return 0;
22 }
23
24 static void __exit sched_exit(void)
25 {
26 destroy_workqueue(queue);
27 }
28
29 module_init(sched_init);
30 module_exit(sched_exit);
31
1 The goal of threaded interrupts is to push more of the work to separate threads, so that
the minimum needed for acknowledging an interrupt is reduced, and therefore the time spent
handling the interrupt (where it can’t handle any other interrupts at the same time) is reduced.
See https://lwn.net/Articles/302043/.
32 MODULE_LICENSE("GPL");
33 MODULE_DESCRIPTION("Workqueue example");
15 Interrupt Handlers
15.1 Interrupt Handlers
Except for the last chapter, everything we did in the kernel so far we have
done as a response to a process asking for it, either by dealing with a special
file, sending an ioctl(), or issuing a system call. But the job of the kernel
is not just to respond to process requests. Another job, which is every bit as
important, is to speak to the hardware connected to the machine.
There are two types of interaction between the CPU and the rest of the com-
puter’s hardware. The first type is when the CPU gives orders to the hardware,
the other is when the hardware needs to tell the CPU something. The second,
called interrupts, is much harder to implement because it has to be dealt with
when convenient for the hardware, not the CPU. Hardware devices typically
have a very small amount of RAM, and if you do not read their information
when available, it is lost.
Under Linux, hardware interrupts are called IRQ’s (Interrupt ReQuests).
There are two types of IRQ’s, short and long. A short IRQ is one which is
expected to take a very short period of time, during which the rest of the
machine will be blocked and no other interrupts will be handled. A long IRQ is
one which can take longer, and during which other interrupts may occur (but
not interrupts from the same device). If at all possible, it is better to declare
an interrupt handler to be long.
When the CPU receives an interrupt, it stops whatever it is doing (unless
it is processing a more important interrupt, in which case it will deal with
this one only when the more important one is done), saves certain parameters
on the stack and calls the interrupt handler. This means that certain things
are not allowed in the interrupt handler itself, because the system is in an
unknown state. Linux kernel solves the problem by splitting interrupt handling
into two parts. The first part executes right away and masks the interrupt
line. Hardware interrupts must be handled quickly, and that is why we need
the second part to handle the heavy work deferred from an interrupt handler.
Historically, BH (Linux naming for Bottom Halves) statistically book-keeps the
deferred functions. Softirq and its higher level abstraction, Tasklet, replace
BH since Linux 2.3.
The way to implement this is to call request_irq() to get your interrupt
handler called when the relevant IRQ is received.
In practice IRQ handling can be a bit more complex. Hardware is often
designed in a way that chains two interrupt controllers, so that all the IRQs from
interrupt controller B are cascaded to a certain IRQ from interrupt controller
A. Of course, that requires that the kernel finds out which IRQ it really was
afterwards and that adds overhead. Other architectures offer some special,
very low overhead, so called "fast IRQ" or FIQs. To take advantage of them
requires handlers to be written in assembly language, so they do not really fit
into the kernel. They can be made to work similar to the others, but after that
procedure, they are no longer any faster than "common" IRQs. SMP enabled
kernels running on systems with more than one processor need to solve another
truckload of problems. It is not enough to know if a certain IRQs has happened,
it’s also important to know what CPU(s) it was for. People still interested in
more details, might want to refer to "APIC" now.
This function receives the IRQ number, the name of the function, flags, a
name for /proc/interrupts and a parameter to be passed to the interrupt
handler. Usually there is a certain number of IRQs available. How many IRQs
there are is hardware-dependent. The flags can include SA_SHIRQ to indicate
you are willing to share the IRQ with other interrupt handlers (usually because a
number of hardware devices sit on the same IRQ) and SA_INTERRUPT to indicate
this is a fast interrupt. This function will only succeed if there is not already a
handler on this IRQ, or if you are both willing to share.
1 /*
2 * intrpt.c - Handling GPIO with interrupts
3 *
4 * Based upon the RPi example by Stefan Wendler (devnull@kaltpost.de)
5 * from:
6 * https://github.com/wendlers/rpi-kmod-samples
7 *
8 * Press one button to turn on a LED and another to turn it off.
9 */
10
11 #include <linux/gpio.h>
12 #include <linux/interrupt.h>
13 #include <linux/kernel.h> /* for ARRAY_SIZE() */
14 #include <linux/module.h>
15 #include <linux/printk.h>
16
17 static int button_irqs[] = { -1, -1 };
18
19 /* Define GPIOs for LEDs.
20 * TODO: Change the numbers for the GPIO on your board.
21 */
22 static struct gpio leds[] = { { 4, GPIOF_OUT_INIT_LOW, "LED 1" } };
23
24 /* Define GPIOs for BUTTONS
25 * TODO: Change the numbers for the GPIO on your board.
26 */
27 static struct gpio buttons[] = { { 17, GPIOF_IN, "LED 1 ON BUTTON" },
28 { 18, GPIOF_IN, "LED 1 OFF BUTTON" } };
29
30 /* interrupt function triggered when a button is pressed. */
31 static irqreturn_t button_isr(int irq, void *data)
32 {
33 /* first button */
34 if (irq == button_irqs[0] && !gpio_get_value(leds[0].gpio))
35 gpio_set_value(leds[0].gpio, 1);
36 /* second button */
37 else if (irq == button_irqs[1] && gpio_get_value(leds[0].gpio))
38 gpio_set_value(leds[0].gpio, 0);
39
40 return IRQ_HANDLED;
41 }
42
43 static int __init intrpt_init(void)
44 {
45 int ret = 0;
46
47 pr_info("%s\n", __func__);
48
49 /* register LED gpios */
50 ret = gpio_request_array(leds, ARRAY_SIZE(leds));
51
52 if (ret) {
53 pr_err("Unable to request GPIOs for LEDs: %d\n", ret);
54 return ret;
55 }
56
57 /* register BUTTON gpios */
58 ret = gpio_request_array(buttons, ARRAY_SIZE(buttons));
59
60 if (ret) {
61 pr_err("Unable to request GPIOs for BUTTONs: %d\n", ret);
62 goto fail1;
63 }
64
65 pr_info("Current button1 value: %d\n", gpio_get_value(buttons[0].gpio));
66
67 ret = gpio_to_irq(buttons[0].gpio);
68
69 if (ret < 0) {
70 pr_err("Unable to request IRQ: %d\n", ret);
71 goto fail2;
72 }
73
74 button_irqs[0] = ret;
75
76 pr_info("Successfully requested BUTTON1 IRQ # %d\n", button_irqs[0]);
77
78 ret = request_irq(button_irqs[0], button_isr,
79 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
80 "gpiomod#button1", NULL);
81
82 if (ret) {
83 pr_err("Unable to request IRQ: %d\n", ret);
84 goto fail2;
85 }
86
87 ret = gpio_to_irq(buttons[1].gpio);
88
89 if (ret < 0) {
90 pr_err("Unable to request IRQ: %d\n", ret);
91 goto fail2;
92 }
93
94 button_irqs[1] = ret;
95
96 pr_info("Successfully requested BUTTON2 IRQ # %d\n", button_irqs[1]);
97
98 ret = request_irq(button_irqs[1], button_isr,
99 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
100 "gpiomod#button2", NULL);
101
102 if (ret) {
103 pr_err("Unable to request IRQ: %d\n", ret);
104 goto fail3;
105 }
106
107 return 0;
108
109 /* cleanup what has been setup so far */
110 fail3:
111 free_irq(button_irqs[0], NULL);
112
113 fail2:
114 gpio_free_array(buttons, ARRAY_SIZE(leds));
115
116 fail1:
117 gpio_free_array(leds, ARRAY_SIZE(leds));
118
119 return ret;
120 }
121
122 static void __exit intrpt_exit(void)
123 {
124 int i;
125
126 pr_info("%s\n", __func__);
127
128 /* free irqs */
129 free_irq(button_irqs[0], NULL);
130 free_irq(button_irqs[1], NULL);
131
132 /* turn all LEDs off */
133 for (i = 0; i < ARRAY_SIZE(leds); i++)
134 gpio_set_value(leds[i].gpio, 0);
135
136 /* unregister */
137 gpio_free_array(leds, ARRAY_SIZE(leds));
138 gpio_free_array(buttons, ARRAY_SIZE(buttons));
139 }
140
141 module_init(intrpt_init);
142 module_exit(intrpt_exit);
143
144 MODULE_LICENSE("GPL");
145 MODULE_DESCRIPTION("Handle some GPIO interrupts");
1 /*
2 * bottomhalf.c - Top and bottom half interrupt handling
3 *
4 * Based upon the RPi example by Stefan Wendler (devnull@kaltpost.de)
5 * from:
6 * https://github.com/wendlers/rpi-kmod-samples
7 *
8 * Press one button to turn on an LED and another to turn it off
9 */
10
11 #include <linux/delay.h>
12 #include <linux/gpio.h>
13 #include <linux/interrupt.h>
14 #include <linux/module.h>
15 #include <linux/printk.h>
16
17 /* Macro DECLARE_TASKLET_OLD exists for compatibiity.
18 * See https://lwn.net/Articles/830964/
19 */
20 #ifndef DECLARE_TASKLET_OLD
21 #define DECLARE_TASKLET_OLD(arg1, arg2) DECLARE_TASKLET(arg1, arg2, 0L)
22 #endif
23
24 static int button_irqs[] = { -1, -1 };
25
26 /* Define GPIOs for LEDs.
27 * TODO: Change the numbers for the GPIO on your board.
28 */
29 static struct gpio leds[] = { { 4, GPIOF_OUT_INIT_LOW, "LED 1" } };
30
31 /* Define GPIOs for BUTTONS
32 * TODO: Change the numbers for the GPIO on your board.
33 */
34 static struct gpio buttons[] = {
35 { 17, GPIOF_IN, "LED 1 ON BUTTON" },
36 { 18, GPIOF_IN, "LED 1 OFF BUTTON" },
37 };
38
39 /* Tasklet containing some non-trivial amount of processing */
40 static void bottomhalf_tasklet_fn(unsigned long data)
41 {
42 pr_info("Bottom half tasklet starts\n");
43 /* do something which takes a while */
44 mdelay(500);
45 pr_info("Bottom half tasklet ends\n");
46 }
47
48 static DECLARE_TASKLET_OLD(buttontask, bottomhalf_tasklet_fn);
49
50 /* interrupt function triggered when a button is pressed */
51 static irqreturn_t button_isr(int irq, void *data)
52 {
53 /* Do something quickly right now */
54 if (irq == button_irqs[0] && !gpio_get_value(leds[0].gpio))
55 gpio_set_value(leds[0].gpio, 1);
56 else if (irq == button_irqs[1] && gpio_get_value(leds[0].gpio))
57 gpio_set_value(leds[0].gpio, 0);
58
59 /* Do the rest at leisure via the scheduler */
60 tasklet_schedule(&buttontask);
61
62 return IRQ_HANDLED;
63 }
64
65 static int __init bottomhalf_init(void)
66 {
67 int ret = 0;
68
69 pr_info("%s\n", __func__);
70
71 /* register LED gpios */
72 ret = gpio_request_array(leds, ARRAY_SIZE(leds));
73
74 if (ret) {
75 pr_err("Unable to request GPIOs for LEDs: %d\n", ret);
76 return ret;
77 }
78
79 /* register BUTTON gpios */
80 ret = gpio_request_array(buttons, ARRAY_SIZE(buttons));
81
82 if (ret) {
83 pr_err("Unable to request GPIOs for BUTTONs: %d\n", ret);
84 goto fail1;
85 }
86
87 pr_info("Current button1 value: %d\n", gpio_get_value(buttons[0].gpio));
88
89 ret = gpio_to_irq(buttons[0].gpio);
90
91 if (ret < 0) {
92 pr_err("Unable to request IRQ: %d\n", ret);
93 goto fail2;
94 }
95
96 button_irqs[0] = ret;
97
98 pr_info("Successfully requested BUTTON1 IRQ # %d\n", button_irqs[0]);
99
100 ret = request_irq(button_irqs[0], button_isr,
101 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
102 "gpiomod#button1", NULL);
103
104 if (ret) {
105 pr_err("Unable to request IRQ: %d\n", ret);
106 goto fail2;
107 }
108
109 ret = gpio_to_irq(buttons[1].gpio);
110
111 if (ret < 0) {
112 pr_err("Unable to request IRQ: %d\n", ret);
113 goto fail2;
114 }
115
116 button_irqs[1] = ret;
117
118 pr_info("Successfully requested BUTTON2 IRQ # %d\n", button_irqs[1]);
119
120 ret = request_irq(button_irqs[1], button_isr,
121 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
122 "gpiomod#button2", NULL);
123
124 if (ret) {
125 pr_err("Unable to request IRQ: %d\n", ret);
126 goto fail3;
127 }
128
129 return 0;
130
131 /* cleanup what has been setup so far */
132 fail3:
133 free_irq(button_irqs[0], NULL);
134
135 fail2:
136 gpio_free_array(buttons, ARRAY_SIZE(leds));
137
138 fail1:
139 gpio_free_array(leds, ARRAY_SIZE(leds));
140
141 return ret;
142 }
143
144 static void __exit bottomhalf_exit(void)
145 {
146 int i;
147
148 pr_info("%s\n", __func__);
149
150 /* free irqs */
151 free_irq(button_irqs[0], NULL);
152 free_irq(button_irqs[1], NULL);
153
154 /* turn all LEDs off */
155 for (i = 0; i < ARRAY_SIZE(leds); i++)
156 gpio_set_value(leds[i].gpio, 0);
157
158 /* unregister */
159 gpio_free_array(leds, ARRAY_SIZE(leds));
160 gpio_free_array(buttons, ARRAY_SIZE(buttons));
161 }
162
163 module_init(bottomhalf_init);
164 module_exit(bottomhalf_exit);
165
166 MODULE_LICENSE("GPL");
167 MODULE_DESCRIPTION("Interrupt with top and bottom half");
16 Crypto
At the dawn of the internet, everybody trusted everybody completely. . . but
that did not work out so well. When this guide was originally written, it was a
more innocent era in which almost nobody actually gave a damn about crypto
- least of all kernel developers. That is certainly no longer the case now. To
handle crypto stuff, the kernel has its own API enabling common methods of
encryption, decryption and your favourite hash functions.
1 /*
2 * cryptosha256.c
3 */
4 #include <crypto/internal/hash.h>
5 #include <linux/module.h>
6
7 #define SHA256_LENGTH 32
8
9 static void show_hash_result(char *plaintext, char *hash_sha256)
10 {
11 int i;
12 char str[SHA256_LENGTH * 2 + 1];
13
14 pr_info("sha256 test for string: \"%s\"\n", plaintext);
15 for (i = 0; i < SHA256_LENGTH; i++)
16 sprintf(&str[i * 2], "%02x", (unsigned char)hash_sha256[i]);
17 str[i * 2] = 0;
18 pr_info("%s\n", str);
19 }
20
21 static int cryptosha256_init(void)
22 {
23 char *plaintext = "This is a test";
24 char hash_sha256[SHA256_LENGTH];
25 struct crypto_shash *sha256;
26 struct shash_desc *shash;
27
28 sha256 = crypto_alloc_shash("sha256", 0, 0);
29 if (IS_ERR(sha256)) {
30 pr_err(
31 "%s(): Failed to allocate sha256 algorithm, enable
,→ CONFIG_CRYPTO_SHA256 and try again.\n",
32 __func__);
33 return -1;
34 }
35
36 shash = kmalloc(sizeof(struct shash_desc) + crypto_shash_descsize(sha256),
37 GFP_KERNEL);
38 if (!shash)
39 return -ENOMEM;
40
41 shash->tfm = sha256;
42
43 if (crypto_shash_init(shash))
44 return -1;
45
46 if (crypto_shash_update(shash, plaintext, strlen(plaintext)))
47 return -1;
48
49 if (crypto_shash_final(shash, hash_sha256))
50 return -1;
51
52 kfree(shash);
53 crypto_free_shash(sha256);
54
55 show_hash_result(plaintext, hash_sha256);
56
57 return 0;
58 }
59
60 static void cryptosha256_exit(void)
61 {
62 }
63
64 module_init(cryptosha256_init);
65 module_exit(cryptosha256_exit);
66
67 MODULE_DESCRIPTION("sha256 hash test");
68 MODULE_LICENSE("GPL");
And you should see that the hash was calculated for the test string.
Finally, remove the test module:
1 /*
2 * cryptosk.c
3 */
4 #include <crypto/internal/skcipher.h>
5 #include <linux/crypto.h>
6 #include <linux/module.h>
7 #include <linux/random.h>
8 #include <linux/scatterlist.h>
9
10 #define SYMMETRIC_KEY_LENGTH 32
11 #define CIPHER_BLOCK_SIZE 16
12
13 struct tcrypt_result {
14 struct completion completion;
15 int err;
16 };
17
18 struct skcipher_def {
19 struct scatterlist sg;
20 struct crypto_skcipher *tfm;
21 struct skcipher_request *req;
22 struct tcrypt_result result;
23 char *scratchpad;
24 char *ciphertext;
25 char *ivdata;
26 };
27
28 static struct skcipher_def sk;
29
30 static void test_skcipher_finish(struct skcipher_def *sk)
31 {
32 if (sk->tfm)
33 crypto_free_skcipher(sk->tfm);
34 if (sk->req)
35 skcipher_request_free(sk->req);
36 if (sk->ivdata)
37 kfree(sk->ivdata);
38 if (sk->scratchpad)
39 kfree(sk->scratchpad);
40 if (sk->ciphertext)
41 kfree(sk->ciphertext);
42 }
43
44 static int test_skcipher_result(struct skcipher_def *sk, int rc)
45 {
46 switch (rc) {
47 case 0:
48 break;
49 case -EINPROGRESS || -EBUSY:
50 rc = wait_for_completion_interruptible(&sk->result.completion);
51 if (!rc && !sk->result.err) {
52 reinit_completion(&sk->result.completion);
53 break;
54 }
55 pr_info("skcipher encrypt returned with %d result %d\n", rc,
56 sk->result.err);
57 break;
58 default:
59 pr_info("skcipher encrypt returned with %d result %d\n", rc,
60 sk->result.err);
61 break;
62 }
63
64 init_completion(&sk->result.completion);
65
66 return rc;
67 }
68
69 static void test_skcipher_callback(struct crypto_async_request *req, int
,→ error)
70 {
71 struct tcrypt_result *result = req->data;
72
73 if (error == -EINPROGRESS)
74 return;
75
76 result->err = error;
77 complete(&result->completion);
78 pr_info("Encryption finished successfully\n");
79
80 /* decrypt data */
81 #if 0
82 memset((void*)sk.scratchpad, '-', CIPHER_BLOCK_SIZE);
83 ret = crypto_skcipher_decrypt(sk.req);
84 ret = test_skcipher_result(&sk, ret);
85 if (ret)
86 return;
87
88 sg_copy_from_buffer(&sk.sg, 1, sk.scratchpad, CIPHER_BLOCK_SIZE);
89 sk.scratchpad[CIPHER_BLOCK_SIZE-1] = 0;
90
91 pr_info("Decryption request successful\n");
92 pr_info("Decrypted: %s\n", sk.scratchpad);
93 #endif
94 }
95
96 static int test_skcipher_encrypt(char *plaintext, char *password,
97 struct skcipher_def *sk)
98 {
99 int ret = -EFAULT;
100 unsigned char key[SYMMETRIC_KEY_LENGTH];
101
102 if (!sk->tfm) {
103 sk->tfm = crypto_alloc_skcipher("cbc-aes-aesni", 0, 0);
104 if (IS_ERR(sk->tfm)) {
105 pr_info("could not allocate skcipher handle\n");
106 return PTR_ERR(sk->tfm);
107 }
108 }
109
110 if (!sk->req) {
111 sk->req = skcipher_request_alloc(sk->tfm, GFP_KERNEL);
112 if (!sk->req) {
113 pr_info("could not allocate skcipher request\n");
114 ret = -ENOMEM;
115 goto out;
116 }
117 }
118
119 skcipher_request_set_callback(sk->req, CRYPTO_TFM_REQ_MAY_BACKLOG,
120 test_skcipher_callback, &sk->result);
121
122 /* clear the key */
123 memset((void *)key, '\0', SYMMETRIC_KEY_LENGTH);
124
125 /* Use the world's favourite password */
126 sprintf((char *)key, "%s", password);
127
128 /* AES 256 with given symmetric key */
129 if (crypto_skcipher_setkey(sk->tfm, key, SYMMETRIC_KEY_LENGTH)) {
130 pr_info("key could not be set\n");
131 ret = -EAGAIN;
132 goto out;
133 }
134 pr_info("Symmetric key: %s\n", key);
135 pr_info("Plaintext: %s\n", plaintext);
136
137 if (!sk->ivdata) {
138 /* see https://en.wikipedia.org/wiki/Initialization_vector */
139 sk->ivdata = kmalloc(CIPHER_BLOCK_SIZE, GFP_KERNEL);
140 if (!sk->ivdata) {
141 pr_info("could not allocate ivdata\n");
142 goto out;
143 }
144 get_random_bytes(sk->ivdata, CIPHER_BLOCK_SIZE);
145 }
146
147 if (!sk->scratchpad) {
148 /* The text to be encrypted */
149 sk->scratchpad = kmalloc(CIPHER_BLOCK_SIZE, GFP_KERNEL);
150 if (!sk->scratchpad) {
151 pr_info("could not allocate scratchpad\n");
152 goto out;
153 }
154 }
155 sprintf((char *)sk->scratchpad, "%s", plaintext);
156
157 sg_init_one(&sk->sg, sk->scratchpad, CIPHER_BLOCK_SIZE);
158 skcipher_request_set_crypt(sk->req, &sk->sg, &sk->sg, CIPHER_BLOCK_SIZE,
159 sk->ivdata);
160 init_completion(&sk->result.completion);
161
162 /* encrypt data */
163 ret = crypto_skcipher_encrypt(sk->req);
164 ret = test_skcipher_result(sk, ret);
165 if (ret)
166 goto out;
167
168 pr_info("Encryption request successful\n");
169
170 out:
171 return ret;
172 }
173
174 static int cryptoapi_init(void)
175 {
176 /* The world's favorite password */
177 char *password = "password123";
178
179 sk.tfm = NULL;
180 sk.req = NULL;
181 sk.scratchpad = NULL;
182 sk.ciphertext = NULL;
183 sk.ivdata = NULL;
184
185 test_skcipher_encrypt("Testing", password, &sk);
186 return 0;
187 }
188
189 static void cryptoapi_exit(void)
190 {
191 test_skcipher_finish(&sk);
192 }
193
194 module_init(cryptoapi_init);
195 module_exit(cryptoapi_exit);
196
197 MODULE_DESCRIPTION("Symmetric key encryption example");
198 MODULE_LICENSE("GPL");
This function will receive a user string to interpret and inject the event using
the input_report_XXXX or input_event call. The string is already copied from
user.
This function is used for debugging and should fill the buffer parameter with
the last event sent in the virtual input device format. The buffer will then be
copied to user.
vinput devices are created and destroyed using sysfs. And, event injection
is done through a /dev node. The device name will be used by the userland to
export a new virtual input device.
The class_attribute structure is similar to other attribute types we talked
about in section 8:
1 struct class_attribute {
2 struct attribute attr;
3 ssize_t (*show)(struct class *class, struct class_attribute *attr,
4 char *buf);
5 ssize_t (*store)(struct class *class, struct class_attribute *attr,
6 const char *buf, size_t count);
7 };
In vinput.c, the macro CLASS_ATTR_WO(export/unexport) defined in in-
clude/linux/device.h (in this case, device.h is included in include/linux/input.h)
will generate the class_attribute structures which are named class_attr_export/unexport.
Then, put them into vinput_class_attrs array and the macro ATTRIBUTE_GROUPS(vinput_class)
will generate the struct attribute_group vinput_class_group that should
be assigned in vinput_class. Finally, call class_register(&vinput_class)
to create attributes in sysfs.
To create a vinputX sysfs entry and /dev node.
1 /*
2 * vinput.h
3 */
4
5 #ifndef VINPUT_H
6 #define VINPUT_H
7
8 #include <linux/input.h>
9 #include <linux/spinlock.h>
10
11 #define VINPUT_MAX_LEN 128
12 #define MAX_VINPUT 32
13 #define VINPUT_MINORS MAX_VINPUT
14
15 #define dev_to_vinput(dev) container_of(dev, struct vinput, dev)
16
17 struct vinput_device;
18
19 struct vinput {
20 long id;
21 long devno;
22 long last_entry;
23 spinlock_t lock;
24
25 void *priv_data;
26
27 struct device dev;
28 struct list_head list;
29 struct input_dev *input;
30 struct vinput_device *type;
31 };
32
33 struct vinput_ops {
34 int (*init)(struct vinput *);
35 int (*kill)(struct vinput *);
36 int (*send)(struct vinput *, char *, int);
37 int (*read)(struct vinput *, char *, int);
38 };
39
40 struct vinput_device {
41 char name[16];
42 struct list_head list;
43 struct vinput_ops *ops;
44 };
45
46 int vinput_register(struct vinput_device *dev);
47 void vinput_unregister(struct vinput_device *dev);
48
49 #endif
1 /*
2 * vinput.c
3 */
4
5 #include <linux/cdev.h>
6 #include <linux/input.h>
7 #include <linux/module.h>
8 #include <linux/slab.h>
9 #include <linux/spinlock.h>
10
11 #include <asm/uaccess.h>
12
13 #include "vinput.h"
14
15 #define DRIVER_NAME "vinput"
16
17 #define dev_to_vinput(dev) container_of(dev, struct vinput, dev)
18
19 static DECLARE_BITMAP(vinput_ids, VINPUT_MINORS);
20
21 static LIST_HEAD(vinput_devices);
22 static LIST_HEAD(vinput_vdevices);
23
24 static int vinput_dev;
25 static struct spinlock vinput_lock;
26 static struct class vinput_class;
27
28 /* Search the name of vinput device in the vinput_devices linked list,
29 * which added at vinput_register().
30 */
31 static struct vinput_device *vinput_get_device_by_type(const char *type)
32 {
33 int found = 0;
34 struct vinput_device *vinput;
35 struct list_head *curr;
36
37 spin_lock(&vinput_lock);
38 list_for_each (curr, &vinput_devices) {
39 vinput = list_entry(curr, struct vinput_device, list);
40 if (vinput && strncmp(type, vinput->name, strlen(vinput->name)) == 0)
,→ {
41 found = 1;
42 break;
43 }
44 }
45 spin_unlock(&vinput_lock);
46
47 if (found)
48 return vinput;
49 return ERR_PTR(-ENODEV);
50 }
51
52 /* Search the id of virtual device in the vinput_vdevices linked list,
53 * which added at vinput_alloc_vdevice().
54 */
55 static struct vinput *vinput_get_vdevice_by_id(long id)
56 {
57 struct vinput *vinput = NULL;
58 struct list_head *curr;
59
60 spin_lock(&vinput_lock);
61 list_for_each (curr, &vinput_vdevices) {
62 vinput = list_entry(curr, struct vinput, list);
63 if (vinput && vinput->id == id)
64 break;
65 }
66 spin_unlock(&vinput_lock);
67
68 if (vinput && vinput->id == id)
69 return vinput;
70 return ERR_PTR(-ENODEV);
71 }
72
73 static int vinput_open(struct inode *inode, struct file *file)
74 {
75 int err = 0;
76 struct vinput *vinput = NULL;
77
78 vinput = vinput_get_vdevice_by_id(iminor(inode));
79
80 if (IS_ERR(vinput))
81 err = PTR_ERR(vinput);
82 else
83 file->private_data = vinput;
84
85 return err;
86 }
87
88 static int vinput_release(struct inode *inode, struct file *file)
89 {
90 return 0;
91 }
92
93 static ssize_t vinput_read(struct file *file, char __user *buffer, size_t
,→ count,
94 loff_t *offset)
95 {
96 int len;
97 char buff[VINPUT_MAX_LEN + 1];
98 struct vinput *vinput = file->private_data;
99
100 len = vinput->type->ops->read(vinput, buff, count);
101
102 if (*offset > len)
103 count = 0;
104 else if (count + *offset > VINPUT_MAX_LEN)
105 count = len - *offset;
106
107 if (raw_copy_to_user(buffer, buff + *offset, count))
108 count = -EFAULT;
109
110 *offset += count;
111
112 return count;
113 }
114
115 static ssize_t vinput_write(struct file *file, const char __user *buffer,
116 size_t count, loff_t *offset)
117 {
118 char buff[VINPUT_MAX_LEN + 1];
119 struct vinput *vinput = file->private_data;
120
121 memset(buff, 0, sizeof(char) * (VINPUT_MAX_LEN + 1));
122
123 if (count > VINPUT_MAX_LEN) {
124 dev_warn(&vinput->dev, "Too long. %d bytes allowed\n",
,→ VINPUT_MAX_LEN);
125 return -EINVAL;
126 }
127
128 if (raw_copy_from_user(buff, buffer, count))
129 return -EFAULT;
130
131 return vinput->type->ops->send(vinput, buff, count);
132 }
133
134 static const struct file_operations vinput_fops = {
135 .owner = THIS_MODULE,
136 .open = vinput_open,
137 .release = vinput_release,
138 .read = vinput_read,
139 .write = vinput_write,
140 };
141
142 static void vinput_unregister_vdevice(struct vinput *vinput)
143 {
144 input_unregister_device(vinput->input);
145 if (vinput->type->ops->kill)
146 vinput->type->ops->kill(vinput);
147 }
148
149 static void vinput_destroy_vdevice(struct vinput *vinput)
150 {
151 /* Remove from the list first */
152 spin_lock(&vinput_lock);
153 list_del(&vinput->list);
154 clear_bit(vinput->id, vinput_ids);
155 spin_unlock(&vinput_lock);
156
157 module_put(THIS_MODULE);
158
159 kfree(vinput);
160 }
161
162 static void vinput_release_dev(struct device *dev)
163 {
164 struct vinput *vinput = dev_to_vinput(dev);
165 int id = vinput->id;
166
167 vinput_destroy_vdevice(vinput);
168
169 pr_debug("released vinput%d.\n", id);
170 }
171
172 static struct vinput *vinput_alloc_vdevice(void)
173 {
174 int err;
175 struct vinput *vinput = kzalloc(sizeof(struct vinput), GFP_KERNEL);
176
177 try_module_get(THIS_MODULE);
178
179 memset(vinput, 0, sizeof(struct vinput));
180
181 spin_lock_init(&vinput->lock);
182
183 spin_lock(&vinput_lock);
184 vinput->id = find_first_zero_bit(vinput_ids, VINPUT_MINORS);
185 if (vinput->id >= VINPUT_MINORS) {
186 err = -ENOBUFS;
187 goto fail_id;
188 }
189 set_bit(vinput->id, vinput_ids);
190 list_add(&vinput->list, &vinput_vdevices);
191 spin_unlock(&vinput_lock);
192
193 /* allocate the input device */
194 vinput->input = input_allocate_device();
195 if (vinput->input == NULL) {
196 pr_err("vinput: Cannot allocate vinput input device\n");
197 err = -ENOMEM;
198 goto fail_input_dev;
199 }
200
201 /* initialize device */
202 vinput->dev.class = &vinput_class;
203 vinput->dev.release = vinput_release_dev;
204 vinput->dev.devt = MKDEV(vinput_dev, vinput->id);
205 dev_set_name(&vinput->dev, DRIVER_NAME "%lu", vinput->id);
206
207 return vinput;
208
209 fail_input_dev:
210 spin_lock(&vinput_lock);
211 list_del(&vinput->list);
212 fail_id:
213 spin_unlock(&vinput_lock);
214 module_put(THIS_MODULE);
215 kfree(vinput);
216
217 return ERR_PTR(err);
218 }
219
220 static int vinput_register_vdevice(struct vinput *vinput)
221 {
222 int err = 0;
223
224 /* register the input device */
225 vinput->input->name = vinput->type->name;
226 vinput->input->phys = "vinput";
227 vinput->input->dev.parent = &vinput->dev;
228
229 vinput->input->id.bustype = BUS_VIRTUAL;
230 vinput->input->id.product = 0x0000;
231 vinput->input->id.vendor = 0x0000;
232 vinput->input->id.version = 0x0000;
233
234 err = vinput->type->ops->init(vinput);
235
236 if (err == 0)
237 dev_info(&vinput->dev, "Registered virtual input %s %ld\n",
238 vinput->type->name, vinput->id);
239
240 return err;
241 }
242
243 static ssize_t export_store(struct class *class, struct class_attribute *attr,
244 const char *buf, size_t len)
245 {
246 int err;
247 struct vinput *vinput;
248 struct vinput_device *device;
249
250 device = vinput_get_device_by_type(buf);
251 if (IS_ERR(device)) {
252 pr_info("vinput: This virtual device isn't registered\n");
253 err = PTR_ERR(device);
254 goto fail;
255 }
256
257 vinput = vinput_alloc_vdevice();
258 if (IS_ERR(vinput)) {
259 err = PTR_ERR(vinput);
260 goto fail;
261 }
262
263 vinput->type = device;
264 err = device_register(&vinput->dev);
265 if (err < 0)
266 goto fail_register;
267
268 err = vinput_register_vdevice(vinput);
269 if (err < 0)
270 goto fail_register_vinput;
271
272 return len;
273
274 fail_register_vinput:
275 device_unregister(&vinput->dev);
276 fail_register:
277 vinput_destroy_vdevice(vinput);
278 fail:
279 return err;
280 }
281 /* This macro generates class_attr_export structure and export_store() */
282 static CLASS_ATTR_WO(export);
283
284 static ssize_t unexport_store(struct class *class, struct class_attribute
,→ *attr,
285 const char *buf, size_t len)
286 {
287 int err;
288 unsigned long id;
289 struct vinput *vinput;
290
291 err = kstrtol(buf, 10, &id);
292 if (err) {
293 err = -EINVAL;
294 goto failed;
295 }
296
297 vinput = vinput_get_vdevice_by_id(id);
298 if (IS_ERR(vinput)) {
299 pr_err("vinput: No such vinput device %ld\n", id);
300 err = PTR_ERR(vinput);
301 goto failed;
302 }
303
304 vinput_unregister_vdevice(vinput);
305 device_unregister(&vinput->dev);
306
307 return len;
308 failed:
309 return err;
310 }
311 /* This macro generates class_attr_unexport structure and unexport_store() */
312 static CLASS_ATTR_WO(unexport);
313
314 static struct attribute *vinput_class_attrs[] = {
315 &class_attr_export.attr,
316 &class_attr_unexport.attr,
317 NULL,
318 };
319
320 /* This macro generates vinput_class_groups structure */
321 ATTRIBUTE_GROUPS(vinput_class);
322
323 static struct class vinput_class = {
324 .name = "vinput",
325 .owner = THIS_MODULE,
326 .class_groups = vinput_class_groups,
327 };
328
329 int vinput_register(struct vinput_device *dev)
330 {
331 spin_lock(&vinput_lock);
332 list_add(&dev->list, &vinput_devices);
333 spin_unlock(&vinput_lock);
334
335 pr_info("vinput: registered new virtual input device '%s'\n", dev->name);
336
337 return 0;
338 }
339 EXPORT_SYMBOL(vinput_register);
340
341 void vinput_unregister(struct vinput_device *dev)
342 {
343 struct list_head *curr, *next;
344
345 /* Remove from the list first */
346 spin_lock(&vinput_lock);
347 list_del(&dev->list);
348 spin_unlock(&vinput_lock);
349
350 /* unregister all devices of this type */
351 list_for_each_safe (curr, next, &vinput_vdevices) {
352 struct vinput *vinput = list_entry(curr, struct vinput, list);
353 if (vinput && vinput->type == dev) {
354 vinput_unregister_vdevice(vinput);
355 device_unregister(&vinput->dev);
356 }
357 }
358
359 pr_info("vinput: unregistered virtual input device '%s'\n", dev->name);
360 }
361 EXPORT_SYMBOL(vinput_unregister);
362
363 static int __init vinput_init(void)
364 {
365 int err = 0;
366
367 pr_info("vinput: Loading virtual input driver\n");
368
369 vinput_dev = register_chrdev(0, DRIVER_NAME, &vinput_fops);
370 if (vinput_dev < 0) {
371 pr_err("vinput: Unable to allocate char dev region\n");
372 err = vinput_dev;
373 goto failed_alloc;
374 }
375
376 spin_lock_init(&vinput_lock);
377
378 err = class_register(&vinput_class);
379 if (err < 0) {
380 pr_err("vinput: Unable to register vinput class\n");
381 goto failed_class;
382 }
383
384 return 0;
385 failed_class:
386 class_unregister(&vinput_class);
387 failed_alloc:
388 return err;
389 }
390
391 static void __exit vinput_end(void)
392 {
393 pr_info("vinput: Unloading virtual input driver\n");
394
395 unregister_chrdev(vinput_dev, DRIVER_NAME);
396 class_unregister(&vinput_class);
397 }
398
399 module_init(vinput_init);
400 module_exit(vinput_end);
401
402 MODULE_LICENSE("GPL");
403 MODULE_DESCRIPTION("Emulate input events");
1 /*
2 * vkbd.c
3 */
4
5 #include <linux/init.h>
6 #include <linux/input.h>
7 #include <linux/module.h>
8 #include <linux/spinlock.h>
9
10 #include "vinput.h"
11
12 #define VINPUT_KBD "vkbd"
13 #define VINPUT_RELEASE 0
14 #define VINPUT_PRESS 1
15
16 static unsigned short vkeymap[KEY_MAX];
17
18 static int vinput_vkbd_init(struct vinput *vinput)
19 {
20 int i;
21
22 /* Set up the input bitfield */
23 vinput->input->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
24 vinput->input->keycodesize = sizeof(unsigned short);
25 vinput->input->keycodemax = KEY_MAX;
26 vinput->input->keycode = vkeymap;
27
28 for (i = 0; i < KEY_MAX; i++)
29 set_bit(vkeymap[i], vinput->input->keybit);
30
31 /* vinput will help us allocate new input device structure via
32 * input_allocate_device(). So, we can register it straightforwardly.
33 */
34 return input_register_device(vinput->input);
35 }
36
37 static int vinput_vkbd_read(struct vinput *vinput, char *buff, int len)
38 {
39 spin_lock(&vinput->lock);
40 len = snprintf(buff, len, "%+ld\n", vinput->last_entry);
41 spin_unlock(&vinput->lock);
42
43 return len;
44 }
45
46 static int vinput_vkbd_send(struct vinput *vinput, char *buff, int len)
47 {
48 int ret;
49 long key = 0;
50 short type = VINPUT_PRESS;
51
52 /* Determine which event was received (press or release)
53 * and store the state.
54 */
55 if (buff[0] == '+')
56 ret = kstrtol(buff + 1, 10, &key);
57 else
58 ret = kstrtol(buff, 10, &key);
59 if (ret)
60 dev_err(&vinput->dev, "error during kstrtol: -%d\n", ret);
61 spin_lock(&vinput->lock);
62 vinput->last_entry = key;
63 spin_unlock(&vinput->lock);
64
65 if (key < 0) {
66 type = VINPUT_RELEASE;
67 key = -key;
68 }
69
70 dev_info(&vinput->dev, "Event %s code %ld\n",
71 (type == VINPUT_RELEASE) ? "VINPUT_RELEASE" : "VINPUT_PRESS",
,→ key);
72
73 /* Report the state received to input subsystem. */
74 input_report_key(vinput->input, key, type);
75 /* Tell input subsystem that it finished the report. */
76 input_sync(vinput->input);
77
78 return len;
79 }
80
81 static struct vinput_ops vkbd_ops = {
82 .init = vinput_vkbd_init,
83 .send = vinput_vkbd_send,
84 .read = vinput_vkbd_read,
85 };
86
87 static struct vinput_device vkbd_dev = {
88 .name = VINPUT_KBD,
89 .ops = &vkbd_ops,
90 };
91
92 static int __init vkbd_init(void)
93 {
94 int i;
95
96 for (i = 0; i < KEY_MAX; i++)
97 vkeymap[i] = i;
98 return vinput_register(&vkbd_dev);
99 }
100
101 static void __exit vkbd_end(void)
102 {
103 vinput_unregister(&vkbd_dev);
104 }
105
106 module_init(vkbd_init);
107 module_exit(vkbd_end);
108
109 MODULE_LICENSE("GPL");
110 MODULE_DESCRIPTION("Emulate keyboard input events through /dev/vinput");
1 /*
2 * devicemodel.c
3 */
4 #include <linux/kernel.h>
5 #include <linux/module.h>
6 #include <linux/platform_device.h>
7
8 struct devicemodel_data {
9 char *greeting;
10 int number;
11 };
12
13 static int devicemodel_probe(struct platform_device *dev)
14 {
15 struct devicemodel_data *pd =
16 (struct devicemodel_data *)(dev->dev.platform_data);
17
18 pr_info("devicemodel probe\n");
19 pr_info("devicemodel greeting: %s; %d\n", pd->greeting, pd->number);
20
21 /* Your device initialization code */
22
23 return 0;
24 }
25
26 static int devicemodel_remove(struct platform_device *dev)
27 {
28 pr_info("devicemodel example removed\n");
29
30 /* Your device removal code */
31
32 return 0;
33 }
34
35 static int devicemodel_suspend(struct device *dev)
36 {
37 pr_info("devicemodel example suspend\n");
38
39 /* Your device suspend code */
40
41 return 0;
42 }
43
44 static int devicemodel_resume(struct device *dev)
45 {
46 pr_info("devicemodel example resume\n");
47
48 /* Your device resume code */
49
50 return 0;
51 }
52
53 static const struct dev_pm_ops devicemodel_pm_ops = {
54 .suspend = devicemodel_suspend,
55 .resume = devicemodel_resume,
56 .poweroff = devicemodel_suspend,
57 .freeze = devicemodel_suspend,
58 .thaw = devicemodel_resume,
59 .restore = devicemodel_resume,
60 };
61
62 static struct platform_driver devicemodel_driver = {
63 .driver =
64 {
65 .name = "devicemodel_example",
66 .pm = &devicemodel_pm_ops,
67 },
68 .probe = devicemodel_probe,
69 .remove = devicemodel_remove,
70 };
71
72 static int devicemodel_init(void)
73 {
74 int ret;
75
76 pr_info("devicemodel init\n");
77
78 ret = platform_driver_register(&devicemodel_driver);
79
80 if (ret) {
81 pr_err("Unable to register driver\n");
82 return ret;
83 }
84
85 return 0;
86 }
87
88 static void devicemodel_exit(void)
89 {
90 pr_info("devicemodel exit\n");
91 platform_driver_unregister(&devicemodel_driver);
92 }
93
94 module_init(devicemodel_init);
95 module_exit(devicemodel_exit);
96
97 MODULE_LICENSE("GPL");
98 MODULE_DESCRIPTION("Linux Device Model example");
19 Optimizations
19.1 Likely and Unlikely conditions
Sometimes you might want your code to run as quickly as possible, especially
if it is handling an interrupt or doing something which might cause noticeable
latency. If your code contains boolean conditions and if you know that the
conditions are almost always likely to evaluate as either true or false, then
you can allow the compiler to optimize for this using the likely and unlikely
macros. For example, when allocating memory you are almost always expecting
this to succeed.
When the unlikely macro is used, the compiler alters its machine instruc-
tion output, so that it continues along the false branch and only jumps if the
condition is true. That avoids flushing the processor pipeline. The opposite
happens if you use the likely macro.
1 CONFIG_JUMP_LABEL=y
2 CONFIG_HAVE_ARCH_JUMP_LABEL=y
3 CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
To declare a static key, we need to define a global variable using the DEFINE_STATIC_KEY_FALSE
or DEFINE_STATIC_KEY_TRUE macro defined in include/linux/jump_label.h. This
macro initializes the key with the given initial value, which is either false or true,
respectively. For example, to declare a static key with an initial value of false,
we can use the following code:
1 DEFINE_STATIC_KEY_FALSE(fkey);
Once the static key has been declared, we need to add branching code to the
module that uses the static key. For example, the code includes a fastpath, where
a no-op instruction will be generated at compile time as the key is initialized to
false and the branch is unlikely to be taken.
1 pr_info("fastpath 1\n");
2 if (static_branch_unlikely(&fkey))
3 pr_alert("do unlikely thing\n");
4 pr_info("fastpath 2\n");
1 /*
2 * static_key.c
3 */
4
5 #include <linux/atomic.h>
6 #include <linux/device.h>
7 #include <linux/fs.h>
8 #include <linux/kernel.h> /* for sprintf() */
9 #include <linux/module.h>
10 #include <linux/printk.h>
11 #include <linux/types.h>
12 #include <linux/uaccess.h> /* for get_user and put_user */
13
14 #include <asm/errno.h>
15
16 static int device_open(struct inode *inode, struct file *file);
17 static int device_release(struct inode *inode, struct file *file);
18 static ssize_t device_read(struct file *file, char __user *buf, size_t count,
19 loff_t *ppos);
20 static ssize_t device_write(struct file *file, const char __user *buf,
21 size_t count, loff_t *ppos);
22
23 #define SUCCESS 0
24 #define DEVICE_NAME "key_state"
25 #define BUF_LEN 10
26
27 static int major;
28
29 enum {
30 CDEV_NOT_USED = 0,
31 CDEV_EXCLUSIVE_OPEN = 1,
32 };
33
34 static atomic_t already_open = ATOMIC_INIT(CDEV_NOT_USED);
35
36 static char msg[BUF_LEN + 1];
37
38 static struct class *cls;
39
40 static DEFINE_STATIC_KEY_FALSE(fkey);
41
42 static struct file_operations chardev_fops = {
43 .owner = THIS_MODULE,
44 .open = device_open,
45 .release = device_release,
46 .read = device_read,
47 .write = device_write,
48 };
49
50 static int __init chardev_init(void)
51 {
52 major = register_chrdev(0, DEVICE_NAME, &chardev_fops);
53 if (major < 0) {
54 pr_alert("Registering char device failed with %d\n", major);
55 return major;
56 }
57
58 pr_info("I was assigned major number %d\n", major);
59
60 cls = class_create(THIS_MODULE, DEVICE_NAME);
61
62 device_create(cls, NULL, MKDEV(major, 0), NULL, DEVICE_NAME);
63
64 pr_info("Device created on /dev/%s\n", DEVICE_NAME);
65
66 return SUCCESS;
67 }
68
69 static void __exit chardev_exit(void)
70 {
71 device_destroy(cls, MKDEV(major, 0));
72 class_destroy(cls);
73
74 /* Unregister the device */
75 unregister_chrdev(major, DEVICE_NAME);
76 }
77
78 /* Methods */
79
80 /**
81 * Called when a process tried to open the device file, like
82 * cat /dev/key_state
83 */
84 static int device_open(struct inode *inode, struct file *file)
85 {
86 if (atomic_cmpxchg(&already_open, CDEV_NOT_USED, CDEV_EXCLUSIVE_OPEN))
87 return -EBUSY;
88
89 sprintf(msg, static_key_enabled(&fkey) ? "enabled\n" : "disabled\n");
90
91 pr_info("fastpath 1\n");
92 if (static_branch_unlikely(&fkey))
93 pr_alert("do unlikely thing\n");
94 pr_info("fastpath 2\n");
95
96 try_module_get(THIS_MODULE);
97
98 return SUCCESS;
99 }
100
101 /**
102 * Called when a process closes the device file
103 */
104 static int device_release(struct inode *inode, struct file *file)
105 {
106 /* We are now ready for our next caller. */
107 atomic_set(&already_open, CDEV_NOT_USED);
108
109 /**
110 * Decrement the usage count, or else once you opened the file, you will
111 * never get rid of the module.
112 */
113 module_put(THIS_MODULE);
114
115 return SUCCESS;
116 }
117
118 /**
119 * Called when a process, which already opened the dev file, attempts to
120 * read from it.
121 */
122 static ssize_t device_read(struct file *filp, /* see include/linux/fs.h */
123 char __user *buffer, /* buffer to fill with data */
124 size_t length, /* length of the buffer */
125 loff_t *offset)
126 {
127 /* Number of the bytes actually written to the buffer */
128 int bytes_read = 0;
129 const char *msg_ptr = msg;
130
131 if (!*(msg_ptr + *offset)) { /* We are at the end of the message */
132 *offset = 0; /* reset the offset */
133 return 0; /* signify end of file */
134 }
135
136 msg_ptr += *offset;
137
138 /* Actually put the date into the buffer */
139 while (length && *msg_ptr) {
140 /**
141 * The buffer is in the user data segment, not the kernel
142 * segment so "*" assignment won't work. We have to use
143 * put_user which copies data from the kernel data segment to
144 * the user data segment.
145 */
146 put_user(*(msg_ptr++), buffer++);
147 length--;
148 bytes_read++;
149 }
150
151 *offset += bytes_read;
152
153 /* Most read functions return the number of bytes put into the buffer. */
154 return bytes_read;
155 }
156
157 /* Called when a process writes to dev file; echo "enable" > /dev/key_state */
158 static ssize_t device_write(struct file *filp, const char __user *buffer,
159 size_t length, loff_t *offset)
160 {
161 char command[10];
162
163 if (length > 10) {
164 pr_err("command exceeded 10 char\n");
165 return -EINVAL;
166 }
167
168 if (copy_from_user(command, buffer, length))
169 return -EFAULT;
170
171 if (strncmp(command, "enable", strlen("enable")) == 0)
172 static_branch_enable(&fkey);
173 else if (strncmp(command, "disable", strlen("disable")) == 0)
174 static_branch_disable(&fkey);
175 else {
176 pr_err("Invalid command: %s\n", command);
177 return -EINVAL;
178 }
179
180 /* Again, return the number of input characters used. */
181 return length;
182 }
183
184 module_init(chardev_init);
185 module_exit(chardev_exit);
186
187 MODULE_LICENSE("GPL");
To check the state of the static key, we can use the /dev/key_state interface.
1 cat /dev/key_state
This will display the current state of the key, which is disabled by default.
To change the state of the static key, we can perform a write operation on
the file:
This will enable the static key, causing the code path to switch from the
fastpath to the slowpath.
In some cases, the key is enabled or disabled at initialization and never
changed, we can declare a static key as read-only, which means that it can only
be toggled in the module init function. To declare a read-only static key, we can
use the DEFINE_STATIC_KEY_FALSE_RO or DEFINE_STATIC_KEY_TRUE_RO macro
instead. Attempts to change the key at runtime will result in a page fault. For
more information, see Static keys
20 Common Pitfalls
20.1 Using standard libraries
You can not do that. In a kernel module, you can only use kernel functions
which are the functions you can see in /proc/kallsyms.
20.2 Disabling interrupts
You might need to do this for a short time and that is OK, but if you do not
enable them afterwards, your system will be stuck and you will have to power
it off.
No
next() treatment
No
return is NULL?
Yes
stop() treatment