forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test_sysctl: add dedicated proc sysctl test driver
The existing tools/testing/selftests/sysctl/ tests include two test cases, but these use existing production kernel sysctl interfaces. We want to expand test coverage but we can't just be looking for random safe production values to poke at, that's just insane! Instead just dedicate a test driver for debugging purposes and port the existing scripts to use it. This will make it easier for further tests to be added. Subsequent patches will extend our test coverage for sysctl. The stress test driver uses a new license (GPL on Linux, copyleft-next outside of Linux). Linus was fine with this [0] and later due to Ted's and Alans's request ironed out an "or" language clause to use [1] which is already present upstream. [0] https://lkml.kernel.org/r/CA+55aFyhxcvD+q7tp+-yrSFDKfR0mOHgyEAe=f_94aKLsOu0Og@mail.gmail.com [1] https://lkml.kernel.org/r/[email protected] Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Luis R. Rodriguez <[email protected]> Acked-by: Kees Cook <[email protected]> Cc: "Eric W. Biederman" <[email protected]> Cc: Shuah Khan <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
- Loading branch information
Showing
6 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/* | ||
* proc sysctl test driver | ||
* | ||
* Copyright (C) 2017 Luis R. Rodriguez <[email protected]> | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License as published by the Free | ||
* Software Foundation; either version 2 of the License, or at your option any | ||
* later version; or, when distributed separately from the Linux kernel or | ||
* when incorporated into other software packages, subject to the following | ||
* license: | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of copyleft-next (version 0.3.1 or later) as published | ||
* at http://copyleft-next.org/. | ||
*/ | ||
|
||
/* | ||
* This module provides an interface to the the proc sysctl interfaces. This | ||
* driver requires CONFIG_PROC_SYSCTL. It will not normally be loaded by the | ||
* system unless explicitly requested by name. You can also build this driver | ||
* into your kernel. | ||
*/ | ||
|
||
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
|
||
#include <linux/init.h> | ||
#include <linux/list.h> | ||
#include <linux/module.h> | ||
#include <linux/printk.h> | ||
#include <linux/fs.h> | ||
#include <linux/miscdevice.h> | ||
#include <linux/slab.h> | ||
#include <linux/uaccess.h> | ||
#include <linux/async.h> | ||
#include <linux/delay.h> | ||
#include <linux/vmalloc.h> | ||
|
||
static int i_zero; | ||
static int i_one_hundred = 100; | ||
|
||
struct test_sysctl_data { | ||
int int_0001; | ||
char string_0001[65]; | ||
}; | ||
|
||
static struct test_sysctl_data test_data = { | ||
.int_0001 = 60, | ||
.string_0001 = "(none)", | ||
}; | ||
|
||
/* These are all under /proc/sys/debug/test_sysctl/ */ | ||
static struct ctl_table test_table[] = { | ||
{ | ||
.procname = "int_0001", | ||
.data = &test_data.int_0001, | ||
.maxlen = sizeof(int), | ||
.mode = 0644, | ||
.proc_handler = proc_dointvec_minmax, | ||
.extra1 = &i_zero, | ||
.extra2 = &i_one_hundred, | ||
}, | ||
{ | ||
.procname = "string_0001", | ||
.data = &test_data.string_0001, | ||
.maxlen = sizeof(test_data.string_0001), | ||
.mode = 0644, | ||
.proc_handler = proc_dostring, | ||
}, | ||
{ } | ||
}; | ||
|
||
static struct ctl_table test_sysctl_table[] = { | ||
{ | ||
.procname = "test_sysctl", | ||
.maxlen = 0, | ||
.mode = 0555, | ||
.child = test_table, | ||
}, | ||
{ } | ||
}; | ||
|
||
static struct ctl_table test_sysctl_root_table[] = { | ||
{ | ||
.procname = "debug", | ||
.maxlen = 0, | ||
.mode = 0555, | ||
.child = test_sysctl_table, | ||
}, | ||
{ } | ||
}; | ||
|
||
static struct ctl_table_header *test_sysctl_header; | ||
|
||
static int __init test_sysctl_init(void) | ||
{ | ||
test_sysctl_header = register_sysctl_table(test_sysctl_root_table); | ||
if (!test_sysctl_header) | ||
return -ENOMEM; | ||
return 0; | ||
} | ||
late_initcall(test_sysctl_init); | ||
|
||
static void __exit test_sysctl_exit(void) | ||
{ | ||
if (test_sysctl_header) | ||
unregister_sysctl_table(test_sysctl_header); | ||
} | ||
|
||
module_exit(test_sysctl_exit); | ||
|
||
MODULE_AUTHOR("Luis R. Rodriguez <[email protected]>"); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CONFIG_TEST_SYSCTL=y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters