Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965289AbeALTzq (ORCPT + 1 other); Fri, 12 Jan 2018 14:55:46 -0500 Received: from mx0a-00190b01.pphosted.com ([67.231.149.131]:54038 "EHLO mx0a-00190b01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965198AbeALTzo (ORCPT ); Fri, 12 Jan 2018 14:55:44 -0500 From: Jason Baron To: linux-kernel@vger.kernel.org, live-patching@vger.kernel.org Cc: jpoimboe@redhat.com, jeyu@kernel.org, jikos@kernel.org, mbenes@suse.cz, pmladek@suse.com Subject: [PATCH v5 1/3] livepatch: use lists to manage patches, objects and functions Date: Fri, 12 Jan 2018 14:55:14 -0500 Message-Id: <905123c7758b57f5952f08eee9183eb2d520906b.1515786085.git.jbaron@akamai.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: References: In-Reply-To: References: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-12_10:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=2 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=842 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1711220000 definitions=main-1801120267 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-12_10:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 priorityscore=1501 malwarescore=0 suspectscore=2 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 mlxscore=0 impostorscore=0 mlxlogscore=828 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1711220000 definitions=main-1801120267 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: 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. This patch is intended to be a no-op until atomic replace is introduced by a subsequent patch. Signed-off-by: Jason Baron Cc: Josh Poimboeuf Cc: Jessica Yu Cc: Jiri Kosina Cc: Miroslav Benes Cc: Petr Mladek --- include/linux/livepatch.h | 19 +++++++++++++++++-- kernel/livepatch/core.c | 8 ++++++-- 2 files changed, 23 insertions(+), 4 deletions(-) diff --git a/include/linux/livepatch.h b/include/linux/livepatch.h index 4754f01..e5db2ba 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 41be606..49be67c 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -677,6 +677,7 @@ static int klp_init_func(struct klp_object *obj, struct klp_func *func) INIT_LIST_HEAD(&func->stack_node); func->patched = false; func->transition = false; + list_add(&func->func_entry, &obj->func_list); /* The format for the sysfs directory is where sympos * is the nth occurrence of this symbol in kallsyms for the patched @@ -758,7 +759,9 @@ static int klp_init_object(struct klp_patch *patch, struct klp_object *obj) if (ret) return ret; - klp_for_each_func(obj, func) { + list_add(&obj->obj_entry, &patch->obj_list); + INIT_LIST_HEAD(&obj->func_list); + klp_for_each_func_static(obj, func) { ret = klp_init_func(obj, func); if (ret) goto free; @@ -798,7 +801,8 @@ static int klp_init_patch(struct klp_patch *patch) return ret; } - klp_for_each_object(patch, obj) { + INIT_LIST_HEAD(&patch->obj_list); + klp_for_each_object_static(patch, obj) { ret = klp_init_object(patch, obj); if (ret) goto free; -- 2.6.1