target: Drop incorrect ABORT_TASK put for completed commands
authorNicholas Bellinger <nab@linux-iscsi.org>
Sun, 6 Mar 2016 04:00:12 +0000 (20:00 -0800)
committerSasha Levin <sasha.levin@oracle.com>
Tue, 22 Mar 2016 15:10:28 +0000 (11:10 -0400)
commitbde1cccf1a837d6905fe71543c2f4a4e3328dce0
treebcaba29236941ebb498b23c8f4b7f5b72d4ad234
parent546a8b3c4059af5fd8466f3d1848321e7613904c
target: Drop incorrect ABORT_TASK put for completed commands

[ Upstream commit 7f54ab5ff52fb0b91569bc69c4a6bc5cac1b768d ]

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>
Cc: stable@vger.kernel.org # 3.14+
Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/target/target_core_tmr.c