34af6ad
From e17b29e90f188888a56d090e1a672d7a38042254 Mon Sep 17 00:00:00 2001
6a91557
From: Matthew Garrett <matthew.garrett@nebula.com>
6a91557
Date: Fri, 9 Aug 2013 18:36:30 -0400
6a91557
Subject: [PATCH] Add option to automatically enforce module signatures when in
6a91557
 Secure Boot mode
6a91557
6a91557
UEFI Secure Boot provides a mechanism for ensuring that the firmware will
6a91557
only load signed bootloaders and kernels. Certain use cases may also
6a91557
require that all kernel modules also be signed. Add a configuration option
6a91557
that enforces this automatically when enabled.
6a91557
6a91557
Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
6a91557
---
6a91557
 Documentation/x86/zero-page.txt       |  2 ++
6a91557
 arch/x86/Kconfig                      | 10 ++++++++++
6a91557
 arch/x86/boot/compressed/eboot.c      | 36 +++++++++++++++++++++++++++++++++++
6a91557
 arch/x86/include/uapi/asm/bootparam.h |  3 ++-
6a91557
 arch/x86/kernel/setup.c               |  6 ++++++
6a91557
 include/linux/module.h                |  6 ++++++
6a91557
 kernel/module.c                       |  7 +++++++
6a91557
 7 files changed, 69 insertions(+), 1 deletion(-)
6a91557
6a91557
diff --git a/Documentation/x86/zero-page.txt b/Documentation/x86/zero-page.txt
6a91557
index 199f453cb4de..ec38acf00b40 100644
6a91557
--- a/Documentation/x86/zero-page.txt
6a91557
+++ b/Documentation/x86/zero-page.txt
6a91557
@@ -30,6 +30,8 @@ Offset	Proto	Name		Meaning
6a91557
 1E9/001	ALL	eddbuf_entries	Number of entries in eddbuf (below)
6a91557
 1EA/001	ALL	edd_mbr_sig_buf_entries	Number of entries in edd_mbr_sig_buffer
6a91557
 				(below)
6a91557
+1EB/001	ALL     kbd_status      Numlock is enabled
6a91557
+1EC/001	ALL     secure_boot	Secure boot is enabled in the firmware
6a91557
 1EF/001	ALL	sentinel	Used to detect broken bootloaders
6a91557
 290/040	ALL	edd_mbr_sig_buffer EDD MBR signatures
6a91557
 2D0/A00	ALL	e820_map	E820 memory map table
6a91557
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
27d7c47
index 778178f4c7d1..8899dc333793 100644
6a91557
--- a/arch/x86/Kconfig
6a91557
+++ b/arch/x86/Kconfig
6a91557
@@ -1565,6 +1565,16 @@ config EFI_MIXED
6a91557
 
6a91557
 	   If unsure, say N.
6a91557
 
6a91557
+config EFI_SECURE_BOOT_SIG_ENFORCE
6a91557
+        def_bool n
6a91557
+	prompt "Force module signing when UEFI Secure Boot is enabled"
6a91557
+	---help---
6a91557
+	  UEFI Secure Boot provides a mechanism for ensuring that the
6a91557
+	  firmware will only load signed bootloaders and kernels. Certain
6a91557
+	  use cases may also require that all kernel modules also be signed.
6a91557
+	  Say Y here to automatically enable module signature enforcement
6a91557
+	  when a system boots with UEFI Secure Boot enabled.
6a91557
+
6a91557
 config SECCOMP
6a91557
 	def_bool y
6a91557
 	prompt "Enable seccomp to safely compute untrusted bytecode"
6a91557
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
6a91557
index f277184e2ac1..88edd48f03e9 100644
6a91557
--- a/arch/x86/boot/compressed/eboot.c
6a91557
+++ b/arch/x86/boot/compressed/eboot.c
6a91557
@@ -12,6 +12,7 @@
6a91557
 #include <asm/efi.h>
6a91557
 #include <asm/setup.h>
6a91557
 #include <asm/desc.h>
6a91557
+#include <asm/bootparam_utils.h>
6a91557
 
6a91557
 #undef memcpy			/* Use memcpy from misc.c */
6a91557
 
6a91557
@@ -803,6 +804,37 @@ out:
6a91557
 	return status;
6a91557
 }
6a91557
 
