crypto: api - Check spawn->alg under lock in crypto_drop_spawn
authorHerbert Xu <herbert@gondor.apana.org.au>
Fri, 6 Dec 2019 05:55:17 +0000 (13:55 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 11 Feb 2020 12:34:01 +0000 (04:34 -0800)
commit12fa296ad27e784d8a9201c953a3e3b2542a75b1
tree81cd425ea1eeba2de5a57a635d32b61b6175f797
parentf3f9cfca057af9635c23c31b38c1c3e6a34a5319
crypto: api - Check spawn->alg under lock in crypto_drop_spawn

commit 7db3b61b6bba4310f454588c2ca6faf2958ad79f upstream.

We need to check whether spawn->alg is NULL under lock as otherwise
the algorithm could be removed from under us after we have checked
it and found it to be non-NULL.  This could cause us to remove the
spawn from a non-existent list.

Fixes: 7ede5a5ba55a ("crypto: api - Fix crypto_drop_spawn crash...")
Cc: <stable@vger.kernel.org>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
crypto/algapi.c