* [PATCH v2] crypto: inside-secure - Zeroize temporary arrays on stack with sensitive data
@ 2026-08-19 10:58 Thomas Huth
2026-08-19 11:43 ` Antoine Tenart
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Huth @ 2026-08-19 10:58 UTC (permalink / raw)
To: Antoine Tenart, Herbert Xu
Cc: David S. Miller, Pascal van Leeuwen, linux-crypto, linux-kernel
key_tmp[] in safexcel_xcbcmac_setkey() and consts[] / _const[] in
safexcel_cmac_setkey() contain crypto key material that should not
get exposed to the outside once the function is done. Scrub the
arrays with memzero_explicit() to avoid that the data could leak
via the stack.
Reported-by: Sashiko <sashiko-bot@kernel.org>
Link: https://sashiko.dev/#/patchset/20260813134953.979481-1-thuth%40redhat.com
Fixes: 38f21b4bab11f ("crypto: inside-secure - Added support for the AES XCBC ahash")
Fixes: 7a627db9cafdb ("crypto: inside-secure - Added support for the AES-CMAC ahash")
Acked-by: Antoine Tenart <atenart@kernel.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
v2: Added "Fixes:" and "Reported-by:" tags
drivers/crypto/inside-secure/safexcel_hash.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/crypto/inside-secure/safexcel_hash.c b/drivers/crypto/inside-secure/safexcel_hash.c
index 3402e570d045c..1ae6fbec31298 100644
--- a/drivers/crypto/inside-secure/safexcel_hash.c
+++ b/drivers/crypto/inside-secure/safexcel_hash.c
@@ -1993,6 +1993,7 @@ static int safexcel_xcbcmac_setkey(struct crypto_ahash *tfm, const u8 *key,
ret = aes_prepareenckey(ctx->aes,
(u8 *)key_tmp + 2 * AES_BLOCK_SIZE,
AES_MIN_KEY_SIZE);
+ memzero_explicit(key_tmp, sizeof(key_tmp));
if (ret)
return ret;
@@ -2104,6 +2105,9 @@ static int safexcel_cmac_setkey(struct crypto_ahash *tfm, const u8 *key,
}
ctx->cbcmac = false;
+
+ memzero_explicit(consts, sizeof(consts));
+ memzero_explicit(_const, sizeof(_const));
return 0;
}
--
2.55.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] crypto: inside-secure - Zeroize temporary arrays on stack with sensitive data
2026-08-19 10:58 [PATCH v2] crypto: inside-secure - Zeroize temporary arrays on stack with sensitive data Thomas Huth
@ 2026-08-19 11:43 ` Antoine Tenart
2026-08-19 15:16 ` Thomas Huth
0 siblings, 1 reply; 3+ messages in thread
From: Antoine Tenart @ 2026-08-19 11:43 UTC (permalink / raw)
To: Thomas Huth
Cc: atenart, Herbert Xu, David S. Miller, Pascal van Leeuwen,
linux-crypto, linux-kernel
On Wed, Aug 19, 2026 at 12:58:36PM +0200, Thomas Huth wrote:
> key_tmp[] in safexcel_xcbcmac_setkey() and consts[] / _const[] in
> safexcel_cmac_setkey() contain crypto key material that should not
> get exposed to the outside once the function is done. Scrub the
> arrays with memzero_explicit() to avoid that the data could leak
> via the stack.
>
> Reported-by: Sashiko <sashiko-bot@kernel.org>
> Link: https://sashiko.dev/#/patchset/20260813134953.979481-1-thuth%40redhat.com
> Fixes: 38f21b4bab11f ("crypto: inside-secure - Added support for the AES XCBC ahash")
> Fixes: 7a627db9cafdb ("crypto: inside-secure - Added support for the AES-CMAC ahash")
> Acked-by: Antoine Tenart <atenart@kernel.org>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> v2: Added "Fixes:" and "Reported-by:" tags
>
> drivers/crypto/inside-secure/safexcel_hash.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/crypto/inside-secure/safexcel_hash.c b/drivers/crypto/inside-secure/safexcel_hash.c
> index 3402e570d045c..1ae6fbec31298 100644
> --- a/drivers/crypto/inside-secure/safexcel_hash.c
> +++ b/drivers/crypto/inside-secure/safexcel_hash.c
> @@ -1993,6 +1993,7 @@ static int safexcel_xcbcmac_setkey(struct crypto_ahash *tfm, const u8 *key,
> ret = aes_prepareenckey(ctx->aes,
> (u8 *)key_tmp + 2 * AES_BLOCK_SIZE,
> AES_MIN_KEY_SIZE);
> + memzero_explicit(key_tmp, sizeof(key_tmp));
> if (ret)
> return ret;
>
> @@ -2104,6 +2105,9 @@ static int safexcel_cmac_setkey(struct crypto_ahash *tfm, const u8 *key,
> }
> ctx->cbcmac = false;
>
> +
Sorry, I just noticed there's an extra empty line here.
> + memzero_explicit(consts, sizeof(consts));
> + memzero_explicit(_const, sizeof(_const));
> return 0;
> }
>
> --
> 2.55.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] crypto: inside-secure - Zeroize temporary arrays on stack with sensitive data
2026-08-19 11:43 ` Antoine Tenart
@ 2026-08-19 15:16 ` Thomas Huth
0 siblings, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2026-08-19 15:16 UTC (permalink / raw)
To: Antoine Tenart
Cc: Herbert Xu, David S. Miller, Pascal van Leeuwen, linux-crypto,
linux-kernel
On 19/08/2026 13.43, Antoine Tenart wrote:
> On Wed, Aug 19, 2026 at 12:58:36PM +0200, Thomas Huth wrote:
>> key_tmp[] in safexcel_xcbcmac_setkey() and consts[] / _const[] in
>> safexcel_cmac_setkey() contain crypto key material that should not
>> get exposed to the outside once the function is done. Scrub the
>> arrays with memzero_explicit() to avoid that the data could leak
>> via the stack.
>>
>> Reported-by: Sashiko <sashiko-bot@kernel.org>
>> Link: https://sashiko.dev/#/patchset/20260813134953.979481-1-thuth%40redhat.com
>> Fixes: 38f21b4bab11f ("crypto: inside-secure - Added support for the AES XCBC ahash")
>> Fixes: 7a627db9cafdb ("crypto: inside-secure - Added support for the AES-CMAC ahash")
>> Acked-by: Antoine Tenart <atenart@kernel.org>
>> Signed-off-by: Thomas Huth <thuth@redhat.com>
>> ---
>> v2: Added "Fixes:" and "Reported-by:" tags
>>
>> drivers/crypto/inside-secure/safexcel_hash.c | 4 ++++
>> 1 file changed, 4 insertions(+)
>>
>> diff --git a/drivers/crypto/inside-secure/safexcel_hash.c b/drivers/crypto/inside-secure/safexcel_hash.c
>> index 3402e570d045c..1ae6fbec31298 100644
>> --- a/drivers/crypto/inside-secure/safexcel_hash.c
>> +++ b/drivers/crypto/inside-secure/safexcel_hash.c
>> @@ -1993,6 +1993,7 @@ static int safexcel_xcbcmac_setkey(struct crypto_ahash *tfm, const u8 *key,
>> ret = aes_prepareenckey(ctx->aes,
>> (u8 *)key_tmp + 2 * AES_BLOCK_SIZE,
>> AES_MIN_KEY_SIZE);
>> + memzero_explicit(key_tmp, sizeof(key_tmp));
>> if (ret)
>> return ret;
>>
>> @@ -2104,6 +2105,9 @@ static int safexcel_cmac_setkey(struct crypto_ahash *tfm, const u8 *key,
>> }
>> ctx->cbcmac = false;
>>
>> +
>
> Sorry, I just noticed there's an extra empty line here.
Oops, that's embarrassing, not sure how I missed that looking at the patch
multiple times already... Thanks for spotting it, I'll send a v3.
Thomas
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-19 15:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19 10:58 [PATCH v2] crypto: inside-secure - Zeroize temporary arrays on stack with sensitive data Thomas Huth
2026-08-19 11:43 ` Antoine Tenart
2026-08-19 15:16 ` Thomas Huth
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.