All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-3.14.y] target: Drop incorrect ABORT_TASK put for completed commands
@ 2016-03-15  4:39 Nicholas A. Bellinger
  2016-03-18 21:27 ` Greg-KH
  0 siblings, 1 reply; 2+ messages in thread
From: Nicholas A. Bellinger @ 2016-03-15  4:39 UTC (permalink / raw)
  To: target-devel
  Cc: stable, Greg-KH, Nicholas Bellinger, Quinn Tran, Himanshu Madhani,
	Sagi Grimberg, Christoph Hellwig, Hannes Reinecke, Andy Grover,
	Mike Christie

From: Nicholas Bellinger <nab@linux-iscsi.org>

Hi Greg-KH & stable team,

Here's the updated v3.14.y backport for the target patch that
failed to apply today.  It's a oneliner, and should apply up
to and including v4.0, before target_put_sess_cmd() lost it's
extra arguement in >= v4.1.

Please apply at your earliest convenience.

Thank you,

--nab

-------------------------------------------------------------

commit 7ddbc0a70222eb820c3abc2085894b695c7f7665 upstream.

This patch fixes a recent ABORT_TASK regression associated
with commit febe562c, where a left-over target_put_sess_cmd()
would still be called when __target_check_io_state() detected
a command has already been completed, and explicit ABORT must
be avoided.

Note commit febe562c dropped the local kref_get_unless_zero()
check in core_tmr_abort_task(), but did not drop this extra
corresponding target_put_sess_cmd() in the failure path.

So go ahead and drop this now bogus target_put_sess_cmd(),
and avoid this potential use-after-free.

Reported-by: Dan Lane <dracodan@gmail.com>
Cc: Quinn Tran <quinn.tran@qlogic.com>
Cc: Himanshu Madhani <himanshu.madhani@qlogic.com>
Cc: Sagi Grimberg <sagig@mellanox.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Hannes Reinecke <hare@suse.de>
Cc: Andy Grover <agrover@redhat.com>
Cc: Mike Christie <mchristi@redhat.com>
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
---
 drivers/target/target_core_tmr.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/target/target_core_tmr.c b/drivers/target/target_core_tmr.c
index 47a90d6..77c1438 100644
--- a/drivers/target/target_core_tmr.c
+++ b/drivers/target/target_core_tmr.c
@@ -181,7 +181,6 @@ void core_tmr_abort_task(
 
 		if (!__target_check_io_state(se_cmd, se_sess, 0)) {
 			spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
-			target_put_sess_cmd(se_sess, se_cmd);
 			goto out;
 		}
 
-- 
1.8.5.3


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

end of thread, other threads:[~2016-03-18 21:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-15  4:39 [PATCH-3.14.y] target: Drop incorrect ABORT_TASK put for completed commands Nicholas A. Bellinger
2016-03-18 21:27 ` Greg-KH

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.