3e026f665c
- Add safety measure to pcr snapshot by checking platform and tpm status * safe_tpm_pcr_snapshot.patch - Fix installation failure due to unavailable nvram device on ppc64le (bsc#1201361) * 0001-grub-install-set-point-of-no-return-for-powerpc-ieee1275.patch - Add patches to dynamically allocate additional memory regions for EFI systems (bsc#1202438) * 0001-mm-Allow-dynamically-requesting-additional-memory-re.patch * 0002-kern-efi-mm-Always-request-a-fixed-number-of-pages-o.patch * 0003-kern-efi-mm-Extract-function-to-add-memory-regions.patch * 0004-kern-efi-mm-Pass-up-errors-from-add_memory_regions.patch * 0005-kern-efi-mm-Implement-runtime-addition-of-pages.patch - Enlarge the default heap size and defer the disk cache invalidation (bsc#1202438) * 0001-kern-efi-mm-Enlarge-the-default-heap-size.patch * 0002-mm-Defer-the-disk-cache-invalidation.patch - Add patches for ALP FDE support * 0001-devmapper-getroot-Have-devmapper-recognize-LUKS2.patch * 0002-devmapper-getroot-Set-up-cheated-LUKS2-cryptodisk-mo.patch * 0003-disk-cryptodisk-When-cheatmounting-use-the-sector-in.patch * 0004-normal-menu-Don-t-show-Booting-s-msg-when-auto-booti.patch * 0005-EFI-suppress-the-Welcome-to-GRUB-message-in-EFI-buil.patch * 0006-EFI-console-Do-not-set-colorstate-until-the-first-te.patch * 0007-EFI-console-Do-not-set-cursor-until-the-first-text-o.patch * 0008-linuxefi-Use-common-grub_initrd_load.patch * 0009-Add-crypttab_entry-to-obviate-the-need-to-input-pass.patch * 0010-templates-import-etc-crypttab-to-grub.cfg.patch OBS-URL: https://build.opensuse.org/request/show/1004537 OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=419
152 lines
4.0 KiB
Diff
152 lines
4.0 KiB
Diff
Index: grub-2.06/include/grub/tpm.h
|
|
===================================================================
|
|
--- grub-2.06.orig/include/grub/tpm.h
|
|
+++ grub-2.06/include/grub/tpm.h
|
|
@@ -34,6 +34,15 @@
|
|
|
|
#define EV_IPL 0x0d
|
|
|
|
+struct grub_tpm_digest {
|
|
+ const char * algorithm;
|
|
+ unsigned int size;
|
|
+ unsigned char value[1]; /* variable length */
|
|
+};
|
|
+
|
|
grub_err_t grub_tpm_measure (unsigned char *buf, grub_size_t size,
|
|
grub_uint8_t pcr, const char *description);
|
|
+struct grub_tpm_digest *grub_tpm_read_pcr (grub_uint8_t index, const char *algo);
|
|
+void grub_tpm_digest_free (struct grub_tpm_digest *d);
|
|
+
|
|
#endif
|
|
Index: grub-2.06/grub-core/commands/efi/tpm.c
|
|
===================================================================
|
|
--- grub-2.06.orig/grub-core/commands/efi/tpm.c
|
|
+++ grub-2.06/grub-core/commands/efi/tpm.c
|
|
@@ -23,6 +23,7 @@
|
|
#include <grub/efi/api.h>
|
|
#include <grub/efi/efi.h>
|
|
#include <grub/efi/tpm.h>
|
|
+#include <grub/tpm2/tpm2.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/tpm.h>
|
|
#include <grub/term.h>
|
|
@@ -186,6 +187,91 @@ grub_tpm1_log_event (grub_efi_handle_t t
|
|
return grub_efi_log_event_status (status);
|
|
}
|
|
|
|
+static void
|
|
+grub_tpm2_select_pcr(TPML_PCR_SELECTION *o, unsigned int pcrIndex, unsigned int algo)
|
|
+{
|
|
+ TPMS_PCR_SELECTION *pcr;
|
|
+
|
|
+ pcr = &o->pcrSelections[o->count++];
|
|
+ pcr->hash = algo;
|
|
+ pcr->sizeOfSelect = 3;
|
|
+ pcr->pcrSelect[TPM2_PCR_TO_SELECT(pcrIndex)] |= TPM2_PCR_TO_BIT(pcrIndex);
|
|
+}
|
|
+
|
|
+struct grub_tpm_hash_info {
|
|
+ const char *name;
|
|
+ grub_size_t size;
|
|
+ int id;
|
|
+};
|
|
+
|
|
+static const struct grub_tpm_hash_info *
|
|
+grub_tpm2_get_digest_info (const char *algo)
|
|
+{
|
|
+ static struct grub_tpm_hash_info __hashes[] = {
|
|
+ { "sha256", 32, TPM_ALG_SHA256 }, /* first entry is the default */
|
|
+ { "sha512", 64, TPM_ALG_SHA512 },
|
|
+ { "sha1", 20, TPM_ALG_SHA1 },
|
|
+ { NULL }
|
|
+ };
|
|
+ struct grub_tpm_hash_info *h;
|
|
+
|
|
+ if (algo == NULL)
|
|
+ return &__hashes[0];
|
|
+
|
|
+ for (h = __hashes; h->name; ++h)
|
|
+ if (!grub_strcmp(h->name, algo))
|
|
+ return h;
|
|
+
|
|
+ return NULL;
|
|
+}
|
|
+
|
|
+static grub_err_t
|
|
+grub_tpm2_read_pcr (grub_int8_t pcrIndex, const char *algo, struct grub_tpm_digest **ret)
|
|
+{
|
|
+ const struct grub_tpm_hash_info *info;
|
|
+ TPML_PCR_SELECTION inSelection, outSelection;
|
|
+ grub_uint32_t pcrUpdateCounter;
|
|
+ TPML_DIGEST digests = { 0 };
|
|
+ TPM2B_DIGEST *d;
|
|
+ struct grub_tpm_digest *result;
|
|
+ int rc;
|
|
+
|
|
+ info = grub_tpm2_get_digest_info (algo);
|
|
+ if (info == NULL)
|
|
+ return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("Unknown digest algorithm %s"), algo);
|
|
+
|
|
+ grub_memset(&inSelection, 0, sizeof(inSelection));
|
|
+ grub_memset(&outSelection, 0, sizeof(outSelection));
|
|
+ grub_tpm2_select_pcr(&inSelection, pcrIndex, info->id);
|
|
+
|
|
+ rc = TPM2_PCR_Read(
|
|
+ NULL,
|
|
+ &inSelection,
|
|
+ &pcrUpdateCounter,
|
|
+ &outSelection,
|
|
+ &digests,
|
|
+ NULL
|
|
+ );
|
|
+
|
|
+ if (rc != 0)
|
|
+ return grub_error (GRUB_ERR_BAD_DEVICE, "TPM2_PCR_Read failed, status=%d", rc);
|
|
+
|
|
+ d = &digests.digests[0];
|
|
+
|
|
+ *ret = result = grub_malloc (sizeof (*result) + d->size);
|
|
+ grub_memcpy (result->value, d->buffer, d->size);
|
|
+ result->algorithm = info->name;
|
|
+ result->size = d->size;
|
|
+
|
|
+ return GRUB_ERR_NONE;
|
|
+}
|
|
+
|
|
+void
|
|
+grub_tpm_digest_free (struct grub_tpm_digest *d)
|
|
+{
|
|
+ grub_free (d);
|
|
+}
|
|
+
|
|
static grub_err_t
|
|
grub_tpm2_log_event (grub_efi_handle_t tpm_handle, unsigned char *buf,
|
|
grub_size_t size, grub_uint8_t pcr,
|
|
@@ -240,3 +326,26 @@ grub_tpm_measure (unsigned char *buf, gr
|
|
else
|
|
return grub_tpm2_log_event (tpm_handle, buf, size, pcr, description);
|
|
}
|
|
+
|
|
+struct grub_tpm_digest *
|
|
+grub_tpm_read_pcr (grub_uint8_t pcr, const char *algo)
|
|
+{
|
|
+ grub_efi_handle_t tpm_handle;
|
|
+ grub_efi_uint8_t protocol_version;
|
|
+ struct grub_tpm_digest *result = NULL;
|
|
+
|
|
+
|
|
+ if (!grub_tpm_handle_find (&tpm_handle, &protocol_version))
|
|
+ return 0;
|
|
+
|
|
+ if (protocol_version != 2)
|
|
+ {
|
|
+ grub_error (GRUB_ERR_BAD_DEVICE, N_("%s: TPM version %d not implemented"), __func__, protocol_version);
|
|
+ return NULL;
|
|
+ }
|
|
+
|
|
+ if (grub_tpm2_read_pcr (pcr, algo, &result))
|
|
+ return NULL;
|
|
+
|
|
+ return result;
|
|
+}
|