From: Stefan Berger <stefanb@linux.ibm.com>
To: Roberto Sassu <roberto.sassu@huaweicloud.com>,
zohar@linux.ibm.com, dmitry.kasatkin@gmail.com
Cc: linux-integrity@vger.kernel.org, vt@altlinux.org, pvorel@suse.cz,
paul@paul-moore.com, casey@schaufler-ca.com,
Roberto Sassu <roberto.sassu@huawei.com>
Subject: Re: [PATCH v3 ima-evm-utils 1/4] Include the filesystem UUID in HMAC calculation
Date: Mon, 19 Jun 2023 11:51:53 -0400 [thread overview]
Message-ID: <25349506-65a5-67ac-ca0f-b6e4fe829313@linux.ibm.com> (raw)
In-Reply-To: <20230616192358.314906-2-roberto.sassu@huaweicloud.com>
On 6/16/23 15:23, Roberto Sassu wrote:
> From: Roberto Sassu <roberto.sassu@huawei.com>
>
> Modify calc_evm_hmac() to include, similarly to calc_evm_hash(), the
> filesystem UUID in the HMAC calculation.
>
> If the -u option is not specified in the evmctl command line, the UUID of
> the filesystem the input file resides on is taken for the calculation.
>
> If a string is specified as a value for the -u option, that string is taken
> as UUID (assuming that it is formatted correctly).
>
> If no value is specified for the -u option, the filesystem UUID is not
> included in the HMAC calculation.
>
> Not including the filesystem UUID in the digest/HMAC calculation is needed
> for the case where the kernel is compiled with CONFIG_EVM_ATTR_FSUUID=n, or
> the digest/HMAC is not for an EVM portable signature.
>
> Fixes: 1d24a94bb556 ("added uuid support for EVM")
> Signed-off-by: Roberto Sassu <roberto.sassu@huawei.com>
> ---
> src/evmctl.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/src/evmctl.c b/src/evmctl.c
> index c35a28c58f4..c24261cf0e6 100644
> --- a/src/evmctl.c
> +++ b/src/evmctl.c
> @@ -1199,6 +1199,7 @@ static int calc_evm_hmac(const char *file, const char *keyfile, unsigned char *s
> int keylen;
> unsigned char evmkey[MAX_KEY_SIZE];
> char list[1024];
> + char uuid[16];
> ssize_t list_size;
> struct h_misc_64 hmac_misc;
> int hmac_size;
> @@ -1330,6 +1331,18 @@ static int calc_evm_hmac(const char *file, const char *keyfile, unsigned char *s
> log_err("EVP_DigestSignUpdate() failed\n");
> goto out_ctx_cleanup;
> }
> + if (!(hmac_flags & HMAC_FLAG_NO_UUID)) {
> + err = get_uuid(&st, uuid);
> + if (err)
> + goto out_ctx_cleanup;
> +
> + err = EVP_DigestSignUpdate(pctx, (const unsigned char *)uuid,
> + sizeof(uuid));
> + if (!err) {
> + log_err("EVP_DigestSignUpdate() failed\n");
> + goto out_ctx_cleanup;
> + }
> + }
> err = EVP_DigestSignFinal(pctx, sig, &siglen);
> if (err != 1)
> log_err("EVP_DigestSignFinal() failed\n");
Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
next prev parent reply other threads:[~2023-06-19 15:52 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-16 19:23 [PATCH v3 ima-evm-utils 0/4] Simple EVM HMAC calculation tests Roberto Sassu
2023-06-16 19:23 ` [PATCH v3 ima-evm-utils 1/4] Include the filesystem UUID in HMAC calculation Roberto Sassu
2023-06-19 15:51 ` Stefan Berger [this message]
2023-06-16 19:23 ` [PATCH v3 ima-evm-utils 2/4] Restore correct HMAC calculation for directories Roberto Sassu
2023-06-19 15:54 ` Stefan Berger
2023-06-19 15:59 ` Roberto Sassu
2023-06-16 19:23 ` [PATCH v3 ima-evm-utils 3/4] Add --hmackey option for evmctl Roberto Sassu
2023-06-19 15:59 ` Stefan Berger
2023-06-16 19:23 ` [PATCH v3 ima-evm-utils 4/4] Add simple tests to check EVM HMAC calculation Roberto Sassu
2023-06-23 11:42 ` Mimi Zohar
2023-06-23 11:45 ` Roberto Sassu
2023-06-23 14:30 ` 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=25349506-65a5-67ac-ca0f-b6e4fe829313@linux.ibm.com \
--to=stefanb@linux.ibm.com \
--cc=casey@schaufler-ca.com \
--cc=dmitry.kasatkin@gmail.com \
--cc=linux-integrity@vger.kernel.org \
--cc=paul@paul-moore.com \
--cc=pvorel@suse.cz \
--cc=roberto.sassu@huawei.com \
--cc=roberto.sassu@huaweicloud.com \
--cc=vt@altlinux.org \
--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;
as well as URLs for NNTP newsgroup(s).