Received: by 2002:ac0:a582:0:0:0:0:0 with SMTP id m2-v6csp3871540imm; Mon, 15 Oct 2018 05:40:43 -0700 (PDT) X-Google-Smtp-Source: ACcGV61HzIqTfLBtSBPDwJIYFmyJ0OvS8KXTvV+UXHgnhcFGbZ9dgSzwWbv8/gY/XjLMI9MjRp+l X-Received: by 2002:a17:902:708b:: with SMTP id z11-v6mr17509953plk.151.1539607243100; Mon, 15 Oct 2018 05:40:43 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1539607243; cv=none; d=google.com; s=arc-20160816; b=FzA/mjVeODvbaQtcFJRhPA9zSlVfku/VfTupak2c3iL+AmK+7M+ygtIivbGUtfWzeo fwCRPsboFJUL8YMEI4SjPPpzrcyA3yDpmrbtfzx65Ittp2Vq7Arxsh7xd4SP9B/MiTI5 VChnovLgHEixct6GF+T08kczJ1ZEX5K5DG5Zrg8eE9PtQxlPIG87zxAkBlcLh18ERk+i 258Lhz7E6c5nbz2Gdkn6RCNlBLaJCJ9oQwbuHnwHJw6zgzufCyGC5UzczwA6qn38MbyX nolcK3hNLTSGO0LqjwRrbk0qD6CD7TDKNRuyrxEmQO7ssWq225XsX4JdTzasc/9z/1gx YBdQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:references:in-reply-to:message-id:date :subject:cc:to:from; bh=YY3rUI4gsMifGvROZhRGpp3PwrS7ZQ9ecWJyU9EkcmY=; b=jqIIHPqOoI9eMQS+CJp0nZrUkjoiyGjwtJltGTkbcLLSay5QitSHGdpeJvvPuMgmk1 X1gXULAA8O/Deq3lXgnMrvVkdX7AX50WH/26A73qnx4bIi+8pLD1rB8O33vxtsYZo/f7 3bS0oUQ6x5nZ0PRmHDO4F2dZ84qa52jQ0mq88xzNgeUo0L6lBfdq53X22mQjAan1jKmZ 3g0dvUtAtaKMe0JgtvS0Hl3++8gvu42EmWQXwDCHcH3pnAIllsnyRBDNr5gFAGhHHTUK NgDaXKYlciprOnZdFWwHK4xHlwY0arH2N1qp+dgH5tyPXMcU2/qt4Ewp+dIk2qc9oZ6N DlYg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id v23-v6si10037297ply.196.2018.10.15.05.40.27; Mon, 15 Oct 2018 05:40:43 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727005AbeJOUX2 (ORCPT + 99 others); Mon, 15 Oct 2018 16:23:28 -0400 Received: from mx2.suse.de ([195.135.220.15]:52416 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726499AbeJOUWo (ORCPT ); Mon, 15 Oct 2018 16:22:44 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 58BEFAE65; Mon, 15 Oct 2018 12:37:35 +0000 (UTC) From: Petr Mladek To: Jiri Kosina , Josh Poimboeuf , Miroslav Benes Cc: Jason Baron , Joe Lawrence , Evgenii Shatokhin , live-patching@vger.kernel.org, linux-kernel@vger.kernel.org, Petr Mladek , Jessica Yu Subject: [PATCH v13 07/12] livepatch: Use lists to manage patches, objects and functions Date: Mon, 15 Oct 2018 14:37:08 +0200 Message-Id: <20181015123713.25868-8-pmladek@suse.com> X-Mailer: git-send-email 2.13.7 In-Reply-To: <20181015123713.25868-1-pmladek@suse.com> References: <20181015123713.25868-1-pmladek@suse.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Jason Baron Currently klp_patch contains a pointer to a statically allocated array of struct klp_object and struct klp_objects contains a pointer to a statically allocated array of klp_func. In order to allow for the dynamic allocation of objects and functions, link klp_patch, klp_object, and klp_func together via linked lists. This allows us to more easily allocate new objects and functions, while having the iterator be a simple linked list walk. The static structures are added to the lists early. It allows to add the dynamically allocated objects before klp_init_object() and klp_init_func() calls. Therefore it reduces the further changes to the code. This patch does not change the existing behavior. Signed-off-by: Jason Baron [pmladek@suse.com: Initialize lists before init calls] Signed-off-by: Petr Mladek Cc: Josh Poimboeuf Cc: Jessica Yu Cc: Jiri Kosina Cc: Miroslav Benes --- include/linux/livepatch.h | 19 +++++++++++++++++-- kernel/livepatch/core.c | 31 ++++++++++++++++++++++++++----- 2 files changed, 43 insertions(+), 7 deletions(-) diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index 17ceb81beedf..e4629309916e 100644 --- a/include/linux/livepatch.h +++ b/include/linux/livepatch.h @@ -24,6 +24,7 @@ #include #include #include +#include #if IS_ENABLED(CONFIG_LIVEPATCH) @@ -42,6 +43,7 @@ * can be found (optional) * @old_addr: the address of the function being patched * @kobj: kobject for sysfs resources + * @node: list node for klp_object func_list * @stack_node: list node for klp_ops func_stack list * @old_size: size of the old function * @new_size: size of the new function @@ -79,6 +81,7 @@ struct klp_func { /* internal */ unsigned long old_addr; struct kobject kobj; + struct list_head node; struct list_head stack_node; unsigned long old_size, new_size; bool patched; @@ -117,6 +120,8 @@ struct klp_callbacks { * @kobj: kobject for sysfs resources * @mod: kernel module associated with the patched object * (NULL for vmlinux) + * @func_list: dynamic list of the function entries + * @node: list node for klp_patch obj_list * @patched: the object's funcs have been added to the klp_ops list */ struct klp_object { @@ -127,6 +132,8 @@ struct klp_object { /* internal */ struct kobject kobj; + struct list_head func_list; + struct list_head node; struct module *mod; bool patched; }; @@ -137,6 +144,7 @@ struct klp_object { * @objs: object entries for kernel objects to be patched * @list: list node for global list of registered patches * @kobj: kobject for sysfs resources + * @obj_list: dynamic list of the object entries * @enabled: the patch is enabled (but operation may be incomplete) * @module_put: module reference taken and patch not forced * @free_work: work freeing the patch that has to be done in another context @@ -150,6 +158,7 @@ struct klp_patch { /* internal */ struct list_head list; struct kobject kobj; + struct list_head obj_list; bool enabled; bool module_put; struct work_struct free_work; @@ -196,14 +205,20 @@ struct klp_patch { } #define KLP_OBJECT_END { } -#define klp_for_each_object(patch, obj) \ +#define klp_for_each_object_static(patch, obj) \ for (obj = patch->objs; obj->funcs || obj->name; obj++) -#define klp_for_each_func(obj, func) \ +#define klp_for_each_object(patch, obj) \ + list_for_each_entry(obj, &patch->obj_list, node) + +#define klp_for_each_func_static(obj, func) \ for (func = obj->funcs; \ func->old_name || func->new_addr || func->old_sympos; \ func++) +#define klp_for_each_func(obj, func) \ + list_for_each_entry(func, &obj->func_list, node) + int klp_enable_patch(struct klp_patch *); void arch_klp_init_object_loaded(struct klp_patch *patch, diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 76c5b08ffacf..96ff7820fe24 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -50,6 +50,29 @@ LIST_HEAD(klp_patches); static struct kobject *klp_root_kobj; +static int klp_init_lists(struct klp_patch *patch) +{ + struct klp_object *obj; + struct klp_func *func; + + INIT_LIST_HEAD(&patch->obj_list); + if (!patch->objs) + return -EINVAL; + + klp_for_each_object_static(patch, obj) { + list_add(&obj->node, &patch->obj_list); + + INIT_LIST_HEAD(&obj->func_list); + if (!obj->funcs) + return -EINVAL; + + klp_for_each_func_static(obj, func) + list_add(&func->node, &obj->func_list); + } + + return 0; +} + static bool klp_is_module(struct klp_object *obj) { return obj->name; @@ -609,9 +632,6 @@ static int klp_init_object(struct klp_patch *patch, struct klp_object *obj) int ret; const char *name; - if (!obj->funcs) - return -EINVAL; - if (klp_is_module(obj) && strlen(obj->name) >= MODULE_NAME_LEN) return -EINVAL; @@ -649,8 +669,9 @@ static int klp_init_patch(struct klp_patch *patch) INIT_WORK(&patch->free_work, klp_free_patch_fn); init_completion(&patch->finish); - if (!patch->objs) - return -EINVAL; + ret = klp_init_lists(patch); + if (ret) + return ret; /* * A reference is taken on the patch module to prevent it from being -- 2.13.7