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

Even though the ccp driver implements an asynchronous version of xts(aes),
the fallback it allocates is 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: John Allen <john.allen@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/crypto/ccp/ccp-crypto-aes-xts.c
drivers/crypto/ccp/ccp-crypto.h