blob: 14f33ab6c583ced8362e94b008893fdc7d075794 [file] [log] [blame]
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001/*
2 * core.c - Kernel Live Patching Core
3 *
4 * Copyright (C) 2014 Seth Jennings <sjenning@redhat.com>
5 * Copyright (C) 2014 SUSE
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
19 */
20
21#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
23#include <linux/module.h>
24#include <linux/kernel.h>
25#include <linux/mutex.h>
26#include <linux/slab.h>
Seth Jenningsb700e7f2014-12-16 11:58:19 -060027#include <linux/list.h>
28#include <linux/kallsyms.h>
29#include <linux/livepatch.h>
Jessica Yu425595a2016-03-22 20:03:18 -040030#include <linux/elf.h>
31#include <linux/moduleloader.h>
Josh Poimboeuf3ec24772017-03-06 11:20:29 -060032#include <linux/completion.h>
Josh Poimboeufb56b36e2015-12-03 16:33:26 -060033#include <asm/cacheflush.h>
Jiri Kosina10517422017-03-08 14:27:05 +010034#include "core.h"
Josh Poimboeufc349cdca2017-02-13 19:42:37 -060035#include "patch.h"
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -060036#include "transition.h"
Seth Jenningsb700e7f2014-12-16 11:58:19 -060037
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -060038/*
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -060039 * klp_mutex is a coarse lock which serializes access to klp data. All
40 * accesses to klp-related variables and structures must have mutex protection,
41 * except within the following functions which carefully avoid the need for it:
42 *
43 * - klp_ftrace_handler()
44 * - klp_update_patch_state()
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -060045 */
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -060046DEFINE_MUTEX(klp_mutex);
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -060047
Petr Mladek958ef1e2019-01-09 13:43:23 +010048/*
49 * Actively used patches: enabled or in transition. Note that replaced
50 * or disabled patches are not listed even though the related kernel
51 * module still can be loaded.
52 */
Petr Mladek68007282019-01-09 13:43:22 +010053LIST_HEAD(klp_patches);
Seth Jenningsb700e7f2014-12-16 11:58:19 -060054
55static struct kobject *klp_root_kobj;
56
57static bool klp_is_module(struct klp_object *obj)
58{
59 return obj->name;
60}
61
Seth Jenningsb700e7f2014-12-16 11:58:19 -060062/* sets obj->mod if object is not vmlinux and module is found */
63static void klp_find_object_module(struct klp_object *obj)
64{
Petr Mladek8cb2c2d2015-03-12 12:55:13 +010065 struct module *mod;
66
Seth Jenningsb700e7f2014-12-16 11:58:19 -060067 if (!klp_is_module(obj))
68 return;
69
70 mutex_lock(&module_mutex);
71 /*
Petr Mladek8cb2c2d2015-03-12 12:55:13 +010072 * We do not want to block removal of patched modules and therefore
73 * we do not take a reference here. The patches are removed by
Jessica Yu7e545d62016-03-16 20:55:39 -040074 * klp_module_going() instead.
Seth Jenningsb700e7f2014-12-16 11:58:19 -060075 */
Petr Mladek8cb2c2d2015-03-12 12:55:13 +010076 mod = find_module(obj->name);
77 /*
Jessica Yu7e545d62016-03-16 20:55:39 -040078 * Do not mess work of klp_module_coming() and klp_module_going().
79 * Note that the patch might still be needed before klp_module_going()
Petr Mladek8cb2c2d2015-03-12 12:55:13 +010080 * is called. Module functions can be called even in the GOING state
81 * until mod->exit() finishes. This is especially important for
82 * patches that modify semantic of the functions.
83 */
84 if (mod && mod->klp_alive)
85 obj->mod = mod;
86
Seth Jenningsb700e7f2014-12-16 11:58:19 -060087 mutex_unlock(&module_mutex);
88}
89
Seth Jenningsb700e7f2014-12-16 11:58:19 -060090static bool klp_initialized(void)
91{
Nicholas Mc Guiree76ff062015-05-11 07:52:29 +020092 return !!klp_root_kobj;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060093}
94
Jason Barone1452b62019-01-09 13:43:25 +010095static struct klp_func *klp_find_func(struct klp_object *obj,
96 struct klp_func *old_func)
97{
98 struct klp_func *func;
99
100 klp_for_each_func(obj, func) {
101 if ((strcmp(old_func->old_name, func->old_name) == 0) &&
102 (old_func->old_sympos == func->old_sympos)) {
103 return func;
104 }
105 }
106
107 return NULL;
108}
109
110static struct klp_object *klp_find_object(struct klp_patch *patch,
111 struct klp_object *old_obj)
112{
113 struct klp_object *obj;
114
115 klp_for_each_object(patch, obj) {
116 if (klp_is_module(old_obj)) {
117 if (klp_is_module(obj) &&
118 strcmp(old_obj->name, obj->name) == 0) {
119 return obj;
120 }
121 } else if (!klp_is_module(obj)) {
122 return obj;
123 }
124 }
125
126 return NULL;
127}
128
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600129struct klp_find_arg {
130 const char *objname;
131 const char *name;
132 unsigned long addr;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600133 unsigned long count;
Chris J Argesb2b018e2015-12-01 20:40:54 -0600134 unsigned long pos;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600135};
136
137static int klp_find_callback(void *data, const char *name,
138 struct module *mod, unsigned long addr)
139{
140 struct klp_find_arg *args = data;
141
142 if ((mod && !args->objname) || (!mod && args->objname))
143 return 0;
144
145 if (strcmp(args->name, name))
146 return 0;
147
148 if (args->objname && strcmp(args->objname, mod->name))
149 return 0;
150
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600151 args->addr = addr;
152 args->count++;
153
Chris J Argesb2b018e2015-12-01 20:40:54 -0600154 /*
155 * Finish the search when the symbol is found for the desired position
156 * or the position is not defined for a non-unique symbol.
157 */
158 if ((args->pos && (args->count == args->pos)) ||
159 (!args->pos && (args->count > 1)))
160 return 1;
161
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600162 return 0;
163}
164
165static int klp_find_object_symbol(const char *objname, const char *name,
Chris J Argesb2b018e2015-12-01 20:40:54 -0600166 unsigned long sympos, unsigned long *addr)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600167{
168 struct klp_find_arg args = {
169 .objname = objname,
170 .name = name,
171 .addr = 0,
Chris J Argesb2b018e2015-12-01 20:40:54 -0600172 .count = 0,
173 .pos = sympos,
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600174 };
175
Miroslav Benes9a1bd632015-06-01 17:48:37 +0200176 mutex_lock(&module_mutex);
Zhou Chengming72f04b52017-03-28 21:10:35 +0800177 if (objname)
178 module_kallsyms_on_each_symbol(klp_find_callback, &args);
179 else
180 kallsyms_on_each_symbol(klp_find_callback, &args);
Miroslav Benes9a1bd632015-06-01 17:48:37 +0200181 mutex_unlock(&module_mutex);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600182
Chris J Argesb2b018e2015-12-01 20:40:54 -0600183 /*
184 * Ensure an address was found. If sympos is 0, ensure symbol is unique;
185 * otherwise ensure the symbol position count matches sympos.
186 */
187 if (args.addr == 0)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600188 pr_err("symbol '%s' not found in symbol table\n", name);
Chris J Argesb2b018e2015-12-01 20:40:54 -0600189 else if (args.count > 1 && sympos == 0) {
Petr Mladekf995b5f2016-03-09 15:20:59 +0100190 pr_err("unresolvable ambiguity for symbol '%s' in object '%s'\n",
191 name, objname);
Chris J Argesb2b018e2015-12-01 20:40:54 -0600192 } else if (sympos != args.count && sympos > 0) {
193 pr_err("symbol position %lu for symbol '%s' in object '%s' not found\n",
194 sympos, name, objname ? objname : "vmlinux");
195 } else {
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600196 *addr = args.addr;
197 return 0;
198 }
199
200 *addr = 0;
201 return -EINVAL;
202}
203
Jessica Yu425595a2016-03-22 20:03:18 -0400204static int klp_resolve_symbols(Elf_Shdr *relasec, struct module *pmod)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600205{
Jessica Yu425595a2016-03-22 20:03:18 -0400206 int i, cnt, vmlinux, ret;
207 char objname[MODULE_NAME_LEN];
208 char symname[KSYM_NAME_LEN];
209 char *strtab = pmod->core_kallsyms.strtab;
210 Elf_Rela *relas;
211 Elf_Sym *sym;
212 unsigned long sympos, addr;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600213
Chris J Argesb2b018e2015-12-01 20:40:54 -0600214 /*
Jessica Yu425595a2016-03-22 20:03:18 -0400215 * Since the field widths for objname and symname in the sscanf()
216 * call are hard-coded and correspond to MODULE_NAME_LEN and
217 * KSYM_NAME_LEN respectively, we must make sure that MODULE_NAME_LEN
218 * and KSYM_NAME_LEN have the values we expect them to have.
219 *
220 * Because the value of MODULE_NAME_LEN can differ among architectures,
221 * we use the smallest/strictest upper bound possible (56, based on
222 * the current definition of MODULE_NAME_LEN) to prevent overflows.
Chris J Argesb2b018e2015-12-01 20:40:54 -0600223 */
Jessica Yu425595a2016-03-22 20:03:18 -0400224 BUILD_BUG_ON(MODULE_NAME_LEN < 56 || KSYM_NAME_LEN != 128);
225
226 relas = (Elf_Rela *) relasec->sh_addr;
227 /* For each rela in this klp relocation section */
228 for (i = 0; i < relasec->sh_size / sizeof(Elf_Rela); i++) {
229 sym = pmod->core_kallsyms.symtab + ELF_R_SYM(relas[i].r_info);
230 if (sym->st_shndx != SHN_LIVEPATCH) {
Josh Poimboeuf77f8f392017-04-13 17:59:15 -0500231 pr_err("symbol %s is not marked as a livepatch symbol\n",
Jessica Yu425595a2016-03-22 20:03:18 -0400232 strtab + sym->st_name);
233 return -EINVAL;
234 }
235
236 /* Format: .klp.sym.objname.symname,sympos */
237 cnt = sscanf(strtab + sym->st_name,
238 ".klp.sym.%55[^.].%127[^,],%lu",
239 objname, symname, &sympos);
240 if (cnt != 3) {
Josh Poimboeuf77f8f392017-04-13 17:59:15 -0500241 pr_err("symbol %s has an incorrectly formatted name\n",
Jessica Yu425595a2016-03-22 20:03:18 -0400242 strtab + sym->st_name);
243 return -EINVAL;
244 }
245
246 /* klp_find_object_symbol() treats a NULL objname as vmlinux */
247 vmlinux = !strcmp(objname, "vmlinux");
248 ret = klp_find_object_symbol(vmlinux ? NULL : objname,
249 symname, sympos, &addr);
250 if (ret)
251 return ret;
252
253 sym->st_value = addr;
254 }
255
256 return 0;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600257}
258
259static int klp_write_object_relocations(struct module *pmod,
260 struct klp_object *obj)
261{
Jessica Yu425595a2016-03-22 20:03:18 -0400262 int i, cnt, ret = 0;
263 const char *objname, *secname;
264 char sec_objname[MODULE_NAME_LEN];
265 Elf_Shdr *sec;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600266
267 if (WARN_ON(!klp_is_object_loaded(obj)))
268 return -EINVAL;
269
Jessica Yu425595a2016-03-22 20:03:18 -0400270 objname = klp_is_module(obj) ? obj->name : "vmlinux";
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600271
Jessica Yu425595a2016-03-22 20:03:18 -0400272 /* For each klp relocation section */
273 for (i = 1; i < pmod->klp_info->hdr.e_shnum; i++) {
274 sec = pmod->klp_info->sechdrs + i;
275 secname = pmod->klp_info->secstrings + sec->sh_name;
276 if (!(sec->sh_flags & SHF_RELA_LIVEPATCH))
277 continue;
Josh Poimboeufb56b36e2015-12-03 16:33:26 -0600278
Jessica Yu425595a2016-03-22 20:03:18 -0400279 /*
280 * Format: .klp.rela.sec_objname.section_name
281 * See comment in klp_resolve_symbols() for an explanation
282 * of the selected field width value.
283 */
284 cnt = sscanf(secname, ".klp.rela.%55[^.]", sec_objname);
285 if (cnt != 1) {
Josh Poimboeuf77f8f392017-04-13 17:59:15 -0500286 pr_err("section %s has an incorrectly formatted name\n",
Jessica Yu425595a2016-03-22 20:03:18 -0400287 secname);
288 ret = -EINVAL;
289 break;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600290 }
Jessica Yu425595a2016-03-22 20:03:18 -0400291
292 if (strcmp(objname, sec_objname))
293 continue;
294
295 ret = klp_resolve_symbols(sec, pmod);
296 if (ret)
297 break;
298
299 ret = apply_relocate_add(pmod->klp_info->sechdrs,
300 pmod->core_kallsyms.strtab,
301 pmod->klp_info->symndx, i, pmod);
302 if (ret)
303 break;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600304 }
305
Josh Poimboeufb56b36e2015-12-03 16:33:26 -0600306 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600307}
308
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600309/*
310 * Sysfs Interface
311 *
312 * /sys/kernel/livepatch
313 * /sys/kernel/livepatch/<patch>
314 * /sys/kernel/livepatch/<patch>/enabled
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600315 * /sys/kernel/livepatch/<patch>/transition
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100316 * /sys/kernel/livepatch/<patch>/force
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600317 * /sys/kernel/livepatch/<patch>/<object>
Chris J Arges444f9e92015-12-01 20:40:56 -0600318 * /sys/kernel/livepatch/<patch>/<object>/<function,sympos>
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600319 */
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100320static int __klp_disable_patch(struct klp_patch *patch);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600321
322static ssize_t enabled_store(struct kobject *kobj, struct kobj_attribute *attr,
323 const char *buf, size_t count)
324{
325 struct klp_patch *patch;
326 int ret;
Josh Poimboeuf68ae4b22017-02-13 19:42:38 -0600327 bool enabled;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600328
Josh Poimboeuf68ae4b22017-02-13 19:42:38 -0600329 ret = kstrtobool(buf, &enabled);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600330 if (ret)
Josh Poimboeuf68ae4b22017-02-13 19:42:38 -0600331 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600332
333 patch = container_of(kobj, struct klp_patch, kobj);
334
335 mutex_lock(&klp_mutex);
336
Josh Poimboeuf68ae4b22017-02-13 19:42:38 -0600337 if (patch->enabled == enabled) {
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600338 /* already in requested state */
339 ret = -EINVAL;
Petr Mladek958ef1e2019-01-09 13:43:23 +0100340 goto out;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600341 }
342
Petr Mladek958ef1e2019-01-09 13:43:23 +0100343 /*
344 * Allow to reverse a pending transition in both ways. It might be
345 * necessary to complete the transition without forcing and breaking
346 * the system integrity.
347 *
348 * Do not allow to re-enable a disabled patch.
349 */
350 if (patch == klp_transition_patch)
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600351 klp_reverse_transition();
Petr Mladek958ef1e2019-01-09 13:43:23 +0100352 else if (!enabled)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600353 ret = __klp_disable_patch(patch);
Petr Mladek958ef1e2019-01-09 13:43:23 +0100354 else
355 ret = -EINVAL;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600356
Petr Mladek958ef1e2019-01-09 13:43:23 +0100357out:
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600358 mutex_unlock(&klp_mutex);
359
Petr Mladek958ef1e2019-01-09 13:43:23 +0100360 if (ret)
361 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600362 return count;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600363}
364
365static ssize_t enabled_show(struct kobject *kobj,
366 struct kobj_attribute *attr, char *buf)
367{
368 struct klp_patch *patch;
369
370 patch = container_of(kobj, struct klp_patch, kobj);
Josh Poimboeuf0dade9f2017-02-13 19:42:35 -0600371 return snprintf(buf, PAGE_SIZE-1, "%d\n", patch->enabled);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600372}
373
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600374static ssize_t transition_show(struct kobject *kobj,
375 struct kobj_attribute *attr, char *buf)
376{
377 struct klp_patch *patch;
378
379 patch = container_of(kobj, struct klp_patch, kobj);
380 return snprintf(buf, PAGE_SIZE-1, "%d\n",
381 patch == klp_transition_patch);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600382}
383
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100384static ssize_t force_store(struct kobject *kobj, struct kobj_attribute *attr,
385 const char *buf, size_t count)
386{
387 struct klp_patch *patch;
388 int ret;
389 bool val;
390
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100391 ret = kstrtobool(buf, &val);
392 if (ret)
393 return ret;
394
Miroslav Benes88690162017-12-21 14:40:43 +0100395 if (!val)
396 return count;
397
398 mutex_lock(&klp_mutex);
399
400 patch = container_of(kobj, struct klp_patch, kobj);
401 if (patch != klp_transition_patch) {
402 mutex_unlock(&klp_mutex);
403 return -EINVAL;
404 }
405
406 klp_force_transition();
407
408 mutex_unlock(&klp_mutex);
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100409
410 return count;
411}
412
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600413static struct kobj_attribute enabled_kobj_attr = __ATTR_RW(enabled);
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600414static struct kobj_attribute transition_kobj_attr = __ATTR_RO(transition);
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100415static struct kobj_attribute force_kobj_attr = __ATTR_WO(force);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600416static struct attribute *klp_patch_attrs[] = {
417 &enabled_kobj_attr.attr,
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600418 &transition_kobj_attr.attr,
Miroslav Benesc99a2be2017-11-22 11:29:21 +0100419 &force_kobj_attr.attr,
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600420 NULL
421};
422
Jason Barone1452b62019-01-09 13:43:25 +0100423static void klp_free_object_dynamic(struct klp_object *obj)
424{
425 kfree(obj->name);
426 kfree(obj);
427}
428
429static struct klp_object *klp_alloc_object_dynamic(const char *name)
430{
431 struct klp_object *obj;
432
433 obj = kzalloc(sizeof(*obj), GFP_KERNEL);
434 if (!obj)
435 return NULL;
436
437 if (name) {
438 obj->name = kstrdup(name, GFP_KERNEL);
439 if (!obj->name) {
440 kfree(obj);
441 return NULL;
442 }
443 }
444
445 INIT_LIST_HEAD(&obj->func_list);
446 obj->dynamic = true;
447
448 return obj;
449}
450
451static void klp_free_func_nop(struct klp_func *func)
452{
453 kfree(func->old_name);
454 kfree(func);
455}
456
457static struct klp_func *klp_alloc_func_nop(struct klp_func *old_func,
458 struct klp_object *obj)
459{
460 struct klp_func *func;
461
462 func = kzalloc(sizeof(*func), GFP_KERNEL);
463 if (!func)
464 return NULL;
465
466 if (old_func->old_name) {
467 func->old_name = kstrdup(old_func->old_name, GFP_KERNEL);
468 if (!func->old_name) {
469 kfree(func);
470 return NULL;
471 }
472 }
473
474 /*
475 * func->new_func is same as func->old_func. These addresses are
476 * set when the object is loaded, see klp_init_object_loaded().
477 */
478 func->old_sympos = old_func->old_sympos;
479 func->nop = true;
480
481 return func;
482}
483
484static int klp_add_object_nops(struct klp_patch *patch,
485 struct klp_object *old_obj)
486{
487 struct klp_object *obj;
488 struct klp_func *func, *old_func;
489
490 obj = klp_find_object(patch, old_obj);
491
492 if (!obj) {
493 obj = klp_alloc_object_dynamic(old_obj->name);
494 if (!obj)
495 return -ENOMEM;
496
497 list_add_tail(&obj->node, &patch->obj_list);
498 }
499
500 klp_for_each_func(old_obj, old_func) {
501 func = klp_find_func(obj, old_func);
502 if (func)
503 continue;
504
505 func = klp_alloc_func_nop(old_func, obj);
506 if (!func)
507 return -ENOMEM;
508
509 list_add_tail(&func->node, &obj->func_list);
510 }
511
512 return 0;
513}
514
515/*
516 * Add 'nop' functions which simply return to the caller to run
517 * the original function. The 'nop' functions are added to a
518 * patch to facilitate a 'replace' mode.
519 */
520static int klp_add_nops(struct klp_patch *patch)
521{
522 struct klp_patch *old_patch;
523 struct klp_object *old_obj;
524
Petr Mladekecba29f2019-02-04 14:56:50 +0100525 klp_for_each_patch(old_patch) {
Jason Barone1452b62019-01-09 13:43:25 +0100526 klp_for_each_object(old_patch, old_obj) {
527 int err;
528
529 err = klp_add_object_nops(patch, old_obj);
530 if (err)
531 return err;
532 }
533 }
534
535 return 0;
536}
537
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600538static void klp_kobj_release_patch(struct kobject *kobj)
539{
Josh Poimboeuf3ec24772017-03-06 11:20:29 -0600540 struct klp_patch *patch;
541
542 patch = container_of(kobj, struct klp_patch, kobj);
543 complete(&patch->finish);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600544}
545
546static struct kobj_type klp_ktype_patch = {
547 .release = klp_kobj_release_patch,
548 .sysfs_ops = &kobj_sysfs_ops,
549 .default_attrs = klp_patch_attrs,
550};
551
Miroslav Benescad706d2015-05-19 12:01:18 +0200552static void klp_kobj_release_object(struct kobject *kobj)
553{
Jason Barone1452b62019-01-09 13:43:25 +0100554 struct klp_object *obj;
555
556 obj = container_of(kobj, struct klp_object, kobj);
557
558 if (obj->dynamic)
559 klp_free_object_dynamic(obj);
Miroslav Benescad706d2015-05-19 12:01:18 +0200560}
561
562static struct kobj_type klp_ktype_object = {
563 .release = klp_kobj_release_object,
564 .sysfs_ops = &kobj_sysfs_ops,
565};
566
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600567static void klp_kobj_release_func(struct kobject *kobj)
568{
Jason Barone1452b62019-01-09 13:43:25 +0100569 struct klp_func *func;
570
571 func = container_of(kobj, struct klp_func, kobj);
572
573 if (func->nop)
574 klp_free_func_nop(func);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600575}
576
577static struct kobj_type klp_ktype_func = {
578 .release = klp_kobj_release_func,
579 .sysfs_ops = &kobj_sysfs_ops,
580};
581
Petr Mladekd697bad2019-01-09 13:43:26 +0100582static void __klp_free_funcs(struct klp_object *obj, bool nops_only)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600583{
Jason Barone1452b62019-01-09 13:43:25 +0100584 struct klp_func *func, *tmp_func;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600585
Jason Barone1452b62019-01-09 13:43:25 +0100586 klp_for_each_func_safe(obj, func, tmp_func) {
Petr Mladekd697bad2019-01-09 13:43:26 +0100587 if (nops_only && !func->nop)
588 continue;
589
590 list_del(&func->node);
591
Petr Mladek0430f782019-01-09 13:43:21 +0100592 /* Might be called from klp_init_patch() error path. */
Jason Barone1452b62019-01-09 13:43:25 +0100593 if (func->kobj_added) {
Petr Mladek0430f782019-01-09 13:43:21 +0100594 kobject_put(&func->kobj);
Jason Barone1452b62019-01-09 13:43:25 +0100595 } else if (func->nop) {
596 klp_free_func_nop(func);
597 }
Petr Mladek0430f782019-01-09 13:43:21 +0100598 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600599}
600
601/* Clean up when a patched object is unloaded */
602static void klp_free_object_loaded(struct klp_object *obj)
603{
604 struct klp_func *func;
605
606 obj->mod = NULL;
607
Jason Barone1452b62019-01-09 13:43:25 +0100608 klp_for_each_func(obj, func) {
Petr Mladek19514912019-01-09 13:43:19 +0100609 func->old_func = NULL;
Jason Barone1452b62019-01-09 13:43:25 +0100610
611 if (func->nop)
612 func->new_func = NULL;
613 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600614}
615
Petr Mladekd697bad2019-01-09 13:43:26 +0100616static void __klp_free_objects(struct klp_patch *patch, bool nops_only)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600617{
Jason Barone1452b62019-01-09 13:43:25 +0100618 struct klp_object *obj, *tmp_obj;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600619
Jason Barone1452b62019-01-09 13:43:25 +0100620 klp_for_each_object_safe(patch, obj, tmp_obj) {
Petr Mladekd697bad2019-01-09 13:43:26 +0100621 __klp_free_funcs(obj, nops_only);
622
623 if (nops_only && !obj->dynamic)
624 continue;
625
626 list_del(&obj->node);
Petr Mladek0430f782019-01-09 13:43:21 +0100627
628 /* Might be called from klp_init_patch() error path. */
Jason Barone1452b62019-01-09 13:43:25 +0100629 if (obj->kobj_added) {
Petr Mladek0430f782019-01-09 13:43:21 +0100630 kobject_put(&obj->kobj);
Jason Barone1452b62019-01-09 13:43:25 +0100631 } else if (obj->dynamic) {
632 klp_free_object_dynamic(obj);
633 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600634 }
635}
636
Petr Mladekd697bad2019-01-09 13:43:26 +0100637static void klp_free_objects(struct klp_patch *patch)
638{
639 __klp_free_objects(patch, false);
640}
641
642static void klp_free_objects_dynamic(struct klp_patch *patch)
643{
644 __klp_free_objects(patch, true);
645}
646
Petr Mladek0430f782019-01-09 13:43:21 +0100647/*
648 * This function implements the free operations that can be called safely
649 * under klp_mutex.
650 *
651 * The operation must be completed by calling klp_free_patch_finish()
652 * outside klp_mutex.
653 */
Petr Mladek958ef1e2019-01-09 13:43:23 +0100654void klp_free_patch_start(struct klp_patch *patch)
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600655{
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600656 if (!list_empty(&patch->list))
657 list_del(&patch->list);
Petr Mladek0430f782019-01-09 13:43:21 +0100658
659 klp_free_objects(patch);
660}
661
662/*
663 * This function implements the free part that must be called outside
664 * klp_mutex.
665 *
666 * It must be called after klp_free_patch_start(). And it has to be
667 * the last function accessing the livepatch structures when the patch
668 * gets disabled.
669 */
670static void klp_free_patch_finish(struct klp_patch *patch)
671{
672 /*
673 * Avoid deadlock with enabled_store() sysfs callback by
674 * calling this outside klp_mutex. It is safe because
675 * this is called when the patch gets disabled and it
676 * cannot get enabled again.
677 */
678 if (patch->kobj_added) {
679 kobject_put(&patch->kobj);
680 wait_for_completion(&patch->finish);
681 }
Petr Mladek958ef1e2019-01-09 13:43:23 +0100682
683 /* Put the module after the last access to struct klp_patch. */
684 if (!patch->forced)
685 module_put(patch->mod);
686}
687
688/*
689 * The livepatch might be freed from sysfs interface created by the patch.
690 * This work allows to wait until the interface is destroyed in a separate
691 * context.
692 */
693static void klp_free_patch_work_fn(struct work_struct *work)
694{
695 struct klp_patch *patch =
696 container_of(work, struct klp_patch, free_work);
697
698 klp_free_patch_finish(patch);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600699}
700
701static int klp_init_func(struct klp_object *obj, struct klp_func *func)
702{
Petr Mladek0430f782019-01-09 13:43:21 +0100703 int ret;
704
Jason Barone1452b62019-01-09 13:43:25 +0100705 if (!func->old_name)
706 return -EINVAL;
707
708 /*
709 * NOPs get the address later. The patched module must be loaded,
710 * see klp_init_object_loaded().
711 */
712 if (!func->new_func && !func->nop)
Miroslav Benesf09d9082016-04-28 16:34:08 +0200713 return -EINVAL;
714
Kamalesh Babulal6e9df952018-07-20 15:16:42 +0530715 if (strlen(func->old_name) >= KSYM_NAME_LEN)
716 return -EINVAL;
717
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -0600718 INIT_LIST_HEAD(&func->stack_node);
Josh Poimboeuf0dade9f2017-02-13 19:42:35 -0600719 func->patched = false;
Josh Poimboeufd83a7cb2017-02-13 19:42:40 -0600720 func->transition = false;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600721
Chris J Arges444f9e92015-12-01 20:40:56 -0600722 /* The format for the sysfs directory is <function,sympos> where sympos
723 * is the nth occurrence of this symbol in kallsyms for the patched
724 * object. If the user selects 0 for old_sympos, then 1 will be used
725 * since a unique symbol will be the first occurrence.
726 */
Petr Mladek0430f782019-01-09 13:43:21 +0100727 ret = kobject_init_and_add(&func->kobj, &klp_ktype_func,
728 &obj->kobj, "%s,%lu", func->old_name,
729 func->old_sympos ? func->old_sympos : 1);
730 if (!ret)
731 func->kobj_added = true;
732
733 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600734}
735
Jessica Yu255e7322016-08-17 20:58:28 -0400736/* Arches may override this to finish any remaining arch-specific tasks */
737void __weak arch_klp_init_object_loaded(struct klp_patch *patch,
738 struct klp_object *obj)
739{
740}
741
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600742/* parts of the initialization that is done only when the object is loaded */
743static int klp_init_object_loaded(struct klp_patch *patch,
744 struct klp_object *obj)
745{
746 struct klp_func *func;
747 int ret;
748
Jessica Yu255e7322016-08-17 20:58:28 -0400749 module_disable_ro(patch->mod);
Jessica Yu425595a2016-03-22 20:03:18 -0400750 ret = klp_write_object_relocations(patch->mod, obj);
Jessica Yu255e7322016-08-17 20:58:28 -0400751 if (ret) {
752 module_enable_ro(patch->mod, true);
Jessica Yu425595a2016-03-22 20:03:18 -0400753 return ret;
Jessica Yu255e7322016-08-17 20:58:28 -0400754 }
755
756 arch_klp_init_object_loaded(patch, obj);
757 module_enable_ro(patch->mod, true);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600758
Jiri Slaby8cdd0432015-05-19 12:01:19 +0200759 klp_for_each_func(obj, func) {
Chris J Argesb2b018e2015-12-01 20:40:54 -0600760 ret = klp_find_object_symbol(obj->name, func->old_name,
761 func->old_sympos,
Petr Mladek19514912019-01-09 13:43:19 +0100762 (unsigned long *)&func->old_func);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600763 if (ret)
764 return ret;
Josh Poimboeuff5e547f2017-02-13 19:42:39 -0600765
Petr Mladek19514912019-01-09 13:43:19 +0100766 ret = kallsyms_lookup_size_offset((unsigned long)func->old_func,
Josh Poimboeuff5e547f2017-02-13 19:42:39 -0600767 &func->old_size, NULL);
768 if (!ret) {
769 pr_err("kallsyms size lookup failed for '%s'\n",
770 func->old_name);
771 return -ENOENT;
772 }
773
Jason Barone1452b62019-01-09 13:43:25 +0100774 if (func->nop)
775 func->new_func = func->old_func;
776
Josh Poimboeuff5e547f2017-02-13 19:42:39 -0600777 ret = kallsyms_lookup_size_offset((unsigned long)func->new_func,
778 &func->new_size, NULL);
779 if (!ret) {
780 pr_err("kallsyms size lookup failed for '%s' replacement\n",
781 func->old_name);
782 return -ENOENT;
783 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600784 }
785
786 return 0;
787}
788
789static int klp_init_object(struct klp_patch *patch, struct klp_object *obj)
790{
791 struct klp_func *func;
792 int ret;
793 const char *name;
794
Kamalesh Babulal6e9df952018-07-20 15:16:42 +0530795 if (klp_is_module(obj) && strlen(obj->name) >= MODULE_NAME_LEN)
796 return -EINVAL;
797
Josh Poimboeuf0dade9f2017-02-13 19:42:35 -0600798 obj->patched = false;
Petr Mladek8cb2c2d2015-03-12 12:55:13 +0100799 obj->mod = NULL;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600800
801 klp_find_object_module(obj);
802
803 name = klp_is_module(obj) ? obj->name : "vmlinux";
Miroslav Benescad706d2015-05-19 12:01:18 +0200804 ret = kobject_init_and_add(&obj->kobj, &klp_ktype_object,
805 &patch->kobj, "%s", name);
806 if (ret)
807 return ret;
Petr Mladek0430f782019-01-09 13:43:21 +0100808 obj->kobj_added = true;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600809
Jiri Slaby8cdd0432015-05-19 12:01:19 +0200810 klp_for_each_func(obj, func) {
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600811 ret = klp_init_func(obj, func);
812 if (ret)
Petr Mladek0430f782019-01-09 13:43:21 +0100813 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600814 }
815
Petr Mladek0430f782019-01-09 13:43:21 +0100816 if (klp_is_object_loaded(obj))
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600817 ret = klp_init_object_loaded(patch, obj);
Petr Mladek0430f782019-01-09 13:43:21 +0100818
819 return ret;
820}
821
822static int klp_init_patch_early(struct klp_patch *patch)
823{
824 struct klp_object *obj;
825 struct klp_func *func;
826
827 if (!patch->objs)
828 return -EINVAL;
829
830 INIT_LIST_HEAD(&patch->list);
Jason Baron20e55022019-01-09 13:43:24 +0100831 INIT_LIST_HEAD(&patch->obj_list);
Petr Mladek0430f782019-01-09 13:43:21 +0100832 patch->kobj_added = false;
833 patch->enabled = false;
Petr Mladek68007282019-01-09 13:43:22 +0100834 patch->forced = false;
Petr Mladek958ef1e2019-01-09 13:43:23 +0100835 INIT_WORK(&patch->free_work, klp_free_patch_work_fn);
Petr Mladek0430f782019-01-09 13:43:21 +0100836 init_completion(&patch->finish);
837
Jason Baron20e55022019-01-09 13:43:24 +0100838 klp_for_each_object_static(patch, obj) {
Petr Mladek0430f782019-01-09 13:43:21 +0100839 if (!obj->funcs)
840 return -EINVAL;
841
Jason Baron20e55022019-01-09 13:43:24 +0100842 INIT_LIST_HEAD(&obj->func_list);
Petr Mladek0430f782019-01-09 13:43:21 +0100843 obj->kobj_added = false;
Jason Baron20e55022019-01-09 13:43:24 +0100844 list_add_tail(&obj->node, &patch->obj_list);
Petr Mladek0430f782019-01-09 13:43:21 +0100845
Jason Baron20e55022019-01-09 13:43:24 +0100846 klp_for_each_func_static(obj, func) {
Petr Mladek0430f782019-01-09 13:43:21 +0100847 func->kobj_added = false;
Jason Baron20e55022019-01-09 13:43:24 +0100848 list_add_tail(&func->node, &obj->func_list);
849 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600850 }
851
Petr Mladek958ef1e2019-01-09 13:43:23 +0100852 if (!try_module_get(patch->mod))
853 return -ENODEV;
854
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600855 return 0;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600856}
857
858static int klp_init_patch(struct klp_patch *patch)
859{
860 struct klp_object *obj;
861 int ret;
862
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600863 ret = kobject_init_and_add(&patch->kobj, &klp_ktype_patch,
Jiri Kosinae0b561e2015-02-15 10:03:20 +0100864 klp_root_kobj, "%s", patch->mod->name);
Petr Mladek958ef1e2019-01-09 13:43:23 +0100865 if (ret)
Josh Poimboeuf3ec24772017-03-06 11:20:29 -0600866 return ret;
Petr Mladek0430f782019-01-09 13:43:21 +0100867 patch->kobj_added = true;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600868
Jason Barone1452b62019-01-09 13:43:25 +0100869 if (patch->replace) {
870 ret = klp_add_nops(patch);
871 if (ret)
872 return ret;
873 }
874
Jiri Slaby8cdd0432015-05-19 12:01:19 +0200875 klp_for_each_object(patch, obj) {
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600876 ret = klp_init_object(patch, obj);
877 if (ret)
Petr Mladek958ef1e2019-01-09 13:43:23 +0100878 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600879 }
880
Josh Poimboeuf99590ba2015-01-09 14:03:04 -0600881 list_add_tail(&patch->list, &klp_patches);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600882
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600883 return 0;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600884}
885
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100886static int __klp_disable_patch(struct klp_patch *patch)
887{
888 struct klp_object *obj;
889
890 if (WARN_ON(!patch->enabled))
891 return -EINVAL;
892
893 if (klp_transition_patch)
894 return -EBUSY;
895
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100896 klp_init_transition(patch, KLP_UNPATCHED);
897
898 klp_for_each_object(patch, obj)
899 if (obj->patched)
900 klp_pre_unpatch_callback(obj);
901
902 /*
903 * Enforce the order of the func->transition writes in
904 * klp_init_transition() and the TIF_PATCH_PENDING writes in
905 * klp_start_transition(). In the rare case where klp_ftrace_handler()
906 * is called shortly after klp_update_patch_state() switches the task,
907 * this ensures the handler sees that func->transition is set.
908 */
909 smp_wmb();
910
911 klp_start_transition();
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100912 patch->enabled = false;
Petr Mladek958ef1e2019-01-09 13:43:23 +0100913 klp_try_complete_transition();
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100914
915 return 0;
916}
917
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100918static int __klp_enable_patch(struct klp_patch *patch)
919{
920 struct klp_object *obj;
921 int ret;
922
923 if (klp_transition_patch)
924 return -EBUSY;
925
926 if (WARN_ON(patch->enabled))
927 return -EINVAL;
928
Petr Mladek958ef1e2019-01-09 13:43:23 +0100929 if (!patch->kobj_added)
930 return -EINVAL;
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100931
932 pr_notice("enabling patch '%s'\n", patch->mod->name);
933
934 klp_init_transition(patch, KLP_PATCHED);
935
936 /*
937 * Enforce the order of the func->transition writes in
938 * klp_init_transition() and the ops->func_stack writes in
939 * klp_patch_object(), so that klp_ftrace_handler() will see the
940 * func->transition updates before the handler is registered and the
941 * new funcs become visible to the handler.
942 */
943 smp_wmb();
944
945 klp_for_each_object(patch, obj) {
946 if (!klp_is_object_loaded(obj))
947 continue;
948
949 ret = klp_pre_patch_callback(obj);
950 if (ret) {
951 pr_warn("pre-patch callback failed for object '%s'\n",
952 klp_is_module(obj) ? obj->name : "vmlinux");
953 goto err;
954 }
955
956 ret = klp_patch_object(obj);
957 if (ret) {
958 pr_warn("failed to patch object '%s'\n",
959 klp_is_module(obj) ? obj->name : "vmlinux");
960 goto err;
961 }
962 }
963
964 klp_start_transition();
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100965 patch->enabled = true;
Petr Mladek958ef1e2019-01-09 13:43:23 +0100966 klp_try_complete_transition();
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100967
968 return 0;
969err:
970 pr_warn("failed to enable patch '%s'\n", patch->mod->name);
971
972 klp_cancel_transition();
973 return ret;
974}
975
976/**
Petr Mladek958ef1e2019-01-09 13:43:23 +0100977 * klp_enable_patch() - enable the livepatch
978 * @patch: patch to be enabled
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100979 *
Petr Mladek958ef1e2019-01-09 13:43:23 +0100980 * Initializes the data structure associated with the patch, creates the sysfs
981 * interface, performs the needed symbol lookups and code relocations,
982 * registers the patched functions with ftrace.
983 *
984 * This function is supposed to be called from the livepatch module_init()
985 * callback.
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100986 *
987 * Return: 0 on success, otherwise error
988 */
989int klp_enable_patch(struct klp_patch *patch)
990{
991 int ret;
992
Petr Mladek958ef1e2019-01-09 13:43:23 +0100993 if (!patch || !patch->mod)
994 return -EINVAL;
Petr Mladek26c3e98e2019-01-09 13:43:20 +0100995
Petr Mladek958ef1e2019-01-09 13:43:23 +0100996 if (!is_livepatch_module(patch->mod)) {
997 pr_err("module %s is not marked as a livepatch module\n",
998 patch->mod->name);
999 return -EINVAL;
Petr Mladek26c3e98e2019-01-09 13:43:20 +01001000 }
1001
Petr Mladek958ef1e2019-01-09 13:43:23 +01001002 if (!klp_initialized())
1003 return -ENODEV;
1004
1005 if (!klp_have_reliable_stack()) {
Petr Mladek31adf232019-04-24 10:55:48 +02001006 pr_warn("This architecture doesn't have support for the livepatch consistency model.\n");
1007 pr_warn("The livepatch transition may never complete.\n");
Petr Mladek958ef1e2019-01-09 13:43:23 +01001008 }
1009
Petr Mladek958ef1e2019-01-09 13:43:23 +01001010 mutex_lock(&klp_mutex);
1011
1012 ret = klp_init_patch_early(patch);
1013 if (ret) {
1014 mutex_unlock(&klp_mutex);
1015 return ret;
1016 }
1017
1018 ret = klp_init_patch(patch);
1019 if (ret)
1020 goto err;
1021
Petr Mladek26c3e98e2019-01-09 13:43:20 +01001022 ret = __klp_enable_patch(patch);
Petr Mladek958ef1e2019-01-09 13:43:23 +01001023 if (ret)
1024 goto err;
1025
1026 mutex_unlock(&klp_mutex);
1027
1028 return 0;
Petr Mladek26c3e98e2019-01-09 13:43:20 +01001029
1030err:
Petr Mladek958ef1e2019-01-09 13:43:23 +01001031 klp_free_patch_start(patch);
1032
Petr Mladek26c3e98e2019-01-09 13:43:20 +01001033 mutex_unlock(&klp_mutex);
Petr Mladek958ef1e2019-01-09 13:43:23 +01001034
1035 klp_free_patch_finish(patch);
1036
Petr Mladek26c3e98e2019-01-09 13:43:20 +01001037 return ret;
1038}
1039EXPORT_SYMBOL_GPL(klp_enable_patch);
1040
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001041/*
Jason Barone1452b62019-01-09 13:43:25 +01001042 * This function removes replaced patches.
1043 *
1044 * We could be pretty aggressive here. It is called in the situation where
1045 * these structures are no longer accessible. All functions are redirected
1046 * by the klp_transition_patch. They use either a new code or they are in
1047 * the original code because of the special nop function patches.
1048 *
1049 * The only exception is when the transition was forced. In this case,
1050 * klp_ftrace_handler() might still see the replaced patch on the stack.
1051 * Fortunately, it is carefully designed to work with removed functions
1052 * thanks to RCU. We only have to keep the patches on the system. Also
1053 * this is handled transparently by patch->module_put.
1054 */
1055void klp_discard_replaced_patches(struct klp_patch *new_patch)
1056{
1057 struct klp_patch *old_patch, *tmp_patch;
1058
Petr Mladekecba29f2019-02-04 14:56:50 +01001059 klp_for_each_patch_safe(old_patch, tmp_patch) {
Jason Barone1452b62019-01-09 13:43:25 +01001060 if (old_patch == new_patch)
1061 return;
1062
1063 old_patch->enabled = false;
1064 klp_unpatch_objects(old_patch);
1065 klp_free_patch_start(old_patch);
1066 schedule_work(&old_patch->free_work);
1067 }
1068}
1069
1070/*
Petr Mladekd697bad2019-01-09 13:43:26 +01001071 * This function removes the dynamically allocated 'nop' functions.
1072 *
1073 * We could be pretty aggressive. NOPs do not change the existing
1074 * behavior except for adding unnecessary delay by the ftrace handler.
1075 *
1076 * It is safe even when the transition was forced. The ftrace handler
1077 * will see a valid ops->func_stack entry thanks to RCU.
1078 *
1079 * We could even free the NOPs structures. They must be the last entry
1080 * in ops->func_stack. Therefore unregister_ftrace_function() is called.
1081 * It does the same as klp_synchronize_transition() to make sure that
1082 * nobody is inside the ftrace handler once the operation finishes.
1083 *
1084 * IMPORTANT: It must be called right after removing the replaced patches!
1085 */
1086void klp_discard_nops(struct klp_patch *new_patch)
1087{
1088 klp_unpatch_objects_dynamic(klp_transition_patch);
1089 klp_free_objects_dynamic(klp_transition_patch);
1090}
1091
1092/*
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001093 * Remove parts of patches that touch a given kernel module. The list of
1094 * patches processed might be limited. When limit is NULL, all patches
1095 * will be handled.
1096 */
1097static void klp_cleanup_module_patches_limited(struct module *mod,
1098 struct klp_patch *limit)
1099{
1100 struct klp_patch *patch;
1101 struct klp_object *obj;
1102
Petr Mladekecba29f2019-02-04 14:56:50 +01001103 klp_for_each_patch(patch) {
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001104 if (patch == limit)
1105 break;
1106
1107 klp_for_each_object(patch, obj) {
1108 if (!klp_is_module(obj) || strcmp(obj->name, mod->name))
1109 continue;
1110
Petr Mladeka087cdd2019-02-04 14:56:53 +01001111 if (patch != klp_transition_patch)
1112 klp_pre_unpatch_callback(obj);
Jiri Kosinafc41efc182017-11-15 10:53:24 +01001113
Petr Mladeka087cdd2019-02-04 14:56:53 +01001114 pr_notice("reverting patch '%s' on unloading module '%s'\n",
1115 patch->mod->name, obj->mod->name);
1116 klp_unpatch_object(obj);
Jiri Kosinafc41efc182017-11-15 10:53:24 +01001117
Petr Mladeka087cdd2019-02-04 14:56:53 +01001118 klp_post_unpatch_callback(obj);
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001119
1120 klp_free_object_loaded(obj);
1121 break;
1122 }
1123 }
1124}
1125
Jessica Yu7e545d62016-03-16 20:55:39 -04001126int klp_module_coming(struct module *mod)
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001127{
Minfei Huang36e505c2015-05-15 10:22:48 +08001128 int ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001129 struct klp_patch *patch;
1130 struct klp_object *obj;
1131
Jessica Yu7e545d62016-03-16 20:55:39 -04001132 if (WARN_ON(mod->state != MODULE_STATE_COMING))
1133 return -EINVAL;
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001134
1135 mutex_lock(&klp_mutex);
Petr Mladek8cb2c2d2015-03-12 12:55:13 +01001136 /*
Jessica Yu7e545d62016-03-16 20:55:39 -04001137 * Each module has to know that klp_module_coming()
1138 * has been called. We never know what module will
1139 * get patched by a new patch.
Petr Mladek8cb2c2d2015-03-12 12:55:13 +01001140 */
Jessica Yu7e545d62016-03-16 20:55:39 -04001141 mod->klp_alive = true;
Petr Mladek8cb2c2d2015-03-12 12:55:13 +01001142
Petr Mladekecba29f2019-02-04 14:56:50 +01001143 klp_for_each_patch(patch) {
Jiri Slaby8cdd0432015-05-19 12:01:19 +02001144 klp_for_each_object(patch, obj) {
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001145 if (!klp_is_module(obj) || strcmp(obj->name, mod->name))
1146 continue;
1147
Jessica Yu7e545d62016-03-16 20:55:39 -04001148 obj->mod = mod;
1149
1150 ret = klp_init_object_loaded(patch, obj);
1151 if (ret) {
1152 pr_warn("failed to initialize patch '%s' for module '%s' (%d)\n",
1153 patch->mod->name, obj->mod->name, ret);
1154 goto err;
1155 }
1156
Jessica Yu7e545d62016-03-16 20:55:39 -04001157 pr_notice("applying patch '%s' to loading module '%s'\n",
1158 patch->mod->name, obj->mod->name);
1159
Joe Lawrence93862e32017-10-13 15:08:41 -04001160 ret = klp_pre_patch_callback(obj);
1161 if (ret) {
1162 pr_warn("pre-patch callback failed for object '%s'\n",
1163 obj->name);
1164 goto err;
1165 }
1166
Josh Poimboeuf0dade9f2017-02-13 19:42:35 -06001167 ret = klp_patch_object(obj);
Jessica Yu7e545d62016-03-16 20:55:39 -04001168 if (ret) {
1169 pr_warn("failed to apply patch '%s' to module '%s' (%d)\n",
1170 patch->mod->name, obj->mod->name, ret);
Joe Lawrence93862e32017-10-13 15:08:41 -04001171
Petr Mladek5aaf1ab2017-10-20 16:56:50 +02001172 klp_post_unpatch_callback(obj);
Jessica Yu7e545d62016-03-16 20:55:39 -04001173 goto err;
1174 }
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001175
Joe Lawrence93862e32017-10-13 15:08:41 -04001176 if (patch != klp_transition_patch)
1177 klp_post_patch_callback(obj);
1178
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001179 break;
1180 }
1181 }
1182
1183 mutex_unlock(&klp_mutex);
1184
1185 return 0;
Jessica Yu7e545d62016-03-16 20:55:39 -04001186
1187err:
1188 /*
1189 * If a patch is unsuccessfully applied, return
1190 * error to the module loader.
1191 */
1192 pr_warn("patch '%s' failed for module '%s', refusing to load module '%s'\n",
1193 patch->mod->name, obj->mod->name, obj->mod->name);
1194 mod->klp_alive = false;
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001195 klp_cleanup_module_patches_limited(mod, patch);
Jessica Yu7e545d62016-03-16 20:55:39 -04001196 mutex_unlock(&klp_mutex);
1197
1198 return ret;
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001199}
1200
Jessica Yu7e545d62016-03-16 20:55:39 -04001201void klp_module_going(struct module *mod)
1202{
Jessica Yu7e545d62016-03-16 20:55:39 -04001203 if (WARN_ON(mod->state != MODULE_STATE_GOING &&
1204 mod->state != MODULE_STATE_COMING))
1205 return;
1206
1207 mutex_lock(&klp_mutex);
1208 /*
1209 * Each module has to know that klp_module_going()
1210 * has been called. We never know what module will
1211 * get patched by a new patch.
1212 */
1213 mod->klp_alive = false;
1214
Joe Lawrenceef8daf82017-10-02 11:56:48 -04001215 klp_cleanup_module_patches_limited(mod, NULL);
Jessica Yu7e545d62016-03-16 20:55:39 -04001216
1217 mutex_unlock(&klp_mutex);
1218}
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001219
Minfei Huang26029d82015-05-22 22:26:29 +08001220static int __init klp_init(void)
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001221{
1222 int ret;
1223
Jiri Kosinab9dfe0b2015-01-09 10:53:21 +01001224 ret = klp_check_compiler_support();
1225 if (ret) {
1226 pr_info("Your compiler is too old; turning off.\n");
1227 return -EINVAL;
1228 }
1229
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001230 klp_root_kobj = kobject_create_and_add("livepatch", kernel_kobj);
Jessica Yu7e545d62016-03-16 20:55:39 -04001231 if (!klp_root_kobj)
1232 return -ENOMEM;
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001233
1234 return 0;
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001235}
1236
1237module_init(klp_init);