From: Petr Vorel <pvorel@suse.cz>
To: linux-integrity@vger.kernel.org
Cc: Petr Vorel <pvorel@suse.cz>, Mimi Zohar <zohar@linux.vnet.ibm.com>
Subject: [PATCH ima-evm-utils] cmd_ima_bootaggr: Fix for systems without TPM 2.0
Date: Thu, 18 Jun 2020 20:10:07 +0200 [thread overview]
Message-ID: <20200618181007.148765-1-pvorel@suse.cz> (raw)
For both kernel with and without CONFIG_IMA=y.
NOTE: ima_boot_aggregate was added in dc00c92, without TPM 2.0
it just reported:
EVP_DigestInit() failed
(null):
Fixes: 917317a ("ima_evm_utils: emit the per TPM PCR bank
"boot_aggregate" values")
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
src/evmctl.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/evmctl.c b/src/evmctl.c
index 1d065ce..94ec56b 100644
--- a/src/evmctl.c
+++ b/src/evmctl.c
@@ -1998,11 +1998,17 @@ static int cmd_ima_bootaggr(struct command *cmd)
* Format: <hash algorithm name>:<boot_aggregate digest>\n ...
*/
for (i = 0; i < num_banks; i++) {
- if (!tpm_banks[i].supported)
+ if (!tpm_banks[i].supported || !tpm_banks[i].algo_name)
continue;
bootaggr_len += strlen(tpm_banks[i].algo_name) + 1;
bootaggr_len += (tpm_banks[i].digest_size * 2) + 1;
}
+
+ if (!bootaggr_len) {
+ log_info("No TPM 2.0 PCR bank algorithm found (no TPM 2.0?)\n");
+ return -1;
+ }
+
bootaggr = malloc(bootaggr_len);
/*
@@ -2012,7 +2018,7 @@ static int cmd_ima_bootaggr(struct command *cmd)
* strings.
*/
for (i = 0; i < num_banks; i++) {
- if (!tpm_banks[i].supported)
+ if (!tpm_banks[i].supported || !tpm_banks[i].algo_name)
continue;
calc_bootaggr(&tpm_banks[i]);
offset += append_bootaggr(bootaggr + offset, tpm_banks + i);
--
2.27.0.rc0
next reply other threads:[~2020-06-18 18:10 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-18 18:10 Petr Vorel [this message]
2020-06-18 18:20 ` [PATCH ima-evm-utils] cmd_ima_bootaggr: Fix for systems without TPM 2.0 Mimi Zohar
2020-06-18 18:59 ` Petr Vorel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200618181007.148765-1-pvorel@suse.cz \
--to=pvorel@suse.cz \
--cc=linux-integrity@vger.kernel.org \
--cc=zohar@linux.vnet.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox