Received: by 10.213.65.68 with SMTP id h4csp299717imn; Fri, 23 Mar 2018 05:03:57 -0700 (PDT) X-Google-Smtp-Source: AG47ELvEN6kQDtJM9ML1c7zsA2biZ6dC5J96GMVqQMzMRFG/eKnhSkHoHr2cMLrQ+eKRJWjKIybm X-Received: by 10.98.22.144 with SMTP id 138mr23956570pfw.114.1521806637737; Fri, 23 Mar 2018 05:03:57 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1521806637; cv=none; d=google.com; s=arc-20160816; b=sG/WFRWeMc6GqoYkt7oDZuoyvzrngpYeWriL8fo4SPodCmSvCCDep8U2V/EW4uxWHz H2s8BXOL2lkL5BkF4CUOzNmEoX7H9z7DaRCNF+YpbijWu7aqYv4JReiG9ooZctnpWqXZ PO49TPPldMPCVMT42pPhnJcskIh45rWnxLnPfCwmO1ErgSMQCUEHrRGn3ESxX1XZ+orv ZmtSAWRNFaUub9w8GXvLxZvvSFbTPbeufG/Ne5mE488B3cKw3+1Pk8jbNkJfkkYu07Wd W6GmvqzkR4Ife9Er185Ha02GbjRWkaLlru/+mmF220FXbQ6sHqqR+qv5OytrLxw4hI0G SZjQ== 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:arc-authentication-results; bh=Nag8oQCPbWLHIlhpOb4FledMqPCGec5vGBhqExYBiic=; b=bUrLYhRojZm3ucelEdx6SgKxO1DD0iZnsmdK87uA/Arqk1awViYk5zFNcJ9806LB+l ADcO+yoQ1Bp0sD7FHLG/Hk3QWB51QHBo29OnlkLgJUQ7T0xdx0ikDMpDaBhd+vOcfNZl NwO7GbLbc3Hgi9kK1ys7GBmsheeq71fcj51x8JV9nBekZwvF89sj3YQluTBqJ+R7QGnN w/SH0vG06gmiPZDM9B20p5KW0FK6YrnyiBXZKrvTk7xTK7sxNyGjPgYPxOEhP65N8+SI DKIJF7yY9PS+es08RK+gNXkJ561pw8KI8cT5HiOaIyitO8YjDqxife01/sNIjugStPZz bmbA== 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 a33-v6si6204841pli.410.2018.03.23.05.03.43; Fri, 23 Mar 2018 05:03:57 -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 S1754007AbeCWMAx (ORCPT + 99 others); Fri, 23 Mar 2018 08:00:53 -0400 Received: from mx2.suse.de ([195.135.220.15]:39552 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753583AbeCWMAt (ORCPT ); Fri, 23 Mar 2018 08:00:49 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 0237EAEA4; Fri, 23 Mar 2018 12:00:48 +0000 (UTC) From: Petr Mladek To: Jiri Kosina , Josh Poimboeuf , Miroslav Benes Cc: Jason Baron , Joe Lawrence , Jessica Yu , Evgenii Shatokhin , live-patching@vger.kernel.org, linux-kernel@vger.kernel.org, Petr Mladek Subject: [PATCH 1/8] livepatch: Use lists to manage patches, objects and functions Date: Fri, 23 Mar 2018 13:00:21 +0100 Message-Id: <20180323120028.31451-2-pmladek@suse.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20180323120028.31451-1-pmladek@suse.com> References: <20180323120028.31451-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 | 16 ++++++++++++++++ 2 files changed, 33 insertions(+), 2 deletions(-) diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index 4754f01c1abb..f0a5a28b1386 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) * @finish: for waiting till it is safe to remove the patch module */ @@ -148,18 +156,25 @@ struct klp_patch { /* internal */ struct list_head list; struct kobject kobj; + struct list_head obj_list; bool enabled; struct completion finish; }; -#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_func || func->old_sympos; \ func++) +#define klp_for_each_func(obj, func) \ + list_for_each_entry(func, &obj->func_list, node) + int klp_register_patch(struct klp_patch *); int klp_unregister_patch(struct klp_patch *); int klp_enable_patch(struct klp_patch *); diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index 3a4656fb7047..56cb0574c59c 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -49,6 +49,21 @@ static LIST_HEAD(klp_patches); static struct kobject *klp_root_kobj; +static void klp_init_lists(struct klp_patch *patch) +{ + struct klp_object *obj; + struct klp_func *func; + + INIT_LIST_HEAD(&patch->obj_list); + klp_for_each_object_static(patch, obj) { + list_add(&obj->node, &patch->obj_list); + + INIT_LIST_HEAD(&obj->func_list); + klp_for_each_func_static(obj, func) + list_add(&func->node, &obj->func_list); + } +} + static bool klp_is_module(struct klp_object *obj) { return obj->name; @@ -794,6 +809,7 @@ static int klp_init_patch(struct klp_patch *patch) patch->enabled = false; init_completion(&patch->finish); + klp_init_lists(patch); ret = kobject_init_and_add(&patch->kobj, &klp_ktype_patch, klp_root_kobj, "%s", patch->mod->name); -- 2.13.6