Fix GHASH-ASM implementation on s390x
authorJuergen Christ <jchrist@linux.ibm.com>
Tue, 2 Aug 2022 12:41:00 +0000 (14:41 +0200)
committerMatt Caswell <matt@openssl.org>
Tue, 9 Aug 2022 09:52:08 +0000 (10:52 +0100)
commitcd854f225bbef9561fad680e2628dfd55be1b141
tree20e991f1e07fb0316fc88257c14d74e17239c7e5
parentfc5888ccb60f33b366972299f30b976c4dc12162
Fix GHASH-ASM implementation on s390x

s390x GHASH assembler implementation assumed it was called from a
gcm128_context structure where the Xi paramter to the ghash function was
embedded in that structure.  Since the structure layout resembles the paramter
block required for kimd-GHASH, the assembler code simply assumed the 128 bytes
after Xi are the hash subkey.

This assumption was broken with the introduction of AES-GCM-SIV which uses the
GHASH implementation without a gcm128_context structure.  Furthermore, the
bytes following the Xi input parameter to the GHASH function do not contain
the hash subkey.  To fix this, we remove the assumption about the calling
context and build the parameter block on the stack.  This requires some
copying of data to and from the stack.  While this introduces a performance
degradation, new systems anyway use kma for GHASH/AES-GCM.

Finally fixes #18693 for s390x.

Signed-off-by: Juergen Christ <jchrist@linux.ibm.com>
Reviewed-by: Todd Short <todd.short@me.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/18939)
crypto/modes/asm/ghash-s390x.pl