linux_dsm_epyc7002/drivers/crypto/allwinner
Ard Biesheuvel 44b5917537 crypto: sun8i-ss - permit asynchronous skcipher as fallback
Even though the sun8i-ss driver implements asynchronous versions of
ecb(aes) and cbc(aes), the fallbacks it allocates are required to be
synchronous. Given that SIMD based software implementations are usually
asynchronous as well, even though they rarely complete asynchronously
(this typically only happens in cases where the request was made from
softirq context, while SIMD was already in use in the task context that
it interrupted), these implementations are disregarded, and either the
generic C version or another table based version implemented in assembler
is selected instead.

Since falling back to synchronous AES is not only a performance issue, but
potentially a security issue as well (due to the fact that table based AES
is not time invariant), let's fix this, by allocating an ordinary skcipher
as the fallback, and invoke it with the completion routine that was given
to the outer request.

Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Acked-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
2020-07-16 21:49:02 +10:00
..
sun4i-ss crypto: sun4i - permit asynchronous skcipher as fallback 2020-07-16 21:49:02 +10:00
sun8i-ce crypto: sun8i-ce - permit asynchronous skcipher as fallback 2020-07-16 21:49:02 +10:00
sun8i-ss crypto: sun8i-ss - permit asynchronous skcipher as fallback 2020-07-16 21:49:02 +10:00
Kconfig crypto: sun4i-ss - remove dependency on not 64BIT 2019-11-22 18:48:37 +08:00
Makefile crypto: allwinner - Add sun8i-ss cryptographic offloader 2019-11-01 13:38:31 +08:00