Received: by 10.223.176.46 with SMTP id f43csp2315812wra; Thu, 25 Jan 2018 08:04:48 -0800 (PST) X-Google-Smtp-Source: AH8x226PN4WHuci7lXgmy3/vz70zoF6xBOaAh+2cTByoKoKvVFf8G9JNuJwa8r/To9aOSbaZuEaD X-Received: by 2002:a17:902:74ca:: with SMTP id f10-v6mr11949506plt.386.1516896288464; Thu, 25 Jan 2018 08:04:48 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1516896288; cv=none; d=google.com; s=arc-20160816; b=Mqzsl3sgX1fIyZzdTmnuDeAr9p8ZmpqK1KDl4E/YN6IlRbjBexfIqLkCmKc2lBB+UT i8nl5owa5Gycp9A9iXSkke7IgJp5EIsuVvDcKgKpUnv26rQNZFk4EjSxe5AMQ3pFqe+I N7K2GzLPTvSAk/a36wTMLGmZ8iNgwUWHXz6TAF6AKmQKboK9EMBDBKv4wK/fF3j7B5x3 LJj2FsgbfZYpZdoLBXaX5/sc0/KjO/DqkHfxWDNw6diCxMn8A5TWFpCBamibwfGDpxYh ulWw4Q/UbzZHnJhaF9S5hIeveASRDH1AJXqJ9dOT3VtiSJeX3+1315F2CsTkxj185ZYs lgew== 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=Jk5Y1xKTTUkLr7yynzWm/OtpxQZ5bmTNI9YsdeaNlzE=; b=pggk+av8UloV/Zx8GUomIvAroXPeA7FAvWC492s/wCkPFbQB0oyXErn9O+a28MlE5E 61J/8Q8eGpP2CVyyeozzLn3g1R2ayuR+WKsYEWMaxBG2LKIXt9kVg+MBgAIDpT9JDiMl +sIheA11CX3e5WRSIcm5482pUdqe/jQcQWQSFfsC9OIaaTraCBECxTVbt0Z2EDrfC9ZJ v4LYx9v95TK5LPCtKxA5/iSnEtD6QpckOlu6TmJ8QznrzF+Gqj/FtKu8y+KKSrC1YV4h OkMdc7zA19v8vxFRCLwMZWYJzBRzsMuxRLQnLJgDygDxi+swX5U2tDxctCL57MwkaJSM UX9w== 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 r86si4788549pfg.36.2018.01.25.08.04.33; Thu, 25 Jan 2018 08:04:48 -0800 (PST) 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 S1751321AbeAYQCX (ORCPT + 99 others); Thu, 25 Jan 2018 11:02:23 -0500 Received: from mx2.suse.de ([195.135.220.15]:59728 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750992AbeAYQCU (ORCPT ); Thu, 25 Jan 2018 11:02:20 -0500 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 A7FD0AE61; Thu, 25 Jan 2018 16:02:18 +0000 (UTC) From: Petr Mladek To: jpoimboe@redhat.com, jikos@kernel.org, mbenes@suse.cz Cc: Jason Baron , jeyu@kernel.org, Evgenii Shatokhin , linux-kernel@vger.kernel.org, live-patching@vger.kernel.org, Petr Mladek Subject: PATCH v6 1/6] livepatch: Use lists to manage patches, objects and functions Date: Thu, 25 Jan 2018 17:01:58 +0100 Message-Id: <20180125160203.28959-2-pmladek@suse.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20180125160203.28959-1-pmladek@suse.com> References: <20180125160203.28959-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. Also klp_init_*_list() functions are split because they will be used when adding the dynamically allocated structures. 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 | 27 +++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 2 deletions(-) diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index 4754f01c1abb..e5db2ba7e2a5 100644 --- a/include/linux/livepatch.h +++ b/include/linux/livepatch.h @@ -24,6 +24,7 @@ #include #include #include +#include #if IS_ENABLED(CONFIG_LIVEPATCH) @@ -43,6 +44,7 @@ * @old_addr: the address of the function being patched * @kobj: kobject for sysfs resources * @stack_node: list node for klp_ops func_stack list + * @func_entry: links struct klp_func to struct klp_object * @old_size: size of the old function * @new_size: size of the new function * @patched: the func has been added to the klp_ops list @@ -80,6 +82,7 @@ struct klp_func { unsigned long old_addr; struct kobject kobj; struct list_head stack_node; + struct list_head func_entry; unsigned long old_size, new_size; bool patched; bool transition; @@ -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: head of list for struct klp_func + * @obj_entry: links struct klp_object to struct klp_patch * @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 obj_entry; 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: head of list for struct klp_object * @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, obj_entry) + +#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, func_entry) + 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..1d525f4a270a 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -49,6 +49,32 @@ static LIST_HEAD(klp_patches); static struct kobject *klp_root_kobj; +static void klp_init_func_list(struct klp_object *obj, struct klp_func *func) +{ + list_add(&func->func_entry, &obj->func_list); +} + +static void klp_init_object_list(struct klp_patch *patch, + struct klp_object *obj) +{ + struct klp_func *func; + + list_add(&obj->obj_entry, &patch->obj_list); + + INIT_LIST_HEAD(&obj->func_list); + klp_for_each_func_static(obj, func) + klp_init_func_list(obj, func); +} + +static void klp_init_patch_list(struct klp_patch *patch) +{ + struct klp_object *obj; + + INIT_LIST_HEAD(&patch->obj_list); + klp_for_each_object_static(patch, obj) + klp_init_object_list(patch, obj); +} + static bool klp_is_module(struct klp_object *obj) { return obj->name; @@ -794,6 +820,7 @@ static int klp_init_patch(struct klp_patch *patch) patch->enabled = false; init_completion(&patch->finish); + klp_init_patch_list(patch); ret = kobject_init_and_add(&patch->kobj, &klp_ktype_patch, klp_root_kobj, "%s", patch->mod->name); -- 2.13.6