]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: picoxcell - permit asynchronous skcipher as fallback
authorArd Biesheuvel <ardb@kernel.org>
Tue, 7 Jul 2020 06:32:00 +0000 (09:32 +0300)
committerHerbert Xu <herbert@gondor.apana.org.au>
Thu, 16 Jul 2020 11:49:03 +0000 (21:49 +1000)
commita47ee45b50e9f8e873d791a2119c774ab73a349b
tree2c8c996b5dd79e5e062b8f70b741bca1c4091216
parentb6d0581b8f678bd26efa6ffd39e3c209db193c3f
crypto: picoxcell - permit asynchronous skcipher as fallback

Even though the picoxcell 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>
Reviewed-by: Jamie Iles <jamie@jamieiles.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/picoxcell_crypto.c