blob: 6f3d29d16d1f4a37711c391afeb3ef0ad279c279 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Christoph Hellwigd2852032014-01-17 12:06:53 +01003 * Copyright (C) 1999 Eric Youngdale
4 * Copyright (C) 2014 Christoph Hellwig
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * SCSI queueing library.
7 * Initial versions: Eric Youngdale (eric@andante.org).
8 * Based upon conversations with large numbers
9 * of people at Linux Expo.
10 */
11
12#include <linux/bio.h>
James Bottomleyd3f46f32008-01-15 11:11:46 -060013#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/blkdev.h>
15#include <linux/completion.h>
16#include <linux/kernel.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040017#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/init.h>
19#include <linux/pci.h>
20#include <linux/delay.h>
James Bottomleyfaead262006-02-14 10:42:07 -060021#include <linux/hardirq.h>
Jens Axboec6132da2007-10-16 11:08:49 +020022#include <linux/scatterlist.h>
Christoph Hellwigd2852032014-01-17 12:06:53 +010023#include <linux/blk-mq.h>
Hannes Reineckef1569ff2014-10-24 14:27:07 +020024#include <linux/ratelimit.h>
Hannes Reineckea8aa3972015-12-01 10:16:57 +010025#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27#include <scsi/scsi.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020028#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <scsi/scsi_dbg.h>
30#include <scsi/scsi_device.h>
31#include <scsi/scsi_driver.h>
32#include <scsi/scsi_eh.h>
33#include <scsi/scsi_host.h>
Bart Van Assche7aa686d2017-05-02 10:45:03 -070034#include <scsi/scsi_transport.h> /* __scsi_init_queue() */
Christoph Hellwigee14c672015-08-27 14:16:59 +020035#include <scsi/scsi_dh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Christoph Hellwig3b5382c2014-05-06 12:25:40 +020037#include <trace/events/scsi.h>
38
Bart Van Assche0eebd002017-04-26 13:47:57 -070039#include "scsi_debugfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "scsi_priv.h"
41#include "scsi_logging.h"
42
Ming Lei92524fa2019-04-28 15:39:31 +080043/*
44 * Size of integrity metadata is usually small, 1 inline sg should
45 * cover normal cases.
46 */
Ming Lei3e99b3b2019-06-06 16:34:09 +080047#ifdef CONFIG_ARCH_NO_SG_CHAIN
48#define SCSI_INLINE_PROT_SG_CNT 0
49#define SCSI_INLINE_SG_CNT 0
50#else
Ming Lei92524fa2019-04-28 15:39:31 +080051#define SCSI_INLINE_PROT_SG_CNT 1
Ming Lei3dccdf52019-04-28 15:39:32 +080052#define SCSI_INLINE_SG_CNT 2
Ming Lei3e99b3b2019-06-06 16:34:09 +080053#endif
Ming Lei3dccdf52019-04-28 15:39:32 +080054
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030055static struct kmem_cache *scsi_sense_cache;
56static struct kmem_cache *scsi_sense_isadma_cache;
57static DEFINE_MUTEX(scsi_sense_cache_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Bart Van Asschea45a1f362017-08-30 16:58:42 -070059static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd);
60
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030061static inline struct kmem_cache *
Bart Van Assche8e688252017-06-02 14:21:52 -070062scsi_select_sense_cache(bool unchecked_isa_dma)
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030063{
Bart Van Assche8e688252017-06-02 14:21:52 -070064 return unchecked_isa_dma ? scsi_sense_isadma_cache : scsi_sense_cache;
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030065}
66
Bart Van Assche8e688252017-06-02 14:21:52 -070067static void scsi_free_sense_buffer(bool unchecked_isa_dma,
68 unsigned char *sense_buffer)
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030069{
Bart Van Assche8e688252017-06-02 14:21:52 -070070 kmem_cache_free(scsi_select_sense_cache(unchecked_isa_dma),
71 sense_buffer);
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030072}
73
Bart Van Assche8e688252017-06-02 14:21:52 -070074static unsigned char *scsi_alloc_sense_buffer(bool unchecked_isa_dma,
Christoph Hellwige9c787e2017-01-02 21:55:26 +030075 gfp_t gfp_mask, int numa_node)
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030076{
Bart Van Assche8e688252017-06-02 14:21:52 -070077 return kmem_cache_alloc_node(scsi_select_sense_cache(unchecked_isa_dma),
78 gfp_mask, numa_node);
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030079}
80
81int scsi_init_sense_cache(struct Scsi_Host *shost)
82{
83 struct kmem_cache *cache;
84 int ret = 0;
85
Ming Leif9b05302019-07-12 10:08:19 +080086 mutex_lock(&scsi_sense_cache_mutex);
Bart Van Assche8e688252017-06-02 14:21:52 -070087 cache = scsi_select_sense_cache(shost->unchecked_isa_dma);
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030088 if (cache)
Ming Leif9b05302019-07-12 10:08:19 +080089 goto exit;
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030090
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030091 if (shost->unchecked_isa_dma) {
92 scsi_sense_isadma_cache =
93 kmem_cache_create("scsi_sense_cache(DMA)",
David Windsor0afe76e2017-06-10 22:50:45 -040094 SCSI_SENSE_BUFFERSIZE, 0,
95 SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA, NULL);
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030096 if (!scsi_sense_isadma_cache)
97 ret = -ENOMEM;
98 } else {
99 scsi_sense_cache =
David Windsor0afe76e2017-06-10 22:50:45 -0400100 kmem_cache_create_usercopy("scsi_sense_cache",
101 SCSI_SENSE_BUFFERSIZE, 0, SLAB_HWCACHE_ALIGN,
102 0, SCSI_SENSE_BUFFERSIZE, NULL);
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +0300103 if (!scsi_sense_cache)
104 ret = -ENOMEM;
105 }
Ming Leif9b05302019-07-12 10:08:19 +0800106 exit:
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +0300107 mutex_unlock(&scsi_sense_cache_mutex);
108 return ret;
109}
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200110
Jens Axboea488e742010-04-16 21:13:15 +0200111/*
112 * When to reinvoke queueing after a resource shortage. It's 3 msecs to
113 * not change behaviour from the previous unplug mechanism, experimentation
114 * may prove this needs changing.
115 */
116#define SCSI_QUEUE_DELAY 3
117
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100118static void
119scsi_set_blocked(struct scsi_cmnd *cmd, int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 struct Scsi_Host *host = cmd->device->host;
122 struct scsi_device *device = cmd->device;
Mike Christief0c0a372008-08-17 15:24:38 -0500123 struct scsi_target *starget = scsi_target(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 /*
Tejun Heo d8c37e72005-05-14 00:46:08 +0900126 * Set the appropriate busy bit for the device/host.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 *
128 * If the host/device isn't busy, assume that something actually
129 * completed, and that we should be able to queue a command now.
130 *
131 * Note that the prior mid-layer assumption that any host could
132 * always queue at least one command is now broken. The mid-layer
133 * will implement a user specifiable stall (see
134 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
135 * if a command is requeued with no other commands outstanding
136 * either for the device or for the host.
137 */
Mike Christief0c0a372008-08-17 15:24:38 -0500138 switch (reason) {
139 case SCSI_MLQUEUE_HOST_BUSY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100140 atomic_set(&host->host_blocked, host->max_host_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500141 break;
142 case SCSI_MLQUEUE_DEVICE_BUSY:
James Smart573e5912011-07-06 12:45:17 -0400143 case SCSI_MLQUEUE_EH_RETRY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100144 atomic_set(&device->device_blocked,
145 device->max_device_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500146 break;
147 case SCSI_MLQUEUE_TARGET_BUSY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100148 atomic_set(&starget->target_blocked,
149 starget->max_target_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500150 break;
151 }
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100152}
153
Christoph Hellwigd2852032014-01-17 12:06:53 +0100154static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd)
155{
Bart Van Asschea45a1f362017-08-30 16:58:42 -0700156 if (cmd->request->rq_flags & RQF_DONTPREP) {
157 cmd->request->rq_flags &= ~RQF_DONTPREP;
158 scsi_mq_uninit_cmd(cmd);
159 } else {
160 WARN_ON_ONCE(true);
161 }
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700162 blk_mq_requeue_request(cmd->request, true);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100163}
164
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100165/**
166 * __scsi_queue_insert - private queue insertion
167 * @cmd: The SCSI command being requeued
168 * @reason: The reason for the requeue
169 * @unbusy: Whether the queue should be unbusied
170 *
171 * This is a private queue insertion. The public interface
172 * scsi_queue_insert() always assumes the queue should be unbusied
173 * because it's always called before the completion. This function is
174 * for a requeue after completion, which should only occur in this
175 * file.
176 */
Bart Van Assche08640e82018-01-10 14:41:45 -0800177static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, bool unbusy)
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100178{
179 struct scsi_device *device = cmd->device;
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100180
181 SCSI_LOG_MLQUEUE(1, scmd_printk(KERN_INFO, cmd,
182 "Inserting command %p into mlqueue\n", cmd));
183
184 scsi_set_blocked(cmd, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * Decrement the counters, since these commands are no longer
188 * active on the host/device.
189 */
James Bottomley4f5299a2009-01-02 10:42:21 -0600190 if (unbusy)
Ming Lei6eb045e2019-10-25 14:58:55 +0800191 scsi_device_unbusy(device, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 /*
Tejun Heo a1bf9d1d2005-04-24 02:08:52 -0500194 * Requeue this command. It will go before all other commands
Bart Van Asscheb4854622012-06-29 15:36:07 +0000195 * that are already in the queue. Schedule requeue work under
196 * lock such that the kblockd_schedule_work() call happens
197 * before blk_cleanup_queue() finishes.
Jens Axboea488e742010-04-16 21:13:15 +0200198 */
Alan Stern644373a2014-03-28 10:51:15 -0700199 cmd->result = 0;
Jens Axboef664a3c2018-11-01 16:36:27 -0600200
Jens Axboef664a3c2018-11-01 16:36:27 -0600201 blk_mq_requeue_request(cmd->request, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203
André Almeidaea941012020-04-19 02:01:48 -0300204/**
205 * scsi_queue_insert - Reinsert a command in the queue.
206 * @cmd: command that we are adding to queue.
207 * @reason: why we are inserting command to queue.
James Bottomley4f5299a2009-01-02 10:42:21 -0600208 *
André Almeidaea941012020-04-19 02:01:48 -0300209 * We do this for one of two cases. Either the host is busy and it cannot accept
210 * any more commands for the time being, or the device returned QUEUE_FULL and
211 * can accept no more commands.
James Bottomley4f5299a2009-01-02 10:42:21 -0600212 *
André Almeidaea941012020-04-19 02:01:48 -0300213 * Context: This could be called either from an interrupt context or a normal
214 * process context.
James Bottomley4f5299a2009-01-02 10:42:21 -0600215 */
Bart Van Assche84feb162012-06-29 15:35:05 +0000216void scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
James Bottomley4f5299a2009-01-02 10:42:21 -0600217{
Bart Van Assche08640e82018-01-10 14:41:45 -0800218 __scsi_queue_insert(cmd, reason, true);
James Bottomley4f5299a2009-01-02 10:42:21 -0600219}
Christoph Hellwige8064022016-10-20 15:12:13 +0200220
Christoph Hellwig76aaf872017-02-23 16:02:36 +0100221
222/**
Kees Cook704f8392018-07-31 12:51:54 -0700223 * __scsi_execute - insert request and wait for the result
Christoph Hellwig76aaf872017-02-23 16:02:36 +0100224 * @sdev: scsi device
225 * @cmd: scsi command
226 * @data_direction: data direction
227 * @buffer: data buffer
228 * @bufflen: len of buffer
229 * @sense: optional sense buffer
230 * @sshdr: optional decoded sense header
231 * @timeout: request timeout in seconds
232 * @retries: number of times to retry request
233 * @flags: flags for ->cmd_flags
234 * @rq_flags: flags for ->rq_flags
235 * @resid: optional residual length
236 *
Christoph Hellwig17d53632017-04-20 16:03:01 +0200237 * Returns the scsi_cmnd result field if a command was executed, or a negative
238 * Linux error code if we didn't get that far.
Christoph Hellwig76aaf872017-02-23 16:02:36 +0100239 */
Kees Cook704f8392018-07-31 12:51:54 -0700240int __scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
James Bottomley33aa6872005-08-28 11:31:14 -0500241 int data_direction, void *buffer, unsigned bufflen,
Christoph Hellwig3949e2f2017-02-14 20:15:58 +0100242 unsigned char *sense, struct scsi_sense_hdr *sshdr,
243 int timeout, int retries, u64 flags, req_flags_t rq_flags,
244 int *resid)
James Bottomley39216032005-06-15 18:48:29 -0500245{
246 struct request *req;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100247 struct scsi_request *rq;
James Bottomley39216032005-06-15 18:48:29 -0500248 int ret = DRIVER_ERROR << 24;
249
Christoph Hellwigff005a02018-05-09 09:54:05 +0200250 req = blk_get_request(sdev->request_queue,
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100251 data_direction == DMA_TO_DEVICE ?
Bart Van Assche271822b2020-12-08 21:29:49 -0800252 REQ_OP_SCSI_OUT : REQ_OP_SCSI_IN,
253 rq_flags & RQF_PM ? BLK_MQ_REQ_PM : 0);
Joe Lawrencea492f072014-08-28 08:15:21 -0600254 if (IS_ERR(req))
James Bottomleybfe159a2011-07-07 15:45:40 -0500255 return ret;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100256 rq = scsi_req(req);
James Bottomley39216032005-06-15 18:48:29 -0500257
258 if (bufflen && blk_rq_map_kern(sdev->request_queue, req,
Christoph Hellwig0eb0b632018-05-09 09:54:08 +0200259 buffer, bufflen, GFP_NOIO))
James Bottomley39216032005-06-15 18:48:29 -0500260 goto out;
261
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100262 rq->cmd_len = COMMAND_SIZE(cmd[0]);
263 memcpy(rq->cmd, cmd, rq->cmd_len);
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +0200264 rq->retries = retries;
James Bottomley39216032005-06-15 18:48:29 -0500265 req->timeout = timeout;
Christoph Hellwige8064022016-10-20 15:12:13 +0200266 req->cmd_flags |= flags;
Bart Van Assche039c6352017-11-09 10:49:56 -0800267 req->rq_flags |= rq_flags | RQF_QUIET;
James Bottomley39216032005-06-15 18:48:29 -0500268
269 /*
270 * head injection *required* here otherwise quiesce won't work
271 */
272 blk_execute_rq(req->q, NULL, req, 1);
273
Alan Sternbdb2b8c2008-06-24 14:03:14 -0400274 /*
275 * Some devices (USB mass-storage in particular) may transfer
276 * garbage data together with a residue indicating that the data
277 * is invalid. Prevent the garbage from being misinterpreted
278 * and prevent security leaks by zeroing out the excess data.
279 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100280 if (unlikely(rq->resid_len > 0 && rq->resid_len <= bufflen))
281 memset(buffer + (bufflen - rq->resid_len), 0, rq->resid_len);
Alan Sternbdb2b8c2008-06-24 14:03:14 -0400282
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900283 if (resid)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100284 *resid = rq->resid_len;
285 if (sense && rq->sense_len)
286 memcpy(sense, rq->sense, SCSI_SENSE_BUFFERSIZE);
Christoph Hellwig3949e2f2017-02-14 20:15:58 +0100287 if (sshdr)
288 scsi_normalize_sense(rq->sense, rq->sense_len, sshdr);
Christoph Hellwig17d53632017-04-20 16:03:01 +0200289 ret = rq->result;
James Bottomley39216032005-06-15 18:48:29 -0500290 out:
291 blk_put_request(req);
292
293 return ret;
294}
Kees Cook704f8392018-07-31 12:51:54 -0700295EXPORT_SYMBOL(__scsi_execute);
James Bottomley39216032005-06-15 18:48:29 -0500296
Bart Van Assche3bd6f432017-12-04 10:06:23 -0800297/*
Ming Lei6eb045e2019-10-25 14:58:55 +0800298 * Wake up the error handler if necessary. Avoid as follows that the error
299 * handler is not woken up if host in-flight requests number ==
300 * shost->host_failed: use call_rcu() in scsi_eh_scmd_add() in combination
301 * with an RCU read lock in this function to ensure that this function in
302 * its entirety either finishes before scsi_eh_scmd_add() increases the
Bart Van Assche3bd6f432017-12-04 10:06:23 -0800303 * host_failed counter or that it notices the shost state change made by
304 * scsi_eh_scmd_add().
305 */
Ming Lei6eb045e2019-10-25 14:58:55 +0800306static void scsi_dec_host_busy(struct Scsi_Host *shost, struct scsi_cmnd *cmd)
Bart Van Assche3bd6f432017-12-04 10:06:23 -0800307{
308 unsigned long flags;
309
310 rcu_read_lock();
Ming Lei6eb045e2019-10-25 14:58:55 +0800311 __clear_bit(SCMD_STATE_INFLIGHT, &cmd->state);
Bart Van Assche3bd6f432017-12-04 10:06:23 -0800312 if (unlikely(scsi_host_in_recovery(shost))) {
313 spin_lock_irqsave(shost->host_lock, flags);
314 if (shost->host_failed || shost->host_eh_scheduled)
315 scsi_eh_wakeup(shost);
316 spin_unlock_irqrestore(shost->host_lock, flags);
317 }
318 rcu_read_unlock();
319}
320
Ming Lei6eb045e2019-10-25 14:58:55 +0800321void scsi_device_unbusy(struct scsi_device *sdev, struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct Scsi_Host *shost = sdev->host;
Mike Christief0c0a372008-08-17 15:24:38 -0500324 struct scsi_target *starget = scsi_target(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Ming Lei6eb045e2019-10-25 14:58:55 +0800326 scsi_dec_host_busy(shost, cmd);
Bart Van Assche3bd6f432017-12-04 10:06:23 -0800327
Christoph Hellwig2ccbb002014-03-26 10:35:00 +0100328 if (starget->can_queue > 0)
329 atomic_dec(&starget->target_busy);
Christoph Hellwig74665012014-01-22 15:29:29 +0100330
Christoph Hellwig71e75c92014-04-11 19:07:01 +0200331 atomic_dec(&sdev->device_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Christoph Hellwigd2852032014-01-17 12:06:53 +0100334static void scsi_kick_queue(struct request_queue *q)
335{
Jens Axboef664a3c2018-11-01 16:36:27 -0600336 blk_mq_run_hw_queues(q, false);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100337}
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*
340 * Called for single_lun devices on IO completion. Clear starget_sdev_user,
341 * and call blk_run_queue for all the scsi_devices on the target -
342 * including current_sdev first.
343 *
344 * Called with *no* scsi locks held.
345 */
346static void scsi_single_lun_run(struct scsi_device *current_sdev)
347{
348 struct Scsi_Host *shost = current_sdev->host;
349 struct scsi_device *sdev, *tmp;
350 struct scsi_target *starget = scsi_target(current_sdev);
351 unsigned long flags;
352
353 spin_lock_irqsave(shost->host_lock, flags);
354 starget->starget_sdev_user = NULL;
355 spin_unlock_irqrestore(shost->host_lock, flags);
356
357 /*
358 * Call blk_run_queue for all LUNs on the target, starting with
359 * current_sdev. We race with others (to set starget_sdev_user),
360 * but in most cases, we will be first. Ideally, each LU on the
361 * target would get some limited time or requests on the target.
362 */
Christoph Hellwigd2852032014-01-17 12:06:53 +0100363 scsi_kick_queue(current_sdev->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 spin_lock_irqsave(shost->host_lock, flags);
366 if (starget->starget_sdev_user)
367 goto out;
368 list_for_each_entry_safe(sdev, tmp, &starget->devices,
369 same_target_siblings) {
370 if (sdev == current_sdev)
371 continue;
372 if (scsi_device_get(sdev))
373 continue;
374
375 spin_unlock_irqrestore(shost->host_lock, flags);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100376 scsi_kick_queue(sdev->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 spin_lock_irqsave(shost->host_lock, flags);
Bean Huo4c7b4d62020-06-19 17:41:17 +0200378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 scsi_device_put(sdev);
380 }
381 out:
382 spin_unlock_irqrestore(shost->host_lock, flags);
383}
384
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100385static inline bool scsi_device_is_busy(struct scsi_device *sdev)
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400386{
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100387 if (atomic_read(&sdev->device_busy) >= sdev->queue_depth)
388 return true;
389 if (atomic_read(&sdev->device_blocked) > 0)
390 return true;
391 return false;
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400392}
393
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100394static inline bool scsi_target_is_busy(struct scsi_target *starget)
Mike Christief0c0a372008-08-17 15:24:38 -0500395{
Christoph Hellwig2ccbb002014-03-26 10:35:00 +0100396 if (starget->can_queue > 0) {
397 if (atomic_read(&starget->target_busy) >= starget->can_queue)
398 return true;
399 if (atomic_read(&starget->target_blocked) > 0)
400 return true;
401 }
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100402 return false;
Mike Christief0c0a372008-08-17 15:24:38 -0500403}
404
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100405static inline bool scsi_host_is_busy(struct Scsi_Host *shost)
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400406{
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100407 if (atomic_read(&shost->host_blocked) > 0)
408 return true;
409 if (shost->host_self_blocked)
410 return true;
411 return false;
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400412}
413
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800414static void scsi_starved_list_run(struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Mike Christie2a3a59e2008-11-11 13:42:35 -0600416 LIST_HEAD(starved_list);
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800417 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 unsigned long flags;
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 spin_lock_irqsave(shost->host_lock, flags);
Mike Christie2a3a59e2008-11-11 13:42:35 -0600421 list_splice_init(&shost->starved_list, &starved_list);
422
423 while (!list_empty(&starved_list)) {
James Bottomleye2eb7242013-07-02 15:05:26 +0200424 struct request_queue *slq;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
427 * As long as shost is accepting commands and we have
428 * starved queues, call blk_run_queue. scsi_request_fn
429 * drops the queue_lock and can add us back to the
430 * starved_list.
431 *
432 * host_lock protects the starved_list and starved_entry.
433 * scsi_request_fn must get the host_lock before checking
434 * or modifying starved_list or starved_entry.
435 */
Mike Christie2a3a59e2008-11-11 13:42:35 -0600436 if (scsi_host_is_busy(shost))
Mike Christief0c0a372008-08-17 15:24:38 -0500437 break;
Mike Christief0c0a372008-08-17 15:24:38 -0500438
Mike Christie2a3a59e2008-11-11 13:42:35 -0600439 sdev = list_entry(starved_list.next,
440 struct scsi_device, starved_entry);
441 list_del_init(&sdev->starved_entry);
Mike Christief0c0a372008-08-17 15:24:38 -0500442 if (scsi_target_is_busy(scsi_target(sdev))) {
443 list_move_tail(&sdev->starved_entry,
444 &shost->starved_list);
445 continue;
446 }
447
James Bottomleye2eb7242013-07-02 15:05:26 +0200448 /*
449 * Once we drop the host lock, a racing scsi_remove_device()
450 * call may remove the sdev from the starved list and destroy
451 * it and the queue. Mitigate by taking a reference to the
452 * queue and never touching the sdev again after we drop the
453 * host lock. Note: if __scsi_remove_device() invokes
454 * blk_cleanup_queue() before the queue is run from this
455 * function then blk_run_queue() will return immediately since
456 * blk_cleanup_queue() marks the queue with QUEUE_FLAG_DYING.
457 */
458 slq = sdev->request_queue;
459 if (!blk_get_queue(slq))
460 continue;
461 spin_unlock_irqrestore(shost->host_lock, flags);
462
Christoph Hellwigd2852032014-01-17 12:06:53 +0100463 scsi_kick_queue(slq);
James Bottomleye2eb7242013-07-02 15:05:26 +0200464 blk_put_queue(slq);
465
466 spin_lock_irqsave(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
Mike Christie2a3a59e2008-11-11 13:42:35 -0600468 /* put any unprocessed entries back */
469 list_splice(&starved_list, &shost->starved_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 spin_unlock_irqrestore(shost->host_lock, flags);
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800471}
472
André Almeidaea941012020-04-19 02:01:48 -0300473/**
474 * scsi_run_queue - Select a proper request queue to serve next.
475 * @q: last request's queue
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800476 *
André Almeidaea941012020-04-19 02:01:48 -0300477 * The previous command was completely finished, start a new one if possible.
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800478 */
479static void scsi_run_queue(struct request_queue *q)
480{
481 struct scsi_device *sdev = q->queuedata;
482
483 if (scsi_target(sdev)->single_lun)
484 scsi_single_lun_run(sdev);
485 if (!list_empty(&sdev->host->starved_list))
486 scsi_starved_list_run(sdev->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Jens Axboef664a3c2018-11-01 16:36:27 -0600488 blk_mq_run_hw_queues(q, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489}
490
Jens Axboe9937a5e2011-05-17 11:04:44 +0200491void scsi_requeue_run_queue(struct work_struct *work)
492{
493 struct scsi_device *sdev;
494 struct request_queue *q;
495
496 sdev = container_of(work, struct scsi_device, requeue_work);
497 q = sdev->request_queue;
498 scsi_run_queue(q);
499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501void scsi_run_host_queues(struct Scsi_Host *shost)
502{
503 struct scsi_device *sdev;
504
505 shost_for_each_device(sdev, shost)
506 scsi_run_queue(sdev->request_queue);
507}
508
Christoph Hellwigd2852032014-01-17 12:06:53 +0100509static void scsi_uninit_cmd(struct scsi_cmnd *cmd)
510{
Christoph Hellwig57292b52017-01-31 16:57:29 +0100511 if (!blk_rq_is_passthrough(cmd->request)) {
Christoph Hellwigd2852032014-01-17 12:06:53 +0100512 struct scsi_driver *drv = scsi_cmd_to_driver(cmd);
513
514 if (drv->uninit_command)
515 drv->uninit_command(cmd);
516 }
517}
518
Christoph Hellwig7007e9d2020-10-05 10:41:28 +0200519void scsi_free_sgtables(struct scsi_cmnd *cmd)
Christoph Hellwigd2852032014-01-17 12:06:53 +0100520{
521 if (cmd->sdb.table.nents)
Ming Lei3dccdf52019-04-28 15:39:32 +0800522 sg_free_table_chained(&cmd->sdb.table,
523 SCSI_INLINE_SG_CNT);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100524 if (scsi_prot_sg_count(cmd))
Ming Lei92524fa2019-04-28 15:39:31 +0800525 sg_free_table_chained(&cmd->prot_sdb->table,
526 SCSI_INLINE_PROT_SG_CNT);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100527}
Christoph Hellwig7007e9d2020-10-05 10:41:28 +0200528EXPORT_SYMBOL_GPL(scsi_free_sgtables);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100529
530static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd)
531{
Johannes Thumshirn20a66f22020-04-28 19:45:55 +0900532 scsi_free_sgtables(cmd);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100533 scsi_uninit_cmd(cmd);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100534}
535
Ming Lei3f0dcfb2020-07-20 10:54:35 +0800536static void scsi_run_queue_async(struct scsi_device *sdev)
537{
538 if (scsi_target(sdev)->single_lun ||
Ming Leied5dd6a2020-09-10 15:50:56 +0800539 !list_empty(&sdev->host->starved_list)) {
Ming Lei3f0dcfb2020-07-20 10:54:35 +0800540 kblockd_schedule_work(&sdev->requeue_work);
Ming Leied5dd6a2020-09-10 15:50:56 +0800541 } else {
542 /*
543 * smp_mb() present in sbitmap_queue_clear() or implied in
544 * .end_io is for ordering writing .device_busy in
545 * scsi_device_unbusy() and reading sdev->restarts.
546 */
547 int old = atomic_read(&sdev->restarts);
548
549 /*
550 * ->restarts has to be kept as non-zero if new budget
551 * contention occurs.
552 *
553 * No need to run queue when either another re-run
554 * queue wins in updating ->restarts or a new budget
555 * contention occurs.
556 */
557 if (old && atomic_cmpxchg(&sdev->restarts, old, 0) == old)
558 blk_mq_run_hw_queues(sdev->request_queue, true);
559 }
Ming Lei3f0dcfb2020-07-20 10:54:35 +0800560}
561
Douglas Gilbert7e63b5a2018-06-23 12:22:14 +0200562/* Returns false when no more bytes to process, true if there are more */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200563static bool scsi_end_request(struct request *req, blk_status_t error,
Christoph Hellwigae3d56d2019-01-29 09:33:07 +0100564 unsigned int bytes)
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800565{
Bart Van Asschebed22132017-08-25 13:46:32 -0700566 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800567 struct scsi_device *sdev = cmd->device;
568 struct request_queue *q = sdev->request_queue;
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800569
570 if (blk_update_request(req, error, bytes))
571 return true;
572
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800573 if (blk_queue_add_random(q))
574 add_disk_randomness(req->rq_disk);
575
Bart Van Assche64104f72017-08-30 16:58:39 -0700576 if (!blk_rq_is_scsi(req)) {
577 WARN_ON_ONCE(!(cmd->flags & SCMD_INITIALIZED));
578 cmd->flags &= ~SCMD_INITIALIZED;
579 }
580
Jens Axboef664a3c2018-11-01 16:36:27 -0600581 /*
Bart Van Asschedb983f62019-03-18 09:29:26 -0700582 * Calling rcu_barrier() is not necessary here because the
583 * SCSI error handler guarantees that the function called by
584 * call_rcu() has been called before scsi_end_request() is
585 * called.
586 */
587 destroy_rcu_head(&cmd->rcu);
588
589 /*
Jens Axboef664a3c2018-11-01 16:36:27 -0600590 * In the MQ case the command gets freed by __blk_mq_end_request,
591 * so we have to do all cleanup that depends on it earlier.
592 *
593 * We also can't kick the queues from irq context, so we
594 * will have to defer it to a workqueue.
595 */
596 scsi_mq_uninit_cmd(cmd);
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800597
Jens Axboea78b03b2018-11-18 15:46:03 -0700598 /*
599 * queue is still alive, so grab the ref for preventing it
600 * from being cleaned up during running queue.
601 */
602 percpu_ref_get(&q->q_usage_counter);
Ming Lei8dc765d2018-11-14 16:25:51 +0800603
Jens Axboef664a3c2018-11-01 16:36:27 -0600604 __blk_mq_end_request(req, error);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100605
Ming Lei3f0dcfb2020-07-20 10:54:35 +0800606 scsi_run_queue_async(sdev);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100607
Jens Axboea78b03b2018-11-18 15:46:03 -0700608 percpu_ref_put(&q->q_usage_counter);
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800609 return false;
610}
611
Hannes Reinecke0f7f6232013-07-01 15:16:23 +0200612/**
Bart Van Asschea77b32d82018-04-05 10:33:00 -0700613 * scsi_result_to_blk_status - translate a SCSI result code into blk_status_t
614 * @cmd: SCSI command
Hannes Reinecke0f7f6232013-07-01 15:16:23 +0200615 * @result: scsi error code
616 *
Bart Van Asschea77b32d82018-04-05 10:33:00 -0700617 * Translate a SCSI result code into a blk_status_t value. May reset the host
618 * byte of @cmd->result.
Hannes Reinecke0f7f6232013-07-01 15:16:23 +0200619 */
Bart Van Asschea77b32d82018-04-05 10:33:00 -0700620static blk_status_t scsi_result_to_blk_status(struct scsi_cmnd *cmd, int result)
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100621{
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200622 switch (host_byte(result)) {
Bart Van Asschef4abab32018-04-05 10:33:01 -0700623 case DID_OK:
624 /*
625 * Also check the other bytes than the status byte in result
626 * to handle the case when a SCSI LLD sets result to
627 * DRIVER_SENSE << 24 without setting SAM_STAT_CHECK_CONDITION.
628 */
629 if (scsi_status_is_good(result) && (result & ~0xff) == 0)
630 return BLK_STS_OK;
631 return BLK_STS_IOERR;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100632 case DID_TRANSPORT_FAILFAST:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200633 return BLK_STS_TRANSPORT;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100634 case DID_TARGET_FAILURE:
Moger, Babu2082ebc2012-01-24 20:38:46 +0000635 set_host_byte(cmd, DID_OK);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200636 return BLK_STS_TARGET;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100637 case DID_NEXUS_FAILURE:
Martin Wilck4a067cf2019-02-14 22:57:41 +0100638 set_host_byte(cmd, DID_OK);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200639 return BLK_STS_NEXUS;
Hannes Reineckea9d6ceb82013-07-01 15:16:25 +0200640 case DID_ALLOC_FAILURE:
641 set_host_byte(cmd, DID_OK);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200642 return BLK_STS_NOSPC;
Hannes Reinecke7e782af2013-07-01 15:16:26 +0200643 case DID_MEDIUM_ERROR:
644 set_host_byte(cmd, DID_OK);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200645 return BLK_STS_MEDIUM;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100646 default:
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200647 return BLK_STS_IOERR;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100648 }
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100649}
650
Douglas Gilbert4ae61c62018-06-23 12:22:18 +0200651/* Helper for scsi_io_completion() when "reprep" action required. */
652static void scsi_io_completion_reprep(struct scsi_cmnd *cmd,
653 struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654{
Douglas Gilbert4ae61c62018-06-23 12:22:18 +0200655 /* A new command will be prepared and issued. */
Jens Axboef664a3c2018-11-01 16:36:27 -0600656 scsi_mq_requeue_cmd(cmd);
Douglas Gilbert4ae61c62018-06-23 12:22:18 +0200657}
658
Mike Christie2a242d52020-10-01 10:35:53 -0500659static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd)
660{
661 struct request *req = cmd->request;
662 unsigned long wait_for;
663
664 if (cmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT)
665 return false;
666
667 wait_for = (cmd->allowed + 1) * req->timeout;
668 if (time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
669 scmd_printk(KERN_ERR, cmd, "timing out command, waited %lus\n",
670 wait_for/HZ);
671 return true;
672 }
673 return false;
674}
675
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200676/* Helper for scsi_io_completion() when special action required. */
677static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result)
Douglas Gilbertab831082018-06-23 12:22:16 +0200678{
Jens Axboe165125e2007-07-24 09:28:11 +0200679 struct request_queue *q = cmd->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct request *req = cmd->request;
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200681 int level = 0;
Alan Sternb60af5b2008-11-03 15:56:47 -0500682 enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY,
683 ACTION_DELAYED_RETRY} action;
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200684 struct scsi_sense_hdr sshdr;
685 bool sense_valid;
686 bool sense_current = true; /* false implies "deferred sense" */
687 blk_status_t blk_stat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200689 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
690 if (sense_valid)
691 sense_current = !scsi_sense_is_deferred(&sshdr);
Christoph Hellwig631c2282006-07-08 20:42:15 +0200692
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200693 blk_stat = scsi_result_to_blk_status(cmd, result);
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500694
Alan Sternb60af5b2008-11-03 15:56:47 -0500695 if (host_byte(result) == DID_RESET) {
696 /* Third party bus reset or reset for error recovery
697 * reasons. Just retry the command and see what
698 * happens.
699 */
700 action = ACTION_RETRY;
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200701 } else if (sense_valid && sense_current) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 switch (sshdr.sense_key) {
703 case UNIT_ATTENTION:
704 if (cmd->device->removable) {
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700705 /* Detected disc change. Set a bit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * and quietly refuse further access.
707 */
708 cmd->device->changed = 1;
Alan Sternb60af5b2008-11-03 15:56:47 -0500709 action = ACTION_FAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 } else {
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700711 /* Must have been a power glitch, or a
712 * bus reset. Could not have been a
713 * media change, so we just retry the
Alan Sternb60af5b2008-11-03 15:56:47 -0500714 * command and see what happens.
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700715 */
Alan Sternb60af5b2008-11-03 15:56:47 -0500716 action = ACTION_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718 break;
719 case ILLEGAL_REQUEST:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700720 /* If we had an ILLEGAL REQUEST returned, then
721 * we may have performed an unsupported
722 * command. The only thing this should be
723 * would be a ten byte read where only a six
724 * byte read was supported. Also, on a system
725 * where READ CAPACITY failed, we may have
726 * read past the end of the disk.
727 */
Jens Axboe26a68012005-11-29 21:03:34 +0100728 if ((cmd->device->use_10_for_rw &&
729 sshdr.asc == 0x20 && sshdr.ascq == 0x00) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 (cmd->cmnd[0] == READ_10 ||
731 cmd->cmnd[0] == WRITE_10)) {
Alan Sternb60af5b2008-11-03 15:56:47 -0500732 /* This will issue a new 6-byte command. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 cmd->device->use_10_for_rw = 0;
Alan Sternb60af5b2008-11-03 15:56:47 -0500734 action = ACTION_REPREP;
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500735 } else if (sshdr.asc == 0x10) /* DIX */ {
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500736 action = ACTION_FAIL;
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200737 blk_stat = BLK_STS_PROTECTION;
Martin K. Petersenc98a0eb2011-03-08 02:07:15 -0500738 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
Martin K. Petersen5db44862012-09-18 12:19:32 -0400739 } else if (sshdr.asc == 0x20 || sshdr.asc == 0x24) {
Martin K. Petersenc98a0eb2011-03-08 02:07:15 -0500740 action = ACTION_FAIL;
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200741 blk_stat = BLK_STS_TARGET;
Alan Sternb60af5b2008-11-03 15:56:47 -0500742 } else
743 action = ACTION_FAIL;
744 break;
Martin K. Petersen511e44f2008-07-17 04:28:33 -0400745 case ABORTED_COMMAND:
James Bottomley126c09822009-02-19 21:48:54 +0000746 action = ACTION_FAIL;
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200747 if (sshdr.asc == 0x10) /* DIF */
Douglas Gilbert1f7cbb82018-06-23 12:22:15 +0200748 blk_stat = BLK_STS_PROTECTION;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 break;
750 case NOT_READY:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700751 /* If the device is in the process of becoming
James Bottomleyf3e93f72006-04-25 16:48:30 -0500752 * ready, or has a temporary blockage, retry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
James Bottomleyf3e93f72006-04-25 16:48:30 -0500754 if (sshdr.asc == 0x04) {
755 switch (sshdr.ascq) {
756 case 0x01: /* becoming ready */
757 case 0x04: /* format in progress */
758 case 0x05: /* rebuild in progress */
759 case 0x06: /* recalculation in progress */
760 case 0x07: /* operation in progress */
761 case 0x08: /* Long write in progress */
762 case 0x09: /* self test in progress */
Quat Lefb0c0a02021-06-29 08:58:26 -0700763 case 0x11: /* notify (enable spinup) required */
Martin K. Petersend8705f12009-11-26 12:00:41 -0500764 case 0x14: /* space allocation in progress */
Douglas Gilberte37c7d92018-05-18 19:25:47 -0400765 case 0x1a: /* start stop unit in progress */
766 case 0x1b: /* sanitize in progress */
767 case 0x1d: /* configuration in progress */
768 case 0x24: /* depopulation in progress */
Alan Sternb60af5b2008-11-03 15:56:47 -0500769 action = ACTION_DELAYED_RETRY;
James Bottomleyf3e93f72006-04-25 16:48:30 -0500770 break;
Alan Stern3dbf6a52008-12-15 10:31:28 -0500771 default:
Alan Stern3dbf6a52008-12-15 10:31:28 -0500772 action = ACTION_FAIL;
773 break;
James Bottomleyf3e93f72006-04-25 16:48:30 -0500774 }
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200775 } else
Alan Sternb60af5b2008-11-03 15:56:47 -0500776 action = ACTION_FAIL;
Alan Sternb60af5b2008-11-03 15:56:47 -0500777 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case VOLUME_OVERFLOW:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700779 /* See SSC3rXX or current. */
Alan Sternb60af5b2008-11-03 15:56:47 -0500780 action = ACTION_FAIL;
781 break;
Damien Le Moald8f53b02020-09-24 13:53:30 -0700782 case DATA_PROTECT:
783 action = ACTION_FAIL;
784 if ((sshdr.asc == 0x0C && sshdr.ascq == 0x12) ||
785 (sshdr.asc == 0x55 &&
786 (sshdr.ascq == 0x0E || sshdr.ascq == 0x0F))) {
787 /* Insufficient zone resources */
788 blk_stat = BLK_STS_ZONE_OPEN_RESOURCE;
789 }
790 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 default:
Alan Sternb60af5b2008-11-03 15:56:47 -0500792 action = ACTION_FAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 break;
794 }
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200795 } else
Alan Sternb60af5b2008-11-03 15:56:47 -0500796 action = ACTION_FAIL;
Alan Sternb60af5b2008-11-03 15:56:47 -0500797
Mike Christie2a242d52020-10-01 10:35:53 -0500798 if (action != ACTION_FAIL && scsi_cmd_runtime_exceeced(cmd))
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +0900799 action = ACTION_FAIL;
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +0900800
Alan Sternb60af5b2008-11-03 15:56:47 -0500801 switch (action) {
802 case ACTION_FAIL:
803 /* Give up and fail the remainder of the request */
Christoph Hellwige8064022016-10-20 15:12:13 +0200804 if (!(req->rq_flags & RQF_QUIET)) {
Hannes Reineckef1569ff2014-10-24 14:27:07 +0200805 static DEFINE_RATELIMIT_STATE(_rs,
806 DEFAULT_RATELIMIT_INTERVAL,
807 DEFAULT_RATELIMIT_BURST);
808
809 if (unlikely(scsi_logging_level))
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200810 level =
811 SCSI_LOG_LEVEL(SCSI_LOG_MLCOMPLETE_SHIFT,
812 SCSI_LOG_MLCOMPLETE_BITS);
Hannes Reineckef1569ff2014-10-24 14:27:07 +0200813
814 /*
815 * if logging is enabled the failure will be printed
816 * in scsi_log_completion(), so avoid duplicate messages
817 */
818 if (!level && __ratelimit(&_rs)) {
819 scsi_print_result(cmd, NULL, FAILED);
Johannes Thumshirnc65be1a2018-06-25 13:20:58 +0200820 if (driver_byte(result) == DRIVER_SENSE)
Hannes Reineckef1569ff2014-10-24 14:27:07 +0200821 scsi_print_sense(cmd);
822 scsi_print_command(cmd);
823 }
James Bottomley3173d8c2005-09-04 11:32:05 -0500824 }
Christoph Hellwigae3d56d2019-01-29 09:33:07 +0100825 if (!scsi_end_request(req, blk_stat, blk_rq_err_bytes(req)))
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800826 return;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500827 fallthrough;
Alan Sternb60af5b2008-11-03 15:56:47 -0500828 case ACTION_REPREP:
Douglas Gilbert4ae61c62018-06-23 12:22:18 +0200829 scsi_io_completion_reprep(cmd, q);
Alan Sternb60af5b2008-11-03 15:56:47 -0500830 break;
831 case ACTION_RETRY:
832 /* Retry the same command immediately */
Bart Van Assche08640e82018-01-10 14:41:45 -0800833 __scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY, false);
Alan Sternb60af5b2008-11-03 15:56:47 -0500834 break;
835 case ACTION_DELAYED_RETRY:
836 /* Retry the same command after a delay */
Bart Van Assche08640e82018-01-10 14:41:45 -0800837 __scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY, false);
Alan Sternb60af5b2008-11-03 15:56:47 -0500838 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 }
840}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200842/*
843 * Helper for scsi_io_completion() when cmd->result is non-zero. Returns a
844 * new result that may suppress further error checking. Also modifies
845 * *blk_statp in some cases.
846 */
847static int scsi_io_completion_nz_result(struct scsi_cmnd *cmd, int result,
848 blk_status_t *blk_statp)
849{
850 bool sense_valid;
851 bool sense_current = true; /* false implies "deferred sense" */
852 struct request *req = cmd->request;
853 struct scsi_sense_hdr sshdr;
854
855 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
856 if (sense_valid)
857 sense_current = !scsi_sense_is_deferred(&sshdr);
858
859 if (blk_rq_is_passthrough(req)) {
860 if (sense_valid) {
861 /*
862 * SG_IO wants current and deferred errors
863 */
864 scsi_req(req)->sense_len =
865 min(8 + cmd->sense_buffer[7],
866 SCSI_SENSE_BUFFERSIZE);
867 }
868 if (sense_current)
869 *blk_statp = scsi_result_to_blk_status(cmd, result);
870 } else if (blk_rq_bytes(req) == 0 && sense_current) {
871 /*
872 * Flush commands do not transfers any data, and thus cannot use
873 * good_bytes != blk_rq_bytes(req) as the signal for an error.
874 * This sets *blk_statp explicitly for the problem case.
875 */
876 *blk_statp = scsi_result_to_blk_status(cmd, result);
877 }
878 /*
879 * Recovered errors need reporting, but they're always treated as
880 * success, so fiddle the result code here. For passthrough requests
881 * we already took a copy of the original into sreq->result which
882 * is what gets returned to the user
883 */
884 if (sense_valid && (sshdr.sense_key == RECOVERED_ERROR)) {
885 bool do_print = true;
886 /*
887 * if ATA PASS-THROUGH INFORMATION AVAILABLE [0x0, 0x1d]
888 * skip print since caller wants ATA registers. Only occurs
889 * on SCSI ATA PASS_THROUGH commands when CK_COND=1
890 */
891 if ((sshdr.asc == 0x0) && (sshdr.ascq == 0x1d))
892 do_print = false;
893 else if (req->rq_flags & RQF_QUIET)
894 do_print = false;
895 if (do_print)
896 scsi_print_sense(cmd);
897 result = 0;
898 /* for passthrough, *blk_statp may be set */
899 *blk_statp = BLK_STS_OK;
900 }
901 /*
902 * Another corner case: the SCSI status byte is non-zero but 'good'.
903 * Example: PRE-FETCH command returns SAM_STAT_CONDITION_MET when
904 * it is able to fit nominated LBs in its cache (and SAM_STAT_GOOD
905 * if it can't fit). Treat SAM_STAT_CONDITION_MET and the related
906 * intermediate statuses (both obsolete in SAM-4) as good.
907 */
908 if (status_byte(result) && scsi_status_is_good(result)) {
909 result = 0;
910 *blk_statp = BLK_STS_OK;
911 }
912 return result;
913}
914
André Almeidaea941012020-04-19 02:01:48 -0300915/**
916 * scsi_io_completion - Completion processing for SCSI commands.
917 * @cmd: command that is finished.
918 * @good_bytes: number of processed bytes.
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200919 *
André Almeidaea941012020-04-19 02:01:48 -0300920 * We will finish off the specified number of sectors. If we are done, the
921 * command block will be released and the queue function will be goosed. If we
922 * are not done then we have to figure out what to do next:
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200923 *
André Almeidaea941012020-04-19 02:01:48 -0300924 * a) We can call scsi_io_completion_reprep(). The request will be
925 * unprepared and put back on the queue. Then a new command will
926 * be created for it. This should be used if we made forward
927 * progress, or if we want to switch from READ(10) to READ(6) for
928 * example.
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200929 *
André Almeidaea941012020-04-19 02:01:48 -0300930 * b) We can call scsi_io_completion_action(). The request will be
931 * put back on the queue and retried using the same command as
932 * before, possibly after a delay.
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200933 *
André Almeidaea941012020-04-19 02:01:48 -0300934 * c) We can call scsi_end_request() with blk_stat other than
935 * BLK_STS_OK, to fail the remainder of the request.
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200936 */
937void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
938{
939 int result = cmd->result;
940 struct request_queue *q = cmd->device->request_queue;
941 struct request *req = cmd->request;
942 blk_status_t blk_stat = BLK_STS_OK;
943
Douglas Gilbert0d437902018-06-23 12:22:19 +0200944 if (unlikely(result)) /* a nz result may or may not be an error */
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200945 result = scsi_io_completion_nz_result(cmd, result, &blk_stat);
946
Douglas Gilbert0d437902018-06-23 12:22:19 +0200947 if (unlikely(blk_rq_is_passthrough(req))) {
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200948 /*
949 * scsi_result_to_blk_status may have reset the host_byte
950 */
951 scsi_req(req)->result = cmd->result;
Douglas Gilbert8e1695a02018-06-23 12:22:20 +0200952 }
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200953
954 /*
955 * Next deal with any sectors which we were able to correctly
956 * handle.
957 */
958 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, cmd,
959 "%u sectors total, %d bytes done.\n",
960 blk_rq_sectors(req), good_bytes));
961
962 /*
André Almeidaea941012020-04-19 02:01:48 -0300963 * Failed, zero length commands always need to drop down
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200964 * to retry code. Fast path should return in this block.
965 */
Douglas Gilbert0d437902018-06-23 12:22:19 +0200966 if (likely(blk_rq_bytes(req) > 0 || blk_stat == BLK_STS_OK)) {
Christoph Hellwigae3d56d2019-01-29 09:33:07 +0100967 if (likely(!scsi_end_request(req, blk_stat, good_bytes)))
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200968 return; /* no bytes remaining */
969 }
970
Douglas Gilbert0d437902018-06-23 12:22:19 +0200971 /* Kill remainder if no retries. */
972 if (unlikely(blk_stat && scsi_noretry_cmd(cmd))) {
Christoph Hellwigae3d56d2019-01-29 09:33:07 +0100973 if (scsi_end_request(req, blk_stat, blk_rq_bytes(req)))
Douglas Gilbert8e1695a02018-06-23 12:22:20 +0200974 WARN_ONCE(true,
975 "Bytes remaining after failed, no-retry command");
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200976 return;
977 }
978
979 /*
980 * If there had been no error, but we have leftover bytes in the
981 * requeues just queue the command up again.
982 */
Douglas Gilbert0d437902018-06-23 12:22:19 +0200983 if (likely(result == 0))
Douglas Gilbert4ae61c62018-06-23 12:22:18 +0200984 scsi_io_completion_reprep(cmd, q);
985 else
Douglas Gilbertda32bae2018-06-23 12:22:17 +0200986 scsi_io_completion_action(cmd, result);
987}
988
Christoph Hellwigcc979232020-04-14 09:42:24 +0200989static inline bool scsi_cmd_needs_dma_drain(struct scsi_device *sdev,
990 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
Christoph Hellwigcc979232020-04-14 09:42:24 +0200992 return sdev->dma_drain_len && blk_rq_is_passthrough(rq) &&
993 !op_is_write(req_op(rq)) &&
994 sdev->host->hostt->dma_need_drain(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200996
André Almeidaea941012020-04-19 02:01:48 -0300997/**
Christoph Hellwig7007e9d2020-10-05 10:41:28 +0200998 * scsi_alloc_sgtables - allocate S/G tables for a command
André Almeidaea941012020-04-19 02:01:48 -0300999 * @cmd: command descriptor we wish to initialize
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001000 *
André Almeidaea941012020-04-19 02:01:48 -03001001 * Returns:
1002 * * BLK_STS_OK - on success
1003 * * BLK_STS_RESOURCE - if the failure is retryable
1004 * * BLK_STS_IOERR - if the failure is fatal
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001005 */
Christoph Hellwig7007e9d2020-10-05 10:41:28 +02001006blk_status_t scsi_alloc_sgtables(struct scsi_cmnd *cmd)
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001007{
Christoph Hellwigcc979232020-04-14 09:42:24 +02001008 struct scsi_device *sdev = cmd->device;
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001009 struct request *rq = cmd->request;
Christoph Hellwigcc979232020-04-14 09:42:24 +02001010 unsigned short nr_segs = blk_rq_nr_phys_segments(rq);
1011 struct scatterlist *last_sg = NULL;
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001012 blk_status_t ret;
Christoph Hellwigcc979232020-04-14 09:42:24 +02001013 bool need_drain = scsi_cmd_needs_dma_drain(sdev, rq);
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001014 int count;
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001015
Christoph Hellwigcc979232020-04-14 09:42:24 +02001016 if (WARN_ON_ONCE(!nr_segs))
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001017 return BLK_STS_IOERR;
Christoph Hellwig635d98b2014-06-28 11:51:01 +02001018
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001019 /*
Christoph Hellwigcc979232020-04-14 09:42:24 +02001020 * Make sure there is space for the drain. The driver must adjust
1021 * max_hw_segments to be prepared for this.
1022 */
1023 if (need_drain)
1024 nr_segs++;
1025
1026 /*
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001027 * If sg table allocation fails, requeue request later.
1028 */
Christoph Hellwigcc979232020-04-14 09:42:24 +02001029 if (unlikely(sg_alloc_table_chained(&cmd->sdb.table, nr_segs,
1030 cmd->sdb.table.sgl, SCSI_INLINE_SG_CNT)))
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001031 return BLK_STS_RESOURCE;
1032
1033 /*
1034 * Next, walk the list, and fill in the addresses and sizes of
1035 * each segment.
1036 */
Christoph Hellwigcc979232020-04-14 09:42:24 +02001037 count = __blk_rq_map_sg(rq->q, rq, cmd->sdb.table.sgl, &last_sg);
1038
Christoph Hellwigbdf87102020-04-14 09:42:25 +02001039 if (blk_rq_bytes(rq) & rq->q->dma_pad_mask) {
1040 unsigned int pad_len =
1041 (rq->q->dma_pad_mask & ~blk_rq_bytes(rq)) + 1;
1042
1043 last_sg->length += pad_len;
1044 cmd->extra_len += pad_len;
1045 }
1046
Christoph Hellwigcc979232020-04-14 09:42:24 +02001047 if (need_drain) {
1048 sg_unmark_end(last_sg);
1049 last_sg = sg_next(last_sg);
1050 sg_set_buf(last_sg, sdev->dma_drain_buf, sdev->dma_drain_len);
1051 sg_mark_end(last_sg);
1052
Christoph Hellwigbdf87102020-04-14 09:42:25 +02001053 cmd->extra_len += sdev->dma_drain_len;
Christoph Hellwigcc979232020-04-14 09:42:24 +02001054 count++;
1055 }
1056
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001057 BUG_ON(count > cmd->sdb.table.nents);
1058 cmd->sdb.table.nents = count;
1059 cmd->sdb.length = blk_rq_payload_bytes(rq);
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001060
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001061 if (blk_integrity_rq(rq)) {
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001062 struct scsi_data_buffer *prot_sdb = cmd->prot_sdb;
Christoph Hellwig0475bd62020-04-14 09:42:23 +02001063 int ivecs;
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001064
Christoph Hellwig14784562018-11-09 14:42:38 +01001065 if (WARN_ON_ONCE(!prot_sdb)) {
Ewan D. Milne91724c22015-01-15 10:02:12 -05001066 /*
1067 * This can happen if someone (e.g. multipath)
1068 * queues a command to a device on an adapter
1069 * that does not support DIX.
1070 */
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001071 ret = BLK_STS_IOERR;
Christoph Hellwig14784562018-11-09 14:42:38 +01001072 goto out_free_sgtables;
Ewan D. Milne91724c22015-01-15 10:02:12 -05001073 }
1074
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001075 ivecs = blk_rq_count_integrity_sg(rq->q, rq->bio);
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001076
Ming Lin001d63b2016-04-04 14:48:09 -07001077 if (sg_alloc_table_chained(&prot_sdb->table, ivecs,
Ming Lei46358732019-04-28 15:39:30 +08001078 prot_sdb->table.sgl,
Ming Lei92524fa2019-04-28 15:39:31 +08001079 SCSI_INLINE_PROT_SG_CNT)) {
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001080 ret = BLK_STS_RESOURCE;
Christoph Hellwig14784562018-11-09 14:42:38 +01001081 goto out_free_sgtables;
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001082 }
1083
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001084 count = blk_rq_map_integrity_sg(rq->q, rq->bio,
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001085 prot_sdb->table.sgl);
Igor Stoppa6f1d8a52018-09-05 23:47:20 +03001086 BUG_ON(count > ivecs);
1087 BUG_ON(count > queue_max_integrity_segments(rq->q));
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001088
1089 cmd->prot_sdb = prot_sdb;
1090 cmd->prot_sdb->table.nents = count;
1091 }
1092
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001093 return BLK_STS_OK;
Christoph Hellwig14784562018-11-09 14:42:38 +01001094out_free_sgtables:
Johannes Thumshirn20a66f22020-04-28 19:45:55 +09001095 scsi_free_sgtables(cmd);
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001096 return ret;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001097}
Christoph Hellwig7007e9d2020-10-05 10:41:28 +02001098EXPORT_SYMBOL(scsi_alloc_sgtables);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001100/**
Bart Van Assche832889f2017-08-30 16:58:40 -07001101 * scsi_initialize_rq - initialize struct scsi_cmnd partially
Jonathan Corbet35c05062017-08-24 16:11:09 -06001102 * @rq: Request associated with the SCSI command to be initialized.
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001103 *
Bart Van Assche832889f2017-08-30 16:58:40 -07001104 * This function initializes the members of struct scsi_cmnd that must be
1105 * initialized before request processing starts and that won't be
1106 * reinitialized if a SCSI command is requeued.
1107 *
Bart Van Assche64104f72017-08-30 16:58:39 -07001108 * Called from inside blk_get_request() for pass-through requests and from
1109 * inside scsi_init_command() for filesystem requests.
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001110 */
Bart Van Asschee4c94702017-12-07 15:59:31 -08001111static void scsi_initialize_rq(struct request *rq)
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001112{
Bart Van Asschec8d9cf22017-06-20 11:15:42 -07001113 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
1114
1115 scsi_req_init(&cmd->req);
Bart Van Assche3be88282018-02-22 11:30:20 -08001116 init_rcu_head(&cmd->rcu);
Bart Van Assche832889f2017-08-30 16:58:40 -07001117 cmd->jiffies_at_alloc = jiffies;
1118 cmd->retries = 0;
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001119}
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001120
Ming Leib7e9e1f2019-07-25 10:05:00 +08001121/*
1122 * Only called when the request isn't completed by SCSI, and not freed by
1123 * SCSI
1124 */
1125static void scsi_cleanup_rq(struct request *rq)
1126{
1127 if (rq->rq_flags & RQF_DONTPREP) {
1128 scsi_mq_uninit_cmd(blk_mq_rq_to_pdu(rq));
1129 rq->rq_flags &= ~RQF_DONTPREP;
1130 }
1131}
1132
Bart Van Assche65ca8462020-01-22 19:56:34 -08001133/* Called before a request is prepared. See also scsi_mq_prep_fn(). */
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001134void scsi_init_command(struct scsi_device *dev, struct scsi_cmnd *cmd)
Christoph Hellwig3b003152006-11-04 20:10:55 +01001135{
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001136 void *buf = cmd->sense_buffer;
1137 void *prot = cmd->prot_sdb;
Bart Van Assche64104f72017-08-30 16:58:39 -07001138 struct request *rq = blk_mq_rq_from_pdu(cmd);
1139 unsigned int flags = cmd->flags & SCMD_PRESERVED_FLAGS;
Bart Van Assche832889f2017-08-30 16:58:40 -07001140 unsigned long jiffies_at_alloc;
Bart Van Assche65ca8462020-01-22 19:56:34 -08001141 int retries, to_clear;
Ming Lei6eb045e2019-10-25 14:58:55 +08001142 bool in_flight;
Bart Van Assche64104f72017-08-30 16:58:39 -07001143
1144 if (!blk_rq_is_scsi(rq) && !(flags & SCMD_INITIALIZED)) {
1145 flags |= SCMD_INITIALIZED;
1146 scsi_initialize_rq(rq);
1147 }
Christoph Hellwig3b003152006-11-04 20:10:55 +01001148
Bart Van Assche832889f2017-08-30 16:58:40 -07001149 jiffies_at_alloc = cmd->jiffies_at_alloc;
1150 retries = cmd->retries;
Ming Lei6eb045e2019-10-25 14:58:55 +08001151 in_flight = test_bit(SCMD_STATE_INFLIGHT, &cmd->state);
Bart Van Assche65ca8462020-01-22 19:56:34 -08001152 /*
1153 * Zero out the cmd, except for the embedded scsi_request. Only clear
1154 * the driver-private command data if the LLD does not supply a
1155 * function to initialize that data.
1156 */
1157 to_clear = sizeof(*cmd) - sizeof(cmd->req);
1158 if (!dev->host->hostt->init_cmd_priv)
1159 to_clear += dev->host->hostt->cmd_size;
1160 memset((char *)cmd + sizeof(cmd->req), 0, to_clear);
Christoph Hellwig04796332014-02-20 14:20:55 -08001161
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001162 cmd->device = dev;
1163 cmd->sense_buffer = buf;
1164 cmd->prot_sdb = prot;
Bart Van Assche64104f72017-08-30 16:58:39 -07001165 cmd->flags = flags;
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001166 INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler);
Bart Van Assche832889f2017-08-30 16:58:40 -07001167 cmd->jiffies_at_alloc = jiffies_at_alloc;
1168 cmd->retries = retries;
Ming Lei6eb045e2019-10-25 14:58:55 +08001169 if (in_flight)
1170 __set_bit(SCMD_STATE_INFLIGHT, &cmd->state);
Christoph Hellwig3b003152006-11-04 20:10:55 +01001171
Christoph Hellwig3b003152006-11-04 20:10:55 +01001172}
1173
Christoph Hellwig785ba832018-11-09 14:42:37 +01001174static blk_status_t scsi_setup_scsi_cmnd(struct scsi_device *sdev,
1175 struct request *req)
James Bottomley7b163182005-12-15 20:17:02 -06001176{
Bart Van Asschebed22132017-08-25 13:46:32 -07001177 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
Christoph Hellwig3b003152006-11-04 20:10:55 +01001178
1179 /*
Christoph Hellwigaebf5262017-01-31 16:57:31 +01001180 * Passthrough requests may transfer data, in which case they must
Christoph Hellwig3b003152006-11-04 20:10:55 +01001181 * a bio attached to them. Or they might contain a SCSI command
1182 * that does not transfer data, in which case they may optionally
1183 * submit a request without an attached bio.
1184 */
1185 if (req->bio) {
Christoph Hellwig7007e9d2020-10-05 10:41:28 +02001186 blk_status_t ret = scsi_alloc_sgtables(cmd);
Christoph Hellwig159b2cb2018-11-09 14:42:39 +01001187 if (unlikely(ret != BLK_STS_OK))
1188 return ret;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001189 } else {
Tejun Heob0790412009-05-07 22:24:42 +09001190 BUG_ON(blk_rq_bytes(req));
Christoph Hellwig3b003152006-11-04 20:10:55 +01001191
Boaz Harrosh30b0c372007-12-13 13:47:40 +02001192 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
Christoph Hellwig3b003152006-11-04 20:10:55 +01001193 }
James Bottomley7b163182005-12-15 20:17:02 -06001194
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001195 cmd->cmd_len = scsi_req(req)->cmd_len;
1196 cmd->cmnd = scsi_req(req)->cmd;
Tejun Heob0790412009-05-07 22:24:42 +09001197 cmd->transfersize = blk_rq_bytes(req);
Christoph Hellwig64c7f1d2017-04-05 19:18:12 +02001198 cmd->allowed = scsi_req(req)->retries;
Christoph Hellwig785ba832018-11-09 14:42:37 +01001199 return BLK_STS_OK;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001200}
1201
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001202static blk_status_t
Christoph Hellwig822bd2d2020-10-05 10:41:26 +02001203scsi_device_state_check(struct scsi_device *sdev, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204{
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001205 switch (sdev->sdev_state) {
Bart Van Assche271822b2020-12-08 21:29:49 -08001206 case SDEV_CREATED:
1207 return BLK_STS_OK;
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001208 case SDEV_OFFLINE:
1209 case SDEV_TRANSPORT_OFFLINE:
1210 /*
1211 * If the device is offline we refuse to process any
1212 * commands. The device must be brought online
1213 * before trying any recovery commands.
1214 */
Ewan D. Milneb0962c52020-03-11 10:39:30 -04001215 if (!sdev->offline_already) {
1216 sdev->offline_already = true;
1217 sdev_printk(KERN_ERR, sdev,
1218 "rejecting I/O to offline device\n");
1219 }
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001220 return BLK_STS_IOERR;
1221 case SDEV_DEL:
1222 /*
1223 * If the device is fully deleted, we refuse to
1224 * process any commands as well.
1225 */
1226 sdev_printk(KERN_ERR, sdev,
1227 "rejecting I/O to dead device\n");
1228 return BLK_STS_IOERR;
1229 case SDEV_BLOCK:
1230 case SDEV_CREATED_BLOCK:
1231 return BLK_STS_RESOURCE;
1232 case SDEV_QUIESCE:
1233 /*
Bart Van Assche271822b2020-12-08 21:29:49 -08001234 * If the device is blocked we only accept power management
1235 * commands.
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001236 */
Bart Van Assche271822b2020-12-08 21:29:49 -08001237 if (req && WARN_ON_ONCE(!(req->rq_flags & RQF_PM)))
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001238 return BLK_STS_RESOURCE;
1239 return BLK_STS_OK;
1240 default:
1241 /*
1242 * For any other not fully online state we only allow
Bart Van Assche271822b2020-12-08 21:29:49 -08001243 * power management commands.
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001244 */
Bart Van Assche271822b2020-12-08 21:29:49 -08001245 if (req && !(req->rq_flags & RQF_PM))
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001246 return BLK_STS_IOERR;
1247 return BLK_STS_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001249}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251/*
1252 * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1253 * return 0.
1254 *
1255 * Called with the queue_lock held.
1256 */
1257static inline int scsi_dev_queue_ready(struct request_queue *q,
1258 struct scsi_device *sdev)
1259{
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001260 unsigned int busy;
1261
1262 busy = atomic_inc_return(&sdev->device_busy) - 1;
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001263 if (atomic_read(&sdev->device_blocked)) {
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001264 if (busy)
1265 goto out_dec;
1266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /*
1268 * unblock after device_blocked iterates to zero
1269 */
Jens Axboef664a3c2018-11-01 16:36:27 -06001270 if (atomic_dec_return(&sdev->device_blocked) > 0)
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001271 goto out_dec;
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001272 SCSI_LOG_MLQUEUE(3, sdev_printk(KERN_INFO, sdev,
1273 "unblocking device at zero depth\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001275
1276 if (busy >= sdev->queue_depth)
1277 goto out_dec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 return 1;
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001280out_dec:
1281 atomic_dec(&sdev->device_busy);
1282 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283}
1284
Mike Christief0c0a372008-08-17 15:24:38 -05001285/*
1286 * scsi_target_queue_ready: checks if there we can send commands to target
1287 * @sdev: scsi device on starget to check.
Mike Christief0c0a372008-08-17 15:24:38 -05001288 */
1289static inline int scsi_target_queue_ready(struct Scsi_Host *shost,
1290 struct scsi_device *sdev)
1291{
1292 struct scsi_target *starget = scsi_target(sdev);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001293 unsigned int busy;
Mike Christief0c0a372008-08-17 15:24:38 -05001294
1295 if (starget->single_lun) {
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001296 spin_lock_irq(shost->host_lock);
Mike Christief0c0a372008-08-17 15:24:38 -05001297 if (starget->starget_sdev_user &&
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001298 starget->starget_sdev_user != sdev) {
1299 spin_unlock_irq(shost->host_lock);
1300 return 0;
1301 }
Mike Christief0c0a372008-08-17 15:24:38 -05001302 starget->starget_sdev_user = sdev;
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001303 spin_unlock_irq(shost->host_lock);
Mike Christief0c0a372008-08-17 15:24:38 -05001304 }
1305
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001306 if (starget->can_queue <= 0)
1307 return 1;
1308
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001309 busy = atomic_inc_return(&starget->target_busy) - 1;
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001310 if (atomic_read(&starget->target_blocked) > 0) {
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001311 if (busy)
1312 goto starved;
1313
Mike Christief0c0a372008-08-17 15:24:38 -05001314 /*
1315 * unblock after target_blocked iterates to zero
1316 */
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001317 if (atomic_dec_return(&starget->target_blocked) > 0)
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001318 goto out_dec;
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001319
1320 SCSI_LOG_MLQUEUE(3, starget_printk(KERN_INFO, starget,
1321 "unblocking target at zero depth\n"));
Mike Christief0c0a372008-08-17 15:24:38 -05001322 }
1323
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001324 if (busy >= starget->can_queue)
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001325 goto starved;
Mike Christief0c0a372008-08-17 15:24:38 -05001326
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001327 return 1;
1328
1329starved:
1330 spin_lock_irq(shost->host_lock);
1331 list_move_tail(&sdev->starved_entry, &shost->starved_list);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001332 spin_unlock_irq(shost->host_lock);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001333out_dec:
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001334 if (starget->can_queue > 0)
1335 atomic_dec(&starget->target_busy);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001336 return 0;
Mike Christief0c0a372008-08-17 15:24:38 -05001337}
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339/*
1340 * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1341 * return 0. We must end up running the queue again whenever 0 is
1342 * returned, else IO can hang.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
1344static inline int scsi_host_queue_ready(struct request_queue *q,
1345 struct Scsi_Host *shost,
Ming Lei6eb045e2019-10-25 14:58:55 +08001346 struct scsi_device *sdev,
1347 struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
James Bottomley939647e2005-09-18 15:05:20 -05001349 if (scsi_host_in_recovery(shost))
Christoph Hellwig74665012014-01-22 15:29:29 +01001350 return 0;
1351
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001352 if (atomic_read(&shost->host_blocked) > 0) {
Ming Lei6eb045e2019-10-25 14:58:55 +08001353 if (scsi_host_busy(shost) > 0)
Christoph Hellwig74665012014-01-22 15:29:29 +01001354 goto starved;
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 /*
1357 * unblock after host_blocked iterates to zero
1358 */
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001359 if (atomic_dec_return(&shost->host_blocked) > 0)
Christoph Hellwig74665012014-01-22 15:29:29 +01001360 goto out_dec;
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001361
1362 SCSI_LOG_MLQUEUE(3,
1363 shost_printk(KERN_INFO, shost,
1364 "unblocking host at zero depth\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
Christoph Hellwig74665012014-01-22 15:29:29 +01001366
Christoph Hellwig74665012014-01-22 15:29:29 +01001367 if (shost->host_self_blocked)
1368 goto starved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 /* We're OK to process the command, so we can't be starved */
Christoph Hellwig74665012014-01-22 15:29:29 +01001371 if (!list_empty(&sdev->starved_entry)) {
1372 spin_lock_irq(shost->host_lock);
1373 if (!list_empty(&sdev->starved_entry))
1374 list_del_init(&sdev->starved_entry);
1375 spin_unlock_irq(shost->host_lock);
1376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Ming Lei6eb045e2019-10-25 14:58:55 +08001378 __set_bit(SCMD_STATE_INFLIGHT, &cmd->state);
1379
Christoph Hellwig74665012014-01-22 15:29:29 +01001380 return 1;
1381
1382starved:
1383 spin_lock_irq(shost->host_lock);
1384 if (list_empty(&sdev->starved_entry))
1385 list_add_tail(&sdev->starved_entry, &shost->starved_list);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001386 spin_unlock_irq(shost->host_lock);
Christoph Hellwig74665012014-01-22 15:29:29 +01001387out_dec:
Ming Lei6eb045e2019-10-25 14:58:55 +08001388 scsi_dec_host_busy(shost, cmd);
Christoph Hellwig74665012014-01-22 15:29:29 +01001389 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390}
1391
1392/*
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001393 * Busy state exporting function for request stacking drivers.
1394 *
1395 * For efficiency, no lock is taken to check the busy state of
1396 * shost/starget/sdev, since the returned value is not guaranteed and
1397 * may be changed after request stacking drivers call the function,
1398 * regardless of taking lock or not.
1399 *
Bart Van Assche67bd9412012-06-29 15:33:22 +00001400 * When scsi can't dispatch I/Os anymore and needs to kill I/Os scsi
1401 * needs to return 'not busy'. Otherwise, request stacking drivers
1402 * may hold requests forever.
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001403 */
Jens Axboef664a3c2018-11-01 16:36:27 -06001404static bool scsi_mq_lld_busy(struct request_queue *q)
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001405{
1406 struct scsi_device *sdev = q->queuedata;
1407 struct Scsi_Host *shost;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001408
Bart Van Assche3f3299d2012-11-28 13:42:38 +01001409 if (blk_queue_dying(q))
Jens Axboef664a3c2018-11-01 16:36:27 -06001410 return false;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001411
1412 shost = sdev->host;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001413
Jun'ichi Nomurab7e94a12012-05-22 18:57:17 +09001414 /*
1415 * Ignore host/starget busy state.
1416 * Since block layer does not have a concept of fairness across
1417 * multiple queues, congestion of host/starget needs to be handled
1418 * in SCSI layer.
1419 */
1420 if (scsi_host_in_recovery(shost) || scsi_device_is_busy(sdev))
Jens Axboef664a3c2018-11-01 16:36:27 -06001421 return true;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001422
Jens Axboef664a3c2018-11-01 16:36:27 -06001423 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
Jens Axboe1aea6432006-01-09 16:03:03 +01001426static void scsi_softirq_done(struct request *rq)
1427{
Bart Van Asschebed22132017-08-25 13:46:32 -07001428 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
Jens Axboe1aea6432006-01-09 16:03:03 +01001429 int disposition;
1430
1431 INIT_LIST_HEAD(&cmd->eh_entry);
1432
Jens Axboe242f9dc2008-09-14 05:55:09 -07001433 atomic_inc(&cmd->device->iodone_cnt);
1434 if (cmd->result)
1435 atomic_inc(&cmd->device->ioerr_cnt);
1436
Jens Axboe1aea6432006-01-09 16:03:03 +01001437 disposition = scsi_decide_disposition(cmd);
Mike Christie2a242d52020-10-01 10:35:53 -05001438 if (disposition != SUCCESS && scsi_cmd_runtime_exceeced(cmd))
Jens Axboe1aea6432006-01-09 16:03:03 +01001439 disposition = SUCCESS;
Hannes Reinecke91921e02014-06-25 16:39:59 +02001440
Jens Axboe1aea6432006-01-09 16:03:03 +01001441 scsi_log_completion(cmd, disposition);
1442
1443 switch (disposition) {
Bean Huo4c7b4d62020-06-19 17:41:17 +02001444 case SUCCESS:
1445 scsi_finish_command(cmd);
1446 break;
1447 case NEEDS_RETRY:
1448 scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY);
1449 break;
1450 case ADD_TO_MLQUEUE:
1451 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
1452 break;
1453 default:
1454 scsi_eh_scmd_add(cmd);
1455 break;
Jens Axboe1aea6432006-01-09 16:03:03 +01001456 }
1457}
1458
Christoph Hellwig3b5382c2014-05-06 12:25:40 +02001459/**
Christoph Hellwig82042a22014-09-05 18:23:07 -07001460 * scsi_dispatch_command - Dispatch a command to the low-level driver.
1461 * @cmd: command block we are dispatching.
1462 *
1463 * Return: nonzero return request was rejected and device's queue needs to be
1464 * plugged.
1465 */
1466static int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
1467{
1468 struct Scsi_Host *host = cmd->device->host;
1469 int rtn = 0;
1470
1471 atomic_inc(&cmd->device->iorequest_cnt);
1472
1473 /* check if the device is still usable */
1474 if (unlikely(cmd->device->sdev_state == SDEV_DEL)) {
1475 /* in SDEV_DEL we error all commands. DID_NO_CONNECT
1476 * returns an immediate error upwards, and signals
1477 * that the device is no longer present */
1478 cmd->result = DID_NO_CONNECT << 16;
1479 goto done;
1480 }
1481
1482 /* Check to see if the scsi lld made this device blocked. */
1483 if (unlikely(scsi_device_blocked(cmd->device))) {
1484 /*
1485 * in blocked state, the command is just put back on
1486 * the device queue. The suspend state has already
1487 * blocked the queue so future requests should not
1488 * occur until the device transitions out of the
1489 * suspend state.
1490 */
1491 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1492 "queuecommand : device blocked\n"));
1493 return SCSI_MLQUEUE_DEVICE_BUSY;
1494 }
1495
1496 /* Store the LUN value in cmnd, if needed. */
1497 if (cmd->device->lun_in_cdb)
1498 cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) |
1499 (cmd->device->lun << 5 & 0xe0);
1500
1501 scsi_log_send(cmd);
1502
1503 /*
1504 * Before we queue this command, check if the command
1505 * length exceeds what the host adapter can handle.
1506 */
1507 if (cmd->cmd_len > cmd->device->host->max_cmd_len) {
1508 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1509 "queuecommand : command too long. "
1510 "cdb_size=%d host->max_cmd_len=%d\n",
1511 cmd->cmd_len, cmd->device->host->max_cmd_len));
1512 cmd->result = (DID_ABORT << 16);
1513 goto done;
1514 }
1515
1516 if (unlikely(host->shost_state == SHOST_DEL)) {
1517 cmd->result = (DID_NO_CONNECT << 16);
1518 goto done;
1519
1520 }
1521
1522 trace_scsi_dispatch_cmd_start(cmd);
1523 rtn = host->hostt->queuecommand(host, cmd);
1524 if (rtn) {
1525 trace_scsi_dispatch_cmd_error(cmd, rtn);
1526 if (rtn != SCSI_MLQUEUE_DEVICE_BUSY &&
1527 rtn != SCSI_MLQUEUE_TARGET_BUSY)
1528 rtn = SCSI_MLQUEUE_HOST_BUSY;
1529
1530 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1531 "queuecommand : request rejected\n"));
1532 }
1533
1534 return rtn;
1535 done:
1536 cmd->scsi_done(cmd);
1537 return 0;
1538}
1539
Bart Van Asschebe4c1862017-06-02 14:21:59 -07001540/* Size in bytes of the sg-list stored in the scsi-mq command-private data. */
Ming Lei3dccdf52019-04-28 15:39:32 +08001541static unsigned int scsi_mq_inline_sgl_size(struct Scsi_Host *shost)
Bart Van Asschebe4c1862017-06-02 14:21:59 -07001542{
Ming Lei3dccdf52019-04-28 15:39:32 +08001543 return min_t(unsigned int, shost->sg_tablesize, SCSI_INLINE_SG_CNT) *
Bart Van Asschebe4c1862017-06-02 14:21:59 -07001544 sizeof(struct scatterlist);
1545}
1546
Christoph Hellwig5843cc32020-10-05 10:41:27 +02001547static blk_status_t scsi_prepare_cmd(struct request *req)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001548{
1549 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1550 struct scsi_device *sdev = req->q->queuedata;
1551 struct Scsi_Host *shost = sdev->host;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001552 struct scatterlist *sg;
1553
Bart Van Assche08f78432017-06-02 14:22:00 -07001554 scsi_init_command(sdev, cmd);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001555
Christoph Hellwigd2852032014-01-17 12:06:53 +01001556 cmd->request = req;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001557 cmd->tag = req->tag;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001558 cmd->prot_op = SCSI_PROT_NORMAL;
Christoph Hellwigb6ba9b02020-10-08 22:06:11 +02001559 if (blk_rq_bytes(req))
1560 cmd->sc_data_direction = rq_dma_dir(req);
1561 else
1562 cmd->sc_data_direction = DMA_NONE;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001563
Christoph Hellwigd2852032014-01-17 12:06:53 +01001564 sg = (void *)cmd + sizeof(struct scsi_cmnd) + shost->hostt->cmd_size;
1565 cmd->sdb.table.sgl = sg;
1566
1567 if (scsi_host_get_prot(shost)) {
Christoph Hellwigd2852032014-01-17 12:06:53 +01001568 memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer));
1569
1570 cmd->prot_sdb->table.sgl =
1571 (struct scatterlist *)(cmd->prot_sdb + 1);
1572 }
1573
Christoph Hellwig74e5e6c2020-10-05 10:41:29 +02001574 /*
1575 * Special handling for passthrough commands, which don't go to the ULP
1576 * at all:
1577 */
1578 if (blk_rq_is_scsi(req))
1579 return scsi_setup_scsi_cmnd(sdev, req);
Christoph Hellwigfe052522014-09-22 15:59:31 +02001580
Christoph Hellwig74e5e6c2020-10-05 10:41:29 +02001581 if (sdev->handler && sdev->handler->prep_fn) {
1582 blk_status_t ret = sdev->handler->prep_fn(sdev, req);
1583
1584 if (ret != BLK_STS_OK)
1585 return ret;
1586 }
1587
1588 cmd->cmnd = scsi_req(req)->cmd = scsi_req(req)->__cmd;
1589 memset(cmd->cmnd, 0, BLK_MAX_CDB);
1590 return scsi_cmd_to_driver(cmd)->init_command(cmd);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001591}
1592
1593static void scsi_mq_done(struct scsi_cmnd *cmd)
1594{
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001595 if (unlikely(blk_should_fake_timeout(cmd->request->q)))
1596 return;
Keith Buschf1342702018-11-26 09:54:29 -07001597 if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state)))
1598 return;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001599 trace_scsi_dispatch_cmd_done(cmd);
Christoph Hellwig15f73f52020-06-11 08:44:47 +02001600 blk_mq_complete_request(cmd->request);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001601}
1602
Ming Lei65c76362020-06-30 18:24:56 +08001603static void scsi_mq_put_budget(struct request_queue *q)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001604{
Christoph Hellwigd2852032014-01-17 12:06:53 +01001605 struct scsi_device *sdev = q->queuedata;
Ming Lei0df21c82017-10-14 17:22:32 +08001606
Ming Lei0df21c82017-10-14 17:22:32 +08001607 atomic_dec(&sdev->device_busy);
Ming Lei0df21c82017-10-14 17:22:32 +08001608}
1609
Ming Lei65c76362020-06-30 18:24:56 +08001610static bool scsi_mq_get_budget(struct request_queue *q)
Ming Lei0df21c82017-10-14 17:22:32 +08001611{
Ming Lei0df21c82017-10-14 17:22:32 +08001612 struct scsi_device *sdev = q->queuedata;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001613
Ming Leied5dd6a2020-09-10 15:50:56 +08001614 if (scsi_dev_queue_ready(q, sdev))
1615 return true;
1616
1617 atomic_inc(&sdev->restarts);
1618
1619 /*
1620 * Orders atomic_inc(&sdev->restarts) and atomic_read(&sdev->device_busy).
1621 * .restarts must be incremented before .device_busy is read because the
1622 * code in scsi_run_queue_async() depends on the order of these operations.
1623 */
1624 smp_mb__after_atomic();
1625
1626 /*
1627 * If all in-flight requests originated from this LUN are completed
1628 * before reading .device_busy, sdev->device_busy will be observed as
1629 * zero, then blk_mq_delay_run_hw_queues() will dispatch this request
1630 * soon. Otherwise, completion of one of these requests will observe
1631 * the .restarts flag, and the request queue will be run for handling
1632 * this request, see scsi_end_request().
1633 */
1634 if (unlikely(atomic_read(&sdev->device_busy) == 0 &&
1635 !scsi_device_blocked(sdev)))
1636 blk_mq_delay_run_hw_queues(sdev->request_queue, SCSI_QUEUE_DELAY);
1637 return false;
Ming Lei0df21c82017-10-14 17:22:32 +08001638}
1639
Christoph Hellwigd2852032014-01-17 12:06:53 +01001640static blk_status_t scsi_queue_rq(struct blk_mq_hw_ctx *hctx,
1641 const struct blk_mq_queue_data *bd)
1642{
1643 struct request *req = bd->rq;
1644 struct request_queue *q = req->q;
1645 struct scsi_device *sdev = q->queuedata;
1646 struct Scsi_Host *shost = sdev->host;
1647 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1648 blk_status_t ret;
1649 int reason;
1650
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001651 /*
1652 * If the device is not in running state we will reject some or all
1653 * commands.
1654 */
1655 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
Christoph Hellwig822bd2d2020-10-05 10:41:26 +02001656 ret = scsi_device_state_check(sdev, req);
Christoph Hellwigc092d4e2018-11-09 14:42:36 +01001657 if (ret != BLK_STS_OK)
1658 goto out_put_budget;
1659 }
Christoph Hellwigd2852032014-01-17 12:06:53 +01001660
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001661 ret = BLK_STS_RESOURCE;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001662 if (!scsi_target_queue_ready(shost, sdev))
Ming Lei826a70a2017-11-04 09:55:34 +08001663 goto out_put_budget;
Ming Lei6eb045e2019-10-25 14:58:55 +08001664 if (!scsi_host_queue_ready(q, shost, sdev, cmd))
Christoph Hellwigd2852032014-01-17 12:06:53 +01001665 goto out_dec_target_busy;
1666
Christoph Hellwige8064022016-10-20 15:12:13 +02001667 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwig5843cc32020-10-05 10:41:27 +02001668 ret = scsi_prepare_cmd(req);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001669 if (ret != BLK_STS_OK)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001670 goto out_dec_host_busy;
Christoph Hellwige8064022016-10-20 15:12:13 +02001671 req->rq_flags |= RQF_DONTPREP;
Christoph Hellwigfe052522014-09-22 15:59:31 +02001672 } else {
Bart Van Asschecd464d82019-01-15 16:50:03 -08001673 clear_bit(SCMD_STATE_COMPLETE, &cmd->state);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001674 }
1675
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001676 cmd->flags &= SCMD_PRESERVED_FLAGS;
Christoph Hellwig125c99b2014-11-03 12:47:47 +01001677 if (sdev->simple_tags)
1678 cmd->flags |= SCMD_TAGGED;
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001679 if (bd->last)
1680 cmd->flags |= SCMD_LAST;
Christoph Hellwigb1dd2aa2014-10-19 17:13:58 +02001681
Christoph Hellwig3a8dc5b2020-10-05 10:41:22 +02001682 scsi_set_resid(cmd, 0);
1683 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001684 cmd->scsi_done = scsi_mq_done;
1685
Christoph Hellwiged7fb2d2020-10-05 10:41:30 +02001686 blk_mq_start_request(req);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001687 reason = scsi_dispatch_cmd(cmd);
1688 if (reason) {
1689 scsi_set_blocked(cmd, reason);
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001690 ret = BLK_STS_RESOURCE;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001691 goto out_dec_host_busy;
1692 }
1693
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001694 return BLK_STS_OK;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001695
1696out_dec_host_busy:
Ming Lei6eb045e2019-10-25 14:58:55 +08001697 scsi_dec_host_busy(shost, cmd);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001698out_dec_target_busy:
1699 if (scsi_target(sdev)->can_queue > 0)
1700 atomic_dec(&scsi_target(sdev)->target_busy);
Ming Lei0df21c82017-10-14 17:22:32 +08001701out_put_budget:
Ming Lei65c76362020-06-30 18:24:56 +08001702 scsi_mq_put_budget(q);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001703 switch (ret) {
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001704 case BLK_STS_OK:
1705 break;
1706 case BLK_STS_RESOURCE:
Keith Busch0512a752020-05-12 17:55:47 +09001707 case BLK_STS_ZONE_RESOURCE:
Ming Lei673235f2020-12-02 18:04:19 +08001708 if (scsi_device_blocked(sdev))
Ming Lei86ff7c22018-01-30 22:04:57 -05001709 ret = BLK_STS_DEV_RESOURCE;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001710 break;
Christoph Hellwigfc17b652017-06-03 09:38:05 +02001711 default:
Jaesoo Leebe549d42019-04-09 17:02:22 -07001712 if (unlikely(!scsi_device_online(sdev)))
1713 scsi_req(req)->result = DID_NO_CONNECT << 16;
1714 else
1715 scsi_req(req)->result = DID_ERROR << 16;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001716 /*
Jaesoo Leebe549d42019-04-09 17:02:22 -07001717 * Make sure to release all allocated resources when
Christoph Hellwigd2852032014-01-17 12:06:53 +01001718 * we hit an error, as we will never see this command
1719 * again.
1720 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001721 if (req->rq_flags & RQF_DONTPREP)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001722 scsi_mq_uninit_cmd(cmd);
Ming Lei3f0dcfb2020-07-20 10:54:35 +08001723 scsi_run_queue_async(sdev);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001724 break;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001725 }
1726 return ret;
1727}
1728
Christoph Hellwig0152fb62014-09-13 16:40:13 -07001729static enum blk_eh_timer_return scsi_timeout(struct request *req,
1730 bool reserved)
1731{
1732 if (reserved)
1733 return BLK_EH_RESET_TIMER;
1734 return scsi_times_out(req);
1735}
1736
Bart Van Asschee7008ff2017-08-25 13:46:31 -07001737static int scsi_mq_init_request(struct blk_mq_tag_set *set, struct request *rq,
1738 unsigned int hctx_idx, unsigned int numa_node)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001739{
Christoph Hellwigd6296d392017-05-01 10:19:08 -06001740 struct Scsi_Host *shost = set->driver_data;
Bart Van Assche8e688252017-06-02 14:21:52 -07001741 const bool unchecked_isa_dma = shost->unchecked_isa_dma;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001742 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
Bart Van Assche08f78432017-06-02 14:22:00 -07001743 struct scatterlist *sg;
Bart Van Assche65ca8462020-01-22 19:56:34 -08001744 int ret = 0;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001745
Bart Van Assche8e688252017-06-02 14:21:52 -07001746 if (unchecked_isa_dma)
1747 cmd->flags |= SCMD_UNCHECKED_ISA_DMA;
1748 cmd->sense_buffer = scsi_alloc_sense_buffer(unchecked_isa_dma,
1749 GFP_KERNEL, numa_node);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001750 if (!cmd->sense_buffer)
1751 return -ENOMEM;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001752 cmd->req.sense = cmd->sense_buffer;
Bart Van Assche08f78432017-06-02 14:22:00 -07001753
1754 if (scsi_host_get_prot(shost)) {
1755 sg = (void *)cmd + sizeof(struct scsi_cmnd) +
1756 shost->hostt->cmd_size;
Ming Lei3dccdf52019-04-28 15:39:32 +08001757 cmd->prot_sdb = (void *)sg + scsi_mq_inline_sgl_size(shost);
Bart Van Assche08f78432017-06-02 14:22:00 -07001758 }
1759
Bart Van Assche65ca8462020-01-22 19:56:34 -08001760 if (shost->hostt->init_cmd_priv) {
1761 ret = shost->hostt->init_cmd_priv(shost, cmd);
1762 if (ret < 0)
1763 scsi_free_sense_buffer(unchecked_isa_dma,
1764 cmd->sense_buffer);
1765 }
1766
1767 return ret;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001768}
1769
Bart Van Asschee7008ff2017-08-25 13:46:31 -07001770static void scsi_mq_exit_request(struct blk_mq_tag_set *set, struct request *rq,
1771 unsigned int hctx_idx)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001772{
Bart Van Assche65ca8462020-01-22 19:56:34 -08001773 struct Scsi_Host *shost = set->driver_data;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001774 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
1775
Bart Van Assche65ca8462020-01-22 19:56:34 -08001776 if (shost->hostt->exit_cmd_priv)
1777 shost->hostt->exit_cmd_priv(shost, cmd);
Bart Van Assche8e688252017-06-02 14:21:52 -07001778 scsi_free_sense_buffer(cmd->flags & SCMD_UNCHECKED_ISA_DMA,
1779 cmd->sense_buffer);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001780}
1781
Christoph Hellwig2d9c5c22016-11-01 08:12:48 -06001782static int scsi_map_queues(struct blk_mq_tag_set *set)
1783{
1784 struct Scsi_Host *shost = container_of(set, struct Scsi_Host, tag_set);
1785
1786 if (shost->hostt->map_queues)
1787 return shost->hostt->map_queues(shost);
Dongli Zhang99bbf482019-03-12 09:00:28 +08001788 return blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]);
Christoph Hellwig2d9c5c22016-11-01 08:12:48 -06001789}
1790
Christoph Hellwigd48777a62017-01-02 21:52:10 +03001791void __scsi_init_queue(struct Scsi_Host *shost, struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792{
Lin Ming6f381fa2012-04-12 13:50:38 +08001793 struct device *dev = shost->dma_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Jens Axboea8474ce2007-08-07 09:02:51 +02001795 /*
1796 * this limit is imposed by hardware restrictions
1797 */
Martin K. Petersen8a783622010-02-26 00:20:39 -05001798 blk_queue_max_segments(q, min_t(unsigned short, shost->sg_tablesize,
Ming Lin65e86172016-04-04 14:48:10 -07001799 SG_MAX_SEGMENTS));
Jens Axboea8474ce2007-08-07 09:02:51 +02001800
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001801 if (scsi_host_prot_dma(shost)) {
1802 shost->sg_prot_tablesize =
1803 min_not_zero(shost->sg_prot_tablesize,
1804 (unsigned short)SCSI_MAX_PROT_SG_SEGMENTS);
1805 BUG_ON(shost->sg_prot_tablesize < shost->sg_tablesize);
1806 blk_queue_max_integrity_segments(q, shost->sg_prot_tablesize);
1807 }
1808
Christoph Hellwig1b5d9a62019-07-22 11:20:38 +02001809 if (dev->dma_mask) {
1810 shost->max_sectors = min_t(unsigned int, shost->max_sectors,
1811 dma_max_mapping_size(dev) >> SECTOR_SHIFT);
1812 }
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05001813 blk_queue_max_hw_sectors(q, shost->max_sectors);
Christoph Hellwig21e07db2018-04-03 19:09:59 +02001814 if (shost->unchecked_isa_dma)
1815 blk_queue_bounce_limit(q, BLK_BOUNCE_ISA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 blk_queue_segment_boundary(q, shost->dma_boundary);
FUJITA Tomonori99c84db2008-02-04 22:28:17 -08001817 dma_set_seg_boundary(dev, shost->dma_boundary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Christoph Hellwiga8cf59a2019-01-16 17:12:15 +01001819 blk_queue_max_segment_size(q, shost->max_segment_size);
Christoph Hellwig7ad388d2019-06-17 14:19:53 +02001820 blk_queue_virt_boundary(q, shost->virt_boundary_mask);
1821 dma_set_max_seg_size(dev, queue_max_segment_size(q));
James Bottomley465ff312008-01-01 10:00:10 -06001822
1823 /*
Huacai Chen90addc62017-11-21 14:23:38 +01001824 * Set a reasonable default alignment: The larger of 32-byte (dword),
1825 * which is a common minimum for HBAs, and the minimum DMA alignment,
1826 * which is set by the platform.
1827 *
1828 * Devices that require a bigger alignment can increase it later.
James Bottomley465ff312008-01-01 10:00:10 -06001829 */
Huacai Chen90addc62017-11-21 14:23:38 +01001830 blk_queue_dma_alignment(q, max(4, dma_get_cache_alignment()) - 1);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001831}
Christoph Hellwigd48777a62017-01-02 21:52:10 +03001832EXPORT_SYMBOL_GPL(__scsi_init_queue);
James Bottomley465ff312008-01-01 10:00:10 -06001833
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001834static const struct blk_mq_ops scsi_mq_ops_no_commit = {
1835 .get_budget = scsi_mq_get_budget,
1836 .put_budget = scsi_mq_put_budget,
1837 .queue_rq = scsi_queue_rq,
1838 .complete = scsi_softirq_done,
1839 .timeout = scsi_timeout,
1840#ifdef CONFIG_BLK_DEBUG_FS
1841 .show_rq = scsi_show_rq,
1842#endif
1843 .init_request = scsi_mq_init_request,
1844 .exit_request = scsi_mq_exit_request,
1845 .initialize_rq_fn = scsi_initialize_rq,
Steffen Maier82a9ac72019-08-07 16:49:47 +02001846 .cleanup_rq = scsi_cleanup_rq,
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001847 .busy = scsi_mq_lld_busy,
1848 .map_queues = scsi_map_queues,
1849};
1850
1851
1852static void scsi_commit_rqs(struct blk_mq_hw_ctx *hctx)
1853{
1854 struct request_queue *q = hctx->queue;
1855 struct scsi_device *sdev = q->queuedata;
1856 struct Scsi_Host *shost = sdev->host;
1857
1858 shost->hostt->commit_rqs(shost, hctx->queue_num);
1859}
1860
Eric Biggersf363b082017-03-30 13:39:16 -07001861static const struct blk_mq_ops scsi_mq_ops = {
Ming Lei0df21c82017-10-14 17:22:32 +08001862 .get_budget = scsi_mq_get_budget,
1863 .put_budget = scsi_mq_put_budget,
Christoph Hellwigd2852032014-01-17 12:06:53 +01001864 .queue_rq = scsi_queue_rq,
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001865 .commit_rqs = scsi_commit_rqs,
Christoph Hellwigd2852032014-01-17 12:06:53 +01001866 .complete = scsi_softirq_done,
Christoph Hellwig0152fb62014-09-13 16:40:13 -07001867 .timeout = scsi_timeout,
Bart Van Assche0eebd002017-04-26 13:47:57 -07001868#ifdef CONFIG_BLK_DEBUG_FS
1869 .show_rq = scsi_show_rq,
1870#endif
Bart Van Asschee7008ff2017-08-25 13:46:31 -07001871 .init_request = scsi_mq_init_request,
1872 .exit_request = scsi_mq_exit_request,
Bart Van Asscheca18d6f2017-06-20 11:15:41 -07001873 .initialize_rq_fn = scsi_initialize_rq,
Ming Leib7e9e1f2019-07-25 10:05:00 +08001874 .cleanup_rq = scsi_cleanup_rq,
Jens Axboe3a7ea2c42018-10-29 10:17:28 -06001875 .busy = scsi_mq_lld_busy,
Christoph Hellwig2d9c5c22016-11-01 08:12:48 -06001876 .map_queues = scsi_map_queues,
Christoph Hellwigd2852032014-01-17 12:06:53 +01001877};
1878
1879struct request_queue *scsi_mq_alloc_queue(struct scsi_device *sdev)
1880{
1881 sdev->request_queue = blk_mq_init_queue(&sdev->host->tag_set);
1882 if (IS_ERR(sdev->request_queue))
1883 return NULL;
1884
1885 sdev->request_queue->queuedata = sdev;
1886 __scsi_init_queue(sdev->host, sdev->request_queue);
Christoph Hellwig17cb9602018-03-13 17:28:41 +01001887 blk_queue_flag_set(QUEUE_FLAG_SCSI_PASSTHROUGH, sdev->request_queue);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001888 return sdev->request_queue;
1889}
1890
1891int scsi_mq_setup_tags(struct Scsi_Host *shost)
1892{
Bart Van Asschebe4c1862017-06-02 14:21:59 -07001893 unsigned int cmd_size, sgl_size;
Ye Bin840e1b52020-05-18 15:47:32 +08001894 struct blk_mq_tag_set *tag_set = &shost->tag_set;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001895
Michael Schmitz9393c8de2019-11-05 15:49:10 +13001896 sgl_size = max_t(unsigned int, sizeof(struct scatterlist),
1897 scsi_mq_inline_sgl_size(shost));
Christoph Hellwigd2852032014-01-17 12:06:53 +01001898 cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size;
1899 if (scsi_host_get_prot(shost))
Ming Lei92524fa2019-04-28 15:39:31 +08001900 cmd_size += sizeof(struct scsi_data_buffer) +
1901 sizeof(struct scatterlist) * SCSI_INLINE_PROT_SG_CNT;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001902
Ye Bin840e1b52020-05-18 15:47:32 +08001903 memset(tag_set, 0, sizeof(*tag_set));
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001904 if (shost->hostt->commit_rqs)
Ye Bin840e1b52020-05-18 15:47:32 +08001905 tag_set->ops = &scsi_mq_ops;
Paolo Bonzini8930a6c2019-05-30 13:28:10 +02001906 else
Ye Bin840e1b52020-05-18 15:47:32 +08001907 tag_set->ops = &scsi_mq_ops_no_commit;
1908 tag_set->nr_hw_queues = shost->nr_hw_queues ? : 1;
1909 tag_set->queue_depth = shost->can_queue;
1910 tag_set->cmd_size = cmd_size;
1911 tag_set->numa_node = NUMA_NO_NODE;
1912 tag_set->flags = BLK_MQ_F_SHOULD_MERGE;
1913 tag_set->flags |=
Shaohua Li24391c02015-01-23 14:18:00 -07001914 BLK_ALLOC_POLICY_TO_MQ_FLAG(shost->hostt->tag_alloc_policy);
Ye Bin840e1b52020-05-18 15:47:32 +08001915 tag_set->driver_data = shost;
Hannes Reineckebdb01302020-08-19 23:20:30 +08001916 if (shost->host_tagset)
1917 tag_set->flags |= BLK_MQ_F_TAG_HCTX_SHARED;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001918
Ye Bin840e1b52020-05-18 15:47:32 +08001919 return blk_mq_alloc_tag_set(tag_set);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001920}
1921
1922void scsi_mq_destroy_tags(struct Scsi_Host *shost)
1923{
1924 blk_mq_free_tag_set(&shost->tag_set);
1925}
1926
Hannes Reinecke857de6e2017-02-17 09:02:45 +01001927/**
1928 * scsi_device_from_queue - return sdev associated with a request_queue
1929 * @q: The request queue to return the sdev from
1930 *
1931 * Return the sdev associated with a request queue or NULL if the
1932 * request_queue does not reference a SCSI device.
1933 */
1934struct scsi_device *scsi_device_from_queue(struct request_queue *q)
1935{
1936 struct scsi_device *sdev = NULL;
1937
Steffen Maier6b6fa7a2019-08-07 16:49:48 +02001938 if (q->mq_ops == &scsi_mq_ops_no_commit ||
1939 q->mq_ops == &scsi_mq_ops)
Hannes Reinecke857de6e2017-02-17 09:02:45 +01001940 sdev = q->queuedata;
1941 if (!sdev || !get_device(&sdev->sdev_gendev))
1942 sdev = NULL;
1943
1944 return sdev;
1945}
Hannes Reinecke857de6e2017-02-17 09:02:45 +01001946
André Almeidaea941012020-04-19 02:01:48 -03001947/**
1948 * scsi_block_requests - Utility function used by low-level drivers to prevent
1949 * further commands from being queued to the device.
1950 * @shost: host in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 *
André Almeidaea941012020-04-19 02:01:48 -03001952 * There is no timer nor any other means by which the requests get unblocked
1953 * other than the low-level driver calling scsi_unblock_requests().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 */
1955void scsi_block_requests(struct Scsi_Host *shost)
1956{
1957 shost->host_self_blocked = 1;
1958}
1959EXPORT_SYMBOL(scsi_block_requests);
1960
André Almeidaea941012020-04-19 02:01:48 -03001961/**
1962 * scsi_unblock_requests - Utility function used by low-level drivers to allow
1963 * further commands to be queued to the device.
1964 * @shost: host in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 *
André Almeidaea941012020-04-19 02:01:48 -03001966 * There is no timer nor any other means by which the requests get unblocked
1967 * other than the low-level driver calling scsi_unblock_requests(). This is done
1968 * as an API function so that changes to the internals of the scsi mid-layer
1969 * won't require wholesale changes to drivers that use this feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 */
1971void scsi_unblock_requests(struct Scsi_Host *shost)
1972{
1973 shost->host_self_blocked = 0;
1974 scsi_run_host_queues(shost);
1975}
1976EXPORT_SYMBOL(scsi_unblock_requests);
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978void scsi_exit_queue(void)
1979{
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03001980 kmem_cache_destroy(scsi_sense_cache);
1981 kmem_cache_destroy(scsi_sense_isadma_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
James Bottomley5baba832006-03-18 14:10:35 -06001983
1984/**
1985 * scsi_mode_select - issue a mode select
1986 * @sdev: SCSI device to be queried
1987 * @pf: Page format bit (1 == standard, 0 == vendor specific)
1988 * @sp: Save page bit (0 == don't save, 1 == save)
1989 * @modepage: mode page being requested
1990 * @buffer: request buffer (may not be smaller than eight bytes)
1991 * @len: length of request buffer.
1992 * @timeout: command timeout
1993 * @retries: number of retries before failing
1994 * @data: returns a structure abstracting the mode header data
Rob Landleyeb448202007-11-03 13:30:39 -05001995 * @sshdr: place to put sense data (or NULL if no sense to be collected).
James Bottomley5baba832006-03-18 14:10:35 -06001996 * must be SCSI_SENSE_BUFFERSIZE big.
1997 *
1998 * Returns zero if successful; negative error number or scsi
1999 * status on error
2000 *
2001 */
2002int
2003scsi_mode_select(struct scsi_device *sdev, int pf, int sp, int modepage,
2004 unsigned char *buffer, int len, int timeout, int retries,
2005 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2006{
2007 unsigned char cmd[10];
2008 unsigned char *real_buffer;
2009 int ret;
2010
2011 memset(cmd, 0, sizeof(cmd));
2012 cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0);
2013
2014 if (sdev->use_10_for_ms) {
2015 if (len > 65535)
2016 return -EINVAL;
2017 real_buffer = kmalloc(8 + len, GFP_KERNEL);
2018 if (!real_buffer)
2019 return -ENOMEM;
2020 memcpy(real_buffer + 8, buffer, len);
2021 len += 8;
2022 real_buffer[0] = 0;
2023 real_buffer[1] = 0;
2024 real_buffer[2] = data->medium_type;
2025 real_buffer[3] = data->device_specific;
2026 real_buffer[4] = data->longlba ? 0x01 : 0;
2027 real_buffer[5] = 0;
2028 real_buffer[6] = data->block_descriptor_length >> 8;
2029 real_buffer[7] = data->block_descriptor_length;
2030
2031 cmd[0] = MODE_SELECT_10;
2032 cmd[7] = len >> 8;
2033 cmd[8] = len;
2034 } else {
2035 if (len > 255 || data->block_descriptor_length > 255 ||
2036 data->longlba)
2037 return -EINVAL;
2038
2039 real_buffer = kmalloc(4 + len, GFP_KERNEL);
2040 if (!real_buffer)
2041 return -ENOMEM;
2042 memcpy(real_buffer + 4, buffer, len);
2043 len += 4;
2044 real_buffer[0] = 0;
2045 real_buffer[1] = data->medium_type;
2046 real_buffer[2] = data->device_specific;
2047 real_buffer[3] = data->block_descriptor_length;
James Bottomley5baba832006-03-18 14:10:35 -06002048
2049 cmd[0] = MODE_SELECT;
2050 cmd[4] = len;
2051 }
2052
2053 ret = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, real_buffer, len,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002054 sshdr, timeout, retries, NULL);
James Bottomley5baba832006-03-18 14:10:35 -06002055 kfree(real_buffer);
2056 return ret;
2057}
2058EXPORT_SYMBOL_GPL(scsi_mode_select);
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060/**
Rob Landleyeb448202007-11-03 13:30:39 -05002061 * scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary.
James Bottomley1cf72692005-08-28 11:27:01 -05002062 * @sdev: SCSI device to be queried
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 * @dbd: set if mode sense will allow block descriptors to be returned
2064 * @modepage: mode page being requested
2065 * @buffer: request buffer (may not be smaller than eight bytes)
2066 * @len: length of request buffer.
2067 * @timeout: command timeout
2068 * @retries: number of retries before failing
2069 * @data: returns a structure abstracting the mode header data
Rob Landleyeb448202007-11-03 13:30:39 -05002070 * @sshdr: place to put sense data (or NULL if no sense to be collected).
James Bottomley1cf72692005-08-28 11:27:01 -05002071 * must be SCSI_SENSE_BUFFERSIZE big.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 *
Hannes Reinecke6bad74b2021-04-27 10:30:09 +02002073 * Returns zero if successful, or a negative error number on failure
Rob Landleyeb448202007-11-03 13:30:39 -05002074 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075int
James Bottomley1cf72692005-08-28 11:27:01 -05002076scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 unsigned char *buffer, int len, int timeout, int retries,
James Bottomley5baba832006-03-18 14:10:35 -06002078 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2079{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 unsigned char cmd[12];
2081 int use_10_for_ms;
2082 int header_length;
Hannes Reinecke0ae80ba2015-06-12 16:12:48 +02002083 int result, retry_count = retries;
James Bottomleyea73a9f2005-08-28 11:33:52 -05002084 struct scsi_sense_hdr my_sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 memset(data, 0, sizeof(*data));
2087 memset(&cmd[0], 0, 12);
Can Guo0ec96912019-12-05 02:14:25 +00002088
2089 dbd = sdev->set_dbd_for_ms ? 8 : dbd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */
2091 cmd[2] = modepage;
2092
James Bottomleyea73a9f2005-08-28 11:33:52 -05002093 /* caller might not be interested in sense, but we need it */
2094 if (!sshdr)
2095 sshdr = &my_sshdr;
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 retry:
James Bottomley1cf72692005-08-28 11:27:01 -05002098 use_10_for_ms = sdev->use_10_for_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
2100 if (use_10_for_ms) {
2101 if (len < 8)
2102 len = 8;
2103
2104 cmd[0] = MODE_SENSE_10;
2105 cmd[8] = len;
2106 header_length = 8;
2107 } else {
2108 if (len < 4)
2109 len = 4;
2110
2111 cmd[0] = MODE_SENSE;
2112 cmd[4] = len;
2113 header_length = 4;
2114 }
2115
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 memset(buffer, 0, len);
2117
James Bottomley1cf72692005-08-28 11:27:01 -05002118 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002119 sshdr, timeout, retries, NULL);
Hannes Reinecke6bad74b2021-04-27 10:30:09 +02002120 if (result < 0)
2121 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123 /* This code looks awful: what it's doing is making sure an
2124 * ILLEGAL REQUEST sense return identifies the actual command
2125 * byte as the problem. MODE_SENSE commands can return
2126 * ILLEGAL REQUEST if the code page isn't supported */
2127
James Bottomley1cf72692005-08-28 11:27:01 -05002128 if (use_10_for_ms && !scsi_status_is_good(result) &&
Johannes Thumshirnc65be1a2018-06-25 13:20:58 +02002129 driver_byte(result) == DRIVER_SENSE) {
James Bottomleyea73a9f2005-08-28 11:33:52 -05002130 if (scsi_sense_valid(sshdr)) {
2131 if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
2132 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
Bean Huo4c7b4d62020-06-19 17:41:17 +02002133 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 * Invalid command operation code
2135 */
James Bottomley1cf72692005-08-28 11:27:01 -05002136 sdev->use_10_for_ms = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 goto retry;
2138 }
2139 }
2140 }
2141
Bean Huo4c7b4d62020-06-19 17:41:17 +02002142 if (scsi_status_is_good(result)) {
Al Viro6d73c852006-02-23 02:03:16 +01002143 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b &&
2144 (modepage == 6 || modepage == 8))) {
2145 /* Initio breakage? */
2146 header_length = 0;
2147 data->length = 13;
2148 data->medium_type = 0;
2149 data->device_specific = 0;
2150 data->longlba = 0;
2151 data->block_descriptor_length = 0;
Bean Huo4c7b4d62020-06-19 17:41:17 +02002152 } else if (use_10_for_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 data->length = buffer[0]*256 + buffer[1] + 2;
2154 data->medium_type = buffer[2];
2155 data->device_specific = buffer[3];
2156 data->longlba = buffer[4] & 0x01;
2157 data->block_descriptor_length = buffer[6]*256
2158 + buffer[7];
2159 } else {
2160 data->length = buffer[0] + 1;
2161 data->medium_type = buffer[1];
2162 data->device_specific = buffer[2];
2163 data->block_descriptor_length = buffer[3];
2164 }
Al Viro6d73c852006-02-23 02:03:16 +01002165 data->header_length = header_length;
Hannes Reinecke6bad74b2021-04-27 10:30:09 +02002166 result = 0;
Hannes Reinecke0ae80ba2015-06-12 16:12:48 +02002167 } else if ((status_byte(result) == CHECK_CONDITION) &&
2168 scsi_sense_valid(sshdr) &&
2169 sshdr->sense_key == UNIT_ATTENTION && retry_count) {
2170 retry_count--;
2171 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
Hannes Reinecke6bad74b2021-04-27 10:30:09 +02002173 if (result > 0)
2174 result = -EIO;
James Bottomley1cf72692005-08-28 11:27:01 -05002175 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176}
2177EXPORT_SYMBOL(scsi_mode_sense);
2178
James Bottomley001aac22007-12-02 19:10:40 +02002179/**
2180 * scsi_test_unit_ready - test if unit is ready
2181 * @sdev: scsi device to change the state of.
2182 * @timeout: command timeout
2183 * @retries: number of retries before failing
Christoph Hellwig74a78eb2017-02-14 20:15:57 +01002184 * @sshdr: outpout pointer for decoded sense information.
James Bottomley001aac22007-12-02 19:10:40 +02002185 *
2186 * Returns zero if unsuccessful or an error if TUR failed. For
Tejun Heo9f8a2c22010-12-08 20:57:40 +01002187 * removable media, UNIT_ATTENTION sets ->changed flag.
James Bottomley001aac22007-12-02 19:10:40 +02002188 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189int
James Bottomley001aac22007-12-02 19:10:40 +02002190scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries,
Christoph Hellwig74a78eb2017-02-14 20:15:57 +01002191 struct scsi_sense_hdr *sshdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 char cmd[] = {
2194 TEST_UNIT_READY, 0, 0, 0, 0, 0,
2195 };
2196 int result;
James Bottomley001aac22007-12-02 19:10:40 +02002197
James Bottomley001aac22007-12-02 19:10:40 +02002198 /* try to eat the UNIT_ATTENTION if there are enough retries */
2199 do {
2200 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr,
Bart Van Assche9b91fd32018-02-12 10:57:52 -08002201 timeout, 1, NULL);
James Bottomley32c356d2008-08-20 00:58:13 +02002202 if (sdev->removable && scsi_sense_valid(sshdr) &&
2203 sshdr->sense_key == UNIT_ATTENTION)
2204 sdev->changed = 1;
2205 } while (scsi_sense_valid(sshdr) &&
2206 sshdr->sense_key == UNIT_ATTENTION && --retries);
James Bottomley001aac22007-12-02 19:10:40 +02002207
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return result;
2209}
2210EXPORT_SYMBOL(scsi_test_unit_ready);
2211
2212/**
Rob Landleyeb448202007-11-03 13:30:39 -05002213 * scsi_device_set_state - Take the given device through the device state model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 * @sdev: scsi device to change the state of.
2215 * @state: state to change to.
2216 *
Hannes Reinecke23cb27f2017-08-25 13:56:56 +02002217 * Returns zero if successful or an error if the requested
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * transition is illegal.
Rob Landleyeb448202007-11-03 13:30:39 -05002219 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220int
2221scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
2222{
2223 enum scsi_device_state oldstate = sdev->sdev_state;
2224
2225 if (state == oldstate)
2226 return 0;
2227
2228 switch (state) {
2229 case SDEV_CREATED:
James Bottomley6f4267e2008-08-22 16:53:31 -05002230 switch (oldstate) {
2231 case SDEV_CREATED_BLOCK:
2232 break;
2233 default:
2234 goto illegal;
2235 }
2236 break;
Bean Huo4c7b4d62020-06-19 17:41:17 +02002237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 case SDEV_RUNNING:
2239 switch (oldstate) {
2240 case SDEV_CREATED:
2241 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002242 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 case SDEV_QUIESCE:
2244 case SDEV_BLOCK:
2245 break;
2246 default:
2247 goto illegal;
2248 }
2249 break;
2250
2251 case SDEV_QUIESCE:
2252 switch (oldstate) {
2253 case SDEV_RUNNING:
2254 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002255 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 break;
2257 default:
2258 goto illegal;
2259 }
2260 break;
2261
2262 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002263 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 switch (oldstate) {
2265 case SDEV_CREATED:
2266 case SDEV_RUNNING:
2267 case SDEV_QUIESCE:
2268 case SDEV_BLOCK:
2269 break;
2270 default:
2271 goto illegal;
2272 }
2273 break;
2274
2275 case SDEV_BLOCK:
2276 switch (oldstate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 case SDEV_RUNNING:
James Bottomley6f4267e2008-08-22 16:53:31 -05002278 case SDEV_CREATED_BLOCK:
Dexuan Cui6cbb7ae2020-04-17 17:40:45 -07002279 case SDEV_QUIESCE:
Hannes Reineckea33e5bf2018-10-07 10:35:35 +02002280 case SDEV_OFFLINE:
James Bottomley6f4267e2008-08-22 16:53:31 -05002281 break;
2282 default:
2283 goto illegal;
2284 }
2285 break;
2286
2287 case SDEV_CREATED_BLOCK:
2288 switch (oldstate) {
2289 case SDEV_CREATED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 break;
2291 default:
2292 goto illegal;
2293 }
2294 break;
2295
2296 case SDEV_CANCEL:
2297 switch (oldstate) {
2298 case SDEV_CREATED:
2299 case SDEV_RUNNING:
Alan Stern9ea72902006-06-23 14:25:34 -04002300 case SDEV_QUIESCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002302 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 break;
2304 default:
2305 goto illegal;
2306 }
2307 break;
2308
2309 case SDEV_DEL:
2310 switch (oldstate) {
Brian King309bd272006-06-27 11:10:43 -05002311 case SDEV_CREATED:
2312 case SDEV_RUNNING:
2313 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002314 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 case SDEV_CANCEL:
Bart Van Assche255ee932017-06-02 14:21:57 -07002316 case SDEV_BLOCK:
Bart Van Assche0516c082013-07-02 15:06:33 +02002317 case SDEV_CREATED_BLOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 break;
2319 default:
2320 goto illegal;
2321 }
2322 break;
2323
2324 }
Ewan D. Milneb0962c52020-03-11 10:39:30 -04002325 sdev->offline_already = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 sdev->sdev_state = state;
2327 return 0;
2328
2329 illegal:
Hannes Reinecke91921e02014-06-25 16:39:59 +02002330 SCSI_LOG_ERROR_RECOVERY(1,
James Bottomley9ccfc752005-10-02 11:45:08 -05002331 sdev_printk(KERN_ERR, sdev,
Hannes Reinecke91921e02014-06-25 16:39:59 +02002332 "Illegal state transition %s->%s",
James Bottomley9ccfc752005-10-02 11:45:08 -05002333 scsi_device_state_name(oldstate),
2334 scsi_device_state_name(state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 );
2336 return -EINVAL;
2337}
2338EXPORT_SYMBOL(scsi_device_set_state);
2339
2340/**
Jeff Garzika341cd02007-10-29 17:15:22 -04002341 * sdev_evt_emit - emit a single SCSI device uevent
2342 * @sdev: associated SCSI device
2343 * @evt: event to emit
2344 *
2345 * Send a single uevent (scsi_event) to the associated scsi_device.
2346 */
2347static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
2348{
2349 int idx = 0;
2350 char *envp[3];
2351
2352 switch (evt->evt_type) {
2353 case SDEV_EVT_MEDIA_CHANGE:
2354 envp[idx++] = "SDEV_MEDIA_CHANGE=1";
2355 break;
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002356 case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
Hannes Reinecked3d32892016-02-19 09:17:16 +01002357 scsi_rescan_device(&sdev->sdev_gendev);
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002358 envp[idx++] = "SDEV_UA=INQUIRY_DATA_HAS_CHANGED";
2359 break;
2360 case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2361 envp[idx++] = "SDEV_UA=CAPACITY_DATA_HAS_CHANGED";
2362 break;
2363 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2364 envp[idx++] = "SDEV_UA=THIN_PROVISIONING_SOFT_THRESHOLD_REACHED";
2365 break;
2366 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2367 envp[idx++] = "SDEV_UA=MODE_PARAMETERS_CHANGED";
2368 break;
2369 case SDEV_EVT_LUN_CHANGE_REPORTED:
2370 envp[idx++] = "SDEV_UA=REPORTED_LUNS_DATA_HAS_CHANGED";
2371 break;
Hannes Reinecke14c3e672015-07-06 13:41:53 +02002372 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
2373 envp[idx++] = "SDEV_UA=ASYMMETRIC_ACCESS_STATE_CHANGED";
2374 break;
Hannes Reineckecf3431b2017-10-17 09:11:24 +02002375 case SDEV_EVT_POWER_ON_RESET_OCCURRED:
2376 envp[idx++] = "SDEV_UA=POWER_ON_RESET_OCCURRED";
2377 break;
Jeff Garzika341cd02007-10-29 17:15:22 -04002378 default:
2379 /* do nothing */
2380 break;
2381 }
2382
2383 envp[idx++] = NULL;
2384
2385 kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp);
2386}
2387
2388/**
2389 * sdev_evt_thread - send a uevent for each scsi event
2390 * @work: work struct for scsi_device
2391 *
2392 * Dispatch queued events to their associated scsi_device kobjects
2393 * as uevents.
2394 */
2395void scsi_evt_thread(struct work_struct *work)
2396{
2397 struct scsi_device *sdev;
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002398 enum scsi_device_event evt_type;
Jeff Garzika341cd02007-10-29 17:15:22 -04002399 LIST_HEAD(event_list);
2400
2401 sdev = container_of(work, struct scsi_device, event_work);
2402
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002403 for (evt_type = SDEV_EVT_FIRST; evt_type <= SDEV_EVT_LAST; evt_type++)
2404 if (test_and_clear_bit(evt_type, sdev->pending_events))
2405 sdev_evt_send_simple(sdev, evt_type, GFP_KERNEL);
2406
Jeff Garzika341cd02007-10-29 17:15:22 -04002407 while (1) {
2408 struct scsi_event *evt;
2409 struct list_head *this, *tmp;
2410 unsigned long flags;
2411
2412 spin_lock_irqsave(&sdev->list_lock, flags);
2413 list_splice_init(&sdev->event_list, &event_list);
2414 spin_unlock_irqrestore(&sdev->list_lock, flags);
2415
2416 if (list_empty(&event_list))
2417 break;
2418
2419 list_for_each_safe(this, tmp, &event_list) {
2420 evt = list_entry(this, struct scsi_event, node);
2421 list_del(&evt->node);
2422 scsi_evt_emit(sdev, evt);
2423 kfree(evt);
2424 }
2425 }
2426}
2427
2428/**
2429 * sdev_evt_send - send asserted event to uevent thread
2430 * @sdev: scsi_device event occurred on
2431 * @evt: event to send
2432 *
2433 * Assert scsi device event asynchronously.
2434 */
2435void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
2436{
2437 unsigned long flags;
2438
Kay Sievers4d1566e2008-03-19 13:04:47 +01002439#if 0
2440 /* FIXME: currently this check eliminates all media change events
2441 * for polled devices. Need to update to discriminate between AN
2442 * and polled events */
Jeff Garzika341cd02007-10-29 17:15:22 -04002443 if (!test_bit(evt->evt_type, sdev->supported_events)) {
2444 kfree(evt);
2445 return;
2446 }
Kay Sievers4d1566e2008-03-19 13:04:47 +01002447#endif
Jeff Garzika341cd02007-10-29 17:15:22 -04002448
2449 spin_lock_irqsave(&sdev->list_lock, flags);
2450 list_add_tail(&evt->node, &sdev->event_list);
2451 schedule_work(&sdev->event_work);
2452 spin_unlock_irqrestore(&sdev->list_lock, flags);
2453}
2454EXPORT_SYMBOL_GPL(sdev_evt_send);
2455
2456/**
2457 * sdev_evt_alloc - allocate a new scsi event
2458 * @evt_type: type of event to allocate
2459 * @gfpflags: GFP flags for allocation
2460 *
2461 * Allocates and returns a new scsi_event.
2462 */
2463struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
2464 gfp_t gfpflags)
2465{
2466 struct scsi_event *evt = kzalloc(sizeof(struct scsi_event), gfpflags);
2467 if (!evt)
2468 return NULL;
2469
2470 evt->evt_type = evt_type;
2471 INIT_LIST_HEAD(&evt->node);
2472
2473 /* evt_type-specific initialization, if any */
2474 switch (evt_type) {
2475 case SDEV_EVT_MEDIA_CHANGE:
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002476 case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
2477 case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2478 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2479 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2480 case SDEV_EVT_LUN_CHANGE_REPORTED:
Hannes Reinecke14c3e672015-07-06 13:41:53 +02002481 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
Hannes Reineckecf3431b2017-10-17 09:11:24 +02002482 case SDEV_EVT_POWER_ON_RESET_OCCURRED:
Jeff Garzika341cd02007-10-29 17:15:22 -04002483 default:
2484 /* do nothing */
2485 break;
2486 }
2487
2488 return evt;
2489}
2490EXPORT_SYMBOL_GPL(sdev_evt_alloc);
2491
2492/**
2493 * sdev_evt_send_simple - send asserted event to uevent thread
2494 * @sdev: scsi_device event occurred on
2495 * @evt_type: type of event to send
2496 * @gfpflags: GFP flags for allocation
2497 *
2498 * Assert scsi device event asynchronously, given an event type.
2499 */
2500void sdev_evt_send_simple(struct scsi_device *sdev,
2501 enum scsi_device_event evt_type, gfp_t gfpflags)
2502{
2503 struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
2504 if (!evt) {
2505 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n",
2506 evt_type);
2507 return;
2508 }
2509
2510 sdev_evt_send(sdev, evt);
2511}
2512EXPORT_SYMBOL_GPL(sdev_evt_send_simple);
2513
2514/**
Bart Van Assche271822b2020-12-08 21:29:49 -08002515 * scsi_device_quiesce - Block all commands except power management.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * @sdev: scsi device to quiesce.
2517 *
2518 * This works by trying to transition to the SDEV_QUIESCE state
2519 * (which must be a legal transition). When the device is in this
Bart Van Assche271822b2020-12-08 21:29:49 -08002520 * state, only power management requests will be accepted, all others will
2521 * be deferred.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 *
2523 * Must be called with user context, may sleep.
2524 *
2525 * Returns zero if unsuccessful or an error if not.
Rob Landleyeb448202007-11-03 13:30:39 -05002526 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527int
2528scsi_device_quiesce(struct scsi_device *sdev)
2529{
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002530 struct request_queue *q = sdev->request_queue;
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002531 int err;
2532
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002533 /*
2534 * It is allowed to call scsi_device_quiesce() multiple times from
2535 * the same context but concurrent scsi_device_quiesce() calls are
2536 * not allowed.
2537 */
2538 WARN_ON_ONCE(sdev->quiesced_by && sdev->quiesced_by != current);
2539
Bart Van Asschecd84a622018-09-26 14:01:04 -07002540 if (sdev->quiesced_by == current)
2541 return 0;
2542
2543 blk_set_pm_only(q);
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002544
2545 blk_mq_freeze_queue(q);
2546 /*
Bart Van Asschecd84a622018-09-26 14:01:04 -07002547 * Ensure that the effect of blk_set_pm_only() will be visible
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002548 * for percpu_ref_tryget() callers that occur after the queue
2549 * unfreeze even if the queue was already frozen before this function
2550 * was called. See also https://lwn.net/Articles/573497/.
2551 */
2552 synchronize_rcu();
2553 blk_mq_unfreeze_queue(q);
2554
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002555 mutex_lock(&sdev->state_mutex);
2556 err = scsi_device_set_state(sdev, SDEV_QUIESCE);
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002557 if (err == 0)
2558 sdev->quiesced_by = current;
2559 else
Bart Van Asschecd84a622018-09-26 14:01:04 -07002560 blk_clear_pm_only(q);
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002561 mutex_unlock(&sdev->state_mutex);
2562
Bart Van Assche3a0a5292017-11-09 10:49:58 -08002563 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564}
2565EXPORT_SYMBOL(scsi_device_quiesce);
2566
2567/**
2568 * scsi_device_resume - Restart user issued commands to a quiesced device.
2569 * @sdev: scsi device to resume.
2570 *
2571 * Moves the device from quiesced back to running and restarts the
2572 * queues.
2573 *
2574 * Must be called with user context, may sleep.
Rob Landleyeb448202007-11-03 13:30:39 -05002575 */
Dan Williamsa7a20d12012-03-22 17:05:11 -07002576void scsi_device_resume(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577{
Dan Williamsa7a20d12012-03-22 17:05:11 -07002578 /* check if the device state was mutated prior to resume, and if
2579 * so assume the state is being managed elsewhere (for example
2580 * device deleted during suspend)
2581 */
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002582 mutex_lock(&sdev->state_mutex);
Bart Van Assche271822b2020-12-08 21:29:49 -08002583 if (sdev->sdev_state == SDEV_QUIESCE)
2584 scsi_device_set_state(sdev, SDEV_RUNNING);
Bart Van Assche17605af2019-03-15 16:27:58 -07002585 if (sdev->quiesced_by) {
2586 sdev->quiesced_by = NULL;
2587 blk_clear_pm_only(sdev->request_queue);
2588 }
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002589 mutex_unlock(&sdev->state_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
2591EXPORT_SYMBOL(scsi_device_resume);
2592
2593static void
2594device_quiesce_fn(struct scsi_device *sdev, void *data)
2595{
2596 scsi_device_quiesce(sdev);
2597}
2598
2599void
2600scsi_target_quiesce(struct scsi_target *starget)
2601{
2602 starget_for_each_device(starget, NULL, device_quiesce_fn);
2603}
2604EXPORT_SYMBOL(scsi_target_quiesce);
2605
2606static void
2607device_resume_fn(struct scsi_device *sdev, void *data)
2608{
2609 scsi_device_resume(sdev);
2610}
2611
2612void
2613scsi_target_resume(struct scsi_target *starget)
2614{
2615 starget_for_each_device(starget, NULL, device_resume_fn);
2616}
2617EXPORT_SYMBOL(scsi_target_resume);
2618
2619/**
Bart Van Assche551eb592017-06-02 14:21:53 -07002620 * scsi_internal_device_block_nowait - try to transition to the SDEV_BLOCK state
2621 * @sdev: device to block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002623 * Pause SCSI command processing on the specified device. Does not sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002625 * Returns zero if successful or a negative error code upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002627 * Notes:
2628 * This routine transitions the device to the SDEV_BLOCK state (which must be
2629 * a legal transition). When the device is in this state, command processing
2630 * is paused until the device leaves the SDEV_BLOCK state. See also
2631 * scsi_internal_device_unblock_nowait().
Rob Landleyeb448202007-11-03 13:30:39 -05002632 */
Bart Van Assche551eb592017-06-02 14:21:53 -07002633int scsi_internal_device_block_nowait(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Jens Axboe165125e2007-07-24 09:28:11 +02002635 struct request_queue *q = sdev->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 int err = 0;
2637
2638 err = scsi_device_set_state(sdev, SDEV_BLOCK);
James Bottomley6f4267e2008-08-22 16:53:31 -05002639 if (err) {
2640 err = scsi_device_set_state(sdev, SDEV_CREATED_BLOCK);
2641
2642 if (err)
2643 return err;
2644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
Bean Huo4c7b4d62020-06-19 17:41:17 +02002646 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 * The device has transitioned to SDEV_BLOCK. Stop the
2648 * block layer from calling the midlayer with this device's
Bean Huo4c7b4d62020-06-19 17:41:17 +02002649 * request queue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 */
Jens Axboef664a3c2018-11-01 16:36:27 -06002651 blk_mq_quiesce_queue_nowait(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 return 0;
2653}
Bart Van Assche551eb592017-06-02 14:21:53 -07002654EXPORT_SYMBOL_GPL(scsi_internal_device_block_nowait);
2655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656/**
Bart Van Assche551eb592017-06-02 14:21:53 -07002657 * scsi_internal_device_block - try to transition to the SDEV_BLOCK state
2658 * @sdev: device to block
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002660 * Pause SCSI command processing on the specified device and wait until all
2661 * ongoing scsi_request_fn() / scsi_queue_rq() calls have finished. May sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002663 * Returns zero if successful or a negative error code upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 *
Bart Van Assche551eb592017-06-02 14:21:53 -07002665 * Note:
2666 * This routine transitions the device to the SDEV_BLOCK state (which must be
2667 * a legal transition). When the device is in this state, command processing
2668 * is paused until the device leaves the SDEV_BLOCK state. See also
2669 * scsi_internal_device_unblock().
Rob Landleyeb448202007-11-03 13:30:39 -05002670 */
Bart Van Assche551eb592017-06-02 14:21:53 -07002671static int scsi_internal_device_block(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Bart Van Assche551eb592017-06-02 14:21:53 -07002673 struct request_queue *q = sdev->request_queue;
2674 int err;
2675
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002676 mutex_lock(&sdev->state_mutex);
Bart Van Assche551eb592017-06-02 14:21:53 -07002677 err = scsi_internal_device_block_nowait(sdev);
Jens Axboef664a3c2018-11-01 16:36:27 -06002678 if (err == 0)
2679 blk_mq_quiesce_queue(q);
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002680 mutex_unlock(&sdev->state_mutex);
2681
Bart Van Assche551eb592017-06-02 14:21:53 -07002682 return err;
2683}
Bean Huo4c7b4d62020-06-19 17:41:17 +02002684
Bart Van Assche66483a42017-06-02 14:21:56 -07002685void scsi_start_queue(struct scsi_device *sdev)
2686{
2687 struct request_queue *q = sdev->request_queue;
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002688
Jens Axboef664a3c2018-11-01 16:36:27 -06002689 blk_mq_unquiesce_queue(q);
Bart Van Assche66483a42017-06-02 14:21:56 -07002690}
2691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692/**
Bart Van Assche43f75712017-06-02 14:21:54 -07002693 * scsi_internal_device_unblock_nowait - resume a device after a block request
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 * @sdev: device to resume
Bart Van Assche43f75712017-06-02 14:21:54 -07002695 * @new_state: state to set the device to after unblocking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 *
Bart Van Assche43f75712017-06-02 14:21:54 -07002697 * Restart the device queue for a previously suspended SCSI device. Does not
2698 * sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 *
Bart Van Assche43f75712017-06-02 14:21:54 -07002700 * Returns zero if successful or a negative error code upon failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 *
Bart Van Assche43f75712017-06-02 14:21:54 -07002702 * Notes:
2703 * This routine transitions the device to the SDEV_RUNNING state or to one of
2704 * the offline states (which must be a legal transition) allowing the midlayer
2705 * to goose the queue for this device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 */
Bart Van Assche43f75712017-06-02 14:21:54 -07002707int scsi_internal_device_unblock_nowait(struct scsi_device *sdev,
2708 enum scsi_device_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Bart Van Assche09addb12019-08-01 15:38:12 -07002710 switch (new_state) {
2711 case SDEV_RUNNING:
2712 case SDEV_TRANSPORT_OFFLINE:
2713 break;
2714 default:
2715 return -EINVAL;
2716 }
2717
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002718 /*
2719 * Try to transition the scsi device to SDEV_RUNNING or one of the
2720 * offlined states and goose the device queue if successful.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 */
Hannes Reinecke8cd1ec72017-08-11 08:53:46 +02002722 switch (sdev->sdev_state) {
2723 case SDEV_BLOCK:
2724 case SDEV_TRANSPORT_OFFLINE:
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002725 sdev->sdev_state = new_state;
Hannes Reinecke8cd1ec72017-08-11 08:53:46 +02002726 break;
2727 case SDEV_CREATED_BLOCK:
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002728 if (new_state == SDEV_TRANSPORT_OFFLINE ||
2729 new_state == SDEV_OFFLINE)
2730 sdev->sdev_state = new_state;
2731 else
2732 sdev->sdev_state = SDEV_CREATED;
Hannes Reinecke8cd1ec72017-08-11 08:53:46 +02002733 break;
2734 case SDEV_CANCEL:
2735 case SDEV_OFFLINE:
2736 break;
2737 default:
Takahiro Yasui5c10e632009-04-29 12:13:02 -04002738 return -EINVAL;
Hannes Reinecke8cd1ec72017-08-11 08:53:46 +02002739 }
Bart Van Assche66483a42017-06-02 14:21:56 -07002740 scsi_start_queue(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742 return 0;
2743}
Bart Van Assche43f75712017-06-02 14:21:54 -07002744EXPORT_SYMBOL_GPL(scsi_internal_device_unblock_nowait);
2745
2746/**
2747 * scsi_internal_device_unblock - resume a device after a block request
2748 * @sdev: device to resume
2749 * @new_state: state to set the device to after unblocking
2750 *
2751 * Restart the device queue for a previously suspended SCSI device. May sleep.
2752 *
2753 * Returns zero if successful or a negative error code upon failure.
2754 *
2755 * Notes:
2756 * This routine transitions the device to the SDEV_RUNNING state or to one of
2757 * the offline states (which must be a legal transition) allowing the midlayer
2758 * to goose the queue for this device.
2759 */
2760static int scsi_internal_device_unblock(struct scsi_device *sdev,
2761 enum scsi_device_state new_state)
2762{
Bart Van Assche0db6ca82017-06-02 14:21:55 -07002763 int ret;
2764
2765 mutex_lock(&sdev->state_mutex);
2766 ret = scsi_internal_device_unblock_nowait(sdev, new_state);
2767 mutex_unlock(&sdev->state_mutex);
2768
2769 return ret;
Bart Van Assche43f75712017-06-02 14:21:54 -07002770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772static void
2773device_block(struct scsi_device *sdev, void *data)
2774{
Bart Van Assche94ef80a2019-08-01 15:38:13 -07002775 int ret;
2776
2777 ret = scsi_internal_device_block(sdev);
2778
2779 WARN_ONCE(ret, "scsi_internal_device_block(%s) failed: ret = %d\n",
2780 dev_name(&sdev->sdev_gendev), ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781}
2782
2783static int
2784target_block(struct device *dev, void *data)
2785{
2786 if (scsi_is_target_device(dev))
2787 starget_for_each_device(to_scsi_target(dev), NULL,
2788 device_block);
2789 return 0;
2790}
2791
2792void
2793scsi_target_block(struct device *dev)
2794{
2795 if (scsi_is_target_device(dev))
2796 starget_for_each_device(to_scsi_target(dev), NULL,
2797 device_block);
2798 else
2799 device_for_each_child(dev, NULL, target_block);
2800}
2801EXPORT_SYMBOL_GPL(scsi_target_block);
2802
2803static void
2804device_unblock(struct scsi_device *sdev, void *data)
2805{
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002806 scsi_internal_device_unblock(sdev, *(enum scsi_device_state *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
2809static int
2810target_unblock(struct device *dev, void *data)
2811{
2812 if (scsi_is_target_device(dev))
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002813 starget_for_each_device(to_scsi_target(dev), data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 device_unblock);
2815 return 0;
2816}
2817
2818void
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002819scsi_target_unblock(struct device *dev, enum scsi_device_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
2821 if (scsi_is_target_device(dev))
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002822 starget_for_each_device(to_scsi_target(dev), &new_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 device_unblock);
2824 else
Mike Christie5d9fb5c2012-05-17 23:56:57 -05002825 device_for_each_child(dev, &new_state, target_unblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826}
2827EXPORT_SYMBOL_GPL(scsi_target_unblock);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002828
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002829int
2830scsi_host_block(struct Scsi_Host *shost)
2831{
2832 struct scsi_device *sdev;
2833 int ret = 0;
2834
Ming Leif9836222020-04-23 10:07:13 +08002835 /*
2836 * Call scsi_internal_device_block_nowait so we can avoid
2837 * calling synchronize_rcu() for each LUN.
2838 */
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002839 shost_for_each_device(sdev, shost) {
Ming Leif9836222020-04-23 10:07:13 +08002840 mutex_lock(&sdev->state_mutex);
2841 ret = scsi_internal_device_block_nowait(sdev);
2842 mutex_unlock(&sdev->state_mutex);
Ye Binf30785d2020-07-17 17:09:20 +08002843 if (ret) {
2844 scsi_device_put(sdev);
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002845 break;
Ye Binf30785d2020-07-17 17:09:20 +08002846 }
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002847 }
Ming Leif9836222020-04-23 10:07:13 +08002848
2849 /*
2850 * SCSI never enables blk-mq's BLK_MQ_F_BLOCKING flag so
2851 * calling synchronize_rcu() once is enough.
2852 */
2853 WARN_ON_ONCE(shost->tag_set.flags & BLK_MQ_F_BLOCKING);
2854
2855 if (!ret)
2856 synchronize_rcu();
2857
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002858 return ret;
2859}
2860EXPORT_SYMBOL_GPL(scsi_host_block);
2861
2862int
2863scsi_host_unblock(struct Scsi_Host *shost, int new_state)
2864{
2865 struct scsi_device *sdev;
2866 int ret = 0;
2867
2868 shost_for_each_device(sdev, shost) {
2869 ret = scsi_internal_device_unblock(sdev, new_state);
Ye Bin4dea1702020-05-18 15:44:20 +08002870 if (ret) {
2871 scsi_device_put(sdev);
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002872 break;
Ye Bin4dea1702020-05-18 15:44:20 +08002873 }
Hannes Reinecke2bb95582020-02-28 08:53:13 +01002874 }
2875 return ret;
2876}
2877EXPORT_SYMBOL_GPL(scsi_host_unblock);
2878
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002879/**
2880 * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt
Rob Landleyeb448202007-11-03 13:30:39 -05002881 * @sgl: scatter-gather list
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002882 * @sg_count: number of segments in sg
2883 * @offset: offset in bytes into sg, on return offset into the mapped area
2884 * @len: bytes to map, on return number of bytes mapped
2885 *
2886 * Returns virtual address of the start of the mapped page
2887 */
Jens Axboec6132da2007-10-16 11:08:49 +02002888void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count,
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002889 size_t *offset, size_t *len)
2890{
2891 int i;
2892 size_t sg_len = 0, len_complete = 0;
Jens Axboec6132da2007-10-16 11:08:49 +02002893 struct scatterlist *sg;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002894 struct page *page;
2895
Andrew Morton22cfefb2007-02-05 16:39:03 -08002896 WARN_ON(!irqs_disabled());
2897
Jens Axboec6132da2007-10-16 11:08:49 +02002898 for_each_sg(sgl, sg, sg_count, i) {
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002899 len_complete = sg_len; /* Complete sg-entries */
Jens Axboec6132da2007-10-16 11:08:49 +02002900 sg_len += sg->length;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002901 if (sg_len > *offset)
2902 break;
2903 }
2904
2905 if (unlikely(i == sg_count)) {
Andrew Morton169e1a22006-04-18 21:09:08 -07002906 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
2907 "elements %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07002908 __func__, sg_len, *offset, sg_count);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002909 WARN_ON(1);
2910 return NULL;
2911 }
2912
2913 /* Offset starting from the beginning of first page in this sg-entry */
Jens Axboec6132da2007-10-16 11:08:49 +02002914 *offset = *offset - len_complete + sg->offset;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002915
2916 /* Assumption: contiguous pages can be accessed as "page + i" */
Jens Axboe45711f12007-10-22 21:19:53 +02002917 page = nth_page(sg_page(sg), (*offset >> PAGE_SHIFT));
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002918 *offset &= ~PAGE_MASK;
2919
2920 /* Bytes in this sg-entry from *offset to the end of the page */
2921 sg_len = PAGE_SIZE - *offset;
2922 if (*len > sg_len)
2923 *len = sg_len;
2924
Cong Wang77dfce02011-11-25 23:14:23 +08002925 return kmap_atomic(page);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002926}
2927EXPORT_SYMBOL(scsi_kmap_atomic_sg);
2928
2929/**
Rob Landleyeb448202007-11-03 13:30:39 -05002930 * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002931 * @virt: virtual address to be unmapped
2932 */
2933void scsi_kunmap_atomic_sg(void *virt)
2934{
Cong Wang77dfce02011-11-25 23:14:23 +08002935 kunmap_atomic(virt);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02002936}
2937EXPORT_SYMBOL(scsi_kunmap_atomic_sg);
Aaron Lu6f4c8272013-01-23 15:09:32 +08002938
2939void sdev_disable_disk_events(struct scsi_device *sdev)
2940{
2941 atomic_inc(&sdev->disk_events_disable_depth);
2942}
2943EXPORT_SYMBOL(sdev_disable_disk_events);
2944
2945void sdev_enable_disk_events(struct scsi_device *sdev)
2946{
2947 if (WARN_ON_ONCE(atomic_read(&sdev->disk_events_disable_depth) <= 0))
2948 return;
2949 atomic_dec(&sdev->disk_events_disable_depth);
2950}
2951EXPORT_SYMBOL(sdev_enable_disk_events);
Hannes Reinecke9983bed2015-12-01 10:16:55 +01002952
Martin Wilck43275d42020-10-29 18:08:45 +01002953static unsigned char designator_prio(const unsigned char *d)
2954{
2955 if (d[1] & 0x30)
2956 /* not associated with LUN */
2957 return 0;
2958
2959 if (d[3] == 0)
2960 /* invalid length */
2961 return 0;
2962
2963 /*
2964 * Order of preference for lun descriptor:
2965 * - SCSI name string
2966 * - NAA IEEE Registered Extended
2967 * - EUI-64 based 16-byte
2968 * - EUI-64 based 12-byte
2969 * - NAA IEEE Registered
2970 * - NAA IEEE Extended
2971 * - EUI-64 based 8-byte
2972 * - SCSI name string (truncated)
2973 * - T10 Vendor ID
2974 * as longer descriptors reduce the likelyhood
2975 * of identification clashes.
2976 */
2977
2978 switch (d[1] & 0xf) {
2979 case 8:
2980 /* SCSI name string, variable-length UTF-8 */
2981 return 9;
2982 case 3:
2983 switch (d[4] >> 4) {
2984 case 6:
2985 /* NAA registered extended */
2986 return 8;
2987 case 5:
2988 /* NAA registered */
2989 return 5;
2990 case 4:
2991 /* NAA extended */
2992 return 4;
2993 case 3:
2994 /* NAA locally assigned */
2995 return 1;
2996 default:
2997 break;
2998 }
2999 break;
3000 case 2:
3001 switch (d[3]) {
3002 case 16:
3003 /* EUI64-based, 16 byte */
3004 return 7;
3005 case 12:
3006 /* EUI64-based, 12 byte */
3007 return 6;
3008 case 8:
3009 /* EUI64-based, 8 byte */
3010 return 3;
3011 default:
3012 break;
3013 }
3014 break;
3015 case 1:
3016 /* T10 vendor ID */
3017 return 1;
3018 default:
3019 break;
3020 }
3021
3022 return 0;
3023}
3024
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003025/**
3026 * scsi_vpd_lun_id - return a unique device identification
3027 * @sdev: SCSI device
3028 * @id: buffer for the identification
3029 * @id_len: length of the buffer
3030 *
3031 * Copies a unique device identification into @id based
3032 * on the information in the VPD page 0x83 of the device.
3033 * The string will be formatted as a SCSI name string.
3034 *
3035 * Returns the length of the identification or error on failure.
3036 * If the identifier is longer than the supplied buffer the actual
3037 * identifier length is returned and the buffer is not zero-padded.
3038 */
3039int scsi_vpd_lun_id(struct scsi_device *sdev, char *id, size_t id_len)
3040{
Martin Wilck43275d42020-10-29 18:08:45 +01003041 u8 cur_id_prio = 0;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003042 u8 cur_id_size = 0;
Bart Van Asscheccf1e002017-08-29 08:50:13 -07003043 const unsigned char *d, *cur_id_str;
3044 const struct scsi_vpd *vpd_pg83;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003045 int id_size = -EINVAL;
3046
3047 rcu_read_lock();
3048 vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3049 if (!vpd_pg83) {
3050 rcu_read_unlock();
3051 return -ENXIO;
3052 }
3053
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003054 /* The id string must be at least 20 bytes + terminating NULL byte */
3055 if (id_len < 21) {
3056 rcu_read_unlock();
3057 return -EINVAL;
3058 }
3059
3060 memset(id, 0, id_len);
Bart Van Asscheccf1e002017-08-29 08:50:13 -07003061 d = vpd_pg83->data + 4;
3062 while (d < vpd_pg83->data + vpd_pg83->len) {
Martin Wilck43275d42020-10-29 18:08:45 +01003063 u8 prio = designator_prio(d);
3064
3065 if (prio == 0 || cur_id_prio > prio)
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003066 goto next_desig;
3067
3068 switch (d[1] & 0xf) {
Hannes Reinecked2308232016-05-09 09:14:29 +02003069 case 0x1:
3070 /* T10 Vendor ID */
3071 if (cur_id_size > d[3])
3072 break;
Martin Wilck43275d42020-10-29 18:08:45 +01003073 cur_id_prio = prio;
Hannes Reinecked2308232016-05-09 09:14:29 +02003074 cur_id_size = d[3];
3075 if (cur_id_size + 4 > id_len)
3076 cur_id_size = id_len - 4;
3077 cur_id_str = d + 4;
Hannes Reinecked2308232016-05-09 09:14:29 +02003078 id_size = snprintf(id, id_len, "t10.%*pE",
3079 cur_id_size, cur_id_str);
3080 break;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003081 case 0x2:
3082 /* EUI-64 */
Martin Wilck43275d42020-10-29 18:08:45 +01003083 cur_id_prio = prio;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003084 cur_id_size = d[3];
3085 cur_id_str = d + 4;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003086 switch (cur_id_size) {
3087 case 8:
3088 id_size = snprintf(id, id_len,
3089 "eui.%8phN",
3090 cur_id_str);
3091 break;
3092 case 12:
3093 id_size = snprintf(id, id_len,
3094 "eui.%12phN",
3095 cur_id_str);
3096 break;
3097 case 16:
3098 id_size = snprintf(id, id_len,
3099 "eui.%16phN",
3100 cur_id_str);
3101 break;
3102 default:
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003103 break;
3104 }
3105 break;
3106 case 0x3:
3107 /* NAA */
Martin Wilck43275d42020-10-29 18:08:45 +01003108 cur_id_prio = prio;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003109 cur_id_size = d[3];
3110 cur_id_str = d + 4;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003111 switch (cur_id_size) {
3112 case 8:
3113 id_size = snprintf(id, id_len,
3114 "naa.%8phN",
3115 cur_id_str);
3116 break;
3117 case 16:
3118 id_size = snprintf(id, id_len,
3119 "naa.%16phN",
3120 cur_id_str);
3121 break;
3122 default:
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003123 break;
3124 }
3125 break;
3126 case 0x8:
3127 /* SCSI name string */
Martin Wilck43275d42020-10-29 18:08:45 +01003128 if (cur_id_size > d[3])
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003129 break;
3130 /* Prefer others for truncated descriptor */
Martin Wilck43275d42020-10-29 18:08:45 +01003131 if (d[3] > id_len) {
3132 prio = 2;
3133 if (cur_id_prio > prio)
3134 break;
3135 }
3136 cur_id_prio = prio;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003137 cur_id_size = id_size = d[3];
3138 cur_id_str = d + 4;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003139 if (cur_id_size >= id_len)
3140 cur_id_size = id_len - 1;
3141 memcpy(id, cur_id_str, cur_id_size);
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003142 break;
3143 default:
3144 break;
3145 }
3146next_desig:
3147 d += d[3] + 4;
3148 }
3149 rcu_read_unlock();
3150
3151 return id_size;
3152}
3153EXPORT_SYMBOL(scsi_vpd_lun_id);
Hannes Reineckea8aa3972015-12-01 10:16:57 +01003154
3155/*
3156 * scsi_vpd_tpg_id - return a target port group identifier
3157 * @sdev: SCSI device
3158 *
3159 * Returns the Target Port Group identifier from the information
3160 * froom VPD page 0x83 of the device.
3161 *
3162 * Returns the identifier or error on failure.
3163 */
3164int scsi_vpd_tpg_id(struct scsi_device *sdev, int *rel_id)
3165{
Bart Van Asscheccf1e002017-08-29 08:50:13 -07003166 const unsigned char *d;
3167 const struct scsi_vpd *vpd_pg83;
Hannes Reineckea8aa3972015-12-01 10:16:57 +01003168 int group_id = -EAGAIN, rel_port = -1;
3169
3170 rcu_read_lock();
3171 vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3172 if (!vpd_pg83) {
3173 rcu_read_unlock();
3174 return -ENXIO;
3175 }
3176
Bart Van Asscheccf1e002017-08-29 08:50:13 -07003177 d = vpd_pg83->data + 4;
3178 while (d < vpd_pg83->data + vpd_pg83->len) {
Hannes Reineckea8aa3972015-12-01 10:16:57 +01003179 switch (d[1] & 0xf) {
3180 case 0x4:
3181 /* Relative target port */
3182 rel_port = get_unaligned_be16(&d[6]);
3183 break;
3184 case 0x5:
3185 /* Target port group */
3186 group_id = get_unaligned_be16(&d[6]);
3187 break;
3188 default:
3189 break;
3190 }
3191 d += d[3] + 4;
3192 }
3193 rcu_read_unlock();
3194
3195 if (group_id >= 0 && rel_id && rel_port != -1)
3196 *rel_id = rel_port;
3197
3198 return group_id;
3199}
3200EXPORT_SYMBOL(scsi_vpd_tpg_id);