lkml.org 
[lkml]   [2021]   [Dec]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH v2 1/2] livepatch: Allow user to specify functions to search for on a stack
Date
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 adding more functions just to
achieve the consistency, or it can be used to overcome deficiencies the
stack checking inherently has.

Consider the following example, in which GCC may optimize function
parent() so that a part of it is moved to a different section
(child.cold()) and parent() jumps to it. If both parent() and child2()
are to patching targets, things can break easily if a task sleeps in
child.cold() and new patched child2() changes ABI. parent() is not found
on the stack, child.cold() jumps back to parent() eventually and new
child2() is called.

parent(): /* to-be-patched */
...
jmp child.cold() /* cannot be patched */
...
schedule()
...
jmp <back>
...
call child2() /* to-be-patched */
...

Allow the user to specify such functions (parent() in the example) using
stack_only member of struct klp_func.

The functions are still shown in sysfs directory. Nop objects are not
created for them.

Signed-off-by: Miroslav Benes <mbenes@suse.cz>
---
include/linux/livepatch.h | 3 +++
kernel/livepatch/core.c | 28 +++++++++++++++++++++++++++-
kernel/livepatch/patch.c | 6 ++++++
kernel/livepatch/transition.c | 5 ++++-
4 files changed, 40 insertions(+), 2 deletions(-)

diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h
index 2614247a9781..d09f89fe7921 100644
--- a/include/linux/livepatch.h
+++ b/include/linux/livepatch.h
@@ -29,6 +29,8 @@
* @new_func: pointer to the patched function code
* @old_sympos: a hint indicating which symbol position the old function
* can be found (optional)
+ * @stack_only: only search for the function (specified by old_name) on any
+ * task's stack
* @old_func: pointer to the function being patched
* @kobj: kobject for sysfs resources
* @node: list node for klp_object func_list
@@ -66,6 +68,7 @@ struct klp_func {
* in kallsyms for the given object is used.
*/
unsigned long old_sympos;
+ bool stack_only;

/* internal */
void *old_func;
diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c
index 335d988bd811..62ff4180dc9b 100644
--- a/kernel/livepatch/core.c
+++ b/kernel/livepatch/core.c
@@ -89,6 +89,10 @@ static struct klp_func *klp_find_func(struct klp_object *obj,
struct klp_func *func;

klp_for_each_func(obj, func) {
+ /* Do not create nop klp_func for stack_only function */
+ if (func->stack_only)
+ return func;
+
if ((strcmp(old_func->old_name, func->old_name) == 0) &&
(old_func->old_sympos == func->old_sympos)) {
return func;
@@ -499,6 +503,17 @@ static struct klp_func *klp_alloc_func_nop(struct klp_func *old_func,
return func;
}

+static bool klp_is_object_stack_only(struct klp_object *old_obj)
+{
+ struct klp_func *old_func;
+
+ klp_for_each_func(old_obj, old_func)
+ if (!old_func->stack_only)
+ return false;
+
+ return true;
+}
+
static int klp_add_object_nops(struct klp_patch *patch,
struct klp_object *old_obj)
{
@@ -508,6 +523,13 @@ static int klp_add_object_nops(struct klp_patch *patch,
obj = klp_find_object(patch, old_obj);

if (!obj) {
+ /*
+ * Do not create nop klp_object for old_obj which contains
+ * stack_only functions only.
+ */
+ if (klp_is_object_stack_only(old_obj))
+ return 0;
+
obj = klp_alloc_object_dynamic(old_obj->name, patch);
if (!obj)
return -ENOMEM;
@@ -723,8 +745,9 @@ static int klp_init_func(struct klp_object *obj, struct klp_func *func)
/*
* NOPs get the address later. The patched module must be loaded,
* see klp_init_object_loaded().
+ * stack_only functions do not get new_func addresses at all.
*/
- if (!func->new_func && !func->nop)
+ if (!func->new_func && !func->nop && !func->stack_only)
return -EINVAL;

if (strlen(func->old_name) >= KSYM_NAME_LEN)
@@ -804,6 +827,9 @@ static int klp_init_object_loaded(struct klp_patch *patch,
if (func->nop)
func->new_func = func->old_func;

+ if (func->stack_only)
+ continue;
+
ret = kallsyms_lookup_size_offset((unsigned long)func->new_func,
&func->new_size, NULL);
if (!ret) {
diff --git a/kernel/livepatch/patch.c b/kernel/livepatch/patch.c
index fe316c021d73..221ed691cc7f 100644
--- a/kernel/livepatch/patch.c
+++ b/kernel/livepatch/patch.c
@@ -250,6 +250,9 @@ static void __klp_unpatch_object(struct klp_object *obj, bool nops_only)
if (nops_only && !func->nop)
continue;

+ if (func->stack_only)
+ continue;
+
if (func->patched)
klp_unpatch_func(func);
}
@@ -273,6 +276,9 @@ int klp_patch_object(struct klp_object *obj)
return -EINVAL;

klp_for_each_func(obj, func) {
+ if (func->stack_only)
+ continue;
+
ret = klp_patch_func(func);
if (ret) {
klp_unpatch_object(obj);
diff --git a/kernel/livepatch/transition.c b/kernel/livepatch/transition.c
index 5683ac0d2566..fa0630fcab1a 100644
--- a/kernel/livepatch/transition.c
+++ b/kernel/livepatch/transition.c
@@ -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->stack_only) {
+ 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).
--
2.34.1
\
 
 \ /
  Last update: 2021-12-10 13:45    [W:1.673 / U:0.052 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site