2 * proc sysctl test driver
4 * Copyright (C) 2017 Luis R. Rodriguez <mcgrof@kernel.org>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the Free
8 * Software Foundation; either version 2 of the License, or at your option any
9 * later version; or, when distributed separately from the Linux kernel or
10 * when incorporated into other software packages, subject to the following
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of copyleft-next (version 0.3.1 or later) as published
15 * at http://copyleft-next.org/.
19 * This module provides an interface to the proc sysctl interfaces. This
20 * driver requires CONFIG_PROC_SYSCTL. It will not normally be loaded by the
21 * system unless explicitly requested by name. You can also build this driver
25 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27 #include <linux/init.h>
28 #include <linux/list.h>
29 #include <linux/module.h>
30 #include <linux/printk.h>
32 #include <linux/miscdevice.h>
33 #include <linux/slab.h>
34 #include <linux/uaccess.h>
35 #include <linux/async.h>
36 #include <linux/delay.h>
37 #include <linux/vmalloc.h>
40 static int i_one_hundred = 100;
42 struct test_sysctl_data {
49 unsigned int uint_0001;
53 #define SYSCTL_TEST_BITMAP_SIZE 65536
54 unsigned long *bitmap_0001;
57 static struct test_sysctl_data test_data = {
70 .string_0001 = "(none)",
73 /* These are all under /proc/sys/debug/test_sysctl/ */
74 static struct ctl_table test_table[] = {
76 .procname = "int_0001",
77 .data = &test_data.int_0001,
78 .maxlen = sizeof(int),
80 .proc_handler = proc_dointvec_minmax,
82 .extra2 = &i_one_hundred,
85 .procname = "int_0002",
86 .data = &test_data.int_0002,
87 .maxlen = sizeof(int),
89 .proc_handler = proc_dointvec,
92 .procname = "int_0003",
93 .data = &test_data.int_0003,
94 .maxlen = sizeof(test_data.int_0003),
96 .proc_handler = proc_dointvec,
99 .procname = "boot_int",
100 .data = &test_data.boot_int,
101 .maxlen = sizeof(test_data.boot_int),
103 .proc_handler = proc_dointvec,
104 .extra1 = SYSCTL_ZERO,
105 .extra2 = SYSCTL_ONE,
108 .procname = "uint_0001",
109 .data = &test_data.uint_0001,
110 .maxlen = sizeof(unsigned int),
112 .proc_handler = proc_douintvec,
115 .procname = "string_0001",
116 .data = &test_data.string_0001,
117 .maxlen = sizeof(test_data.string_0001),
119 .proc_handler = proc_dostring,
122 .procname = "bitmap_0001",
123 .data = &test_data.bitmap_0001,
124 .maxlen = SYSCTL_TEST_BITMAP_SIZE,
126 .proc_handler = proc_do_large_bitmap,
131 static struct ctl_table test_sysctl_table[] = {
133 .procname = "test_sysctl",
141 static struct ctl_table test_sysctl_root_table[] = {
146 .child = test_sysctl_table,
151 static struct ctl_table_header *test_sysctl_header;
153 static int __init test_sysctl_init(void)
155 test_data.bitmap_0001 = kzalloc(SYSCTL_TEST_BITMAP_SIZE/8, GFP_KERNEL);
156 if (!test_data.bitmap_0001)
158 test_sysctl_header = register_sysctl_table(test_sysctl_root_table);
159 if (!test_sysctl_header) {
160 kfree(test_data.bitmap_0001);
165 module_init(test_sysctl_init);
167 static void __exit test_sysctl_exit(void)
169 kfree(test_data.bitmap_0001);
170 if (test_sysctl_header)
171 unregister_sysctl_table(test_sysctl_header);
174 module_exit(test_sysctl_exit);
176 MODULE_AUTHOR("Luis R. Rodriguez <mcgrof@kernel.org>");
177 MODULE_LICENSE("GPL");