summaryrefslogtreecommitdiffstats
path: root/usr
diff options
context:
space:
mode:
authorArd Biesheuvel <ardb@kernel.org>2020-07-07 09:32:01 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2020-07-16 21:49:03 +1000
commit90e2f782719fc5ad2af63096815a69c5320704cb (patch)
tree0cb1943bf16bb14f11ed40cb1ea3ba6b3de6a213 /usr
parentdc6e71c9d9cfef98b95cb6e7e91ed2bb64b63e76 (diff)
downloadlinux-90e2f782719fc5ad2af63096815a69c5320704cb.tar.gz
linux-90e2f782719fc5ad2af63096815a69c5320704cb.tar.bz2
linux-90e2f782719fc5ad2af63096815a69c5320704cb.zip
crypto: qce - permit asynchronous skcipher as fallback
Even though the qce driver implements asynchronous versions of ecb(aes), cbc(aes)and xts(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. While at it, remove the pointless memset() from qce_skcipher_init(), and remove the call to it qce_skcipher_init_fallback(). Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'usr')
0 files changed, 0 insertions, 0 deletions