]> git.baikalelectronics.ru Git - kernel.git/commit
crypto: af_alg - remove locking in async callback
authorStephan Mueller <smueller@chronox.de>
Fri, 10 Nov 2017 12:20:55 +0000 (13:20 +0100)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 24 Nov 2017 05:23:39 +0000 (13:23 +0800)
commit91f12b7e4554e1ea7ca939dc367ca83eee210615
tree216af0cc45030069ed6131e529e080718f9c57f7
parent9d3841eaa46151e13d191ad1142941f45d1b05f9
crypto: af_alg - remove locking in async callback

The code paths protected by the socket-lock do not use or modify the
socket in a non-atomic fashion. The actions pertaining the socket do not
even need to be handled as an atomic operation. Thus, the socket-lock
can be safely ignored.

This fixes a bug regarding scheduling in atomic as the callback function
may be invoked in interrupt context.

In addition, the sock_hold is moved before the AIO encrypt/decrypt
operation to ensure that the socket is always present. This avoids a
tiny race window where the socket is unprotected and yet used by the AIO
operation.

Finally, the release of resources for a crypto operation is moved into a
common function of af_alg_free_resources.

Cc: <stable@vger.kernel.org>
Fixes: 32eb147bd351f ("crypto: algif_skcipher - overhaul memory management")
Fixes: 15378202a88e3 ("crypto: algif_aead - overhaul memory management")
Reported-by: Romain Izard <romain.izard.pro@gmail.com>
Signed-off-by: Stephan Mueller <smueller@chronox.de>
Tested-by: Romain Izard <romain.izard.pro@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
crypto/af_alg.c
crypto/algif_aead.c
crypto/algif_skcipher.c
include/crypto/if_alg.h