blob: c05679701e105b2ca98770f639f1547ed82b15ba [file] [log] [blame]
Seth Jenningsb700e7f2014-12-16 11:58:19 -06001/*
2 * livepatch.h - 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#ifndef _LINUX_LIVEPATCH_H_
22#define _LINUX_LIVEPATCH_H_
23
24#include <linux/module.h>
25#include <linux/ftrace.h>
26
Seth Jenningsb700e7f2014-12-16 11:58:19 -060027#include <asm/livepatch.h>
28
29enum klp_state {
30 KLP_DISABLED,
31 KLP_ENABLED
32};
33
34/**
35 * struct klp_func - function structure for live patching
36 * @old_name: name of the function to be patched
37 * @new_func: pointer to the patched function code
Chris J Argesb2b018e2015-12-01 20:40:54 -060038 * @old_sympos: a hint indicating which symbol position the old function
39 * can be found (optional)
40 * @old_addr: the address of the function being patched
Seth Jenningsb700e7f2014-12-16 11:58:19 -060041 * @kobj: kobject for sysfs resources
Seth Jenningsb700e7f2014-12-16 11:58:19 -060042 * @state: tracks function-level patch application state
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -060043 * @stack_node: list node for klp_ops func_stack list
Seth Jenningsb700e7f2014-12-16 11:58:19 -060044 */
45struct klp_func {
46 /* external */
47 const char *old_name;
48 void *new_func;
49 /*
Chris J Argesb2b018e2015-12-01 20:40:54 -060050 * The old_sympos field is optional and can be used to resolve
51 * duplicate symbol names in livepatch objects. If this field is zero,
52 * it is expected the symbol is unique, otherwise patching fails. If
53 * this value is greater than zero then that occurrence of the symbol
54 * in kallsyms for the given object is used.
Seth Jenningsb700e7f2014-12-16 11:58:19 -060055 */
Chris J Argesb2b018e2015-12-01 20:40:54 -060056 unsigned long old_sympos;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060057
58 /* internal */
Chris J Argesb2b018e2015-12-01 20:40:54 -060059 unsigned long old_addr;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060060 struct kobject kobj;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060061 enum klp_state state;
Josh Poimboeuf3c33f5b2015-01-20 09:26:19 -060062 struct list_head stack_node;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060063};
64
65/**
66 * struct klp_reloc - relocation structure for live patching
67 * @loc: address where the relocation will be written
Chris J Arges064c89d2015-12-01 20:40:55 -060068 * @sympos: position in kallsyms to disambiguate symbols (optional)
Seth Jenningsb700e7f2014-12-16 11:58:19 -060069 * @type: ELF relocation type
70 * @name: name of the referenced symbol (for lookup/verification)
71 * @addend: offset from the referenced symbol
72 * @external: symbol is either exported or within the live patch module itself
73 */
74struct klp_reloc {
75 unsigned long loc;
Chris J Arges064c89d2015-12-01 20:40:55 -060076 unsigned long sympos;
Seth Jenningsb700e7f2014-12-16 11:58:19 -060077 unsigned long type;
78 const char *name;
79 int addend;
80 int external;
81};
82
83/**
84 * struct klp_object - kernel object structure for live patching
85 * @name: module name (or NULL for vmlinux)
86 * @relocs: relocation entries to be applied at load time
87 * @funcs: function entries for functions to be patched in the object
88 * @kobj: kobject for sysfs resources
89 * @mod: kernel module associated with the patched object
90 * (NULL for vmlinux)
91 * @state: tracks object-level patch application state
92 */
93struct klp_object {
94 /* external */
95 const char *name;
96 struct klp_reloc *relocs;
97 struct klp_func *funcs;
98
99 /* internal */
Miroslav Benescad706d2015-05-19 12:01:18 +0200100 struct kobject kobj;
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600101 struct module *mod;
102 enum klp_state state;
103};
104
105/**
106 * struct klp_patch - patch structure for live patching
107 * @mod: reference to the live patch module
108 * @objs: object entries for kernel objects to be patched
109 * @list: list node for global list of registered patches
110 * @kobj: kobject for sysfs resources
111 * @state: tracks patch-level application state
112 */
113struct klp_patch {
114 /* external */
115 struct module *mod;
116 struct klp_object *objs;
117
118 /* internal */
119 struct list_head list;
120 struct kobject kobj;
121 enum klp_state state;
122};
123
Jiri Slaby8cdd0432015-05-19 12:01:19 +0200124#define klp_for_each_object(patch, obj) \
125 for (obj = patch->objs; obj->funcs; obj++)
126
127#define klp_for_each_func(obj, func) \
128 for (func = obj->funcs; func->old_name; func++)
129
Miroslav Benes4421f8f2015-02-18 15:21:07 +0100130int klp_register_patch(struct klp_patch *);
131int klp_unregister_patch(struct klp_patch *);
132int klp_enable_patch(struct klp_patch *);
133int klp_disable_patch(struct klp_patch *);
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600134
Seth Jenningsb700e7f2014-12-16 11:58:19 -0600135#endif /* _LINUX_LIVEPATCH_H_ */