* [PATCH v1 0/1] s390/crypto: Generate iintermediate chaining value on export @ 2026-08-14 14:20 Holger Dengler 2026-08-14 14:20 ` [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling Holger Dengler 0 siblings, 1 reply; 5+ messages in thread From: Holger Dengler @ 2026-08-14 14:20 UTC (permalink / raw) To: Harald Freudenberger, Herbert Xu Cc: dengler, linux-s390, Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Eric Biggers, linux-crypto, ifranzki While exporting the state of the hmac chipher, the intermediate chaining value (CV) has to be calculated. Calling the KIMD instruction on s390 will generate the correct value. The code already sets the correct function code for the instruction, but it calls the wrong instruction (KLMD). The patch just fixes this. This series applies on top of Linus' master branch. Holger Dengler (1): s390/crypto: Generate intermediate CV for API partial block handling arch/s390/crypto/hmac_s390.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) base-commit: 2f1baf1fc8929e6c48370be543ad028ac7ad4131 -- 2.55.0 ^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling 2026-08-14 14:20 [PATCH v1 0/1] s390/crypto: Generate iintermediate chaining value on export Holger Dengler @ 2026-08-14 14:20 ` Holger Dengler 2026-08-14 14:29 ` Harald Freudenberger 2026-08-14 14:31 ` sashiko-bot 0 siblings, 2 replies; 5+ messages in thread From: Holger Dengler @ 2026-08-14 14:20 UTC (permalink / raw) To: Harald Freudenberger, Herbert Xu Cc: dengler, linux-s390, Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Eric Biggers, linux-crypto, ifranzki The API partial block handling requires a intermediate chaining value (CV). The internal function hash_data() sets the function code correctly, so also call cpacf_kimd() instruction for intermediate CV generation, as cpacf_klmd() always generate the final hash value. Cc: stable@vger.kernel.org # 6.15+ Fixes: 08811169ac01 ("crypto: s390/hmac - Use API partial block handling") Signed-off-by: Holger Dengler <dengler@linux.ibm.com> --- arch/s390/crypto/hmac_s390.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/arch/s390/crypto/hmac_s390.c b/arch/s390/crypto/hmac_s390.c index f8cd09f341d4..445fa7bbd958 100644 --- a/arch/s390/crypto/hmac_s390.c +++ b/arch/s390/crypto/hmac_s390.c @@ -150,7 +150,10 @@ static int hash_data(const u8 *in, unsigned int inlen, #undef PARAM_INIT - cpacf_klmd(func, ¶m, in, inlen); + if (final) + cpacf_klmd(func, ¶m, in, inlen); + else + cpacf_kimd(func, ¶m, in, inlen); memcpy(digest, ¶m, digestsize); -- 2.55.0 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling 2026-08-14 14:20 ` [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling Holger Dengler @ 2026-08-14 14:29 ` Harald Freudenberger 2026-08-14 14:31 ` sashiko-bot 1 sibling, 0 replies; 5+ messages in thread From: Harald Freudenberger @ 2026-08-14 14:29 UTC (permalink / raw) To: Holger Dengler Cc: Herbert Xu, linux-s390, Heiko Carstens, Vasily Gorbik, Alexander Gordeev, Eric Biggers, linux-crypto, ifranzki On 2026-08-14 16:20, Holger Dengler wrote: > The API partial block handling requires a intermediate chaining > value (CV). The internal function hash_data() sets the function code > correctly, so also call cpacf_kimd() instruction for intermediate CV > generation, as cpacf_klmd() always generate the final hash value. > > Cc: stable@vger.kernel.org # 6.15+ > Fixes: 08811169ac01 ("crypto: s390/hmac - Use API partial block > handling") > Signed-off-by: Holger Dengler <dengler@linux.ibm.com> > --- > arch/s390/crypto/hmac_s390.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/arch/s390/crypto/hmac_s390.c > b/arch/s390/crypto/hmac_s390.c > index f8cd09f341d4..445fa7bbd958 100644 > --- a/arch/s390/crypto/hmac_s390.c > +++ b/arch/s390/crypto/hmac_s390.c > @@ -150,7 +150,10 @@ static int hash_data(const u8 *in, unsigned int > inlen, > > #undef PARAM_INIT > > - cpacf_klmd(func, ¶m, in, inlen); > + if (final) > + cpacf_klmd(func, ¶m, in, inlen); > + else > + cpacf_kimd(func, ¶m, in, inlen); > > memcpy(digest, ¶m, digestsize); Reviewed-by: Harald Freudenberger <freude@linux.ibm.com> ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling 2026-08-14 14:20 ` [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling Holger Dengler 2026-08-14 14:29 ` Harald Freudenberger @ 2026-08-14 14:31 ` sashiko-bot 2026-08-14 15:08 ` Holger Dengler 1 sibling, 1 reply; 5+ messages in thread From: sashiko-bot @ 2026-08-14 14:31 UTC (permalink / raw) To: Holger Dengler Cc: linux-s390, Alexander Gordeev, Heiko Carstens, Vasily Gorbik, Christian Borntraeger Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: Pre-existing issues: - [High] Hardware Alignment Requirement Violation due to `__packed` attribute -- --- Patch [1]: [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling --- commit 6ca29d2947b71c2e1420feb8fbee6504922ff37f Author: Holger Dengler <dengler@linux.ibm.com> s390/crypto: Generate intermediate CV for API partial block handling This commit updates the internal hash_data() function to conditionally use cpacf_kimd() for intermediate chaining values when API partial block handling is requested, reserving cpacf_klmd() for the final hash value. > diff --git a/arch/s390/crypto/hmac_s390.c b/arch/s390/crypto/hmac_s390.c > index f8cd09f341d4b..445fa7bbd9586 100644 > --- a/arch/s390/crypto/hmac_s390.c > +++ b/arch/s390/crypto/hmac_s390.c > @@ -150,7 +150,10 @@ static int hash_data(const u8 *in, unsigned int inlen, > > #undef PARAM_INIT > > - cpacf_klmd(func, ¶m, in, inlen); > + if (final) > + cpacf_klmd(func, ¶m, in, inlen); > + else > + cpacf_kimd(func, ¶m, in, inlen); [Severity: High] This is a pre-existing issue, but could the alignment of the param block passed to cpacf_kimd() and cpacf_klmd() trigger a hardware specification exception? The param variable is defined earlier in hash_data() with the __packed attribute: union { struct sha256_paramblock { u32 h[8]; u64 mbl; } sha256; struct sha512_paramblock { u64 h[8]; u128 mbl; } sha512; } __packed param; The __packed attribute reduces the compiler's alignment requirement for param to 1 byte. The z/Architecture requires doubleword (8-byte) alignment for KIMD and KLMD parameter blocks. If the compiler places param on a stack address not divisible by 8, won't this cause a kernel panic when passed to these hardware instructions? Since the struct fields inside the union are naturally packed, can we remove the __packed attribute to ensure the compiler maintains safe alignment? > > memcpy(digest, ¶m, digestsize); > -- Sashiko AI review · https://sashiko.dev/#/patchset/20260814142010.259918-2-dengler@linux.ibm.com?part=1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling 2026-08-14 14:31 ` sashiko-bot @ 2026-08-14 15:08 ` Holger Dengler 0 siblings, 0 replies; 5+ messages in thread From: Holger Dengler @ 2026-08-14 15:08 UTC (permalink / raw) To: sashiko-reviews Cc: linux-s390, Alexander Gordeev, Heiko Carstens, Vasily Gorbik, Christian Borntraeger On 8/14/26 16:31, sashiko-bot@kernel.org wrote: > Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider: > > Pre-existing issues: > - [High] Hardware Alignment Requirement Violation due to `__packed` attribute > -- > > --- Patch [1]: [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling --- > commit 6ca29d2947b71c2e1420feb8fbee6504922ff37f > Author: Holger Dengler <dengler@linux.ibm.com> > > s390/crypto: Generate intermediate CV for API partial block handling > > This commit updates the internal hash_data() function to conditionally use > cpacf_kimd() for intermediate chaining values when API partial block handling > is requested, reserving cpacf_klmd() for the final hash value. > >> diff --git a/arch/s390/crypto/hmac_s390.c b/arch/s390/crypto/hmac_s390.c >> index f8cd09f341d4b..445fa7bbd9586 100644 >> --- a/arch/s390/crypto/hmac_s390.c >> +++ b/arch/s390/crypto/hmac_s390.c >> @@ -150,7 +150,10 @@ static int hash_data(const u8 *in, unsigned int inlen, >> >> #undef PARAM_INIT >> >> - cpacf_klmd(func, ¶m, in, inlen); >> + if (final) >> + cpacf_klmd(func, ¶m, in, inlen); >> + else >> + cpacf_kimd(func, ¶m, in, inlen); > > [Severity: High] > This is a pre-existing issue, but could the alignment of the param block passed > to cpacf_kimd() and cpacf_klmd() trigger a hardware specification exception? > > The param variable is defined earlier in hash_data() with the __packed > attribute: > > union { > struct sha256_paramblock { > u32 h[8]; > u64 mbl; > } sha256; > struct sha512_paramblock { > u64 h[8]; > u128 mbl; > } sha512; > } __packed param; > > The __packed attribute reduces the compiler's alignment requirement for param > to 1 byte. The z/Architecture requires doubleword (8-byte) alignment for KIMD > and KLMD parameter blocks. This is not true. The z/Architecture (as described in "z/Architecture, Principles of Operation") does not require any alignment for the address of the parameter block in general register GR1. > If the compiler places param on a stack address not divisible by 8, won't this > cause a kernel panic when passed to these hardware instructions? There is no specification exception documented, if the parameter block address in GR1 is not 8-byte aligned. A stack address not divisible by 8 will not cause a specification exception and there for also no kernel crash. > Since the struct fields inside the union are naturally packed, can we remove > the __packed attribute to ensure the compiler maintains safe alignment? The __packed statement may be redundant. But I would prefer to leave it in the code, because it increases the readability. [...] -- Mit freundlichen Grüßen / Kind regards Holger Dengler ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-08-14 15:08 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-14 14:20 [PATCH v1 0/1] s390/crypto: Generate iintermediate chaining value on export Holger Dengler 2026-08-14 14:20 ` [PATCH v1 1/1] s390/crypto: Generate intermediate CV for API partial block handling Holger Dengler 2026-08-14 14:29 ` Harald Freudenberger 2026-08-14 14:31 ` sashiko-bot 2026-08-14 15:08 ` Holger Dengler
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox