Linux Audio

Check our new training course

Loading...
v4.6
 
 1/*
 2 * livepatch-sample.c - Kernel Live Patching Sample Module
 3 *
 4 * Copyright (C) 2014 Seth Jennings <sjenning@redhat.com>
 5 *
 6 * This program is free software; you can redistribute it and/or
 7 * modify it under the terms of the GNU General Public License
 8 * as published by the Free Software Foundation; either version 2
 9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 */
19
 
 
20#include <linux/module.h>
21#include <linux/kernel.h>
22#include <linux/livepatch.h>
23
24/*
25 * This (dumb) live patch overrides the function that prints the
26 * kernel boot cmdline when /proc/cmdline is read.
27 *
28 * Example:
29 *
30 * $ cat /proc/cmdline
31 * <your cmdline>
32 *
33 * $ insmod livepatch-sample.ko
34 * $ cat /proc/cmdline
35 * this has been live patched
36 *
37 * $ echo 0 > /sys/kernel/livepatch/livepatch_sample/enabled
38 * $ cat /proc/cmdline
39 * <your cmdline>
40 */
41
42#include <linux/seq_file.h>
43static int livepatch_cmdline_proc_show(struct seq_file *m, void *v)
44{
45	seq_printf(m, "%s\n", "this has been live patched");
46	return 0;
47}
48
49static struct klp_func funcs[] = {
50	{
51		.old_name = "cmdline_proc_show",
52		.new_func = livepatch_cmdline_proc_show,
53	}, { }
54};
55
56static struct klp_object objs[] = {
57	{
58		/* name being NULL means vmlinux */
59		.funcs = funcs,
60	}, { }
61};
62
63static struct klp_patch patch = {
64	.mod = THIS_MODULE,
65	.objs = objs,
66};
67
68static int livepatch_init(void)
69{
70	int ret;
71
72	ret = klp_register_patch(&patch);
73	if (ret)
74		return ret;
75	ret = klp_enable_patch(&patch);
76	if (ret) {
77		WARN_ON(klp_unregister_patch(&patch));
78		return ret;
79	}
80	return 0;
81}
82
83static void livepatch_exit(void)
84{
85	WARN_ON(klp_disable_patch(&patch));
86	WARN_ON(klp_unregister_patch(&patch));
87}
88
89module_init(livepatch_init);
90module_exit(livepatch_exit);
91MODULE_LICENSE("GPL");
v6.13.7
 1// SPDX-License-Identifier: GPL-2.0-or-later
 2/*
 3 * livepatch-sample.c - Kernel Live Patching Sample Module
 4 *
 5 * Copyright (C) 2014 Seth Jennings <sjenning@redhat.com>
 
 
 
 
 
 
 
 
 
 
 
 
 
 6 */
 7
 8#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 9
10#include <linux/module.h>
11#include <linux/kernel.h>
12#include <linux/livepatch.h>
13
14/*
15 * This (dumb) live patch overrides the function that prints the
16 * kernel boot cmdline when /proc/cmdline is read.
17 *
18 * Example:
19 *
20 * $ cat /proc/cmdline
21 * <your cmdline>
22 *
23 * $ insmod livepatch-sample.ko
24 * $ cat /proc/cmdline
25 * this has been live patched
26 *
27 * $ echo 0 > /sys/kernel/livepatch/livepatch_sample/enabled
28 * $ cat /proc/cmdline
29 * <your cmdline>
30 */
31
32#include <linux/seq_file.h>
33static int livepatch_cmdline_proc_show(struct seq_file *m, void *v)
34{
35	seq_printf(m, "%s\n", "this has been live patched");
36	return 0;
37}
38
39static struct klp_func funcs[] = {
40	{
41		.old_name = "cmdline_proc_show",
42		.new_func = livepatch_cmdline_proc_show,
43	}, { }
44};
45
46static struct klp_object objs[] = {
47	{
48		/* name being NULL means vmlinux */
49		.funcs = funcs,
50	}, { }
51};
52
53static struct klp_patch patch = {
54	.mod = THIS_MODULE,
55	.objs = objs,
56};
57
58static int livepatch_init(void)
59{
60	return klp_enable_patch(&patch);
 
 
 
 
 
 
 
 
 
 
61}
62
63static void livepatch_exit(void)
64{
 
 
65}
66
67module_init(livepatch_init);
68module_exit(livepatch_exit);
69MODULE_LICENSE("GPL");
70MODULE_INFO(livepatch, "Y");