android_kernel_samsung_msm8976/drivers/crypto/caam
Horia Geantă 5e9b810896 crypto: caam - fix signals handling
commit 7459e1d25ffefa2b1be799477fcc1f6c62f6cec7 upstream.

Driver does not properly handle the case when signals interrupt
wait_for_completion_interruptible():
-it does not check for return value
-completion structure is allocated on stack; in case a signal interrupts
the sleep, it will go out of scope, causing the worker thread
(caam_jr_dequeue) to fail when it accesses it

wait_for_completion_interruptible() is replaced with uninterruptable
wait_for_completion().
We choose to block all signals while waiting for I/O (device executing
the split key generation job descriptor) since the alternative - in
order to have a deterministic device state - would be to flush the job
ring (aborting *all* in-progress jobs).

Cc: <stable@vger.kernel.org>
Fixes: 045e36780f ("crypto: caam - ahash hmac support")
Fixes: 4c1ec1f930 ("crypto: caam - refactor key_gen, sg")
Signed-off-by: Horia Geantă <horia.geanta@nxp.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Willy Tarreau <w@1wt.eu>
2019-07-27 21:44:38 +02:00
..
Kconfig
Makefile
caamalg.c crypto: caam - fix AEAD givenc descriptors 2019-07-27 21:42:53 +02:00
caamhash.c crypto: caam - fix signals handling 2019-07-27 21:44:38 +02:00
caamrng.c crypto: caam - fix RNG buffer cache alignment 2015-06-29 12:08:34 -07:00
compat.h
ctrl.c
ctrl.h
desc.h
desc_constr.h
error.c crypto: caam - add allocation failure handling in SPRINTFCAT macro 2014-06-07 13:25:39 -07:00
error.h
intern.h
jr.c
jr.h
key_gen.c crypto: caam - fix signals handling 2019-07-27 21:44:38 +02:00
key_gen.h
pdb.h
regs.h
sg_sw_sec4.h