From: Bruno Meneguele <bmeneg@redhat.com>
To: Mimi Zohar <zohar@linux.ibm.com>
Cc: linux-integrity@vger.kernel.org, Petr Vorel <pvorel@suse.cz>
Subject: Re: [PATCH v2 2/8] ima_evm_utils: support extending TPM 2.0 banks w/original SHA1 padded digest
Date: Wed, 15 Jul 2020 15:43:27 -0300 [thread overview]
Message-ID: <20200715184327.GH3720@glitch> (raw)
In-Reply-To: <1594396859-9232-3-git-send-email-zohar@linux.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 2702 bytes --]
Hi Mimi,
On Fri, Jul 10, 2020 at 12:00:53PM -0400, Mimi Zohar wrote:
> Initially the sha1 digest, including violations, was padded with zeroes
> before being extended into the other TPM banks. Support walking the
> IMA measurement list, calculating the per TPM bank SHA1 padded
> digest(s).
>
> Signed-off-by: Mimi Zohar <zohar@linux.ibm.com>
> ---
> src/evmctl.c | 73 +++++++++++++++++++++++++++++++++++++++++++++++-------------
> 1 file changed, 58 insertions(+), 15 deletions(-)
>
> diff --git a/src/evmctl.c b/src/evmctl.c
> index 0e489e2c7ba6..814aa6b75571 100644
> --- a/src/evmctl.c
> +++ b/src/evmctl.c
> @@ -1613,6 +1613,10 @@ static struct tpm_bank_info *init_tpm_banks(int *num_banks)
> return banks;
> }
>
> +/*
> + * Compare the calculated TPM PCR banks against the PCR values read.
> + * On failure to match any TPM bank, fail comparison.
> + */
> static int compare_tpm_banks(int num_banks, struct tpm_bank_info *bank,
> struct tpm_bank_info *tpm_bank)
> {
> @@ -1632,14 +1636,15 @@ static int compare_tpm_banks(int num_banks, struct tpm_bank_info *bank,
> log_info("%s: TPM PCR-%d: ", tpm_bank[i].algo_name, j);
> log_dump(tpm_bank[i].pcr[j], tpm_bank[i].digest_size);
>
> - ret = memcmp(bank[i].pcr[j], tpm_bank[i].pcr[j],
> - bank[i].digest_size);
> - if (!ret)
> + if (memcmp(bank[i].pcr[j], tpm_bank[i].pcr[j],
> + bank[i].digest_size) == 0) {
> log_info("%s PCR-%d: succeed\n",
> bank[i].algo_name, j);
> - else
> + } else {
> + ret = 1;
> log_info("%s: PCRAgg %d does not match TPM PCR-%d\n",
> bank[i].algo_name, j, j);
> + }
> }
> }
> return ret;
> @@ -1695,10 +1700,7 @@ static int extend_tpm_bank(EVP_MD_CTX *pctx, const EVP_MD *md,
> goto out;
> }
>
> - if (validate && !memcmp(entry->header.digest, zero, SHA_DIGEST_LENGTH))
> - err = EVP_DigestUpdate(pctx, fox, bank->digest_size);
'fox' is not being used in the code anymore. It could be totally removed
afaics.
diff --git a/src/evmctl.c b/src/evmctl.c
index 90a3eeb..ae513b0 100644
--- a/src/evmctl.c
+++ b/src/evmctl.c
@@ -1425,7 +1425,6 @@ struct template_entry {
};
static uint8_t zero[MAX_DIGEST_SIZE];
-static uint8_t fox[MAX_DIGEST_SIZE];
static int validate = 0;
static int verify = 0;
@@ -1886,7 +1885,6 @@ static int ima_measurement(const char *file)
errno = 0;
memset(zero, 0, MAX_DIGEST_SIZE);
- memset(fox, 0xff, MAX_DIGEST_SIZE);
pseudo_padded_banks = init_tpm_banks(&num_banks);
pseudo_banks = init_tpm_banks(&num_banks);
--
bmeneg
PGP Key: http://bmeneg.com/pubkey.txt
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2020-07-15 18:43 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-10 16:00 [PATCH v2 0/8] additional "ima-measurement" support Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 1/8] ima-evm-utils: improve reading TPM 1.2 PCRs Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 2/8] ima_evm_utils: support extending TPM 2.0 banks w/original SHA1 padded digest Mimi Zohar
2020-07-15 18:43 ` Bruno Meneguele [this message]
2020-07-15 19:47 ` Mimi Zohar
2020-07-15 20:11 ` Mimi Zohar
2020-07-15 20:17 ` Bruno Meneguele
2020-07-10 16:00 ` [PATCH v2 3/8] ima-evm-utils: support providing the TPM 1.2 PCRs as a file Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 4/8] ima-evm-utils: emit "ima_measurement" messages based on log level Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 5/8] ima-evm-utils: guarantee the measurement list contains all the records Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 6/8] ima-evm-utils: the IMA measurement list may have too many measurements Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 7/8] ima-evm-utils: optionally verify the template data file signature Mimi Zohar
2020-07-10 16:00 ` [PATCH v2 8/8] ima-evm-utils: update README to reflect "--pcrs", "--verify" and "--validate" Mimi Zohar
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=20200715184327.GH3720@glitch \
--to=bmeneg@redhat.com \
--cc=linux-integrity@vger.kernel.org \
--cc=pvorel@suse.cz \
--cc=zohar@linux.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