]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/livepatch/core.c
Merge branch 'bpf-verifier-lock'
[mirror_ubuntu-jammy-kernel.git] / kernel / livepatch / core.c
CommitLineData
b700e7f0
SJ
1/*
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>
b700e7f0
SJ
27#include <linux/list.h>
28#include <linux/kallsyms.h>
29#include <linux/livepatch.h>
425595a7
JY
30#include <linux/elf.h>
31#include <linux/moduleloader.h>
3ec24776 32#include <linux/completion.h>
b56b36ee 33#include <asm/cacheflush.h>
10517429 34#include "core.h"
c349cdca 35#include "patch.h"
d83a7cb3 36#include "transition.h"
b700e7f0 37
3c33f5b9 38/*
d83a7cb3
JP
39 * 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()
3c33f5b9 45 */
d83a7cb3 46DEFINE_MUTEX(klp_mutex);
3c33f5b9 47
958ef1e3
PM
48/*
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 */
68007289 53LIST_HEAD(klp_patches);
b700e7f0
SJ
54
55static struct kobject *klp_root_kobj;
56
57static bool klp_is_module(struct klp_object *obj)
58{
59 return obj->name;
60}
61
b700e7f0
SJ
62/* sets obj->mod if object is not vmlinux and module is found */
63static void klp_find_object_module(struct klp_object *obj)
64{
8cb2c2dc
PM
65 struct module *mod;
66
b700e7f0
SJ
67 if (!klp_is_module(obj))
68 return;
69
70 mutex_lock(&module_mutex);
71 /*
8cb2c2dc
PM
72 * 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
7e545d6e 74 * klp_module_going() instead.
8cb2c2dc
PM
75 */
76 mod = find_module(obj->name);
77 /*
7e545d6e
JY
78 * 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()
8cb2c2dc
PM
80 * 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.
b700e7f0 83 */
8cb2c2dc
PM
84 if (mod && mod->klp_alive)
85 obj->mod = mod;
86
b700e7f0
SJ
87 mutex_unlock(&module_mutex);
88}
89
b700e7f0
SJ
90static bool klp_initialized(void)
91{
e76ff06a 92 return !!klp_root_kobj;
b700e7f0
SJ
93}
94
e1452b60
JB
95static 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
b700e7f0
SJ
129struct klp_find_arg {
130 const char *objname;
131 const char *name;
132 unsigned long addr;
b700e7f0 133 unsigned long count;
b2b018ef 134 unsigned long pos;
b700e7f0
SJ
135};
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
b700e7f0
SJ
151 args->addr = addr;
152 args->count++;
153
b2b018ef
CA
154 /*
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
b700e7f0
SJ
162 return 0;
163}
164
165static int klp_find_object_symbol(const char *objname, const char *name,
b2b018ef 166 unsigned long sympos, unsigned long *addr)
b700e7f0
SJ
167{
168 struct klp_find_arg args = {
169 .objname = objname,
170 .name = name,
171 .addr = 0,
b2b018ef
CA
172 .count = 0,
173 .pos = sympos,
b700e7f0
SJ
174 };
175
9a1bd63c 176 mutex_lock(&module_mutex);
72f04b50
ZC
177 if (objname)
178 module_kallsyms_on_each_symbol(klp_find_callback, &args);
179 else
180 kallsyms_on_each_symbol(klp_find_callback, &args);
9a1bd63c 181 mutex_unlock(&module_mutex);
b700e7f0 182
b2b018ef
CA
183 /*
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)
b700e7f0 188 pr_err("symbol '%s' not found in symbol table\n", name);
b2b018ef 189 else if (args.count > 1 && sympos == 0) {
f995b5f7
PM
190 pr_err("unresolvable ambiguity for symbol '%s' in object '%s'\n",
191 name, objname);
b2b018ef
CA
192 } 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 {
b700e7f0
SJ
196 *addr = args.addr;
197 return 0;
198 }
199
200 *addr = 0;
201 return -EINVAL;
202}
203
425595a7 204static int klp_resolve_symbols(Elf_Shdr *relasec, struct module *pmod)
b700e7f0 205{
425595a7
JY
206 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;
b700e7f0 213
b2b018ef 214 /*
425595a7
JY
215 * 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.
b2b018ef 223 */
425595a7
JY
224 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) {
77f8f39a 231 pr_err("symbol %s is not marked as a livepatch symbol\n",
425595a7
JY
232 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) {
77f8f39a 241 pr_err("symbol %s has an incorrectly formatted name\n",
425595a7
JY
242 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;
b700e7f0
SJ
257}
258
259static int klp_write_object_relocations(struct module *pmod,
260 struct klp_object *obj)
261{
425595a7
JY
262 int i, cnt, ret = 0;
263 const char *objname, *secname;
264 char sec_objname[MODULE_NAME_LEN];
265 Elf_Shdr *sec;
b700e7f0
SJ
266
267 if (WARN_ON(!klp_is_object_loaded(obj)))
268 return -EINVAL;
269
425595a7 270 objname = klp_is_module(obj) ? obj->name : "vmlinux";
b700e7f0 271
425595a7
JY
272 /* 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;
b56b36ee 278
425595a7
JY
279 /*
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) {
77f8f39a 286 pr_err("section %s has an incorrectly formatted name\n",
425595a7
JY
287 secname);
288 ret = -EINVAL;
289 break;
290 }
b56b36ee 291
425595a7
JY
292 if (strcmp(objname, sec_objname))
293 continue;
b56b36ee 294
425595a7 295 ret = klp_resolve_symbols(sec, pmod);
064c89df 296 if (ret)
425595a7 297 break;
064c89df 298
425595a7
JY
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;
b700e7f0
SJ
304 }
305
b56b36ee 306 return ret;
b700e7f0
SJ
307}
308
b700e7f0
SJ
309/*
310 * Sysfs Interface
311 *
312 * /sys/kernel/livepatch
313 * /sys/kernel/livepatch/<patch>
314 * /sys/kernel/livepatch/<patch>/enabled
d83a7cb3 315 * /sys/kernel/livepatch/<patch>/transition
c99a2be7 316 * /sys/kernel/livepatch/<patch>/force
b700e7f0 317 * /sys/kernel/livepatch/<patch>/<object>
444f9e99 318 * /sys/kernel/livepatch/<patch>/<object>/<function,sympos>
b700e7f0 319 */
26c3e98e 320static int __klp_disable_patch(struct klp_patch *patch);
b700e7f0
SJ
321
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;
68ae4b2b 327 bool enabled;
b700e7f0 328
68ae4b2b 329 ret = kstrtobool(buf, &enabled);
b700e7f0 330 if (ret)
68ae4b2b 331 return ret;
b700e7f0
SJ
332
333 patch = container_of(kobj, struct klp_patch, kobj);
334
335 mutex_lock(&klp_mutex);
336
68ae4b2b 337 if (patch->enabled == enabled) {
b700e7f0
SJ
338 /* already in requested state */
339 ret = -EINVAL;
958ef1e3 340 goto out;
b700e7f0
SJ
341 }
342
958ef1e3
PM
343 /*
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)
d83a7cb3 351 klp_reverse_transition();
958ef1e3 352 else if (!enabled)
b700e7f0 353 ret = __klp_disable_patch(patch);
958ef1e3
PM
354 else
355 ret = -EINVAL;
b700e7f0 356
958ef1e3 357out:
b700e7f0
SJ
358 mutex_unlock(&klp_mutex);
359
958ef1e3
PM
360 if (ret)
361 return ret;
b700e7f0 362 return count;
b700e7f0
SJ
363}
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);
0dade9f3 371 return snprintf(buf, PAGE_SIZE-1, "%d\n", patch->enabled);
b700e7f0
SJ
372}
373
d83a7cb3
JP
374static 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);
b700e7f0
SJ
382}
383
c99a2be7
MB
384static 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
c99a2be7
MB
391 ret = kstrtobool(buf, &val);
392 if (ret)
393 return ret;
394
8869016d
MB
395 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);
c99a2be7
MB
409
410 return count;
411}
412
b700e7f0 413static struct kobj_attribute enabled_kobj_attr = __ATTR_RW(enabled);
d83a7cb3 414static struct kobj_attribute transition_kobj_attr = __ATTR_RO(transition);
c99a2be7 415static struct kobj_attribute force_kobj_attr = __ATTR_WO(force);
b700e7f0
SJ
416static struct attribute *klp_patch_attrs[] = {
417 &enabled_kobj_attr.attr,
d83a7cb3 418 &transition_kobj_attr.attr,
c99a2be7 419 &force_kobj_attr.attr,
b700e7f0
SJ
420 NULL
421};
422
e1452b60
JB
423static 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
ecba29f4 525 klp_for_each_patch(old_patch) {
e1452b60
JB
526 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
b700e7f0
SJ
538static void klp_kobj_release_patch(struct kobject *kobj)
539{
3ec24776
JP
540 struct klp_patch *patch;
541
542 patch = container_of(kobj, struct klp_patch, kobj);
543 complete(&patch->finish);
b700e7f0
SJ
544}
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
cad706df
MB
552static void klp_kobj_release_object(struct kobject *kobj)
553{
e1452b60
JB
554 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);
cad706df
MB
560}
561
562static struct kobj_type klp_ktype_object = {
563 .release = klp_kobj_release_object,
564 .sysfs_ops = &kobj_sysfs_ops,
565};
566
b700e7f0
SJ
567static void klp_kobj_release_func(struct kobject *kobj)
568{
e1452b60
JB
569 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);
b700e7f0
SJ
575}
576
577static struct kobj_type klp_ktype_func = {
578 .release = klp_kobj_release_func,
579 .sysfs_ops = &kobj_sysfs_ops,
580};
581
d697bad5 582static void __klp_free_funcs(struct klp_object *obj, bool nops_only)
b700e7f0 583{
e1452b60 584 struct klp_func *func, *tmp_func;
b700e7f0 585
e1452b60 586 klp_for_each_func_safe(obj, func, tmp_func) {
d697bad5
PM
587 if (nops_only && !func->nop)
588 continue;
589
590 list_del(&func->node);
591
0430f78b 592 /* Might be called from klp_init_patch() error path. */
e1452b60 593 if (func->kobj_added) {
0430f78b 594 kobject_put(&func->kobj);
e1452b60
JB
595 } else if (func->nop) {
596 klp_free_func_nop(func);
597 }
0430f78b 598 }
b700e7f0
SJ
599}
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
e1452b60 608 klp_for_each_func(obj, func) {
19514910 609 func->old_func = NULL;
e1452b60
JB
610
611 if (func->nop)
612 func->new_func = NULL;
613 }
b700e7f0
SJ
614}
615
d697bad5 616static void __klp_free_objects(struct klp_patch *patch, bool nops_only)
b700e7f0 617{
e1452b60 618 struct klp_object *obj, *tmp_obj;
b700e7f0 619
e1452b60 620 klp_for_each_object_safe(patch, obj, tmp_obj) {
d697bad5
PM
621 __klp_free_funcs(obj, nops_only);
622
623 if (nops_only && !obj->dynamic)
624 continue;
625
626 list_del(&obj->node);
0430f78b
PM
627
628 /* Might be called from klp_init_patch() error path. */
e1452b60 629 if (obj->kobj_added) {
0430f78b 630 kobject_put(&obj->kobj);
e1452b60
JB
631 } else if (obj->dynamic) {
632 klp_free_object_dynamic(obj);
633 }
b700e7f0
SJ
634 }
635}
636
d697bad5
PM
637static 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
0430f78b
PM
647/*
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 */
958ef1e3 654void klp_free_patch_start(struct klp_patch *patch)
b700e7f0 655{
b700e7f0
SJ
656 if (!list_empty(&patch->list))
657 list_del(&patch->list);
0430f78b
PM
658
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 }
958ef1e3
PM
682
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);
b700e7f0
SJ
699}
700
701static int klp_init_func(struct klp_object *obj, struct klp_func *func)
702{
0430f78b
PM
703 int ret;
704
e1452b60
JB
705 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)
f09d9086
MB
713 return -EINVAL;
714
6e9df95b
KB
715 if (strlen(func->old_name) >= KSYM_NAME_LEN)
716 return -EINVAL;
717
3c33f5b9 718 INIT_LIST_HEAD(&func->stack_node);
0dade9f3 719 func->patched = false;
d83a7cb3 720 func->transition = false;
b700e7f0 721
444f9e99
CA
722 /* 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 */
0430f78b
PM
727 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;
b700e7f0
SJ
734}
735
255e732c
JY
736/* 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
b700e7f0
SJ
742/* 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
255e732c 749 module_disable_ro(patch->mod);
425595a7 750 ret = klp_write_object_relocations(patch->mod, obj);
255e732c
JY
751 if (ret) {
752 module_enable_ro(patch->mod, true);
425595a7 753 return ret;
255e732c
JY
754 }
755
756 arch_klp_init_object_loaded(patch, obj);
757 module_enable_ro(patch->mod, true);
b700e7f0 758
8cdd043a 759 klp_for_each_func(obj, func) {
b2b018ef
CA
760 ret = klp_find_object_symbol(obj->name, func->old_name,
761 func->old_sympos,
19514910 762 (unsigned long *)&func->old_func);
b700e7f0
SJ
763 if (ret)
764 return ret;
f5e547f4 765
19514910 766 ret = kallsyms_lookup_size_offset((unsigned long)func->old_func,
f5e547f4
JP
767 &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
e1452b60
JB
774 if (func->nop)
775 func->new_func = func->old_func;
776
f5e547f4
JP
777 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 }
b700e7f0
SJ
784 }
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
6e9df95b
KB
795 if (klp_is_module(obj) && strlen(obj->name) >= MODULE_NAME_LEN)
796 return -EINVAL;
797
0dade9f3 798 obj->patched = false;
8cb2c2dc 799 obj->mod = NULL;
b700e7f0
SJ
800
801 klp_find_object_module(obj);
802
803 name = klp_is_module(obj) ? obj->name : "vmlinux";
cad706df
MB
804 ret = kobject_init_and_add(&obj->kobj, &klp_ktype_object,
805 &patch->kobj, "%s", name);
806 if (ret)
807 return ret;
0430f78b 808 obj->kobj_added = true;
b700e7f0 809
8cdd043a 810 klp_for_each_func(obj, func) {
b700e7f0
SJ
811 ret = klp_init_func(obj, func);
812 if (ret)
0430f78b 813 return ret;
b700e7f0
SJ
814 }
815
0430f78b 816 if (klp_is_object_loaded(obj))
b700e7f0 817 ret = klp_init_object_loaded(patch, obj);
b700e7f0 818
b700e7f0
SJ
819 return ret;
820}
821
0430f78b 822static int klp_init_patch_early(struct klp_patch *patch)
b700e7f0
SJ
823{
824 struct klp_object *obj;
0430f78b 825 struct klp_func *func;
b700e7f0
SJ
826
827 if (!patch->objs)
828 return -EINVAL;
829
0430f78b 830 INIT_LIST_HEAD(&patch->list);
20e55025 831 INIT_LIST_HEAD(&patch->obj_list);
0430f78b 832 patch->kobj_added = false;
0dade9f3 833 patch->enabled = false;
68007289 834 patch->forced = false;
958ef1e3 835 INIT_WORK(&patch->free_work, klp_free_patch_work_fn);
3ec24776 836 init_completion(&patch->finish);
b700e7f0 837
20e55025 838 klp_for_each_object_static(patch, obj) {
0430f78b
PM
839 if (!obj->funcs)
840 return -EINVAL;
841
20e55025 842 INIT_LIST_HEAD(&obj->func_list);
0430f78b 843 obj->kobj_added = false;
20e55025 844 list_add_tail(&obj->node, &patch->obj_list);
0430f78b 845
20e55025 846 klp_for_each_func_static(obj, func) {
0430f78b 847 func->kobj_added = false;
20e55025
JB
848 list_add_tail(&func->node, &obj->func_list);
849 }
0430f78b
PM
850 }
851
958ef1e3
PM
852 if (!try_module_get(patch->mod))
853 return -ENODEV;
854
0430f78b
PM
855 return 0;
856}
857
858static int klp_init_patch(struct klp_patch *patch)
859{
860 struct klp_object *obj;
861 int ret;
862
b700e7f0 863 ret = kobject_init_and_add(&patch->kobj, &klp_ktype_patch,
e0b561ee 864 klp_root_kobj, "%s", patch->mod->name);
958ef1e3 865 if (ret)
3ec24776 866 return ret;
0430f78b 867 patch->kobj_added = true;
b700e7f0 868
e1452b60
JB
869 if (patch->replace) {
870 ret = klp_add_nops(patch);
871 if (ret)
872 return ret;
873 }
874
8cdd043a 875 klp_for_each_object(patch, obj) {
b700e7f0
SJ
876 ret = klp_init_object(patch, obj);
877 if (ret)
958ef1e3 878 return ret;
b700e7f0
SJ
879 }
880
99590ba5 881 list_add_tail(&patch->list, &klp_patches);
b700e7f0 882
3ec24776 883 return 0;
b700e7f0 884}
b700e7f0 885
26c3e98e
PM
886static 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
26c3e98e
PM
896 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();
26c3e98e 912 patch->enabled = false;
958ef1e3 913 klp_try_complete_transition();
26c3e98e
PM
914
915 return 0;
916}
917
26c3e98e
PM
918static 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
958ef1e3
PM
929 if (!patch->kobj_added)
930 return -EINVAL;
26c3e98e
PM
931
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();
26c3e98e 965 patch->enabled = true;
958ef1e3 966 klp_try_complete_transition();
26c3e98e
PM
967
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/**
958ef1e3
PM
977 * klp_enable_patch() - enable the livepatch
978 * @patch: patch to be enabled
26c3e98e 979 *
958ef1e3
PM
980 * 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.
26c3e98e
PM
986 *
987 * Return: 0 on success, otherwise error
988 */
989int klp_enable_patch(struct klp_patch *patch)
990{
991 int ret;
992
958ef1e3
PM
993 if (!patch || !patch->mod)
994 return -EINVAL;
995
996 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;
1000 }
1001
1002 if (!klp_initialized())
1003 return -ENODEV;
1004
1005 if (!klp_have_reliable_stack()) {
1006 pr_err("This architecture doesn't have support for the livepatch consistency model.\n");
375bfca3 1007 return -EOPNOTSUPP;
958ef1e3
PM
1008 }
1009
1010
26c3e98e
PM
1011 mutex_lock(&klp_mutex);
1012
958ef1e3
PM
1013 ret = klp_init_patch_early(patch);
1014 if (ret) {
1015 mutex_unlock(&klp_mutex);
1016 return ret;
26c3e98e
PM
1017 }
1018
958ef1e3
PM
1019 ret = klp_init_patch(patch);
1020 if (ret)
1021 goto err;
1022
26c3e98e 1023 ret = __klp_enable_patch(patch);
958ef1e3
PM
1024 if (ret)
1025 goto err;
1026
1027 mutex_unlock(&klp_mutex);
1028
1029 return 0;
26c3e98e
PM
1030
1031err:
958ef1e3
PM
1032 klp_free_patch_start(patch);
1033
26c3e98e 1034 mutex_unlock(&klp_mutex);
958ef1e3
PM
1035
1036 klp_free_patch_finish(patch);
1037
26c3e98e
PM
1038 return ret;
1039}
1040EXPORT_SYMBOL_GPL(klp_enable_patch);
1041
e1452b60
JB
1042/*
1043 * This function removes replaced patches.
1044 *
1045 * We could be pretty aggressive here. It is called in the situation where
1046 * these structures are no longer accessible. All functions are redirected
1047 * by the klp_transition_patch. They use either a new code or they are in
1048 * the original code because of the special nop function patches.
1049 *
1050 * The only exception is when the transition was forced. In this case,
1051 * klp_ftrace_handler() might still see the replaced patch on the stack.
1052 * Fortunately, it is carefully designed to work with removed functions
1053 * thanks to RCU. We only have to keep the patches on the system. Also
1054 * this is handled transparently by patch->module_put.
1055 */
1056void klp_discard_replaced_patches(struct klp_patch *new_patch)
1057{
1058 struct klp_patch *old_patch, *tmp_patch;
1059
ecba29f4 1060 klp_for_each_patch_safe(old_patch, tmp_patch) {
e1452b60
JB
1061 if (old_patch == new_patch)
1062 return;
1063
1064 old_patch->enabled = false;
1065 klp_unpatch_objects(old_patch);
1066 klp_free_patch_start(old_patch);
1067 schedule_work(&old_patch->free_work);
1068 }
1069}
1070
d697bad5
PM
1071/*
1072 * This function removes the dynamically allocated 'nop' functions.
1073 *
1074 * We could be pretty aggressive. NOPs do not change the existing
1075 * behavior except for adding unnecessary delay by the ftrace handler.
1076 *
1077 * It is safe even when the transition was forced. The ftrace handler
1078 * will see a valid ops->func_stack entry thanks to RCU.
1079 *
1080 * We could even free the NOPs structures. They must be the last entry
1081 * in ops->func_stack. Therefore unregister_ftrace_function() is called.
1082 * It does the same as klp_synchronize_transition() to make sure that
1083 * nobody is inside the ftrace handler once the operation finishes.
1084 *
1085 * IMPORTANT: It must be called right after removing the replaced patches!
1086 */
1087void klp_discard_nops(struct klp_patch *new_patch)
1088{
1089 klp_unpatch_objects_dynamic(klp_transition_patch);
1090 klp_free_objects_dynamic(klp_transition_patch);
1091}
1092
ef8daf8e
JL
1093/*
1094 * Remove parts of patches that touch a given kernel module. The list of
1095 * patches processed might be limited. When limit is NULL, all patches
1096 * will be handled.
1097 */
1098static void klp_cleanup_module_patches_limited(struct module *mod,
1099 struct klp_patch *limit)
1100{
1101 struct klp_patch *patch;
1102 struct klp_object *obj;
1103
ecba29f4 1104 klp_for_each_patch(patch) {
ef8daf8e
JL
1105 if (patch == limit)
1106 break;
1107
1108 klp_for_each_object(patch, obj) {
1109 if (!klp_is_module(obj) || strcmp(obj->name, mod->name))
1110 continue;
1111
a087cdd4
PM
1112 if (patch != klp_transition_patch)
1113 klp_pre_unpatch_callback(obj);
fc41efc1 1114
a087cdd4
PM
1115 pr_notice("reverting patch '%s' on unloading module '%s'\n",
1116 patch->mod->name, obj->mod->name);
1117 klp_unpatch_object(obj);
fc41efc1 1118
a087cdd4 1119 klp_post_unpatch_callback(obj);
ef8daf8e
JL
1120
1121 klp_free_object_loaded(obj);
1122 break;
1123 }
1124 }
1125}
1126
7e545d6e 1127int klp_module_coming(struct module *mod)
b700e7f0 1128{
b700e7f0 1129 int ret;
7e545d6e
JY
1130 struct klp_patch *patch;
1131 struct klp_object *obj;
b700e7f0 1132
7e545d6e
JY
1133 if (WARN_ON(mod->state != MODULE_STATE_COMING))
1134 return -EINVAL;
b700e7f0 1135
7e545d6e
JY
1136 mutex_lock(&klp_mutex);
1137 /*
1138 * Each module has to know that klp_module_coming()
1139 * has been called. We never know what module will
1140 * get patched by a new patch.
1141 */
1142 mod->klp_alive = true;
b700e7f0 1143
ecba29f4 1144 klp_for_each_patch(patch) {
7e545d6e
JY
1145 klp_for_each_object(patch, obj) {
1146 if (!klp_is_module(obj) || strcmp(obj->name, mod->name))
1147 continue;
b700e7f0 1148
7e545d6e 1149 obj->mod = mod;
b700e7f0 1150
7e545d6e
JY
1151 ret = klp_init_object_loaded(patch, obj);
1152 if (ret) {
1153 pr_warn("failed to initialize patch '%s' for module '%s' (%d)\n",
1154 patch->mod->name, obj->mod->name, ret);
1155 goto err;
1156 }
b700e7f0 1157
7e545d6e
JY
1158 pr_notice("applying patch '%s' to loading module '%s'\n",
1159 patch->mod->name, obj->mod->name);
1160
93862e38
JL
1161 ret = klp_pre_patch_callback(obj);
1162 if (ret) {
1163 pr_warn("pre-patch callback failed for object '%s'\n",
1164 obj->name);
1165 goto err;
1166 }
1167
0dade9f3 1168 ret = klp_patch_object(obj);
7e545d6e
JY
1169 if (ret) {
1170 pr_warn("failed to apply patch '%s' to module '%s' (%d)\n",
1171 patch->mod->name, obj->mod->name, ret);
93862e38 1172
5aaf1ab5 1173 klp_post_unpatch_callback(obj);
7e545d6e
JY
1174 goto err;
1175 }
1176
93862e38
JL
1177 if (patch != klp_transition_patch)
1178 klp_post_patch_callback(obj);
1179
7e545d6e
JY
1180 break;
1181 }
1182 }
b700e7f0 1183
7e545d6e 1184 mutex_unlock(&klp_mutex);
b700e7f0 1185
7e545d6e 1186 return 0;
b700e7f0 1187
7e545d6e
JY
1188err:
1189 /*
1190 * If a patch is unsuccessfully applied, return
1191 * error to the module loader.
1192 */
1193 pr_warn("patch '%s' failed for module '%s', refusing to load module '%s'\n",
1194 patch->mod->name, obj->mod->name, obj->mod->name);
1195 mod->klp_alive = false;
ef8daf8e 1196 klp_cleanup_module_patches_limited(mod, patch);
7e545d6e
JY
1197 mutex_unlock(&klp_mutex);
1198
1199 return ret;
b700e7f0
SJ
1200}
1201
7e545d6e 1202void klp_module_going(struct module *mod)
b700e7f0 1203{
7e545d6e
JY
1204 if (WARN_ON(mod->state != MODULE_STATE_GOING &&
1205 mod->state != MODULE_STATE_COMING))
1206 return;
b700e7f0
SJ
1207
1208 mutex_lock(&klp_mutex);
8cb2c2dc 1209 /*
7e545d6e
JY
1210 * Each module has to know that klp_module_going()
1211 * has been called. We never know what module will
1212 * get patched by a new patch.
8cb2c2dc 1213 */
7e545d6e 1214 mod->klp_alive = false;
8cb2c2dc 1215
ef8daf8e 1216 klp_cleanup_module_patches_limited(mod, NULL);
b700e7f0
SJ
1217
1218 mutex_unlock(&klp_mutex);
b700e7f0
SJ
1219}
1220
26029d88 1221static int __init klp_init(void)
b700e7f0
SJ
1222{
1223 int ret;
1224
b9dfe0be
JK
1225 ret = klp_check_compiler_support();
1226 if (ret) {
1227 pr_info("Your compiler is too old; turning off.\n");
1228 return -EINVAL;
1229 }
1230
b700e7f0 1231 klp_root_kobj = kobject_create_and_add("livepatch", kernel_kobj);
7e545d6e
JY
1232 if (!klp_root_kobj)
1233 return -ENOMEM;
b700e7f0
SJ
1234
1235 return 0;
b700e7f0
SJ
1236}
1237
1238module_init(klp_init);