aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart Van Assche <bvanassche@acm.org>2019-06-17 11:18:19 -0400
committerMartin K. Petersen <martin.petersen@oracle.com>2019-06-20 15:37:02 -0400
commitbbe9fb0d04b96dda1fd7bd973e094004978b2166 (patch)
treeef796d2beef86a4d838ff4c0e47a2c26af82c852
parentac88c1f6730e73771dc36b9fd83804e7aa15941a (diff)
scsi: Avoid that .queuecommand() gets called for a blocked SCSI device
Several SCSI transport and LLD drivers surround code that does not tolerate concurrent calls of .queuecommand() with scsi_target_block() / scsi_target_unblock(). These last two functions use blk_mq_quiesce_queue() / blk_mq_unquiesce_queue() for scsi-mq request queues to prevent concurrent .queuecommand() calls. However, that is not sufficient to prevent .queuecommand() calls from scsi_send_eh_cmnd(). Hence surround the .queuecommand() call from the SCSI error handler with code that avoids that .queuecommand() gets called in the blocked state. Note: converting the .queuecommand() call in scsi_send_eh_cmnd() into code that calls blk_get_request() + blk_execute_rq() is not an option since scsi_send_eh_cmnd() must be able to make forward progress even if all requests have been allocated. Cc: Ming Lei <ming.lei@redhat.com> Cc: Hannes Reinecke <hare@suse.de> Cc: Johannes Thumshirn <jthumshirn@suse.de> Signed-off-by: Bart Van Assche <bvanassche@acm.org> Reviewed-by: Hannes Reinecke <hare@suse.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/scsi_error.c26
-rw-r--r--drivers/scsi/scsi_lib.c4
2 files changed, 24 insertions, 6 deletions
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
index f490994374f6..9f16304150b1 100644
--- a/drivers/scsi/scsi_error.c
+++ b/drivers/scsi/scsi_error.c
@@ -1055,7 +1055,7 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
1055 struct scsi_device *sdev = scmd->device; 1055 struct scsi_device *sdev = scmd->device;
1056 struct Scsi_Host *shost = sdev->host; 1056 struct Scsi_Host *shost = sdev->host;
1057 DECLARE_COMPLETION_ONSTACK(done); 1057 DECLARE_COMPLETION_ONSTACK(done);
1058 unsigned long timeleft = timeout; 1058 unsigned long timeleft = timeout, delay;
1059 struct scsi_eh_save ses; 1059 struct scsi_eh_save ses;
1060 const unsigned long stall_for = msecs_to_jiffies(100); 1060 const unsigned long stall_for = msecs_to_jiffies(100);
1061 int rtn; 1061 int rtn;
@@ -1066,7 +1066,29 @@ retry:
1066 1066
1067 scsi_log_send(scmd); 1067 scsi_log_send(scmd);
1068 scmd->scsi_done = scsi_eh_done; 1068 scmd->scsi_done = scsi_eh_done;
1069 rtn = shost->hostt->queuecommand(shost, scmd); 1069
1070 /*
1071 * Lock sdev->state_mutex to avoid that scsi_device_quiesce() can
1072 * change the SCSI device state after we have examined it and before
1073 * .queuecommand() is called.
1074 */
1075 mutex_lock(&sdev->state_mutex);
1076 while (sdev->sdev_state == SDEV_BLOCK && timeleft > 0) {
1077 mutex_unlock(&sdev->state_mutex);
1078 SCSI_LOG_ERROR_RECOVERY(5, sdev_printk(KERN_DEBUG, sdev,
1079 "%s: state %d <> %d\n", __func__, sdev->sdev_state,
1080 SDEV_BLOCK));
1081 delay = min(timeleft, stall_for);
1082 timeleft -= delay;
1083 msleep(jiffies_to_msecs(delay));
1084 mutex_lock(&sdev->state_mutex);
1085 }
1086 if (sdev->sdev_state != SDEV_BLOCK)
1087 rtn = shost->hostt->queuecommand(shost, scmd);
1088 else
1089 rtn = SCSI_MLQUEUE_DEVICE_BUSY;
1090 mutex_unlock(&sdev->state_mutex);
1091
1070 if (rtn) { 1092 if (rtn) {
1071 if (timeleft > stall_for) { 1093 if (timeleft > stall_for) {
1072 scsi_eh_restore_cmnd(scmd, &ses); 1094 scsi_eh_restore_cmnd(scmd, &ses);
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index b1b1a1aaa353..6c84edc53f05 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -2616,10 +2616,6 @@ EXPORT_SYMBOL_GPL(scsi_internal_device_block_nowait);
2616 * a legal transition). When the device is in this state, command processing 2616 * a legal transition). When the device is in this state, command processing
2617 * is paused until the device leaves the SDEV_BLOCK state. See also 2617 * is paused until the device leaves the SDEV_BLOCK state. See also
2618 * scsi_internal_device_unblock(). 2618 * scsi_internal_device_unblock().
2619 *
2620 * To do: avoid that scsi_send_eh_cmnd() calls queuecommand() after
2621 * scsi_internal_device_block() has blocked a SCSI device and also
2622 * remove the rport mutex lock and unlock calls from srp_queuecommand().
2623 */ 2619 */
2624static int scsi_internal_device_block(struct scsi_device *sdev) 2620static int scsi_internal_device_block(struct scsi_device *sdev)
2625{ 2621{