Received: by 10.223.185.116 with SMTP id b49csp1023358wrg; Wed, 21 Feb 2018 10:44:27 -0800 (PST) X-Google-Smtp-Source: AH8x227FNDW8aYFbXAwOY32B1qWRoXlBdgbTsaHfIMfq6QSNgCfUaLvKQZ26TFo6T/cEyhQkBC9E X-Received: by 2002:a17:902:8498:: with SMTP id c24-v6mr3959139plo.450.1519238667286; Wed, 21 Feb 2018 10:44:27 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1519238667; cv=none; d=google.com; s=arc-20160816; b=nkRMfXWEEfaBHrXWiRyFI65zGXXOIt2EvGVQn3UWHwYZX6xQn2aSEJPxTPvoucVAO7 9EGohAEVW9x9FxOs9aPl7T5Jms/zqW9MQXlXnejH6N6MjXVNtkkrUf7k/AypvjZaL33t nv6kREzxTzdOEfp63GpnsVtOLxYWU/IVK5SOKH7F35sf4otmNxRbrNTSaM8je8rHVm2W 7CMOHkYC1EtU31gg4Y73dbtr2O7IPLc0efomRWNYADO+1Cto82nfD1TrIvHqFaTCPZmz MuTZTKvL8alvLzmwikaeEbul8+bXibXIk0fIaLia11dApXJ8I8eKRsU0GymWisGSy05j XCxg== 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=WhnGYtf5kSDC9c2Dr0ZHXmvWQqteDIDlfwH+QtZ8AIU=; b=DCOoi2xUfp3aeUyXPzeesbYDltVZGj1sORLSm0kDqff31wzYlAEFEz/xhVuWhq1kOX BIAGqRsqGnI3yToCoaY+IJ4H68qJCRuaqQJx5kDGjc7nCHGuV6PfyetEHVKXeu12UeK9 k2GJiSPtH8/z48tjj8ZSUOhJs5SxXqlVYoV9z5PsiHtmP3m18X6eRyAyRXcYrZQz26nu 0bWPkaFB9i1xKVy4RN6+SftSrm2fj2FJJ0wGBuz8NztPt/Ox3gvwsxE9iX5vdm2FnZf8 tZyHmRw/qQebmD9ymlId/7Grx8twuhedX2LOLqRr8Oi6TBQe3jiK2Gnx9tygncUbNkIg MqTQ== 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 68-v6si12969640pla.767.2018.02.21.10.44.13; Wed, 21 Feb 2018 10:44:27 -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 S936853AbeBUNal (ORCPT + 99 others); Wed, 21 Feb 2018 08:30:41 -0500 Received: from mx2.suse.de ([195.135.220.15]:49099 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934839AbeBUN3r (ORCPT ); Wed, 21 Feb 2018 08:29:47 -0500 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id DDA34AC92; Wed, 21 Feb 2018 13:29:45 +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 v8 5/8] livepatch: Support separate list for replaced patches. Date: Wed, 21 Feb 2018 14:29:11 +0100 Message-Id: <20180221132914.4809-6-pmladek@suse.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20180221132914.4809-1-pmladek@suse.com> References: <20180221132914.4809-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 We are going to add a feature called atomic replace. It will allow to create a patch that would replace all already registered patches. The replaced patches will stay registered because they are typically unregistered by some package uninstall scripts. But we will remove these patches from @klp_patches list to keep the enabled patch on the bottom of the stack. Otherwise, we would need to implement rather complex logic for moving the patches on the stack. Also it would complicate implementation of the atomic replace feature. It is not worth it. As a result, we will have patches that are registered but that are no longer usable. Let's get prepared for this and use a better descriptive name for klp_is_patch_registered() function. Also create separate list for the replaced patches and allow to unregister them. Alternative solution would be to add a flag into struct klp_patch. Note that patch->kobj.state_initialized is not safe because it can be cleared outside klp_mutex. This patch does not change the existing behavior. Signed-off-by: Jason Baron [pmladek@suse.com: Split and renamed klp_is_patch_usable()] Signed-off-by: Petr Mladek Cc: Josh Poimboeuf Cc: Jessica Yu Cc: Jiri Kosina Acked-by: Miroslav Benes --- kernel/livepatch/core.c | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/kernel/livepatch/core.c b/kernel/livepatch/core.c index ab1f6a371fc8..fd0296859ff4 100644 --- a/kernel/livepatch/core.c +++ b/kernel/livepatch/core.c @@ -47,6 +47,13 @@ DEFINE_MUTEX(klp_mutex); static LIST_HEAD(klp_patches); +/* + * List of 'replaced' patches that have been replaced by a patch that has the + * 'replace' bit set. When they are added to this list, they are disabled and + * can not be re-enabled, but they can be unregistered(). + */ +static LIST_HEAD(klp_replaced_patches); + static struct kobject *klp_root_kobj; static void klp_init_func_list(struct klp_object *obj, struct klp_func *func) @@ -108,17 +115,28 @@ static void klp_find_object_module(struct klp_object *obj) mutex_unlock(&module_mutex); } -static bool klp_is_patch_registered(struct klp_patch *patch) +static bool klp_is_patch_in_list(struct klp_patch *patch, + struct list_head *head) { struct klp_patch *mypatch; - list_for_each_entry(mypatch, &klp_patches, list) + list_for_each_entry(mypatch, head, list) if (mypatch == patch) return true; return false; } +static bool klp_is_patch_usable(struct klp_patch *patch) +{ + return klp_is_patch_in_list(patch, &klp_patches); +} + +static bool klp_is_patch_replaced(struct klp_patch *patch) +{ + return klp_is_patch_in_list(patch, &klp_replaced_patches); +} + static bool klp_initialized(void) { return !!klp_root_kobj; @@ -375,7 +393,7 @@ int klp_disable_patch(struct klp_patch *patch) mutex_lock(&klp_mutex); - if (!klp_is_patch_registered(patch)) { + if (!klp_is_patch_usable(patch)) { ret = -EINVAL; goto err; } @@ -475,7 +493,7 @@ int klp_enable_patch(struct klp_patch *patch) mutex_lock(&klp_mutex); - if (!klp_is_patch_registered(patch)) { + if (!klp_is_patch_usable(patch)) { ret = -EINVAL; goto err; } @@ -516,7 +534,7 @@ static ssize_t enabled_store(struct kobject *kobj, struct kobj_attribute *attr, mutex_lock(&klp_mutex); - if (!klp_is_patch_registered(patch)) { + if (!klp_is_patch_usable(patch)) { /* * Module with the patch could either disappear meanwhile or is * not properly initialized yet. @@ -971,7 +989,7 @@ int klp_unregister_patch(struct klp_patch *patch) mutex_lock(&klp_mutex); - if (!klp_is_patch_registered(patch)) { + if (!klp_is_patch_usable(patch) && !klp_is_patch_replaced(patch)) { ret = -EINVAL; goto err; } -- 2.13.6