From: sashiko-bot@kernel.org
To: "Harald Freudenberger" <freude@linux.ibm.com>
Cc: linux-s390@vger.kernel.org,
"Alexander Gordeev" <agordeev@linux.ibm.com>,
"Heiko Carstens" <hca@linux.ibm.com>,
"Vasily Gorbik" <gor@linux.ibm.com>
Subject: Re: [PATCH v2 1/1] s390/zcrypt: Fix missing mem scrub at clear key import in cca_clr2cipherkey()
Date: Wed, 29 Jul 2026 14:12:20 +0000 [thread overview]
Message-ID: <20260729141220.E28071F000E9@smtp.kernel.org> (raw)
In-Reply-To: <20260729140134.191448-2-freude@linux.ibm.com>
Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
Pre-existing issues:
- [High] Unvalidated length field `t->len` from an untrusted hardware response leads to severe out-of-bounds memory accesses during `memcpy()`.
--
--- Patch [1]: [PATCH v2 1/1] s390/zcrypt: Fix missing mem scrub at clear key import in cca_clr2cipherkey() ---
commit 0678dd664c1b50d9a38dff946d27b4823de1e205
Author: Harald Freudenberger <freude@linux.ibm.com>
s390/zcrypt: Fix missing mem scrub at clear key import in cca_clr2cipherkey()
This commit adds a parameter to _ip_cprb_helper() to scrub the CPRB buffer
after processing clear key material. It also adds explicit zeroing of the
buffers before freeing them in cca_clr2cipherkey() to prevent sensitive
data exposure.
> diff --git a/drivers/s390/crypto/zcrypt_ccamisc.c b/drivers/s390/crypto/zcrypt_ccamisc.c
> index 84936a795b956..9cf268efd4abf 100644
> --- a/drivers/s390/crypto/zcrypt_ccamisc.c
> +++ b/drivers/s390/crypto/zcrypt_ccamisc.c
[ ... ]
> @@ -1111,7 +1112,7 @@ static int _ip_cprb_helper(u16 cardnr, u16 domain,
> *key_token_size = t->len;
[Severity: High]
This is a pre-existing issue, but is it possible for a compromised or
malfunctioning hardware device to return a maliciously crafted response
length in t->len?
In _ip_cprb_helper(), the unvalidated t->len from the hardware response is
directly used as the length for copying just before this line:
t = (struct cipherkeytoken *)prepparm->kb.tlv1.key_token;
memcpy(key_token, t, t->len);
*key_token_size = t->len;
Without bounds checking against the actual buffer size, could this lead to an
out-of-bounds read from the device response buffer and an out-of-bounds write
into the key_token buffer?
Also, on subsequent iterations in cca_clr2cipherkey(), the poisoned
*key_token_size is used to construct the next request:
preq_key_block->tlv1.len = sizeof(preq_key_block->tlv1) + n;
preq_key_block->tlv1.flag = 0x0030;
memcpy(preq_key_block->tlv1.key_token, key_token, *key_token_size);
Does this cause another unbounded copy into the smaller parameter buffer during
the next loop iteration?
>
> out:
> - free_cprbmem(mem, PARMBSIZE, false, xflags);
> + free_cprbmem(mem, PARMBSIZE, scrub, xflags);
> return rc;
> }
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260729140134.191448-2-freude@linux.ibm.com?part=1
next prev parent reply other threads:[~2026-07-29 14:12 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-29 14:01 [PATCH v2 0/1] Fix missing mem scrub at clear key import in cca_clr2cipherkey() Harald Freudenberger
2026-07-29 14:01 ` [PATCH v2 1/1] s390/zcrypt: " Harald Freudenberger
2026-07-29 14:12 ` sashiko-bot [this message]
2026-07-29 14:49 ` Harald Freudenberger
2026-07-29 16:01 ` Harald Freudenberger
2026-07-29 16:24 ` Holger Dengler
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=20260729141220.E28071F000E9@smtp.kernel.org \
--to=sashiko-bot@kernel.org \
--cc=agordeev@linux.ibm.com \
--cc=freude@linux.ibm.com \
--cc=gor@linux.ibm.com \
--cc=hca@linux.ibm.com \
--cc=linux-s390@vger.kernel.org \
--cc=sashiko-reviews@lists.linux.dev \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.