6a91557
+static int get_secure_boot(void)
6a91557
+{
6a91557
+	u8 sb, setup;
6a91557
+	unsigned long datasize = sizeof(sb);
6a91557
+	efi_guid_t var_guid = EFI_GLOBAL_VARIABLE_GUID;
6a91557
+	efi_status_t status;
6a91557
+
6a91557
+	status = efi_early->call((unsigned long)sys_table->runtime->get_variable,
6a91557
+				L"SecureBoot", &var_guid, NULL, &datasize, &sb);
6a91557
+
6a91557
+	if (status != EFI_SUCCESS)
6a91557
+		return 0;
6a91557
+
6a91557
+	if (sb == 0)
6a91557
+		return 0;
6a91557
+
6a91557
+
6a91557
+	status = efi_early->call((unsigned long)sys_table->runtime->get_variable,
6a91557
+				L"SetupMode", &var_guid, NULL, &datasize,
6a91557
+				&setup);
6a91557
+
6a91557
+	if (status != EFI_SUCCESS)
6a91557
+		return 0;
6a91557
+
6a91557
+	if (setup == 1)
6a91557
+		return 0;
6a91557
+
6a91557
+	return 1;
6a91557
+}
6a91557
+
6a91557
+
6a91557
 /*
6a91557
  * See if we have Graphics Output Protocol
6a91557
  */
6a91557
@@ -1374,6 +1406,10 @@ struct boot_params *efi_main(struct efi_config *c,
6a91557
 	else
6a91557
 		setup_boot_services32(efi_early);
6a91557
 
6a91557
+	sanitize_boot_params(boot_params);
6a91557
+
6a91557
+	boot_params->secure_boot = get_secure_boot();
6a91557
+
6a91557
 	setup_graphics(boot_params);
6a91557
 
6a91557
 	status = setup_efi_pci(boot_params);
6a91557
diff --git a/arch/x86/include/uapi/asm/bootparam.h b/arch/x86/include/uapi/asm/bootparam.h
6a91557
index 225b0988043a..90dbfb73e11f 100644
6a91557
--- a/arch/x86/include/uapi/asm/bootparam.h
6a91557
+++ b/arch/x86/include/uapi/asm/bootparam.h
6a91557
@@ -133,7 +133,8 @@ struct boot_params {
6a91557
 	__u8  eddbuf_entries;				/* 0x1e9 */
6a91557
 	__u8  edd_mbr_sig_buf_entries;			/* 0x1ea */
6a91557
 	__u8  kbd_status;				/* 0x1eb */
6a91557
-	__u8  _pad5[3];					/* 0x1ec */
6a91557
+	__u8  secure_boot;				/* 0x1ec */
6a91557
+	__u8  _pad5[2];					/* 0x1ed */
6a91557
 	/*
6a91557
 	 * The sentinel is set to a nonzero value (0xff) in header.S.
6a91557
 	 *
6a91557
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
6a91557
index 41ead8d3bc0b..5a5cf7395724 100644
6a91557
--- a/arch/x86/kernel/setup.c
6a91557
+++ b/arch/x86/kernel/setup.c
6a91557
@@ -1142,6 +1142,12 @@ void __init setup_arch(char **cmdline_p)
6a91557
 
6a91557
 	io_delay_init();
6a91557
 
6a91557
+#ifdef CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE
6a91557
+	if (boot_params.secure_boot) {
6a91557
+		enforce_signed_modules();
6a91557
+	}
6a91557
+#endif
6a91557
+
6a91557
 	/*
6a91557
 	 * Parse the ACPI tables for possible boot-time SMP configuration.
6a91557
 	 */
6a91557
diff --git a/include/linux/module.h b/include/linux/module.h
6a91557
index 341a73ecea2e..cca08ac450e2 100644
6a91557
--- a/include/linux/module.h
6a91557
+++ b/include/linux/module.h
6a91557
@@ -188,6 +188,12 @@ const struct exception_table_entry *search_exception_tables(unsigned long add);
6a91557
 
6a91557
 struct notifier_block;
6a91557
 
6a91557
+#ifdef CONFIG_MODULE_SIG
6a91557
+extern void enforce_signed_modules(void);
6a91557
+#else
6a91557
+static inline void enforce_signed_modules(void) {};
6a91557
+#endif
6a91557
+
6a91557
 #ifdef CONFIG_MODULES
6a91557
 
6a91557
 extern int modules_disabled; /* for sysctl */
6a91557
diff --git a/kernel/module.c b/kernel/module.c
6a91557
index 1f7b4664300e..866417ecc76a 100644
6a91557
--- a/kernel/module.c
6a91557
+++ b/kernel/module.c
6a91557
@@ -3843,6 +3843,13 @@ void module_layout(struct module *mod,
6a91557
 EXPORT_SYMBOL(module_layout);
6a91557
 #endif
6a91557
 
6a91557
+#ifdef CONFIG_MODULE_SIG
6a91557
+void enforce_signed_modules(void)
6a91557
+{
6a91557
+	sig_enforce = true;
6a91557
+}
6a91557
+#endif
6a91557
+
6a91557
 bool secure_modules(void)
6a91557
 {
6a91557
 #ifdef CONFIG_MODULE_SIG
6a91557
-- 
6a91557
1.9.3
6a91557