From: Antonio Alvarez Feijoo Date: Thu, 26 Oct 2023 13:14:52 +0000 (+0200) Subject: cryptenroll: fix bind default TPM2 signed policy to PCR 11 X-Git-Tag: v255-rc1~124^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb7aabf180b6a817c51e269fe72a3b314f4dc8d9;p=thirdparty%2Fsystemd.git cryptenroll: fix bind default TPM2 signed policy to PCR 11 If `--tpm2-public-key=` is not specified, but `tpm2-pcr-public-key.pem` exists in /{etc,run,usr/lib}/systemd/, the default PCR 11 is not being set. Fixes 9e437994 --- diff --git a/src/cryptenroll/cryptenroll-tpm2.c b/src/cryptenroll/cryptenroll-tpm2.c index 631aeea3b58..fab6fed0971 100644 --- a/src/cryptenroll/cryptenroll-tpm2.c +++ b/src/cryptenroll/cryptenroll-tpm2.c @@ -194,7 +194,7 @@ int enroll_tpm2(struct crypt_device *cd, r = tpm2_load_pcr_public_key(pubkey_path, &pubkey, &pubkey_size); if (r < 0) { if (pubkey_path || signature_path || r != -ENOENT) - return log_error_errno(r, "Failed read TPM PCR public key: %m"); + return log_error_errno(r, "Failed to read TPM PCR public key: %m"); log_debug_errno(r, "Failed to read TPM2 PCR public key, proceeding without: %m"); pubkey_pcr_mask = 0; diff --git a/src/cryptenroll/cryptenroll.c b/src/cryptenroll/cryptenroll.c index 174247907da..8b65485a294 100644 --- a/src/cryptenroll/cryptenroll.c +++ b/src/cryptenroll/cryptenroll.c @@ -500,7 +500,7 @@ static int parse_argv(int argc, char *argv[]) { } } - if (auto_public_key_pcr_mask && arg_tpm2_public_key) { + if (auto_public_key_pcr_mask) { assert(arg_tpm2_public_key_pcr_mask == 0); arg_tpm2_public_key_pcr_mask = INDEX_TO_MASK(uint32_t, TPM2_PCR_KERNEL_BOOT); }