@@ -106,9 +106,11 @@ struct klp_callbacks {
* struct klp_object - kernel object structure for live patching
* @name: module name (or NULL for vmlinux)
* @funcs: function entries for functions to be patched in the object
+ * @funcs_stack: function entries for functions to be stack checked
* @callbacks: functions to be executed pre/post (un)patching
* @kobj: kobject for sysfs resources
* @func_list: dynamic list of the function entries
+ * @func_stack_list: dynamic list of the function entries for stack checking
* @node: list node for klp_patch obj_list
* @mod: kernel module associated with the patched object
* (NULL for vmlinux)
@@ -119,11 +121,13 @@ struct klp_object {
/* external */
const char *name;
struct klp_func *funcs;
+ struct klp_func *funcs_stack;
struct klp_callbacks callbacks;
/* internal */
struct kobject kobj;
struct list_head func_list;
+ struct list_head func_stack_list;
struct list_head node;
struct module *mod;
bool dynamic;
@@ -187,12 +191,19 @@ struct klp_patch {
func->old_name || func->new_func || func->old_sympos; \
func++)
+#define klp_for_each_func_stack_static(obj, func) \
+ for (func = obj->funcs_stack; \
+ func && (func->old_name || func->old_sympos); func++)
+
#define klp_for_each_func_safe(obj, func, tmp_func) \
list_for_each_entry_safe(func, tmp_func, &obj->func_list, node)
#define klp_for_each_func(obj, func) \
list_for_each_entry(func, &obj->func_list, node)
+#define klp_for_each_func_stack(obj, func) \
+ list_for_each_entry(func, &obj->func_stack_list, node)
+
int klp_enable_patch(struct klp_patch *);
/* Called from the module loader during module coming/going states */
@@ -825,6 +825,12 @@ static int klp_init_object_loaded(struct klp_patch *patch,
}
}
+ klp_for_each_func_stack(obj, func) {
+ ret = klp_init_old_func(obj, func);
+ if (ret)
+ return ret;
+ }
+
return 0;
}
@@ -853,6 +859,11 @@ static int klp_init_object(struct klp_patch *patch, struct klp_object *obj)
return ret;
}
+ klp_for_each_func_stack(obj, func) {
+ if (strlen(func->old_name) >= KSYM_NAME_LEN)
+ return -EINVAL;
+ }
+
if (klp_is_object_loaded(obj))
ret = klp_init_object_loaded(patch, obj);
@@ -870,6 +881,7 @@ static void klp_init_object_early(struct klp_patch *patch,
struct klp_object *obj)
{
INIT_LIST_HEAD(&obj->func_list);
+ INIT_LIST_HEAD(&obj->func_stack_list);
kobject_init(&obj->kobj, &klp_ktype_object);
list_add_tail(&obj->node, &patch->obj_list);
}
@@ -899,6 +911,10 @@ static int klp_init_patch_early(struct klp_patch *patch)
klp_for_each_func_static(obj, func) {
klp_init_func_early(obj, func);
}
+
+ klp_for_each_func_stack_static(obj, func) {
+ list_add_tail(&func->node, &obj->func_stack_list);
+ }
}
if (!try_module_get(patch->mod))
@@ -200,7 +200,10 @@ static int klp_check_stack_func(struct klp_func *func, unsigned long *entries,
for (i = 0; i < nr_entries; i++) {
address = entries[i];
- if (klp_target_state == KLP_UNPATCHED) {
+ if (!func->new_func) {
+ func_addr = (unsigned long)func->old_func;
+ func_size = func->old_size;
+ } else if (klp_target_state == KLP_UNPATCHED) {
/*
* Check for the to-be-unpatched function
* (the func itself).
@@ -256,14 +259,22 @@ static int klp_check_stack(struct task_struct *task, const char **oldname)
continue;
klp_for_each_func(obj, func) {
ret = klp_check_stack_func(func, entries, nr_entries);
- if (ret) {
- *oldname = func->old_name;
- return -EADDRINUSE;
- }
+ if (ret)
+ goto err;
+ }
+
+ klp_for_each_func_stack(obj, func) {
+ ret = klp_check_stack_func(func, entries, nr_entries);
+ if (ret)
+ goto err;
}
}
return 0;
+
+err:
+ *oldname = func->old_name;
+ return -EADDRINUSE;
}
static int klp_check_and_switch_task(struct task_struct *task, void *arg)
livepatch's consistency model requires that no live patched function must be found on any task's stack during a transition process after a live patch is applied. It is achieved by walking through stacks of all blocked tasks. The user might also want to define more functions to search for without them being patched at all. It may either help with preparing a live patch, which would otherwise require additional touches to achieve the consistency, or it can be used to overcome deficiencies the stack checking inherently has. For example, GCC may optimize a function so that a part of it is moved to a different section and the function would jump to it. This child function would not be found on a stack in this case, but it may be important to search for it so that, again, the consistency is achieved. Allow the user to specify such functions on klp_object level. Signed-off-by: Miroslav Benes <mbenes@suse.cz> --- include/linux/livepatch.h | 11 +++++++++++ kernel/livepatch/core.c | 16 ++++++++++++++++ kernel/livepatch/transition.c | 21 ++++++++++++++++----- 3 files changed, 43 insertions(+), 5 deletions(-)