~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/selftests/livepatch/test_modules/test_klp_state2.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 // Copyright (C) 2019 SUSE
  3 
  4 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  5 
  6 #include <linux/slab.h>
  7 #include <linux/module.h>
  8 #include <linux/kernel.h>
  9 #include <linux/printk.h>
 10 #include <linux/livepatch.h>
 11 
 12 #define CONSOLE_LOGLEVEL_STATE 1
 13 /* Version 2 supports migration. */
 14 #define CONSOLE_LOGLEVEL_STATE_VERSION 2
 15 
 16 static const char *const module_state[] = {
 17         [MODULE_STATE_LIVE]     = "[MODULE_STATE_LIVE] Normal state",
 18         [MODULE_STATE_COMING]   = "[MODULE_STATE_COMING] Full formed, running module_init",
 19         [MODULE_STATE_GOING]    = "[MODULE_STATE_GOING] Going away",
 20         [MODULE_STATE_UNFORMED] = "[MODULE_STATE_UNFORMED] Still setting it up",
 21 };
 22 
 23 static void callback_info(const char *callback, struct klp_object *obj)
 24 {
 25         if (obj->mod)
 26                 pr_info("%s: %s -> %s\n", callback, obj->mod->name,
 27                         module_state[obj->mod->state]);
 28         else
 29                 pr_info("%s: vmlinux\n", callback);
 30 }
 31 
 32 static struct klp_patch patch;
 33 
 34 static int allocate_loglevel_state(void)
 35 {
 36         struct klp_state *loglevel_state, *prev_loglevel_state;
 37 
 38         prev_loglevel_state = klp_get_prev_state(CONSOLE_LOGLEVEL_STATE);
 39         if (prev_loglevel_state) {
 40                 pr_info("%s: space to store console_loglevel already allocated\n",
 41                 __func__);
 42                 return 0;
 43         }
 44 
 45         loglevel_state = klp_get_state(&patch, CONSOLE_LOGLEVEL_STATE);
 46         if (!loglevel_state)
 47                 return -EINVAL;
 48 
 49         loglevel_state->data = kzalloc(sizeof(console_loglevel), GFP_KERNEL);
 50         if (!loglevel_state->data)
 51                 return -ENOMEM;
 52 
 53         pr_info("%s: allocating space to store console_loglevel\n",
 54                 __func__);
 55         return 0;
 56 }
 57 
 58 static void fix_console_loglevel(void)
 59 {
 60         struct klp_state *loglevel_state, *prev_loglevel_state;
 61 
 62         loglevel_state = klp_get_state(&patch, CONSOLE_LOGLEVEL_STATE);
 63         if (!loglevel_state)
 64                 return;
 65 
 66         prev_loglevel_state = klp_get_prev_state(CONSOLE_LOGLEVEL_STATE);
 67         if (prev_loglevel_state) {
 68                 pr_info("%s: taking over the console_loglevel change\n",
 69                 __func__);
 70                 loglevel_state->data = prev_loglevel_state->data;
 71                 return;
 72         }
 73 
 74         pr_info("%s: fixing console_loglevel\n", __func__);
 75         *(int *)loglevel_state->data = console_loglevel;
 76         console_loglevel = CONSOLE_LOGLEVEL_MOTORMOUTH;
 77 }
 78 
 79 static void restore_console_loglevel(void)
 80 {
 81         struct klp_state *loglevel_state, *prev_loglevel_state;
 82 
 83         prev_loglevel_state = klp_get_prev_state(CONSOLE_LOGLEVEL_STATE);
 84         if (prev_loglevel_state) {
 85                 pr_info("%s: passing the console_loglevel change back to the old livepatch\n",
 86                 __func__);
 87                 return;
 88         }
 89 
 90         loglevel_state = klp_get_state(&patch, CONSOLE_LOGLEVEL_STATE);
 91         if (!loglevel_state)
 92                 return;
 93 
 94         pr_info("%s: restoring console_loglevel\n", __func__);
 95         console_loglevel = *(int *)loglevel_state->data;
 96 }
 97 
 98 static void free_loglevel_state(void)
 99 {
100         struct klp_state *loglevel_state, *prev_loglevel_state;
101 
102         prev_loglevel_state = klp_get_prev_state(CONSOLE_LOGLEVEL_STATE);
103         if (prev_loglevel_state) {
104                 pr_info("%s: keeping space to store console_loglevel\n",
105                 __func__);
106                 return;
107         }
108 
109         loglevel_state = klp_get_state(&patch, CONSOLE_LOGLEVEL_STATE);
110         if (!loglevel_state)
111                 return;
112 
113         pr_info("%s: freeing space for the stored console_loglevel\n",
114                 __func__);
115         kfree(loglevel_state->data);
116 }
117 
118 /* Executed on object patching (ie, patch enablement) */
119 static int pre_patch_callback(struct klp_object *obj)
120 {
121         callback_info(__func__, obj);
122         return allocate_loglevel_state();
123 }
124 
125 /* Executed on object unpatching (ie, patch disablement) */
126 static void post_patch_callback(struct klp_object *obj)
127 {
128         callback_info(__func__, obj);
129         fix_console_loglevel();
130 }
131 
132 /* Executed on object unpatching (ie, patch disablement) */
133 static void pre_unpatch_callback(struct klp_object *obj)
134 {
135         callback_info(__func__, obj);
136         restore_console_loglevel();
137 }
138 
139 /* Executed on object unpatching (ie, patch disablement) */
140 static void post_unpatch_callback(struct klp_object *obj)
141 {
142         callback_info(__func__, obj);
143         free_loglevel_state();
144 }
145 
146 static struct klp_func no_funcs[] = {
147         {}
148 };
149 
150 static struct klp_object objs[] = {
151         {
152                 .name = NULL,   /* vmlinux */
153                 .funcs = no_funcs,
154                 .callbacks = {
155                         .pre_patch = pre_patch_callback,
156                         .post_patch = post_patch_callback,
157                         .pre_unpatch = pre_unpatch_callback,
158                         .post_unpatch = post_unpatch_callback,
159                 },
160         }, { }
161 };
162 
163 static struct klp_state states[] = {
164         {
165                 .id = CONSOLE_LOGLEVEL_STATE,
166                 .version = CONSOLE_LOGLEVEL_STATE_VERSION,
167         }, { }
168 };
169 
170 static struct klp_patch patch = {
171         .mod = THIS_MODULE,
172         .objs = objs,
173         .states = states,
174         .replace = true,
175 };
176 
177 static int test_klp_callbacks_demo_init(void)
178 {
179         return klp_enable_patch(&patch);
180 }
181 
182 static void test_klp_callbacks_demo_exit(void)
183 {
184 }
185 
186 module_init(test_klp_callbacks_demo_init);
187 module_exit(test_klp_callbacks_demo_exit);
188 MODULE_LICENSE("GPL");
189 MODULE_INFO(livepatch, "Y");
190 MODULE_AUTHOR("Petr Mladek <pmladek@suse.com>");
191 MODULE_DESCRIPTION("Livepatch test: system state modification");
192 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php