summaryrefslogtreecommitdiffstats
path: root/crypto/aead.c
diff options
context:
space:
mode:
authorEric Biggers2019-01-07 03:47:43 +0100
committerHerbert Xu2019-01-18 11:40:24 +0100
commitb1f6b4bf416b49f00f3abc49c639371cdecaaad1 (patch)
treeebdeae9666108a5ceac5e28a2138a967a149543d /crypto/aead.c
parentcrypto: hash - set CRYPTO_TFM_NEED_KEY if ->setkey() fails (diff)
downloadkernel-qcow2-linux-b1f6b4bf416b49f00f3abc49c639371cdecaaad1.tar.gz
kernel-qcow2-linux-b1f6b4bf416b49f00f3abc49c639371cdecaaad1.tar.xz
kernel-qcow2-linux-b1f6b4bf416b49f00f3abc49c639371cdecaaad1.zip
crypto: skcipher - set CRYPTO_TFM_NEED_KEY if ->setkey() fails
Some algorithms have a ->setkey() method that is not atomic, in the sense that setting a key can fail after changes were already made to the tfm context. In this case, if a key was already set the tfm can end up in a state that corresponds to neither the old key nor the new key. For example, in lrw.c, if gf128mul_init_64k_bbe() fails due to lack of memory, then priv::table will be left NULL. After that, encryption with that tfm will cause a NULL pointer dereference. It's not feasible to make all ->setkey() methods atomic, especially ones that have to key multiple sub-tfms. Therefore, make the crypto API set CRYPTO_TFM_NEED_KEY if ->setkey() fails and the algorithm requires a key, to prevent the tfm from being used until a new key is set. [Cc stable mainly because when introducing the NEED_KEY flag I changed AF_ALG to rely on it; and unlike in-kernel crypto API users, AF_ALG previously didn't have this problem. So these "incompletely keyed" states became theoretically accessible via AF_ALG -- though, the opportunities for causing real mischief seem pretty limited.] Fixes: f8d33fac8480 ("crypto: skcipher - prevent using skciphers without setting key") Cc: <stable@vger.kernel.org> # v4.16+ Signed-off-by: Eric Biggers <ebiggers@google.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'crypto/aead.c')
0 files changed, 0 insertions, 0 deletions