All of lore.kernel.org
 help / color / mirror / Atom feed
From: Himanshu Madhani <himanshu.madhani@cavium.com>
To: target-devel@vger.kernel.org, Bart.VanAssche@sandisk.com,
	nab@linux-iscsi.org
Cc: giridhar.malavali@cavium.com, linux-scsi@vger.kernel.org,
	himanshu.madhani@cavium.com
Subject: [PATCH v4 04/14] qla2xxx: Fix inadequate lock protection for ABTS.
Date: Wed, 15 Mar 2017 09:48:46 -0700	[thread overview]
Message-ID: <20170315164856.17255-5-himanshu.madhani@cavium.com> (raw)
In-Reply-To: <20170315164856.17255-1-himanshu.madhani@cavium.com>

From: Quinn Tran <quinn.tran@cavium.com>

Normally, ABTS is sent to Target Core as Task MGMT command.
In the case of error, qla2xxx needs to send response, hardware_lock
is required to prevent request queue corruption.

Cc: <stable@vger.kernel.org>
Signed-off-by: Quinn Tran <quinn.tran@cavium.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com>
---
 drivers/scsi/qla2xxx/qla_target.c | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

diff --git a/drivers/scsi/qla2xxx/qla_target.c b/drivers/scsi/qla2xxx/qla_target.c
index a463bcc57902..a78c3e9bcb57 100644
--- a/drivers/scsi/qla2xxx/qla_target.c
+++ b/drivers/scsi/qla2xxx/qla_target.c
@@ -130,6 +130,9 @@ static void qlt_send_term_imm_notif(struct scsi_qla_host *vha,
 static struct fc_port *qlt_create_sess(struct scsi_qla_host *vha,
 	fc_port_t *fcport, bool local);
 void qlt_unreg_sess(struct fc_port *sess);
+static void qlt_24xx_handle_abts(struct scsi_qla_host *,
+	struct abts_recv_from_24xx *);
+
 /*
  * Global Variables
  */
@@ -389,6 +392,8 @@ static bool qlt_24xx_atio_pkt_all_vps(struct scsi_qla_host *vha,
 			(struct abts_recv_from_24xx *)atio;
 		struct scsi_qla_host *host = qlt_find_host_by_vp_idx(vha,
 			entry->vp_index);
+		unsigned long flags;
+
 		if (unlikely(!host)) {
 			ql_dbg(ql_dbg_tgt, vha, 0xffff,
 			    "qla_target(%d): Response pkt (ABTS_RECV_24XX) "
@@ -396,9 +401,12 @@ static bool qlt_24xx_atio_pkt_all_vps(struct scsi_qla_host *vha,
 			    vha->vp_idx, entry->vp_index);
 			break;
 		}
-		qlt_response_pkt(host, (response_t *)atio);
+		if (!ha_locked)
+			spin_lock_irqsave(&host->hw->hardware_lock, flags);
+		qlt_24xx_handle_abts(host, (struct abts_recv_from_24xx *)atio);
+		if (!ha_locked)
+			spin_unlock_irqrestore(&host->hw->hardware_lock, flags);
 		break;
-
 	}
 
 	/* case PUREX_IOCB_TYPE: ql2xmvasynctoatio */
-- 
2.12.0

  parent reply	other threads:[~2017-03-15 16:49 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-15 16:48 [PATCH v4 00/14] qla2xxx: Bug Fixes and updates for target Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 01/14] qla2xxx: Allow vref count to timeout on vport delete Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 02/14] qla2xxx: Fix memory leak for abts processing Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 03/14] qla2xxx: Fix request queue corruption Himanshu Madhani
2017-03-15 16:48 ` Himanshu Madhani [this message]
2017-03-15 16:48 ` [PATCH v4 05/14] qla2xxx: Fix sess_lock & hardware_lock lock order problem Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 06/14] qla2xxx: Allow relogin to proceed if remote login did not finish Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 07/14] qla2xxx: Improve T10-DIF/PI handling in driver Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 08/14] qla2xxx: Export DIF stats via debugfs Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 09/14] qla2xxx: Add async new target notification Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 10/14] qla2xxx: Use IOCB interface to submit non-critical MBX Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 11/14] qla2xxx: Add DebugFS node to display Port Database Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 12/14] qla2xxx: Change scsi host lookup method Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 13/14] qla2xxx: Fix delayed response to command for loop mode/direct connect Himanshu Madhani
2017-03-15 16:48 ` [PATCH v4 14/14] qla2xxx: Update driver version to 9.00.00.00-k Himanshu Madhani
2017-03-19  0:32 ` [PATCH v4 00/14] qla2xxx: Bug Fixes and updates for target Nicholas A. Bellinger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170315164856.17255-5-himanshu.madhani@cavium.com \
    --to=himanshu.madhani@cavium.com \
    --cc=Bart.VanAssche@sandisk.com \
    --cc=giridhar.malavali@cavium.com \
    --cc=linux-scsi@vger.kernel.org \
    --cc=nab@linux-iscsi.org \
    --cc=target-devel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.