2017-07-11 18:27:04 +00:00
|
|
|
From 9f1958a0cc911e1f79b2733ee5029dbd819ff328 Mon Sep 17 00:00:00 2001
|
2015-09-01 22:03:08 +00:00
|
|
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
2017-07-11 18:27:04 +00:00
|
|
|
Date: Fri, 5 May 2017 08:21:59 +0100
|
|
|
|
Subject: [PATCH 4/4] MODSIGN: Allow the "db" UEFI variable to be suppressed
|
2015-09-01 22:03:08 +00:00
|
|
|
|
|
|
|
If a user tells shim to not use the certs/hashes in the UEFI db variable
|
2017-07-11 18:27:04 +00:00
|
|
|
for verification purposes, shim will set a UEFI variable called
|
|
|
|
MokIgnoreDB. Have the uefi import code look for this and ignore the db
|
|
|
|
variable if it is found.
|
2015-09-01 22:03:08 +00:00
|
|
|
|
|
|
|
Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
2017-07-11 18:27:04 +00:00
|
|
|
Signed-off-by: David Howells <dhowells@redhat.com>
|
2015-09-01 22:03:08 +00:00
|
|
|
---
|
2017-07-11 18:27:04 +00:00
|
|
|
certs/load_uefi.c | 44 ++++++++++++++++++++++++++++++++++----------
|
|
|
|
1 file changed, 34 insertions(+), 10 deletions(-)
|
2015-09-01 22:03:08 +00:00
|
|
|
|
2017-07-11 18:27:04 +00:00
|
|
|
diff --git a/certs/load_uefi.c b/certs/load_uefi.c
|
|
|
|
index b44e464..3d88459 100644
|
|
|
|
--- a/certs/load_uefi.c
|
|
|
|
+++ b/certs/load_uefi.c
|
|
|
|
@@ -13,6 +13,26 @@ static __initdata efi_guid_t efi_cert_x509_sha256_guid = EFI_CERT_X509_SHA256_GU
|
|
|
|
static __initdata efi_guid_t efi_cert_sha256_guid = EFI_CERT_SHA256_GUID;
|
|
|
|
|
|
|
|
/*
|
|
|
|
+ * Look to see if a UEFI variable called MokIgnoreDB exists and return true if
|
|
|
|
+ * it does.
|
|
|
|
+ *
|
|
|
|
+ * This UEFI variable is set by the shim if a user tells the shim to not use
|
|
|
|
+ * the certs/hashes in the UEFI db variable for verification purposes. If it
|
|
|
|
+ * is set, we should ignore the db variable also and the true return indicates
|
|
|
|
+ * this.
|
|
|
|
+ */
|
|
|
|
+static __init bool uefi_check_ignore_db(void)
|
2015-09-01 22:03:08 +00:00
|
|
|
+{
|
|
|
|
+ efi_status_t status;
|
|
|
|
+ unsigned int db = 0;
|
|
|
|
+ unsigned long size = sizeof(db);
|
|
|
|
+ efi_guid_t guid = EFI_SHIM_LOCK_GUID;
|
|
|
|
+
|
|
|
|
+ status = efi.get_variable(L"MokIgnoreDB", &guid, NULL, &size, &db);
|
2017-07-11 18:27:04 +00:00
|
|
|
+ return status == EFI_SUCCESS;
|
2015-09-01 22:03:08 +00:00
|
|
|
+}
|
|
|
|
+
|
2017-07-11 18:27:04 +00:00
|
|
|
+/*
|
|
|
|
* Get a certificate list blob from the named EFI variable.
|
|
|
|
*/
|
|
|
|
static __init void *get_cert_list(efi_char16_t *name, efi_guid_t *guid,
|
|
|
|
@@ -113,7 +133,9 @@ static __init efi_element_handler_t get_handler_for_dbx(const efi_guid_t *sig_ty
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
- * Load the certs contained in the UEFI databases
|
|
|
|
+ * Load the certs contained in the UEFI databases into the secondary trusted
|
|
|
|
+ * keyring and the UEFI blacklisted X.509 cert SHA256 hashes into the blacklist
|
|
|
|
+ * keyring.
|
|
|
|
*/
|
|
|
|
static int __init load_uefi_certs(void)
|
2015-09-01 22:03:08 +00:00
|
|
|
{
|
2017-07-11 18:27:04 +00:00
|
|
|
@@ -129,15 +151,17 @@ static int __init load_uefi_certs(void)
|
2015-09-01 22:03:08 +00:00
|
|
|
/* Get db, MokListRT, and dbx. They might not exist, so it isn't
|
|
|
|
* an error if we can't get them.
|
|
|
|
*/
|
|
|
|
- db = get_cert_list(L"db", &secure_var, &dbsize);
|
|
|
|
- if (!db) {
|
|
|
|
- pr_err("MODSIGN: Couldn't get UEFI db list\n");
|
|
|
|
- } else {
|
2017-07-11 18:27:04 +00:00
|
|
|
- rc = parse_efi_signature_list("UEFI:db",
|
|
|
|
- db, dbsize, get_handler_for_db);
|
2015-09-01 22:03:08 +00:00
|
|
|
- if (rc)
|
|
|
|
- pr_err("Couldn't parse db signatures: %d\n", rc);
|
|
|
|
- kfree(db);
|
2017-07-11 18:27:04 +00:00
|
|
|
+ if (!uefi_check_ignore_db()) {
|
2015-09-01 22:03:08 +00:00
|
|
|
+ db = get_cert_list(L"db", &secure_var, &dbsize);
|
|
|
|
+ if (!db) {
|
|
|
|
+ pr_err("MODSIGN: Couldn't get UEFI db list\n");
|
|
|
|
+ } else {
|
2017-07-11 18:27:04 +00:00
|
|
|
+ rc = parse_efi_signature_list("UEFI:db",
|
|
|
|
+ db, dbsize, get_handler_for_db);
|
2015-09-01 22:03:08 +00:00
|
|
|
+ if (rc)
|
|
|
|
+ pr_err("Couldn't parse db signatures: %d\n", rc);
|
|
|
|
+ kfree(db);
|
|
|
|
+ }
|
|
|
|
}
|
2017-07-11 18:27:04 +00:00
|
|
|
|
2015-09-01 22:03:08 +00:00
|
|
|
mok = get_cert_list(L"MokListRT", &mok_var, &moksize);
|
2015-11-11 16:24:30 +00:00
|
|
|
--
|
2017-02-20 19:20:23 +00:00
|
|
|
2.9.3
|
2015-11-11 16:24:30 +00:00
|
|
|
|