All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] crypto: sha1-mb - use corrcet pointer while completing jobs
@ 2016-04-12  9:45 Xiaodong Liu
  2016-04-13 18:26 ` Tim Chen
  2016-04-15 14:34 ` Herbert Xu
  0 siblings, 2 replies; 3+ messages in thread
From: Xiaodong Liu @ 2016-04-12  9:45 UTC (permalink / raw)
  To: herbert, tim.c.chen; +Cc: linux-crypto, megha.dey, Xiaodong Liu

In sha_complete_job, incorrect mcryptd_hash_request_ctx pointer is used
when check and complete other jobs. If the memory of first completed req
is freed, while still completing other jobs in the func, kernel will
crash since NULL pointer is assigned to RIP.

Signed-off-by: Xiaodong Liu <xiaodong.liu@intel.com>
---
 arch/x86/crypto/sha-mb/sha1_mb.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/x86/crypto/sha-mb/sha1_mb.c b/arch/x86/crypto/sha-mb/sha1_mb.c
index a8a0224..081255c 100644
--- a/arch/x86/crypto/sha-mb/sha1_mb.c
+++ b/arch/x86/crypto/sha-mb/sha1_mb.c
@@ -453,10 +453,10 @@ static int sha_complete_job(struct mcryptd_hash_request_ctx *rctx,
 
 			req = cast_mcryptd_ctx_to_req(req_ctx);
 			if (irqs_disabled())
-				rctx->complete(&req->base, ret);
+				req_ctx->complete(&req->base, ret);
 			else {
 				local_bh_disable();
-				rctx->complete(&req->base, ret);
+				req_ctx->complete(&req->base, ret);
 				local_bh_enable();
 			}
 		}
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-04-15 14:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-12  9:45 [PATCH] crypto: sha1-mb - use corrcet pointer while completing jobs Xiaodong Liu
2016-04-13 18:26 ` Tim Chen
2016-04-15 14:34 ` Herbert Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.