Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752033AbdHDSIQ (ORCPT ); Fri, 4 Aug 2017 14:08:16 -0400 Received: from mail-pf0-f202.google.com ([209.85.192.202]:40402 "EHLO mail-pf0-f202.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751284AbdHDSIO (ORCPT ); Fri, 4 Aug 2017 14:08:14 -0400 MIME-Version: 1.0 Date: Fri, 4 Aug 2017 11:07:51 -0700 Message-Id: <20170804180751.14896-1-mjg59@google.com> X-Mailer: git-send-email 2.14.0.rc1.383.gd1ce394fe2-goog Subject: [PATCH] Allow automatic kernel taint on unsigned module load to be disabled From: Matthew Garrett To: linux-kernel@vger.kernel.org Cc: jeyu@kernel.org, rusty@rustcorp.com.au, Matthew Garrett Content-Type: text/plain; charset="UTF-8" Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2255 Lines: 61 Distributions may wish to provide kernels that permit loading of unsigned modules based on certain policy decisions. Right now that results in the kernel being tainted whenever an unsigned module is loaded, which may not be desirable. Add a config option to disable that. Signed-off-by: Matthew Garrett --- init/Kconfig | 13 ++++++++++++- kernel/module.c | 2 ++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/init/Kconfig b/init/Kconfig index 8514b25db21c..196860c5d1e5 100644 --- a/init/Kconfig +++ b/init/Kconfig @@ -1749,12 +1749,23 @@ config MODULE_SIG debuginfo strip done by some packagers (such as rpmbuild) and inclusion into an initramfs that wants the module size reduced. +config MODULE_UNSIGNED_TAINT + bool "Taint the kernel if unsigned modules are loaded" + default y + depends on MODULE_SIG + help + Taint the kernel if an unsigned kernel module is loaded. If this + option is enabled, the kernel will be tainted on an attempt to load + an unsigned module or signed modules for which we don't have a key + even if signature enforcement is disabled. + config MODULE_SIG_FORCE bool "Require modules to be validly signed" depends on MODULE_SIG help Reject unsigned modules or signed modules for which we don't have a - key. Without this, such modules will simply taint the kernel. + key. Without this, such modules will be loaded successfully but will + (if MODULE_UNSIGNED_TAINT is set) taint the kernel. config MODULE_SIG_ALL bool "Automatically sign all modules" diff --git a/kernel/module.c b/kernel/module.c index 40f983cbea81..71f80c8816f2 100644 --- a/kernel/module.c +++ b/kernel/module.c @@ -3660,12 +3660,14 @@ static int load_module(struct load_info *info, const char __user *uargs, #ifdef CONFIG_MODULE_SIG mod->sig_ok = info->sig_ok; +#ifdef CONFIG_MODULE_UNSIGNED_TAINT if (!mod->sig_ok) { pr_notice_once("%s: module verification failed: signature " "and/or required key missing - tainting " "kernel\n", mod->name); add_taint_module(mod, TAINT_UNSIGNED_MODULE, LOCKDEP_STILL_OK); } +#endif #endif /* To avoid stressing percpu allocator, do this once we're unique. */ -- 2.14.0.rc1.383.gd1ce394fe2-goog