blob: 31629a7b728dd9ea6e0cf897bb729bcd94502ba1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Christoph Hellwigd2852032014-01-17 12:06:53 +01002 * Copyright (C) 1999 Eric Youngdale
3 * Copyright (C) 2014 Christoph Hellwig
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * SCSI queueing library.
6 * Initial versions: Eric Youngdale (eric@andante.org).
7 * Based upon conversations with large numbers
8 * of people at Linux Expo.
9 */
10
11#include <linux/bio.h>
James Bottomleyd3f46f32008-01-15 11:11:46 -060012#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/blkdev.h>
14#include <linux/completion.h>
15#include <linux/kernel.h>
Paul Gortmaker09703662011-05-27 09:37:25 -040016#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/init.h>
18#include <linux/pci.h>
19#include <linux/delay.h>
James Bottomleyfaead262006-02-14 10:42:07 -060020#include <linux/hardirq.h>
Jens Axboec6132da2007-10-16 11:08:49 +020021#include <linux/scatterlist.h>
Christoph Hellwigd2852032014-01-17 12:06:53 +010022#include <linux/blk-mq.h>
Hannes Reineckef1569ff2014-10-24 14:27:07 +020023#include <linux/ratelimit.h>
Hannes Reineckea8aa3972015-12-01 10:16:57 +010024#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26#include <scsi/scsi.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020027#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <scsi/scsi_dbg.h>
29#include <scsi/scsi_device.h>
30#include <scsi/scsi_driver.h>
31#include <scsi/scsi_eh.h>
32#include <scsi/scsi_host.h>
Christoph Hellwigee14c672015-08-27 14:16:59 +020033#include <scsi/scsi_dh.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Christoph Hellwig3b5382c2014-05-06 12:25:40 +020035#include <trace/events/scsi.h>
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "scsi_priv.h"
38#include "scsi_logging.h"
39
Christoph Hellwige9c787e2017-01-02 21:55:26 +030040static struct kmem_cache *scsi_sdb_cache;
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030041static struct kmem_cache *scsi_sense_cache;
42static struct kmem_cache *scsi_sense_isadma_cache;
43static DEFINE_MUTEX(scsi_sense_cache_mutex);
44
45static inline struct kmem_cache *
46scsi_select_sense_cache(struct Scsi_Host *shost)
47{
48 return shost->unchecked_isa_dma ?
49 scsi_sense_isadma_cache : scsi_sense_cache;
50}
51
Christoph Hellwige9c787e2017-01-02 21:55:26 +030052static void scsi_free_sense_buffer(struct Scsi_Host *shost,
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030053 unsigned char *sense_buffer)
54{
55 kmem_cache_free(scsi_select_sense_cache(shost), sense_buffer);
56}
57
Christoph Hellwige9c787e2017-01-02 21:55:26 +030058static unsigned char *scsi_alloc_sense_buffer(struct Scsi_Host *shost,
59 gfp_t gfp_mask, int numa_node)
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +030060{
61 return kmem_cache_alloc_node(scsi_select_sense_cache(shost), gfp_mask,
62 numa_node);
63}
64
65int scsi_init_sense_cache(struct Scsi_Host *shost)
66{
67 struct kmem_cache *cache;
68 int ret = 0;
69
70 cache = scsi_select_sense_cache(shost);
71 if (cache)
72 return 0;
73
74 mutex_lock(&scsi_sense_cache_mutex);
75 if (shost->unchecked_isa_dma) {
76 scsi_sense_isadma_cache =
77 kmem_cache_create("scsi_sense_cache(DMA)",
78 SCSI_SENSE_BUFFERSIZE, 0,
79 SLAB_HWCACHE_ALIGN | SLAB_CACHE_DMA, NULL);
80 if (!scsi_sense_isadma_cache)
81 ret = -ENOMEM;
82 } else {
83 scsi_sense_cache =
84 kmem_cache_create("scsi_sense_cache",
85 SCSI_SENSE_BUFFERSIZE, 0, SLAB_HWCACHE_ALIGN, NULL);
86 if (!scsi_sense_cache)
87 ret = -ENOMEM;
88 }
89
90 mutex_unlock(&scsi_sense_cache_mutex);
91 return ret;
92}
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +020093
Jens Axboea488e742010-04-16 21:13:15 +020094/*
95 * When to reinvoke queueing after a resource shortage. It's 3 msecs to
96 * not change behaviour from the previous unplug mechanism, experimentation
97 * may prove this needs changing.
98 */
99#define SCSI_QUEUE_DELAY 3
100
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100101static void
102scsi_set_blocked(struct scsi_cmnd *cmd, int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 struct Scsi_Host *host = cmd->device->host;
105 struct scsi_device *device = cmd->device;
Mike Christief0c0a372008-08-17 15:24:38 -0500106 struct scsi_target *starget = scsi_target(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
108 /*
Tejun Heo d8c37e72005-05-14 00:46:08 +0900109 * Set the appropriate busy bit for the device/host.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 *
111 * If the host/device isn't busy, assume that something actually
112 * completed, and that we should be able to queue a command now.
113 *
114 * Note that the prior mid-layer assumption that any host could
115 * always queue at least one command is now broken. The mid-layer
116 * will implement a user specifiable stall (see
117 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
118 * if a command is requeued with no other commands outstanding
119 * either for the device or for the host.
120 */
Mike Christief0c0a372008-08-17 15:24:38 -0500121 switch (reason) {
122 case SCSI_MLQUEUE_HOST_BUSY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100123 atomic_set(&host->host_blocked, host->max_host_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500124 break;
125 case SCSI_MLQUEUE_DEVICE_BUSY:
James Smart573e5912011-07-06 12:45:17 -0400126 case SCSI_MLQUEUE_EH_RETRY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100127 atomic_set(&device->device_blocked,
128 device->max_device_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500129 break;
130 case SCSI_MLQUEUE_TARGET_BUSY:
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100131 atomic_set(&starget->target_blocked,
132 starget->max_target_blocked);
Mike Christief0c0a372008-08-17 15:24:38 -0500133 break;
134 }
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100135}
136
Christoph Hellwigd2852032014-01-17 12:06:53 +0100137static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd)
138{
139 struct scsi_device *sdev = cmd->device;
Christoph Hellwigd2852032014-01-17 12:06:53 +0100140
Bart Van Assche2b053ac2016-10-28 17:21:41 -0700141 blk_mq_requeue_request(cmd->request, true);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100142 put_device(&sdev->sdev_gendev);
143}
144
Christoph Hellwigde3e8bf2014-01-23 13:55:38 +0100145/**
146 * __scsi_queue_insert - private queue insertion
147 * @cmd: The SCSI command being requeued
148 * @reason: The reason for the requeue
149 * @unbusy: Whether the queue should be unbusied
150 *
151 * This is a private queue insertion. The public interface
152 * scsi_queue_insert() always assumes the queue should be unbusied
153 * because it's always called before the completion. This function is
154 * for a requeue after completion, which should only occur in this
155 * file.
156 */
157static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy)
158{
159 struct scsi_device *device = cmd->device;
160 struct request_queue *q = device->request_queue;
161 unsigned long flags;
162
163 SCSI_LOG_MLQUEUE(1, scmd_printk(KERN_INFO, cmd,
164 "Inserting command %p into mlqueue\n", cmd));
165
166 scsi_set_blocked(cmd, reason);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * Decrement the counters, since these commands are no longer
170 * active on the host/device.
171 */
James Bottomley4f5299a2009-01-02 10:42:21 -0600172 if (unbusy)
173 scsi_device_unbusy(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175 /*
Tejun Heo a1bf9d1d2005-04-24 02:08:52 -0500176 * Requeue this command. It will go before all other commands
Bart Van Asscheb4854622012-06-29 15:36:07 +0000177 * that are already in the queue. Schedule requeue work under
178 * lock such that the kblockd_schedule_work() call happens
179 * before blk_cleanup_queue() finishes.
Jens Axboea488e742010-04-16 21:13:15 +0200180 */
Alan Stern644373a2014-03-28 10:51:15 -0700181 cmd->result = 0;
Christoph Hellwigd2852032014-01-17 12:06:53 +0100182 if (q->mq_ops) {
183 scsi_mq_requeue_cmd(cmd);
184 return;
185 }
Tejun Heo a1bf9d1d2005-04-24 02:08:52 -0500186 spin_lock_irqsave(q->queue_lock, flags);
James Bottomley59897da2005-09-14 12:57:42 -0400187 blk_requeue_request(q, cmd->request);
Jens Axboe59c3d452014-04-08 09:15:35 -0600188 kblockd_schedule_work(&device->requeue_work);
Bart Van Asscheb4854622012-06-29 15:36:07 +0000189 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
James Bottomley4f5299a2009-01-02 10:42:21 -0600192/*
193 * Function: scsi_queue_insert()
194 *
195 * Purpose: Insert a command in the midlevel queue.
196 *
197 * Arguments: cmd - command that we are adding to queue.
198 * reason - why we are inserting command to queue.
199 *
200 * Lock status: Assumed that lock is not held upon entry.
201 *
202 * Returns: Nothing.
203 *
204 * Notes: We do this for one of two cases. Either the host is busy
205 * and it cannot accept any more commands for the time being,
206 * or the device returned QUEUE_FULL and can accept no more
207 * commands.
208 * Notes: This could be called either from an interrupt context or a
209 * normal process context.
210 */
Bart Van Assche84feb162012-06-29 15:35:05 +0000211void scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
James Bottomley4f5299a2009-01-02 10:42:21 -0600212{
Bart Van Assche84feb162012-06-29 15:35:05 +0000213 __scsi_queue_insert(cmd, reason, 1);
James Bottomley4f5299a2009-01-02 10:42:21 -0600214}
Christoph Hellwige8064022016-10-20 15:12:13 +0200215
216static int __scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
James Bottomley33aa6872005-08-28 11:31:14 -0500217 int data_direction, void *buffer, unsigned bufflen,
Martin K. Petersen2bfad212014-04-09 22:20:48 -0400218 unsigned char *sense, int timeout, int retries, u64 flags,
Christoph Hellwige8064022016-10-20 15:12:13 +0200219 req_flags_t rq_flags, int *resid)
James Bottomley39216032005-06-15 18:48:29 -0500220{
221 struct request *req;
222 int write = (data_direction == DMA_TO_DEVICE);
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100223 struct scsi_request *rq;
James Bottomley39216032005-06-15 18:48:29 -0500224 int ret = DRIVER_ERROR << 24;
225
Mel Gorman71baba42015-11-06 16:28:28 -0800226 req = blk_get_request(sdev->request_queue, write, __GFP_RECLAIM);
Joe Lawrencea492f072014-08-28 08:15:21 -0600227 if (IS_ERR(req))
James Bottomleybfe159a2011-07-07 15:45:40 -0500228 return ret;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100229 rq = scsi_req(req);
230 scsi_req_init(req);
James Bottomley39216032005-06-15 18:48:29 -0500231
232 if (bufflen && blk_rq_map_kern(sdev->request_queue, req,
Mel Gorman71baba42015-11-06 16:28:28 -0800233 buffer, bufflen, __GFP_RECLAIM))
James Bottomley39216032005-06-15 18:48:29 -0500234 goto out;
235
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100236 rq->cmd_len = COMMAND_SIZE(cmd[0]);
237 memcpy(rq->cmd, cmd, rq->cmd_len);
Mike Christie17e01f22005-11-11 05:31:37 -0600238 req->retries = retries;
James Bottomley39216032005-06-15 18:48:29 -0500239 req->timeout = timeout;
Christoph Hellwige8064022016-10-20 15:12:13 +0200240 req->cmd_flags |= flags;
241 req->rq_flags |= rq_flags | RQF_QUIET | RQF_PREEMPT;
James Bottomley39216032005-06-15 18:48:29 -0500242
243 /*
244 * head injection *required* here otherwise quiesce won't work
245 */
246 blk_execute_rq(req->q, NULL, req, 1);
247
Alan Sternbdb2b8c2008-06-24 14:03:14 -0400248 /*
249 * Some devices (USB mass-storage in particular) may transfer
250 * garbage data together with a residue indicating that the data
251 * is invalid. Prevent the garbage from being misinterpreted
252 * and prevent security leaks by zeroing out the excess data.
253 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100254 if (unlikely(rq->resid_len > 0 && rq->resid_len <= bufflen))
255 memset(buffer + (bufflen - rq->resid_len), 0, rq->resid_len);
Alan Sternbdb2b8c2008-06-24 14:03:14 -0400256
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900257 if (resid)
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100258 *resid = rq->resid_len;
259 if (sense && rq->sense_len)
260 memcpy(sense, rq->sense, SCSI_SENSE_BUFFERSIZE);
James Bottomley39216032005-06-15 18:48:29 -0500261 ret = req->errors;
262 out:
263 blk_put_request(req);
264
265 return ret;
266}
Christoph Hellwige8064022016-10-20 15:12:13 +0200267
268/**
269 * scsi_execute - insert request and wait for the result
270 * @sdev: scsi device
271 * @cmd: scsi command
272 * @data_direction: data direction
273 * @buffer: data buffer
274 * @bufflen: len of buffer
275 * @sense: optional sense buffer
276 * @timeout: request timeout in seconds
277 * @retries: number of times to retry request
278 * @flags: or into request flags;
279 * @resid: optional residual length
280 *
281 * returns the req->errors value which is the scsi_cmnd result
282 * field.
283 */
284int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
285 int data_direction, void *buffer, unsigned bufflen,
286 unsigned char *sense, int timeout, int retries, u64 flags,
287 int *resid)
288{
289 return __scsi_execute(sdev, cmd, data_direction, buffer, bufflen, sense,
290 timeout, retries, flags, 0, resid);
291}
James Bottomley33aa6872005-08-28 11:31:14 -0500292EXPORT_SYMBOL(scsi_execute);
James Bottomley39216032005-06-15 18:48:29 -0500293
Lin Ming9b214932013-03-23 11:42:25 +0800294int scsi_execute_req_flags(struct scsi_device *sdev, const unsigned char *cmd,
James Bottomleyea73a9f2005-08-28 11:33:52 -0500295 int data_direction, void *buffer, unsigned bufflen,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +0900296 struct scsi_sense_hdr *sshdr, int timeout, int retries,
Christoph Hellwige8064022016-10-20 15:12:13 +0200297 int *resid, u64 flags, req_flags_t rq_flags)
James Bottomleyea73a9f2005-08-28 11:33:52 -0500298{
299 char *sense = NULL;
akpm@osdl.org1ccb48b2005-06-26 00:12:51 -0700300 int result;
301
James Bottomleyea73a9f2005-08-28 11:33:52 -0500302 if (sshdr) {
Jes Sorensen24669f752006-01-16 10:31:18 -0500303 sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500304 if (!sense)
305 return DRIVER_ERROR << 24;
James Bottomleyea73a9f2005-08-28 11:33:52 -0500306 }
Christoph Hellwige8064022016-10-20 15:12:13 +0200307 result = __scsi_execute(sdev, cmd, data_direction, buffer, bufflen,
308 sense, timeout, retries, flags, rq_flags, resid);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500309 if (sshdr)
James Bottomleye5143852005-08-09 11:55:36 -0500310 scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, sshdr);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500311
312 kfree(sense);
313 return result;
314}
Lin Ming9b214932013-03-23 11:42:25 +0800315EXPORT_SYMBOL(scsi_execute_req_flags);
James Bottomleyea73a9f2005-08-28 11:33:52 -0500316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317/*
318 * Function: scsi_init_cmd_errh()
319 *
320 * Purpose: Initialize cmd fields related to error handling.
321 *
322 * Arguments: cmd - command that is ready to be queued.
323 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * Notes: This function has the job of initializing a number of
325 * fields related to error handling. Typically this will
326 * be called once for each command, as required.
327 */
Christoph Hellwig631c2282006-07-08 20:42:15 +0200328static void scsi_init_cmd_errh(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 cmd->serial_number = 0;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200331 scsi_set_resid(cmd, 0);
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900332 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 if (cmd->cmd_len == 0)
Boaz Harroshdb4742d2008-04-30 11:27:26 +0300334 cmd->cmd_len = scsi_command_size(cmd->cmnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
337void scsi_device_unbusy(struct scsi_device *sdev)
338{
339 struct Scsi_Host *shost = sdev->host;
Mike Christief0c0a372008-08-17 15:24:38 -0500340 struct scsi_target *starget = scsi_target(sdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 unsigned long flags;
342
Christoph Hellwig74665012014-01-22 15:29:29 +0100343 atomic_dec(&shost->host_busy);
Christoph Hellwig2ccbb002014-03-26 10:35:00 +0100344 if (starget->can_queue > 0)
345 atomic_dec(&starget->target_busy);
Christoph Hellwig74665012014-01-22 15:29:29 +0100346
James Bottomley939647e2005-09-18 15:05:20 -0500347 if (unlikely(scsi_host_in_recovery(shost) &&
Christoph Hellwig74665012014-01-22 15:29:29 +0100348 (shost->host_failed || shost->host_eh_scheduled))) {
349 spin_lock_irqsave(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 scsi_eh_wakeup(shost);
Christoph Hellwig74665012014-01-22 15:29:29 +0100351 spin_unlock_irqrestore(shost->host_lock, flags);
352 }
353
Christoph Hellwig71e75c92014-04-11 19:07:01 +0200354 atomic_dec(&sdev->device_busy);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Christoph Hellwigd2852032014-01-17 12:06:53 +0100357static void scsi_kick_queue(struct request_queue *q)
358{
359 if (q->mq_ops)
360 blk_mq_start_hw_queues(q);
361 else
362 blk_run_queue(q);
363}
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365/*
366 * Called for single_lun devices on IO completion. Clear starget_sdev_user,
367 * and call blk_run_queue for all the scsi_devices on the target -
368 * including current_sdev first.
369 *
370 * Called with *no* scsi locks held.
371 */
372static void scsi_single_lun_run(struct scsi_device *current_sdev)
373{
374 struct Scsi_Host *shost = current_sdev->host;
375 struct scsi_device *sdev, *tmp;
376 struct scsi_target *starget = scsi_target(current_sdev);
377 unsigned long flags;
378
379 spin_lock_irqsave(shost->host_lock, flags);
380 starget->starget_sdev_user = NULL;
381 spin_unlock_irqrestore(shost->host_lock, flags);
382
383 /*
384 * Call blk_run_queue for all LUNs on the target, starting with
385 * current_sdev. We race with others (to set starget_sdev_user),
386 * but in most cases, we will be first. Ideally, each LU on the
387 * target would get some limited time or requests on the target.
388 */
Christoph Hellwigd2852032014-01-17 12:06:53 +0100389 scsi_kick_queue(current_sdev->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 spin_lock_irqsave(shost->host_lock, flags);
392 if (starget->starget_sdev_user)
393 goto out;
394 list_for_each_entry_safe(sdev, tmp, &starget->devices,
395 same_target_siblings) {
396 if (sdev == current_sdev)
397 continue;
398 if (scsi_device_get(sdev))
399 continue;
400
401 spin_unlock_irqrestore(shost->host_lock, flags);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100402 scsi_kick_queue(sdev->request_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 spin_lock_irqsave(shost->host_lock, flags);
404
405 scsi_device_put(sdev);
406 }
407 out:
408 spin_unlock_irqrestore(shost->host_lock, flags);
409}
410
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100411static inline bool scsi_device_is_busy(struct scsi_device *sdev)
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400412{
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100413 if (atomic_read(&sdev->device_busy) >= sdev->queue_depth)
414 return true;
415 if (atomic_read(&sdev->device_blocked) > 0)
416 return true;
417 return false;
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400418}
419
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100420static inline bool scsi_target_is_busy(struct scsi_target *starget)
Mike Christief0c0a372008-08-17 15:24:38 -0500421{
Christoph Hellwig2ccbb002014-03-26 10:35:00 +0100422 if (starget->can_queue > 0) {
423 if (atomic_read(&starget->target_busy) >= starget->can_queue)
424 return true;
425 if (atomic_read(&starget->target_blocked) > 0)
426 return true;
427 }
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100428 return false;
Mike Christief0c0a372008-08-17 15:24:38 -0500429}
430
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100431static inline bool scsi_host_is_busy(struct Scsi_Host *shost)
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400432{
Christoph Hellwigcd9070c2014-01-23 12:07:41 +0100433 if (shost->can_queue > 0 &&
434 atomic_read(&shost->host_busy) >= shost->can_queue)
435 return true;
436 if (atomic_read(&shost->host_blocked) > 0)
437 return true;
438 if (shost->host_self_blocked)
439 return true;
440 return false;
Kiyoshi Ueda9d112512008-10-04 14:11:06 -0400441}
442
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800443static void scsi_starved_list_run(struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Mike Christie2a3a59e2008-11-11 13:42:35 -0600445 LIST_HEAD(starved_list);
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800446 struct scsi_device *sdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 unsigned long flags;
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 spin_lock_irqsave(shost->host_lock, flags);
Mike Christie2a3a59e2008-11-11 13:42:35 -0600450 list_splice_init(&shost->starved_list, &starved_list);
451
452 while (!list_empty(&starved_list)) {
James Bottomleye2eb7242013-07-02 15:05:26 +0200453 struct request_queue *slq;
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
456 * As long as shost is accepting commands and we have
457 * starved queues, call blk_run_queue. scsi_request_fn
458 * drops the queue_lock and can add us back to the
459 * starved_list.
460 *
461 * host_lock protects the starved_list and starved_entry.
462 * scsi_request_fn must get the host_lock before checking
463 * or modifying starved_list or starved_entry.
464 */
Mike Christie2a3a59e2008-11-11 13:42:35 -0600465 if (scsi_host_is_busy(shost))
Mike Christief0c0a372008-08-17 15:24:38 -0500466 break;
Mike Christief0c0a372008-08-17 15:24:38 -0500467
Mike Christie2a3a59e2008-11-11 13:42:35 -0600468 sdev = list_entry(starved_list.next,
469 struct scsi_device, starved_entry);
470 list_del_init(&sdev->starved_entry);
Mike Christief0c0a372008-08-17 15:24:38 -0500471 if (scsi_target_is_busy(scsi_target(sdev))) {
472 list_move_tail(&sdev->starved_entry,
473 &shost->starved_list);
474 continue;
475 }
476
James Bottomleye2eb7242013-07-02 15:05:26 +0200477 /*
478 * Once we drop the host lock, a racing scsi_remove_device()
479 * call may remove the sdev from the starved list and destroy
480 * it and the queue. Mitigate by taking a reference to the
481 * queue and never touching the sdev again after we drop the
482 * host lock. Note: if __scsi_remove_device() invokes
483 * blk_cleanup_queue() before the queue is run from this
484 * function then blk_run_queue() will return immediately since
485 * blk_cleanup_queue() marks the queue with QUEUE_FLAG_DYING.
486 */
487 slq = sdev->request_queue;
488 if (!blk_get_queue(slq))
489 continue;
490 spin_unlock_irqrestore(shost->host_lock, flags);
491
Christoph Hellwigd2852032014-01-17 12:06:53 +0100492 scsi_kick_queue(slq);
James Bottomleye2eb7242013-07-02 15:05:26 +0200493 blk_put_queue(slq);
494
495 spin_lock_irqsave(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
Mike Christie2a3a59e2008-11-11 13:42:35 -0600497 /* put any unprocessed entries back */
498 list_splice(&starved_list, &shost->starved_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 spin_unlock_irqrestore(shost->host_lock, flags);
Christoph Hellwig21a05df2014-02-20 14:20:54 -0800500}
501
502/*
503 * Function: scsi_run_queue()
504 *
505 * Purpose: Select a proper request queue to serve next
506 *
507 * Arguments: q - last request's queue
508 *
509 * Returns: Nothing
510 *
511 * Notes: The previous command was completely finished, start
512 * a new one if possible.
513 */
514static void scsi_run_queue(struct request_queue *q)
515{
516 struct scsi_device *sdev = q->queuedata;
517
518 if (scsi_target(sdev)->single_lun)
519 scsi_single_lun_run(sdev);
520 if (!list_empty(&sdev->host->starved_list))
521 scsi_starved_list_run(sdev->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Christoph Hellwigd2852032014-01-17 12:06:53 +0100523 if (q->mq_ops)
524 blk_mq_start_stopped_hw_queues(q, false);
525 else
526 blk_run_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Jens Axboe9937a5e2011-05-17 11:04:44 +0200529void scsi_requeue_run_queue(struct work_struct *work)
530{
531 struct scsi_device *sdev;
532 struct request_queue *q;
533
534 sdev = container_of(work, struct scsi_device, requeue_work);
535 q = sdev->request_queue;
536 scsi_run_queue(q);
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
540 * Function: scsi_requeue_command()
541 *
542 * Purpose: Handle post-processing of completed commands.
543 *
544 * Arguments: q - queue to operate on
545 * cmd - command that may need to be requeued.
546 *
547 * Returns: Nothing
548 *
549 * Notes: After command completion, there may be blocks left
550 * over which weren't finished by the previous command
551 * this can be for a number of reasons - the main one is
552 * I/O errors in the middle of the request, in which case
553 * we need to request the blocks that come after the bad
554 * sector.
James Bottomleye91442b2005-09-09 10:44:16 -0500555 * Notes: Upon return, cmd is a stale pointer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 */
557static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd)
558{
Bart Van Assche940f5d42012-06-29 15:34:26 +0000559 struct scsi_device *sdev = cmd->device;
James Bottomleye91442b2005-09-09 10:44:16 -0500560 struct request *req = cmd->request;
Tejun Heo 283369c2005-04-24 02:06:36 -0500561 unsigned long flags;
562
Tejun Heo 283369c2005-04-24 02:06:36 -0500563 spin_lock_irqsave(q->queue_lock, flags);
Christoph Hellwig134997a2014-02-20 14:20:58 -0800564 blk_unprep_request(req);
565 req->special = NULL;
566 scsi_put_command(cmd);
James Bottomleye91442b2005-09-09 10:44:16 -0500567 blk_requeue_request(q, req);
Tejun Heo 283369c2005-04-24 02:06:36 -0500568 spin_unlock_irqrestore(q->queue_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569
570 scsi_run_queue(q);
Bart Van Assche940f5d42012-06-29 15:34:26 +0000571
572 put_device(&sdev->sdev_gendev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575void scsi_run_host_queues(struct Scsi_Host *shost)
576{
577 struct scsi_device *sdev;
578
579 shost_for_each_device(sdev, shost)
580 scsi_run_queue(sdev->request_queue);
581}
582
Christoph Hellwigd2852032014-01-17 12:06:53 +0100583static void scsi_uninit_cmd(struct scsi_cmnd *cmd)
584{
Christoph Hellwig57292b52017-01-31 16:57:29 +0100585 if (!blk_rq_is_passthrough(cmd->request)) {
Christoph Hellwigd2852032014-01-17 12:06:53 +0100586 struct scsi_driver *drv = scsi_cmd_to_driver(cmd);
587
588 if (drv->uninit_command)
589 drv->uninit_command(cmd);
590 }
591}
592
593static void scsi_mq_free_sgtables(struct scsi_cmnd *cmd)
594{
Ming Lin91dbc082016-04-04 14:48:07 -0700595 struct scsi_data_buffer *sdb;
596
Christoph Hellwigd2852032014-01-17 12:06:53 +0100597 if (cmd->sdb.table.nents)
Ming Lin001d63b2016-04-04 14:48:09 -0700598 sg_free_table_chained(&cmd->sdb.table, true);
Ming Lin91dbc082016-04-04 14:48:07 -0700599 if (cmd->request->next_rq) {
600 sdb = cmd->request->next_rq->special;
601 if (sdb)
Ming Lin001d63b2016-04-04 14:48:09 -0700602 sg_free_table_chained(&sdb->table, true);
Ming Lin91dbc082016-04-04 14:48:07 -0700603 }
Christoph Hellwigd2852032014-01-17 12:06:53 +0100604 if (scsi_prot_sg_count(cmd))
Ming Lin001d63b2016-04-04 14:48:09 -0700605 sg_free_table_chained(&cmd->prot_sdb->table, true);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100606}
607
608static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd)
609{
610 struct scsi_device *sdev = cmd->device;
Kashyap.Desai@avagotech.com64bdcbc2014-08-20 19:24:33 +0530611 struct Scsi_Host *shost = sdev->host;
Christoph Hellwigd2852032014-01-17 12:06:53 +0100612 unsigned long flags;
613
Christoph Hellwigd2852032014-01-17 12:06:53 +0100614 scsi_mq_free_sgtables(cmd);
615 scsi_uninit_cmd(cmd);
616
Kashyap.Desai@avagotech.com64bdcbc2014-08-20 19:24:33 +0530617 if (shost->use_cmd_list) {
618 BUG_ON(list_empty(&cmd->list));
619 spin_lock_irqsave(&sdev->list_lock, flags);
620 list_del_init(&cmd->list);
621 spin_unlock_irqrestore(&sdev->list_lock, flags);
622 }
Christoph Hellwigd2852032014-01-17 12:06:53 +0100623}
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625/*
626 * Function: scsi_release_buffers()
627 *
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200628 * Purpose: Free resources allocate for a scsi_command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 *
630 * Arguments: cmd - command that we are bailing.
631 *
632 * Lock status: Assumed that no lock is held upon entry.
633 *
634 * Returns: Nothing
635 *
636 * Notes: In the event that an upper level driver rejects a
637 * command, we must release resources allocated during
638 * the __init_io() function. Primarily this would involve
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200639 * the scatter-gather table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
Christoph Hellwigf1bea552014-04-15 12:26:54 +0200641static void scsi_release_buffers(struct scsi_cmnd *cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200643 if (cmd->sdb.table.nents)
Ming Lin001d63b2016-04-04 14:48:09 -0700644 sg_free_table_chained(&cmd->sdb.table, false);
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200645
646 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
647
648 if (scsi_prot_sg_count(cmd))
Ming Lin001d63b2016-04-04 14:48:09 -0700649 sg_free_table_chained(&cmd->prot_sdb->table, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200652static void scsi_release_bidi_buffers(struct scsi_cmnd *cmd)
653{
654 struct scsi_data_buffer *bidi_sdb = cmd->request->next_rq->special;
655
Ming Lin001d63b2016-04-04 14:48:09 -0700656 sg_free_table_chained(&bidi_sdb->table, false);
Christoph Hellwigc682adf2014-05-01 16:51:02 +0200657 kmem_cache_free(scsi_sdb_cache, bidi_sdb);
658 cmd->request->next_rq->special = NULL;
659}
660
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800661static bool scsi_end_request(struct request *req, int error,
662 unsigned int bytes, unsigned int bidi_bytes)
663{
664 struct scsi_cmnd *cmd = req->special;
665 struct scsi_device *sdev = cmd->device;
666 struct request_queue *q = sdev->request_queue;
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800667
668 if (blk_update_request(req, error, bytes))
669 return true;
670
671 /* Bidi request must be completed as a whole */
672 if (unlikely(bidi_bytes) &&
673 blk_update_request(req->next_rq, error, bidi_bytes))
674 return true;
675
676 if (blk_queue_add_random(q))
677 add_disk_randomness(req->rq_disk);
678
Christoph Hellwigd2852032014-01-17 12:06:53 +0100679 if (req->mq_ctx) {
680 /*
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700681 * In the MQ case the command gets freed by __blk_mq_end_request,
Christoph Hellwigd2852032014-01-17 12:06:53 +0100682 * so we have to do all cleanup that depends on it earlier.
683 *
684 * We also can't kick the queues from irq context, so we
685 * will have to defer it to a workqueue.
686 */
687 scsi_mq_uninit_cmd(cmd);
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800688
Christoph Hellwigc8a446a2014-09-13 16:40:10 -0700689 __blk_mq_end_request(req, error);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100690
691 if (scsi_target(sdev)->single_lun ||
692 !list_empty(&sdev->host->starved_list))
693 kblockd_schedule_work(&sdev->requeue_work);
694 else
695 blk_mq_start_stopped_hw_queues(q, true);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100696 } else {
697 unsigned long flags;
698
Daniel Gryniewiczf81426a2014-09-16 10:41:13 -0400699 if (bidi_bytes)
700 scsi_release_bidi_buffers(cmd);
Christoph Hellwige9c787e2017-01-02 21:55:26 +0300701 scsi_release_buffers(cmd);
702 scsi_put_command(cmd);
Daniel Gryniewiczf81426a2014-09-16 10:41:13 -0400703
Christoph Hellwigd2852032014-01-17 12:06:53 +0100704 spin_lock_irqsave(q->queue_lock, flags);
705 blk_finish_request(req, error);
706 spin_unlock_irqrestore(q->queue_lock, flags);
707
Christoph Hellwigbb3ec622014-09-05 18:02:09 -0700708 scsi_run_queue(q);
Christoph Hellwigd2852032014-01-17 12:06:53 +0100709 }
710
Christoph Hellwigbb3ec622014-09-05 18:02:09 -0700711 put_device(&sdev->sdev_gendev);
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800712 return false;
713}
714
Hannes Reinecke0f7f6232013-07-01 15:16:23 +0200715/**
716 * __scsi_error_from_host_byte - translate SCSI error code into errno
717 * @cmd: SCSI command (unused)
718 * @result: scsi error code
719 *
720 * Translate SCSI error code into standard UNIX errno.
721 * Return values:
722 * -ENOLINK temporary transport failure
723 * -EREMOTEIO permanent target failure, do not retry
724 * -EBADE permanent nexus failure, retry on other path
Hannes Reineckea9d6ceb82013-07-01 15:16:25 +0200725 * -ENOSPC No write space available
Hannes Reinecke7e782af2013-07-01 15:16:26 +0200726 * -ENODATA Medium error
Hannes Reinecke0f7f6232013-07-01 15:16:23 +0200727 * -EIO unspecified I/O error
728 */
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100729static int __scsi_error_from_host_byte(struct scsi_cmnd *cmd, int result)
730{
731 int error = 0;
732
733 switch(host_byte(result)) {
734 case DID_TRANSPORT_FAILFAST:
735 error = -ENOLINK;
736 break;
737 case DID_TARGET_FAILURE:
Moger, Babu2082ebc2012-01-24 20:38:46 +0000738 set_host_byte(cmd, DID_OK);
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100739 error = -EREMOTEIO;
740 break;
741 case DID_NEXUS_FAILURE:
Moger, Babu2082ebc2012-01-24 20:38:46 +0000742 set_host_byte(cmd, DID_OK);
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100743 error = -EBADE;
744 break;
Hannes Reineckea9d6ceb82013-07-01 15:16:25 +0200745 case DID_ALLOC_FAILURE:
746 set_host_byte(cmd, DID_OK);
747 error = -ENOSPC;
748 break;
Hannes Reinecke7e782af2013-07-01 15:16:26 +0200749 case DID_MEDIUM_ERROR:
750 set_host_byte(cmd, DID_OK);
751 error = -ENODATA;
752 break;
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100753 default:
754 error = -EIO;
755 break;
756 }
757
758 return error;
759}
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761/*
762 * Function: scsi_io_completion()
763 *
764 * Purpose: Completion processing for block device I/O requests.
765 *
766 * Arguments: cmd - command that is finished.
767 *
768 * Lock status: Assumed that no lock is held upon entry.
769 *
770 * Returns: Nothing
771 *
Christoph Hellwigbc85dc52014-05-01 16:51:03 +0200772 * Notes: We will finish off the specified number of sectors. If we
773 * are done, the command block will be released and the queue
774 * function will be goosed. If we are not done then we have to
Alan Sternb60af5b2008-11-03 15:56:47 -0500775 * figure out what to do next:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 *
Alan Sternb60af5b2008-11-03 15:56:47 -0500777 * a) We can call scsi_requeue_command(). The request
778 * will be unprepared and put back on the queue. Then
779 * a new command will be created for it. This should
780 * be used if we made forward progress, or if we want
781 * to switch from READ(10) to READ(6) for example.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 *
Christoph Hellwigbc85dc52014-05-01 16:51:03 +0200783 * b) We can call __scsi_queue_insert(). The request will
Alan Sternb60af5b2008-11-03 15:56:47 -0500784 * be put back on the queue and retried using the same
785 * command as before, possibly after a delay.
786 *
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800787 * c) We can call scsi_end_request() with -EIO to fail
Alan Sternb60af5b2008-11-03 15:56:47 -0500788 * the remainder of the request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700790void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 int result = cmd->result;
Jens Axboe165125e2007-07-24 09:28:11 +0200793 struct request_queue *q = cmd->device->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct request *req = cmd->request;
James Bottomleyfa8e36c2008-04-02 18:11:52 -0500795 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 struct scsi_sense_hdr sshdr;
Hannes Reinecke4753cbc2014-10-24 14:26:52 +0200797 bool sense_valid = false;
Hannes Reineckec11c0042014-10-24 14:27:01 +0200798 int sense_deferred = 0, level = 0;
Alan Sternb60af5b2008-11-03 15:56:47 -0500799 enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY,
800 ACTION_DELAYED_RETRY} action;
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +0900801 unsigned long wait_for = (cmd->allowed + 1) * req->timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (result) {
804 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
805 if (sense_valid)
806 sense_deferred = scsi_sense_is_deferred(&sshdr);
807 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200808
Christoph Hellwig57292b52017-01-31 16:57:29 +0100809 if (blk_rq_is_passthrough(req)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (result) {
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100811 if (sense_valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /*
813 * SG_IO wants current and deferred errors
814 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100815 scsi_req(req)->sense_len =
816 min(8 + cmd->sense_buffer[7],
817 SCSI_SENSE_BUFFERSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 }
James Bottomleyfa8e36c2008-04-02 18:11:52 -0500819 if (!sense_deferred)
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100820 error = __scsi_error_from_host_byte(cmd, result);
Pete Wyckoffb22f6872007-03-13 16:53:28 -0400821 }
Mike Snitzer27c41972012-05-31 15:05:33 -0400822 /*
823 * __scsi_error_from_host_byte may have reset the host_byte
824 */
825 req->errors = cmd->result;
FUJITA Tomonorie6bb7a962009-05-11 17:56:08 +0900826
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100827 scsi_req(req)->resid_len = scsi_get_resid(cmd);
FUJITA Tomonorie6bb7a962009-05-11 17:56:08 +0900828
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200829 if (scsi_bidi_cmnd(cmd)) {
FUJITA Tomonorie6bb7a962009-05-11 17:56:08 +0900830 /*
831 * Bidi commands Must be complete as a whole,
832 * both sides at once.
833 */
Christoph Hellwig82ed4db2017-01-27 09:46:29 +0100834 scsi_req(req->next_rq)->resid_len = scsi_in(cmd)->resid;
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800835 if (scsi_end_request(req, 0, blk_rq_bytes(req),
836 blk_rq_bytes(req->next_rq)))
837 BUG();
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200838 return;
839 }
James Bottomley89fb4cd2014-07-03 19:17:34 +0200840 } else if (blk_rq_bytes(req) == 0 && result && !sense_deferred) {
841 /*
842 * Certain non BLOCK_PC requests are commands that don't
843 * actually transfer anything (FLUSH), so cannot use
844 * good_bytes != blk_rq_bytes(req) as the signal for an error.
845 * This sets the error explicitly for the problem case.
846 */
847 error = __scsi_error_from_host_byte(cmd, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Christoph Hellwig57292b52017-01-31 16:57:29 +0100850 /* no bidi support for !blk_rq_is_passthrough yet */
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200851 BUG_ON(blk_bidi_rq(req));
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 * Next deal with any sectors which we were able to correctly
855 * handle.
856 */
Hannes Reinecke91921e02014-06-25 16:39:59 +0200857 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, cmd,
858 "%u sectors total, %d bytes done.\n",
859 blk_rq_sectors(req), good_bytes));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
James Bottomleya9bddd72009-03-30 16:55:51 +0000861 /*
862 * Recovered errors need reporting, but they're always treated
863 * as success, so fiddle the result code here. For BLOCK_PC
864 * we already took a copy of the original into rq->errors which
865 * is what gets returned to the user
866 */
Douglas Gilberte7efe592010-01-03 13:51:15 -0500867 if (sense_valid && (sshdr.sense_key == RECOVERED_ERROR)) {
868 /* if ATA PASS-THROUGH INFORMATION AVAILABLE skip
869 * print since caller wants ATA registers. Only occurs on
870 * SCSI ATA PASS_THROUGH commands when CK_COND=1
871 */
872 if ((sshdr.asc == 0x0) && (sshdr.ascq == 0x1d))
873 ;
Christoph Hellwige8064022016-10-20 15:12:13 +0200874 else if (!(req->rq_flags & RQF_QUIET))
Hannes Reinecked811b842014-10-24 14:26:45 +0200875 scsi_print_sense(cmd);
James Bottomleya9bddd72009-03-30 16:55:51 +0000876 result = 0;
877 /* BLOCK_PC may have set error */
878 error = 0;
879 }
880
881 /*
James Bottomleya621bac2016-05-13 12:04:06 -0700882 * special case: failed zero length commands always need to
883 * drop down into the retry code. Otherwise, if we finished
884 * all bytes in the request we are done now.
James Bottomleyd6b0c532006-07-02 10:06:28 -0500885 */
James Bottomleya621bac2016-05-13 12:04:06 -0700886 if (!(blk_rq_bytes(req) == 0 && error) &&
887 !scsi_end_request(req, error, good_bytes, 0))
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800888 return;
Christoph Hellwigbc85dc52014-05-01 16:51:03 +0200889
890 /*
891 * Kill remainder if no retrys.
892 */
893 if (error && scsi_noretry_cmd(cmd)) {
Christoph Hellwigf6d47e72014-02-16 06:16:13 -0800894 if (scsi_end_request(req, error, blk_rq_bytes(req), 0))
895 BUG();
896 return;
Christoph Hellwigbc85dc52014-05-01 16:51:03 +0200897 }
898
899 /*
900 * If there had been no error, but we have leftover bytes in the
901 * requeues just queue the command up again.
902 */
903 if (result == 0)
904 goto requeue;
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700905
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100906 error = __scsi_error_from_host_byte(cmd, result);
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500907
Alan Sternb60af5b2008-11-03 15:56:47 -0500908 if (host_byte(result) == DID_RESET) {
909 /* Third party bus reset or reset for error recovery
910 * reasons. Just retry the command and see what
911 * happens.
912 */
913 action = ACTION_RETRY;
914 } else if (sense_valid && !sense_deferred) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 switch (sshdr.sense_key) {
916 case UNIT_ATTENTION:
917 if (cmd->device->removable) {
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700918 /* Detected disc change. Set a bit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 * and quietly refuse further access.
920 */
921 cmd->device->changed = 1;
Alan Sternb60af5b2008-11-03 15:56:47 -0500922 action = ACTION_FAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 } else {
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700924 /* Must have been a power glitch, or a
925 * bus reset. Could not have been a
926 * media change, so we just retry the
Alan Sternb60af5b2008-11-03 15:56:47 -0500927 * command and see what happens.
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700928 */
Alan Sternb60af5b2008-11-03 15:56:47 -0500929 action = ACTION_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 break;
932 case ILLEGAL_REQUEST:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700933 /* If we had an ILLEGAL REQUEST returned, then
934 * we may have performed an unsupported
935 * command. The only thing this should be
936 * would be a ten byte read where only a six
937 * byte read was supported. Also, on a system
938 * where READ CAPACITY failed, we may have
939 * read past the end of the disk.
940 */
Jens Axboe26a68012005-11-29 21:03:34 +0100941 if ((cmd->device->use_10_for_rw &&
942 sshdr.asc == 0x20 && sshdr.ascq == 0x00) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 (cmd->cmnd[0] == READ_10 ||
944 cmd->cmnd[0] == WRITE_10)) {
Alan Sternb60af5b2008-11-03 15:56:47 -0500945 /* This will issue a new 6-byte command. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 cmd->device->use_10_for_rw = 0;
Alan Sternb60af5b2008-11-03 15:56:47 -0500947 action = ACTION_REPREP;
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500948 } else if (sshdr.asc == 0x10) /* DIX */ {
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500949 action = ACTION_FAIL;
950 error = -EILSEQ;
Martin K. Petersenc98a0eb2011-03-08 02:07:15 -0500951 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
Martin K. Petersen5db44862012-09-18 12:19:32 -0400952 } else if (sshdr.asc == 0x20 || sshdr.asc == 0x24) {
Martin K. Petersenc98a0eb2011-03-08 02:07:15 -0500953 action = ACTION_FAIL;
Martin K. Petersen66a651a2012-02-13 15:38:22 -0500954 error = -EREMOTEIO;
Alan Sternb60af5b2008-11-03 15:56:47 -0500955 } else
956 action = ACTION_FAIL;
957 break;
Martin K. Petersen511e44f2008-07-17 04:28:33 -0400958 case ABORTED_COMMAND:
James Bottomley126c09822009-02-19 21:48:54 +0000959 action = ACTION_FAIL;
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200960 if (sshdr.asc == 0x10) /* DIF */
Martin K. Petersen3e695f82009-01-04 03:04:31 -0500961 error = -EILSEQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 case NOT_READY:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700964 /* If the device is in the process of becoming
James Bottomleyf3e93f72006-04-25 16:48:30 -0500965 * ready, or has a temporary blockage, retry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
James Bottomleyf3e93f72006-04-25 16:48:30 -0500967 if (sshdr.asc == 0x04) {
968 switch (sshdr.ascq) {
969 case 0x01: /* becoming ready */
970 case 0x04: /* format in progress */
971 case 0x05: /* rebuild in progress */
972 case 0x06: /* recalculation in progress */
973 case 0x07: /* operation in progress */
974 case 0x08: /* Long write in progress */
975 case 0x09: /* self test in progress */
Martin K. Petersend8705f12009-11-26 12:00:41 -0500976 case 0x14: /* space allocation in progress */
Alan Sternb60af5b2008-11-03 15:56:47 -0500977 action = ACTION_DELAYED_RETRY;
James Bottomleyf3e93f72006-04-25 16:48:30 -0500978 break;
Alan Stern3dbf6a52008-12-15 10:31:28 -0500979 default:
Alan Stern3dbf6a52008-12-15 10:31:28 -0500980 action = ACTION_FAIL;
981 break;
James Bottomleyf3e93f72006-04-25 16:48:30 -0500982 }
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200983 } else
Alan Sternb60af5b2008-11-03 15:56:47 -0500984 action = ACTION_FAIL;
Alan Sternb60af5b2008-11-03 15:56:47 -0500985 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 case VOLUME_OVERFLOW:
Luben Tuikov03aba2f2006-06-23 09:39:09 -0700987 /* See SSC3rXX or current. */
Alan Sternb60af5b2008-11-03 15:56:47 -0500988 action = ACTION_FAIL;
989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 default:
Alan Sternb60af5b2008-11-03 15:56:47 -0500991 action = ACTION_FAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 break;
993 }
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200994 } else
Alan Sternb60af5b2008-11-03 15:56:47 -0500995 action = ACTION_FAIL;
Alan Sternb60af5b2008-11-03 15:56:47 -0500996
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +0900997 if (action != ACTION_FAIL &&
Maurizio Lombardie6c11db2014-07-10 09:41:53 +0200998 time_before(cmd->jiffies_at_alloc + wait_for, jiffies))
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +0900999 action = ACTION_FAIL;
Eiichi Tsukataee60b2c2014-02-11 14:29:52 +09001000
Alan Sternb60af5b2008-11-03 15:56:47 -05001001 switch (action) {
1002 case ACTION_FAIL:
1003 /* Give up and fail the remainder of the request */
Christoph Hellwige8064022016-10-20 15:12:13 +02001004 if (!(req->rq_flags & RQF_QUIET)) {
Hannes Reineckef1569ff2014-10-24 14:27:07 +02001005 static DEFINE_RATELIMIT_STATE(_rs,
1006 DEFAULT_RATELIMIT_INTERVAL,
1007 DEFAULT_RATELIMIT_BURST);
1008
1009 if (unlikely(scsi_logging_level))
1010 level = SCSI_LOG_LEVEL(SCSI_LOG_MLCOMPLETE_SHIFT,
1011 SCSI_LOG_MLCOMPLETE_BITS);
1012
1013 /*
1014 * if logging is enabled the failure will be printed
1015 * in scsi_log_completion(), so avoid duplicate messages
1016 */
1017 if (!level && __ratelimit(&_rs)) {
1018 scsi_print_result(cmd, NULL, FAILED);
1019 if (driver_byte(result) & DRIVER_SENSE)
1020 scsi_print_sense(cmd);
1021 scsi_print_command(cmd);
1022 }
James Bottomley3173d8c2005-09-04 11:32:05 -05001023 }
Christoph Hellwigf6d47e72014-02-16 06:16:13 -08001024 if (!scsi_end_request(req, error, blk_rq_err_bytes(req), 0))
1025 return;
Christoph Hellwigbc85dc52014-05-01 16:51:03 +02001026 /*FALLTHRU*/
Alan Sternb60af5b2008-11-03 15:56:47 -05001027 case ACTION_REPREP:
Christoph Hellwigbc85dc52014-05-01 16:51:03 +02001028 requeue:
Alan Sternb60af5b2008-11-03 15:56:47 -05001029 /* Unprep the request and put it back at the head of the queue.
1030 * A new command will be prepared and issued.
1031 */
Christoph Hellwigd2852032014-01-17 12:06:53 +01001032 if (q->mq_ops) {
Christoph Hellwige8064022016-10-20 15:12:13 +02001033 cmd->request->rq_flags &= ~RQF_DONTPREP;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001034 scsi_mq_uninit_cmd(cmd);
1035 scsi_mq_requeue_cmd(cmd);
1036 } else {
1037 scsi_release_buffers(cmd);
1038 scsi_requeue_command(q, cmd);
1039 }
Alan Sternb60af5b2008-11-03 15:56:47 -05001040 break;
1041 case ACTION_RETRY:
1042 /* Retry the same command immediately */
James Bottomley4f5299a2009-01-02 10:42:21 -06001043 __scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY, 0);
Alan Sternb60af5b2008-11-03 15:56:47 -05001044 break;
1045 case ACTION_DELAYED_RETRY:
1046 /* Retry the same command after a delay */
James Bottomley4f5299a2009-01-02 10:42:21 -06001047 __scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY, 0);
Alan Sternb60af5b2008-11-03 15:56:47 -05001048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 }
1050}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Christoph Hellwig3c356bd2014-09-05 18:20:23 -07001052static int scsi_init_sgtable(struct request *req, struct scsi_data_buffer *sdb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001054 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /*
Christoph Hellwig3b003152006-11-04 20:10:55 +01001057 * If sg table allocation fails, requeue request later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001059 if (unlikely(sg_alloc_table_chained(&sdb->table,
1060 blk_rq_nr_phys_segments(req), sdb->table.sgl)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return BLKPREP_DEFER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Next, walk the list, and fill in the addresses and sizes of
1065 * each segment.
1066 */
Boaz Harrosh30b0c372007-12-13 13:47:40 +02001067 count = blk_rq_map_sg(req->q, req, sdb->table.sgl);
1068 BUG_ON(count > sdb->table.nents);
1069 sdb->table.nents = count;
Christoph Hellwigfd102b12017-01-13 12:29:11 +01001070 sdb->length = blk_rq_payload_bytes(req);
Rusty Russell4a03d902007-11-19 11:28:48 +11001071 return BLKPREP_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072}
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001073
1074/*
1075 * Function: scsi_init_io()
1076 *
1077 * Purpose: SCSI I/O initialize function.
1078 *
1079 * Arguments: cmd - Command descriptor we wish to initialize
1080 *
1081 * Returns: 0 on success
1082 * BLKPREP_DEFER if the failure is retryable
1083 * BLKPREP_KILL if the failure is fatal
1084 */
Christoph Hellwig3c356bd2014-09-05 18:20:23 -07001085int scsi_init_io(struct scsi_cmnd *cmd)
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001086{
Christoph Hellwig5e012aa2014-04-15 12:24:55 +02001087 struct scsi_device *sdev = cmd->device;
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001088 struct request *rq = cmd->request;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001089 bool is_mq = (rq->mq_ctx != NULL);
Christoph Hellwig635d98b2014-06-28 11:51:01 +02001090 int error;
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001091
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001092 BUG_ON(!blk_rq_nr_phys_segments(rq));
Christoph Hellwig635d98b2014-06-28 11:51:01 +02001093
Christoph Hellwig3c356bd2014-09-05 18:20:23 -07001094 error = scsi_init_sgtable(rq, &cmd->sdb);
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001095 if (error)
1096 goto err_exit;
1097
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001098 if (blk_bidi_rq(rq)) {
Christoph Hellwigd2852032014-01-17 12:06:53 +01001099 if (!rq->q->mq_ops) {
1100 struct scsi_data_buffer *bidi_sdb =
1101 kmem_cache_zalloc(scsi_sdb_cache, GFP_ATOMIC);
1102 if (!bidi_sdb) {
1103 error = BLKPREP_DEFER;
1104 goto err_exit;
1105 }
1106
1107 rq->next_rq->special = bidi_sdb;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001108 }
1109
Christoph Hellwig3c356bd2014-09-05 18:20:23 -07001110 error = scsi_init_sgtable(rq->next_rq, rq->next_rq->special);
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001111 if (error)
1112 goto err_exit;
1113 }
1114
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001115 if (blk_integrity_rq(rq)) {
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001116 struct scsi_data_buffer *prot_sdb = cmd->prot_sdb;
1117 int ivecs, count;
1118
Ewan D. Milne91724c22015-01-15 10:02:12 -05001119 if (prot_sdb == NULL) {
1120 /*
1121 * This can happen if someone (e.g. multipath)
1122 * queues a command to a device on an adapter
1123 * that does not support DIX.
1124 */
1125 WARN_ON_ONCE(1);
1126 error = BLKPREP_KILL;
1127 goto err_exit;
1128 }
1129
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001130 ivecs = blk_rq_count_integrity_sg(rq->q, rq->bio);
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001131
Ming Lin001d63b2016-04-04 14:48:09 -07001132 if (sg_alloc_table_chained(&prot_sdb->table, ivecs,
Ming Lin22cc3d42016-04-04 14:48:08 -07001133 prot_sdb->table.sgl)) {
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001134 error = BLKPREP_DEFER;
1135 goto err_exit;
1136 }
1137
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001138 count = blk_rq_map_integrity_sg(rq->q, rq->bio,
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001139 prot_sdb->table.sgl);
1140 BUG_ON(unlikely(count > ivecs));
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001141 BUG_ON(unlikely(count > queue_max_integrity_segments(rq->q)));
Martin K. Petersen7027ad72008-07-17 17:08:48 -04001142
1143 cmd->prot_sdb = prot_sdb;
1144 cmd->prot_sdb->table.nents = count;
1145 }
1146
Christoph Hellwigd2852032014-01-17 12:06:53 +01001147 return BLKPREP_OK;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001148err_exit:
Christoph Hellwigd2852032014-01-17 12:06:53 +01001149 if (is_mq) {
1150 scsi_mq_free_sgtables(cmd);
1151 } else {
1152 scsi_release_buffers(cmd);
1153 cmd->request->special = NULL;
1154 scsi_put_command(cmd);
1155 put_device(&sdev->sdev_gendev);
1156 }
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02001157 return error;
1158}
Boaz Harroshbb52d822007-12-13 16:14:27 -08001159EXPORT_SYMBOL(scsi_init_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001161void scsi_init_command(struct scsi_device *dev, struct scsi_cmnd *cmd)
Christoph Hellwig3b003152006-11-04 20:10:55 +01001162{
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001163 void *buf = cmd->sense_buffer;
1164 void *prot = cmd->prot_sdb;
1165 unsigned long flags;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001166
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001167 /* zero out the cmd, except for the embedded scsi_request */
1168 memset((char *)cmd + sizeof(cmd->req), 0,
1169 sizeof(*cmd) - sizeof(cmd->req));
1170
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001171 cmd->device = dev;
1172 cmd->sense_buffer = buf;
1173 cmd->prot_sdb = prot;
1174 INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler);
1175 cmd->jiffies_at_alloc = jiffies;
Christoph Hellwig04796332014-02-20 14:20:55 -08001176
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001177 spin_lock_irqsave(&dev->list_lock, flags);
1178 list_add_tail(&cmd->list, &dev->cmd_list);
1179 spin_unlock_irqrestore(&dev->list_lock, flags);
Christoph Hellwig3b003152006-11-04 20:10:55 +01001180}
1181
Christoph Hellwig4f1e5762014-06-28 12:36:28 +02001182static int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req)
James Bottomley7b163182005-12-15 20:17:02 -06001183{
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001184 struct scsi_cmnd *cmd = req->special;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001185
1186 /*
1187 * BLOCK_PC requests may transfer data, in which case they must
1188 * a bio attached to them. Or they might contain a SCSI command
1189 * that does not transfer data, in which case they may optionally
1190 * submit a request without an attached bio.
1191 */
1192 if (req->bio) {
Christoph Hellwig3c356bd2014-09-05 18:20:23 -07001193 int ret = scsi_init_io(cmd);
Christoph Hellwig3b003152006-11-04 20:10:55 +01001194 if (unlikely(ret))
1195 return ret;
1196 } else {
Tejun Heob0790412009-05-07 22:24:42 +09001197 BUG_ON(blk_rq_bytes(req));
Christoph Hellwig3b003152006-11-04 20:10:55 +01001198
Boaz Harrosh30b0c372007-12-13 13:47:40 +02001199 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
Christoph Hellwig3b003152006-11-04 20:10:55 +01001200 }
James Bottomley7b163182005-12-15 20:17:02 -06001201
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001202 cmd->cmd_len = scsi_req(req)->cmd_len;
1203 cmd->cmnd = scsi_req(req)->cmd;
Tejun Heob0790412009-05-07 22:24:42 +09001204 cmd->transfersize = blk_rq_bytes(req);
James Bottomley7b163182005-12-15 20:17:02 -06001205 cmd->allowed = req->retries;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001206 return BLKPREP_OK;
1207}
1208
1209/*
Christoph Hellwig3868cf82014-06-28 11:58:42 +02001210 * Setup a REQ_TYPE_FS command. These are simple request from filesystems
1211 * that still need to be translated to SCSI CDBs from the ULD.
Christoph Hellwig3b003152006-11-04 20:10:55 +01001212 */
Christoph Hellwig3868cf82014-06-28 11:58:42 +02001213static int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
Christoph Hellwig3b003152006-11-04 20:10:55 +01001214{
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001215 struct scsi_cmnd *cmd = req->special;
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -07001216
Christoph Hellwigee14c672015-08-27 14:16:59 +02001217 if (unlikely(sdev->handler && sdev->handler->prep_fn)) {
1218 int ret = sdev->handler->prep_fn(sdev, req);
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -07001219 if (ret != BLKPREP_OK)
1220 return ret;
1221 }
1222
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001223 cmd->cmnd = scsi_req(req)->cmd = scsi_req(req)->__cmd;
Boaz Harrosh64a87b22008-04-30 11:19:47 +03001224 memset(cmd->cmnd, 0, BLK_MAX_CDB);
Christoph Hellwig3868cf82014-06-28 11:58:42 +02001225 return scsi_cmd_to_driver(cmd)->init_command(cmd);
James Bottomley7b163182005-12-15 20:17:02 -06001226}
James Bottomley7b163182005-12-15 20:17:02 -06001227
Christoph Hellwig6af7a4f2014-07-08 13:16:17 +02001228static int scsi_setup_cmnd(struct scsi_device *sdev, struct request *req)
1229{
1230 struct scsi_cmnd *cmd = req->special;
1231
1232 if (!blk_rq_bytes(req))
1233 cmd->sc_data_direction = DMA_NONE;
1234 else if (rq_data_dir(req) == WRITE)
1235 cmd->sc_data_direction = DMA_TO_DEVICE;
1236 else
1237 cmd->sc_data_direction = DMA_FROM_DEVICE;
1238
1239 switch (req->cmd_type) {
1240 case REQ_TYPE_FS:
1241 return scsi_setup_fs_cmnd(sdev, req);
1242 case REQ_TYPE_BLOCK_PC:
1243 return scsi_setup_blk_pc_cmnd(sdev, req);
1244 default:
1245 return BLKPREP_KILL;
1246 }
1247}
1248
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001249static int
1250scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Christoph Hellwig3b003152006-11-04 20:10:55 +01001252 int ret = BLKPREP_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
1254 /*
Christoph Hellwig3b003152006-11-04 20:10:55 +01001255 * If the device is not in running state we will reject some
1256 * or all commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
Christoph Hellwig3b003152006-11-04 20:10:55 +01001259 switch (sdev->sdev_state) {
1260 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05001261 case SDEV_TRANSPORT_OFFLINE:
Christoph Hellwig3b003152006-11-04 20:10:55 +01001262 /*
1263 * If the device is offline we refuse to process any
1264 * commands. The device must be brought online
1265 * before trying any recovery commands.
1266 */
1267 sdev_printk(KERN_ERR, sdev,
1268 "rejecting I/O to offline device\n");
1269 ret = BLKPREP_KILL;
1270 break;
1271 case SDEV_DEL:
1272 /*
1273 * If the device is fully deleted, we refuse to
1274 * process any commands as well.
1275 */
James Bottomley9ccfc752005-10-02 11:45:08 -05001276 sdev_printk(KERN_ERR, sdev,
1277 "rejecting I/O to dead device\n");
Christoph Hellwig3b003152006-11-04 20:10:55 +01001278 ret = BLKPREP_KILL;
1279 break;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001280 case SDEV_BLOCK:
James Bottomley6f4267e2008-08-22 16:53:31 -05001281 case SDEV_CREATED_BLOCK:
Bart Van Asschebba0bdd2015-03-04 10:31:47 +01001282 ret = BLKPREP_DEFER;
1283 break;
1284 case SDEV_QUIESCE:
Christoph Hellwig3b003152006-11-04 20:10:55 +01001285 /*
1286 * If the devices is blocked we defer normal commands.
1287 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001288 if (!(req->rq_flags & RQF_PREEMPT))
Christoph Hellwig3b003152006-11-04 20:10:55 +01001289 ret = BLKPREP_DEFER;
1290 break;
1291 default:
1292 /*
1293 * For any other not fully online state we only allow
1294 * special commands. In particular any user initiated
1295 * command is not allowed.
1296 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001297 if (!(req->rq_flags & RQF_PREEMPT))
Christoph Hellwig3b003152006-11-04 20:10:55 +01001298 ret = BLKPREP_KILL;
1299 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001302 return ret;
1303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001305static int
1306scsi_prep_return(struct request_queue *q, struct request *req, int ret)
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001307{
1308 struct scsi_device *sdev = q->queuedata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Christoph Hellwig3b003152006-11-04 20:10:55 +01001310 switch (ret) {
1311 case BLKPREP_KILL:
jiangyiwene1cd3912016-02-16 20:14:13 +08001312 case BLKPREP_INVALID:
Christoph Hellwig3b003152006-11-04 20:10:55 +01001313 req->errors = DID_NO_CONNECT << 16;
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001314 /* release the command and kill it */
1315 if (req->special) {
1316 struct scsi_cmnd *cmd = req->special;
1317 scsi_release_buffers(cmd);
1318 scsi_put_command(cmd);
Christoph Hellwig68c03d92014-04-15 12:24:56 +02001319 put_device(&sdev->sdev_gendev);
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001320 req->special = NULL;
1321 }
Christoph Hellwig3b003152006-11-04 20:10:55 +01001322 break;
1323 case BLKPREP_DEFER:
1324 /*
Tejun Heo9934c8c2009-05-08 11:54:16 +09001325 * If we defer, the blk_peek_request() returns NULL, but the
Jens Axboea488e742010-04-16 21:13:15 +02001326 * queue must be restarted, so we schedule a callback to happen
1327 * shortly.
Christoph Hellwig3b003152006-11-04 20:10:55 +01001328 */
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001329 if (atomic_read(&sdev->device_busy) == 0)
Jens Axboea488e742010-04-16 21:13:15 +02001330 blk_delay_queue(q, SCSI_QUEUE_DELAY);
Christoph Hellwig3b003152006-11-04 20:10:55 +01001331 break;
1332 default:
Christoph Hellwige8064022016-10-20 15:12:13 +02001333 req->rq_flags |= RQF_DONTPREP;
Christoph Hellwig3b003152006-11-04 20:10:55 +01001334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Christoph Hellwig3b003152006-11-04 20:10:55 +01001336 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001338
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001339static int scsi_prep_fn(struct request_queue *q, struct request *req)
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001340{
1341 struct scsi_device *sdev = q->queuedata;
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001342 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001343 int ret;
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001344
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001345 ret = scsi_prep_state_check(sdev, req);
1346 if (ret != BLKPREP_OK)
1347 goto out;
1348
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001349 if (!req->special) {
1350 /* Bail if we can't get a reference to the device */
1351 if (unlikely(!get_device(&sdev->sdev_gendev))) {
1352 ret = BLKPREP_DEFER;
1353 goto out;
1354 }
1355
1356 scsi_init_command(sdev, cmd);
1357 req->special = cmd;
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001358 }
1359
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001360 cmd->tag = req->tag;
1361 cmd->request = req;
Christoph Hellwige9c787e2017-01-02 21:55:26 +03001362 cmd->prot_op = SCSI_PROT_NORMAL;
1363
Christoph Hellwig6af7a4f2014-07-08 13:16:17 +02001364 ret = scsi_setup_cmnd(sdev, req);
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001365out:
James Bottomley7f9a6bc2007-08-04 10:06:25 -05001366 return scsi_prep_return(q, req, ret);
1367}
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001368
1369static void scsi_unprep_fn(struct request_queue *q, struct request *req)
1370{
Christoph Hellwigd2852032014-01-17 12:06:53 +01001371 scsi_uninit_cmd(req->special);
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02001372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374/*
1375 * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1376 * return 0.
1377 *
1378 * Called with the queue_lock held.
1379 */
1380static inline int scsi_dev_queue_ready(struct request_queue *q,
1381 struct scsi_device *sdev)
1382{
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001383 unsigned int busy;
1384
1385 busy = atomic_inc_return(&sdev->device_busy) - 1;
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001386 if (atomic_read(&sdev->device_blocked)) {
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001387 if (busy)
1388 goto out_dec;
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /*
1391 * unblock after device_blocked iterates to zero
1392 */
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001393 if (atomic_dec_return(&sdev->device_blocked) > 0) {
Christoph Hellwigd2852032014-01-17 12:06:53 +01001394 /*
1395 * For the MQ case we take care of this in the caller.
1396 */
1397 if (!q->mq_ops)
1398 blk_delay_queue(q, SCSI_QUEUE_DELAY);
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001399 goto out_dec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001401 SCSI_LOG_MLQUEUE(3, sdev_printk(KERN_INFO, sdev,
1402 "unblocking device at zero depth\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001404
1405 if (busy >= sdev->queue_depth)
1406 goto out_dec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
1408 return 1;
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001409out_dec:
1410 atomic_dec(&sdev->device_busy);
1411 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412}
1413
Mike Christief0c0a372008-08-17 15:24:38 -05001414/*
1415 * scsi_target_queue_ready: checks if there we can send commands to target
1416 * @sdev: scsi device on starget to check.
Mike Christief0c0a372008-08-17 15:24:38 -05001417 */
1418static inline int scsi_target_queue_ready(struct Scsi_Host *shost,
1419 struct scsi_device *sdev)
1420{
1421 struct scsi_target *starget = scsi_target(sdev);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001422 unsigned int busy;
Mike Christief0c0a372008-08-17 15:24:38 -05001423
1424 if (starget->single_lun) {
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001425 spin_lock_irq(shost->host_lock);
Mike Christief0c0a372008-08-17 15:24:38 -05001426 if (starget->starget_sdev_user &&
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001427 starget->starget_sdev_user != sdev) {
1428 spin_unlock_irq(shost->host_lock);
1429 return 0;
1430 }
Mike Christief0c0a372008-08-17 15:24:38 -05001431 starget->starget_sdev_user = sdev;
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001432 spin_unlock_irq(shost->host_lock);
Mike Christief0c0a372008-08-17 15:24:38 -05001433 }
1434
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001435 if (starget->can_queue <= 0)
1436 return 1;
1437
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001438 busy = atomic_inc_return(&starget->target_busy) - 1;
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001439 if (atomic_read(&starget->target_blocked) > 0) {
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001440 if (busy)
1441 goto starved;
1442
Mike Christief0c0a372008-08-17 15:24:38 -05001443 /*
1444 * unblock after target_blocked iterates to zero
1445 */
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001446 if (atomic_dec_return(&starget->target_blocked) > 0)
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001447 goto out_dec;
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001448
1449 SCSI_LOG_MLQUEUE(3, starget_printk(KERN_INFO, starget,
1450 "unblocking target at zero depth\n"));
Mike Christief0c0a372008-08-17 15:24:38 -05001451 }
1452
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001453 if (busy >= starget->can_queue)
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001454 goto starved;
Mike Christief0c0a372008-08-17 15:24:38 -05001455
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001456 return 1;
1457
1458starved:
1459 spin_lock_irq(shost->host_lock);
1460 list_move_tail(&sdev->starved_entry, &shost->starved_list);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001461 spin_unlock_irq(shost->host_lock);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001462out_dec:
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001463 if (starget->can_queue > 0)
1464 atomic_dec(&starget->target_busy);
Christoph Hellwig7ae65c02014-01-22 14:49:41 +01001465 return 0;
Mike Christief0c0a372008-08-17 15:24:38 -05001466}
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468/*
1469 * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1470 * return 0. We must end up running the queue again whenever 0 is
1471 * returned, else IO can hang.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 */
1473static inline int scsi_host_queue_ready(struct request_queue *q,
1474 struct Scsi_Host *shost,
1475 struct scsi_device *sdev)
1476{
Christoph Hellwig74665012014-01-22 15:29:29 +01001477 unsigned int busy;
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001478
James Bottomley939647e2005-09-18 15:05:20 -05001479 if (scsi_host_in_recovery(shost))
Christoph Hellwig74665012014-01-22 15:29:29 +01001480 return 0;
1481
1482 busy = atomic_inc_return(&shost->host_busy) - 1;
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001483 if (atomic_read(&shost->host_blocked) > 0) {
Christoph Hellwig74665012014-01-22 15:29:29 +01001484 if (busy)
1485 goto starved;
1486
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 /*
1488 * unblock after host_blocked iterates to zero
1489 */
Christoph Hellwigcd9070c2014-01-23 12:07:41 +01001490 if (atomic_dec_return(&shost->host_blocked) > 0)
Christoph Hellwig74665012014-01-22 15:29:29 +01001491 goto out_dec;
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001492
1493 SCSI_LOG_MLQUEUE(3,
1494 shost_printk(KERN_INFO, shost,
1495 "unblocking host at zero depth\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
Christoph Hellwig74665012014-01-22 15:29:29 +01001497
1498 if (shost->can_queue > 0 && busy >= shost->can_queue)
1499 goto starved;
1500 if (shost->host_self_blocked)
1501 goto starved;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 /* We're OK to process the command, so we can't be starved */
Christoph Hellwig74665012014-01-22 15:29:29 +01001504 if (!list_empty(&sdev->starved_entry)) {
1505 spin_lock_irq(shost->host_lock);
1506 if (!list_empty(&sdev->starved_entry))
1507 list_del_init(&sdev->starved_entry);
1508 spin_unlock_irq(shost->host_lock);
1509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Christoph Hellwig74665012014-01-22 15:29:29 +01001511 return 1;
1512
1513starved:
1514 spin_lock_irq(shost->host_lock);
1515 if (list_empty(&sdev->starved_entry))
1516 list_add_tail(&sdev->starved_entry, &shost->starved_list);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001517 spin_unlock_irq(shost->host_lock);
Christoph Hellwig74665012014-01-22 15:29:29 +01001518out_dec:
1519 atomic_dec(&shost->host_busy);
1520 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
1522
1523/*
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001524 * Busy state exporting function for request stacking drivers.
1525 *
1526 * For efficiency, no lock is taken to check the busy state of
1527 * shost/starget/sdev, since the returned value is not guaranteed and
1528 * may be changed after request stacking drivers call the function,
1529 * regardless of taking lock or not.
1530 *
Bart Van Assche67bd9412012-06-29 15:33:22 +00001531 * When scsi can't dispatch I/Os anymore and needs to kill I/Os scsi
1532 * needs to return 'not busy'. Otherwise, request stacking drivers
1533 * may hold requests forever.
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001534 */
1535static int scsi_lld_busy(struct request_queue *q)
1536{
1537 struct scsi_device *sdev = q->queuedata;
1538 struct Scsi_Host *shost;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001539
Bart Van Assche3f3299d2012-11-28 13:42:38 +01001540 if (blk_queue_dying(q))
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001541 return 0;
1542
1543 shost = sdev->host;
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001544
Jun'ichi Nomurab7e94a12012-05-22 18:57:17 +09001545 /*
1546 * Ignore host/starget busy state.
1547 * Since block layer does not have a concept of fairness across
1548 * multiple queues, congestion of host/starget needs to be handled
1549 * in SCSI layer.
1550 */
1551 if (scsi_host_in_recovery(shost) || scsi_device_is_busy(sdev))
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04001552 return 1;
1553
1554 return 0;
1555}
1556
1557/*
James Bottomleye91442b2005-09-09 10:44:16 -05001558 * Kill a request for a dead device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 */
Jens Axboe165125e2007-07-24 09:28:11 +02001560static void scsi_kill_request(struct request *req, struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561{
James Bottomleye91442b2005-09-09 10:44:16 -05001562 struct scsi_cmnd *cmd = req->special;
Jiri Slaby03b14702009-09-23 16:15:35 +02001563 struct scsi_device *sdev;
1564 struct scsi_target *starget;
1565 struct Scsi_Host *shost;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Tejun Heo9934c8c2009-05-08 11:54:16 +09001567 blk_start_request(req);
James Bottomley788ce432005-09-09 13:40:23 -05001568
Hannes Reinecke74571812011-11-09 08:39:24 +01001569 scmd_printk(KERN_INFO, cmd, "killing request\n");
1570
Jiri Slaby03b14702009-09-23 16:15:35 +02001571 sdev = cmd->device;
1572 starget = scsi_target(sdev);
1573 shost = sdev->host;
James Bottomleye91442b2005-09-09 10:44:16 -05001574 scsi_init_cmd_errh(cmd);
1575 cmd->result = DID_NO_CONNECT << 16;
1576 atomic_inc(&cmd->device->iorequest_cnt);
Tejun Heoe36e0c82006-04-11 17:27:53 +09001577
1578 /*
1579 * SCSI request completion path will do scsi_device_unbusy(),
1580 * bump busy counts. To bump the counters, we need to dance
1581 * with the locks as normal issue path does.
1582 */
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001583 atomic_inc(&sdev->device_busy);
Christoph Hellwig74665012014-01-22 15:29:29 +01001584 atomic_inc(&shost->host_busy);
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001585 if (starget->can_queue > 0)
1586 atomic_inc(&starget->target_busy);
Tejun Heoe36e0c82006-04-11 17:27:53 +09001587
Jens Axboe242f9dc2008-09-14 05:55:09 -07001588 blk_complete_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Jens Axboe1aea6432006-01-09 16:03:03 +01001591static void scsi_softirq_done(struct request *rq)
1592{
Jens Axboe242f9dc2008-09-14 05:55:09 -07001593 struct scsi_cmnd *cmd = rq->special;
1594 unsigned long wait_for = (cmd->allowed + 1) * rq->timeout;
Jens Axboe1aea6432006-01-09 16:03:03 +01001595 int disposition;
1596
1597 INIT_LIST_HEAD(&cmd->eh_entry);
1598
Jens Axboe242f9dc2008-09-14 05:55:09 -07001599 atomic_inc(&cmd->device->iodone_cnt);
1600 if (cmd->result)
1601 atomic_inc(&cmd->device->ioerr_cnt);
1602
Jens Axboe1aea6432006-01-09 16:03:03 +01001603 disposition = scsi_decide_disposition(cmd);
1604 if (disposition != SUCCESS &&
1605 time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
1606 sdev_printk(KERN_ERR, cmd->device,
1607 "timing out command, waited %lus\n",
1608 wait_for/HZ);
1609 disposition = SUCCESS;
1610 }
Hannes Reinecke91921e02014-06-25 16:39:59 +02001611
Jens Axboe1aea6432006-01-09 16:03:03 +01001612 scsi_log_completion(cmd, disposition);
1613
1614 switch (disposition) {
1615 case SUCCESS:
1616 scsi_finish_command(cmd);
1617 break;
1618 case NEEDS_RETRY:
Christoph Hellwig596f4822007-01-02 12:56:00 +01001619 scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY);
Jens Axboe1aea6432006-01-09 16:03:03 +01001620 break;
1621 case ADD_TO_MLQUEUE:
1622 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
1623 break;
1624 default:
1625 if (!scsi_eh_scmd_add(cmd, 0))
1626 scsi_finish_command(cmd);
1627 }
1628}
1629
Christoph Hellwig3b5382c2014-05-06 12:25:40 +02001630/**
Christoph Hellwig82042a22014-09-05 18:23:07 -07001631 * scsi_dispatch_command - Dispatch a command to the low-level driver.
1632 * @cmd: command block we are dispatching.
1633 *
1634 * Return: nonzero return request was rejected and device's queue needs to be
1635 * plugged.
1636 */
1637static int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
1638{
1639 struct Scsi_Host *host = cmd->device->host;
1640 int rtn = 0;
1641
1642 atomic_inc(&cmd->device->iorequest_cnt);
1643
1644 /* check if the device is still usable */
1645 if (unlikely(cmd->device->sdev_state == SDEV_DEL)) {
1646 /* in SDEV_DEL we error all commands. DID_NO_CONNECT
1647 * returns an immediate error upwards, and signals
1648 * that the device is no longer present */
1649 cmd->result = DID_NO_CONNECT << 16;
1650 goto done;
1651 }
1652
1653 /* Check to see if the scsi lld made this device blocked. */
1654 if (unlikely(scsi_device_blocked(cmd->device))) {
1655 /*
1656 * in blocked state, the command is just put back on
1657 * the device queue. The suspend state has already
1658 * blocked the queue so future requests should not
1659 * occur until the device transitions out of the
1660 * suspend state.
1661 */
1662 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1663 "queuecommand : device blocked\n"));
1664 return SCSI_MLQUEUE_DEVICE_BUSY;
1665 }
1666
1667 /* Store the LUN value in cmnd, if needed. */
1668 if (cmd->device->lun_in_cdb)
1669 cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) |
1670 (cmd->device->lun << 5 & 0xe0);
1671
1672 scsi_log_send(cmd);
1673
1674 /*
1675 * Before we queue this command, check if the command
1676 * length exceeds what the host adapter can handle.
1677 */
1678 if (cmd->cmd_len > cmd->device->host->max_cmd_len) {
1679 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1680 "queuecommand : command too long. "
1681 "cdb_size=%d host->max_cmd_len=%d\n",
1682 cmd->cmd_len, cmd->device->host->max_cmd_len));
1683 cmd->result = (DID_ABORT << 16);
1684 goto done;
1685 }
1686
1687 if (unlikely(host->shost_state == SHOST_DEL)) {
1688 cmd->result = (DID_NO_CONNECT << 16);
1689 goto done;
1690
1691 }
1692
1693 trace_scsi_dispatch_cmd_start(cmd);
1694 rtn = host->hostt->queuecommand(host, cmd);
1695 if (rtn) {
1696 trace_scsi_dispatch_cmd_error(cmd, rtn);
1697 if (rtn != SCSI_MLQUEUE_DEVICE_BUSY &&
1698 rtn != SCSI_MLQUEUE_TARGET_BUSY)
1699 rtn = SCSI_MLQUEUE_HOST_BUSY;
1700
1701 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1702 "queuecommand : request rejected\n"));
1703 }
1704
1705 return rtn;
1706 done:
1707 cmd->scsi_done(cmd);
1708 return 0;
1709}
1710
1711/**
Christoph Hellwig3b5382c2014-05-06 12:25:40 +02001712 * scsi_done - Invoke completion on finished SCSI command.
1713 * @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
1714 * ownership back to SCSI Core -- i.e. the LLDD has finished with it.
1715 *
1716 * Description: This function is the mid-level's (SCSI Core) interrupt routine,
1717 * which regains ownership of the SCSI command (de facto) from a LLDD, and
1718 * calls blk_complete_request() for further processing.
1719 *
1720 * This function is interrupt context safe.
1721 */
1722static void scsi_done(struct scsi_cmnd *cmd)
1723{
1724 trace_scsi_dispatch_cmd_done(cmd);
1725 blk_complete_request(cmd->request);
1726}
1727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728/*
1729 * Function: scsi_request_fn()
1730 *
1731 * Purpose: Main strategy routine for SCSI.
1732 *
1733 * Arguments: q - Pointer to actual queue.
1734 *
1735 * Returns: Nothing
1736 *
1737 * Lock status: IO request lock assumed to be held when called.
1738 */
1739static void scsi_request_fn(struct request_queue *q)
Bart Van Assche613be1f2014-02-20 14:20:56 -08001740 __releases(q->queue_lock)
1741 __acquires(q->queue_lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
1743 struct scsi_device *sdev = q->queuedata;
1744 struct Scsi_Host *shost;
1745 struct scsi_cmnd *cmd;
1746 struct request *req;
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /*
1749 * To start with, we keep looping until the queue is empty, or until
1750 * the host is no longer able to accept any more requests.
1751 */
1752 shost = sdev->host;
Jens Axboea488e742010-04-16 21:13:15 +02001753 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 int rtn;
1755 /*
1756 * get next queueable request. We do this early to make sure
Hannes Reinecke91921e02014-06-25 16:39:59 +02001757 * that the request is fully prepared even if we cannot
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 * accept it.
1759 */
Tejun Heo9934c8c2009-05-08 11:54:16 +09001760 req = blk_peek_request(q);
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001761 if (!req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 break;
1763
1764 if (unlikely(!scsi_device_online(sdev))) {
James Bottomley9ccfc752005-10-02 11:45:08 -05001765 sdev_printk(KERN_ERR, sdev,
1766 "rejecting I/O to offline device\n");
James Bottomleye91442b2005-09-09 10:44:16 -05001767 scsi_kill_request(req, q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 continue;
1769 }
1770
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001771 if (!scsi_dev_queue_ready(q, sdev))
1772 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 /*
1775 * Remove the request from the request list.
1776 */
1777 if (!(blk_queue_tagged(q) && !blk_queue_start_tag(q, req)))
Tejun Heo9934c8c2009-05-08 11:54:16 +09001778 blk_start_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001780 spin_unlock_irq(q->queue_lock);
James Bottomleye91442b2005-09-09 10:44:16 -05001781 cmd = req->special;
1782 if (unlikely(cmd == NULL)) {
1783 printk(KERN_CRIT "impossible request in %s.\n"
1784 "please mail a stack trace to "
Jens Axboe4aff5e22006-08-10 08:44:47 +02001785 "linux-scsi@vger.kernel.org\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001786 __func__);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001787 blk_dump_rq_flags(req, "foo");
James Bottomleye91442b2005-09-09 10:44:16 -05001788 BUG();
1789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790
Mike Christieecefe8a2008-07-11 19:50:35 -05001791 /*
1792 * We hit this when the driver is using a host wide
1793 * tag map. For device level tag maps the queue_depth check
1794 * in the device ready fn would prevent us from trying
1795 * to allocate a tag. Since the map is a shared host resource
1796 * we add the dev to the starved list so it eventually gets
1797 * a run when a tag is freed.
1798 */
Christoph Hellwige8064022016-10-20 15:12:13 +02001799 if (blk_queue_tagged(q) && !(req->rq_flags & RQF_QUEUED)) {
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001800 spin_lock_irq(shost->host_lock);
Mike Christieecefe8a2008-07-11 19:50:35 -05001801 if (list_empty(&sdev->starved_entry))
1802 list_add_tail(&sdev->starved_entry,
1803 &shost->starved_list);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001804 spin_unlock_irq(shost->host_lock);
Mike Christieecefe8a2008-07-11 19:50:35 -05001805 goto not_ready;
1806 }
1807
Mike Christief0c0a372008-08-17 15:24:38 -05001808 if (!scsi_target_queue_ready(shost, sdev))
1809 goto not_ready;
1810
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 if (!scsi_host_queue_ready(q, shost, sdev))
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001812 goto host_not_ready;
Christoph Hellwig125c99b2014-11-03 12:47:47 +01001813
1814 if (sdev->simple_tags)
1815 cmd->flags |= SCMD_TAGGED;
1816 else
1817 cmd->flags &= ~SCMD_TAGGED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 /*
1820 * Finally, initialize any error handling parameters, and set up
1821 * the timers for timeouts.
1822 */
1823 scsi_init_cmd_errh(cmd);
1824
1825 /*
1826 * Dispatch the command to the low-level driver.
1827 */
Christoph Hellwig3b5382c2014-05-06 12:25:40 +02001828 cmd->scsi_done = scsi_done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 rtn = scsi_dispatch_cmd(cmd);
Christoph Hellwigd0d3bbf2014-01-22 18:39:04 +01001830 if (rtn) {
1831 scsi_queue_insert(cmd, rtn);
1832 spin_lock_irq(q->queue_lock);
Jens Axboea488e742010-04-16 21:13:15 +02001833 goto out_delay;
Christoph Hellwigd0d3bbf2014-01-22 18:39:04 +01001834 }
1835 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 }
1837
Bart Van Assche613be1f2014-02-20 14:20:56 -08001838 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001840 host_not_ready:
Christoph Hellwig2ccbb002014-03-26 10:35:00 +01001841 if (scsi_target(sdev)->can_queue > 0)
1842 atomic_dec(&scsi_target(sdev)->target_busy);
Christoph Hellwigcf68d332014-01-22 14:36:32 +01001843 not_ready:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 /*
1845 * lock q, handle tag, requeue req, and decrement device_busy. We
1846 * must return with queue_lock held.
1847 *
1848 * Decrementing device_busy without checking it is OK, as all such
1849 * cases (host limits or settings) should run the queue at some
1850 * later time.
1851 */
1852 spin_lock_irq(q->queue_lock);
1853 blk_requeue_request(q, req);
Christoph Hellwig71e75c92014-04-11 19:07:01 +02001854 atomic_dec(&sdev->device_busy);
Jens Axboea488e742010-04-16 21:13:15 +02001855out_delay:
Guenter Roeck480cadc2014-08-10 05:54:25 -07001856 if (!atomic_read(&sdev->device_busy) && !scsi_device_blocked(sdev))
Jens Axboea488e742010-04-16 21:13:15 +02001857 blk_delay_queue(q, SCSI_QUEUE_DELAY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Christoph Hellwigd2852032014-01-17 12:06:53 +01001860static inline int prep_to_mq(int ret)
1861{
1862 switch (ret) {
1863 case BLKPREP_OK:
Omar Sandoval2868f132016-11-15 11:11:59 -08001864 return BLK_MQ_RQ_QUEUE_OK;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001865 case BLKPREP_DEFER:
1866 return BLK_MQ_RQ_QUEUE_BUSY;
1867 default:
1868 return BLK_MQ_RQ_QUEUE_ERROR;
1869 }
1870}
1871
1872static int scsi_mq_prep_fn(struct request *req)
1873{
1874 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1875 struct scsi_device *sdev = req->q->queuedata;
1876 struct Scsi_Host *shost = sdev->host;
1877 unsigned char *sense_buf = cmd->sense_buffer;
1878 struct scatterlist *sg;
1879
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01001880 /* zero out the cmd, except for the embedded scsi_request */
1881 memset((char *)cmd + sizeof(cmd->req), 0,
1882 sizeof(*cmd) - sizeof(cmd->req));
Christoph Hellwigd2852032014-01-17 12:06:53 +01001883
1884 req->special = cmd;
1885
1886 cmd->request = req;
1887 cmd->device = sdev;
1888 cmd->sense_buffer = sense_buf;
1889
1890 cmd->tag = req->tag;
1891
Christoph Hellwigd2852032014-01-17 12:06:53 +01001892 cmd->prot_op = SCSI_PROT_NORMAL;
1893
1894 INIT_LIST_HEAD(&cmd->list);
1895 INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler);
1896 cmd->jiffies_at_alloc = jiffies;
1897
Kashyap.Desai@avagotech.com64bdcbc2014-08-20 19:24:33 +05301898 if (shost->use_cmd_list) {
1899 spin_lock_irq(&sdev->list_lock);
1900 list_add_tail(&cmd->list, &sdev->cmd_list);
1901 spin_unlock_irq(&sdev->list_lock);
1902 }
Christoph Hellwigd2852032014-01-17 12:06:53 +01001903
1904 sg = (void *)cmd + sizeof(struct scsi_cmnd) + shost->hostt->cmd_size;
1905 cmd->sdb.table.sgl = sg;
1906
1907 if (scsi_host_get_prot(shost)) {
1908 cmd->prot_sdb = (void *)sg +
Tony Battersby120bb3e2014-12-08 17:20:52 -05001909 min_t(unsigned int,
Ming Lin65e86172016-04-04 14:48:10 -07001910 shost->sg_tablesize, SG_CHUNK_SIZE) *
Tony Battersby120bb3e2014-12-08 17:20:52 -05001911 sizeof(struct scatterlist);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001912 memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer));
1913
1914 cmd->prot_sdb->table.sgl =
1915 (struct scatterlist *)(cmd->prot_sdb + 1);
1916 }
1917
1918 if (blk_bidi_rq(req)) {
1919 struct request *next_rq = req->next_rq;
1920 struct scsi_data_buffer *bidi_sdb = blk_mq_rq_to_pdu(next_rq);
1921
1922 memset(bidi_sdb, 0, sizeof(struct scsi_data_buffer));
1923 bidi_sdb->table.sgl =
1924 (struct scatterlist *)(bidi_sdb + 1);
1925
1926 next_rq->special = bidi_sdb;
1927 }
1928
Christoph Hellwigfe052522014-09-22 15:59:31 +02001929 blk_mq_start_request(req);
1930
Christoph Hellwigd2852032014-01-17 12:06:53 +01001931 return scsi_setup_cmnd(sdev, req);
1932}
1933
1934static void scsi_mq_done(struct scsi_cmnd *cmd)
1935{
1936 trace_scsi_dispatch_cmd_done(cmd);
Christoph Hellwigf4829a92015-09-27 21:01:50 +02001937 blk_mq_complete_request(cmd->request, cmd->request->errors);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001938}
1939
Jens Axboe74c45052014-10-29 11:14:52 -06001940static int scsi_queue_rq(struct blk_mq_hw_ctx *hctx,
1941 const struct blk_mq_queue_data *bd)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001942{
Jens Axboe74c45052014-10-29 11:14:52 -06001943 struct request *req = bd->rq;
Christoph Hellwigd2852032014-01-17 12:06:53 +01001944 struct request_queue *q = req->q;
1945 struct scsi_device *sdev = q->queuedata;
1946 struct Scsi_Host *shost = sdev->host;
1947 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1948 int ret;
1949 int reason;
1950
1951 ret = prep_to_mq(scsi_prep_state_check(sdev, req));
Omar Sandoval2868f132016-11-15 11:11:59 -08001952 if (ret != BLK_MQ_RQ_QUEUE_OK)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001953 goto out;
1954
1955 ret = BLK_MQ_RQ_QUEUE_BUSY;
1956 if (!get_device(&sdev->sdev_gendev))
1957 goto out;
1958
1959 if (!scsi_dev_queue_ready(q, sdev))
1960 goto out_put_device;
1961 if (!scsi_target_queue_ready(shost, sdev))
1962 goto out_dec_device_busy;
1963 if (!scsi_host_queue_ready(q, shost, sdev))
1964 goto out_dec_target_busy;
1965
Christoph Hellwige8064022016-10-20 15:12:13 +02001966 if (!(req->rq_flags & RQF_DONTPREP)) {
Christoph Hellwigd2852032014-01-17 12:06:53 +01001967 ret = prep_to_mq(scsi_mq_prep_fn(req));
Omar Sandoval2868f132016-11-15 11:11:59 -08001968 if (ret != BLK_MQ_RQ_QUEUE_OK)
Christoph Hellwigd2852032014-01-17 12:06:53 +01001969 goto out_dec_host_busy;
Christoph Hellwige8064022016-10-20 15:12:13 +02001970 req->rq_flags |= RQF_DONTPREP;
Christoph Hellwigfe052522014-09-22 15:59:31 +02001971 } else {
1972 blk_mq_start_request(req);
Christoph Hellwigd2852032014-01-17 12:06:53 +01001973 }
1974
Christoph Hellwig125c99b2014-11-03 12:47:47 +01001975 if (sdev->simple_tags)
1976 cmd->flags |= SCMD_TAGGED;
Christoph Hellwigb1dd2aa2014-10-19 17:13:58 +02001977 else
Christoph Hellwig125c99b2014-11-03 12:47:47 +01001978 cmd->flags &= ~SCMD_TAGGED;
Christoph Hellwigb1dd2aa2014-10-19 17:13:58 +02001979
Christoph Hellwigd2852032014-01-17 12:06:53 +01001980 scsi_init_cmd_errh(cmd);
1981 cmd->scsi_done = scsi_mq_done;
1982
1983 reason = scsi_dispatch_cmd(cmd);
1984 if (reason) {
1985 scsi_set_blocked(cmd, reason);
1986 ret = BLK_MQ_RQ_QUEUE_BUSY;
1987 goto out_dec_host_busy;
1988 }
1989
1990 return BLK_MQ_RQ_QUEUE_OK;
1991
1992out_dec_host_busy:
1993 atomic_dec(&shost->host_busy);
1994out_dec_target_busy:
1995 if (scsi_target(sdev)->can_queue > 0)
1996 atomic_dec(&scsi_target(sdev)->target_busy);
1997out_dec_device_busy:
1998 atomic_dec(&sdev->device_busy);
1999out_put_device:
2000 put_device(&sdev->sdev_gendev);
2001out:
2002 switch (ret) {
2003 case BLK_MQ_RQ_QUEUE_BUSY:
Christoph Hellwigd2852032014-01-17 12:06:53 +01002004 if (atomic_read(&sdev->device_busy) == 0 &&
2005 !scsi_device_blocked(sdev))
2006 blk_mq_delay_queue(hctx, SCSI_QUEUE_DELAY);
2007 break;
2008 case BLK_MQ_RQ_QUEUE_ERROR:
2009 /*
2010 * Make sure to release all allocated ressources when
2011 * we hit an error, as we will never see this command
2012 * again.
2013 */
Christoph Hellwige8064022016-10-20 15:12:13 +02002014 if (req->rq_flags & RQF_DONTPREP)
Christoph Hellwigd2852032014-01-17 12:06:53 +01002015 scsi_mq_uninit_cmd(cmd);
2016 break;
2017 default:
2018 break;
2019 }
2020 return ret;
2021}
2022
Christoph Hellwig0152fb62014-09-13 16:40:13 -07002023static enum blk_eh_timer_return scsi_timeout(struct request *req,
2024 bool reserved)
2025{
2026 if (reserved)
2027 return BLK_EH_RESET_TIMER;
2028 return scsi_times_out(req);
2029}
2030
Christoph Hellwigd2852032014-01-17 12:06:53 +01002031static int scsi_init_request(void *data, struct request *rq,
2032 unsigned int hctx_idx, unsigned int request_idx,
2033 unsigned int numa_node)
2034{
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03002035 struct Scsi_Host *shost = data;
Christoph Hellwigd2852032014-01-17 12:06:53 +01002036 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
2037
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03002038 cmd->sense_buffer =
2039 scsi_alloc_sense_buffer(shost, GFP_KERNEL, numa_node);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002040 if (!cmd->sense_buffer)
2041 return -ENOMEM;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01002042 cmd->req.sense = cmd->sense_buffer;
Christoph Hellwigd2852032014-01-17 12:06:53 +01002043 return 0;
2044}
2045
2046static void scsi_exit_request(void *data, struct request *rq,
2047 unsigned int hctx_idx, unsigned int request_idx)
2048{
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03002049 struct Scsi_Host *shost = data;
Christoph Hellwigd2852032014-01-17 12:06:53 +01002050 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
2051
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03002052 scsi_free_sense_buffer(shost, cmd->sense_buffer);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002053}
2054
Christoph Hellwig2d9c5c22016-11-01 08:12:48 -06002055static int scsi_map_queues(struct blk_mq_tag_set *set)
2056{
2057 struct Scsi_Host *shost = container_of(set, struct Scsi_Host, tag_set);
2058
2059 if (shost->hostt->map_queues)
2060 return shost->hostt->map_queues(shost);
2061 return blk_mq_map_queues(set);
2062}
2063
Christoph Hellwigf1bea552014-04-15 12:26:54 +02002064static u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065{
2066 struct device *host_dev;
2067 u64 bounce_limit = 0xffffffff;
2068
2069 if (shost->unchecked_isa_dma)
2070 return BLK_BOUNCE_ISA;
2071 /*
2072 * Platforms with virtual-DMA translation
2073 * hardware have no practical limit.
2074 */
2075 if (!PCI_DMA_BUS_IS_PHYS)
2076 return BLK_BOUNCE_ANY;
2077
2078 host_dev = scsi_get_device(shost);
2079 if (host_dev && host_dev->dma_mask)
Russell Kinge83b3662014-02-11 17:11:04 +00002080 bounce_limit = (u64)dma_max_pfn(host_dev) << PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082 return bounce_limit;
2083}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Christoph Hellwigd48777a62017-01-02 21:52:10 +03002085void __scsi_init_queue(struct Scsi_Host *shost, struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
Lin Ming6f381fa2012-04-12 13:50:38 +08002087 struct device *dev = shost->dma_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Jens Axboea8474ce2007-08-07 09:02:51 +02002089 /*
2090 * this limit is imposed by hardware restrictions
2091 */
Martin K. Petersen8a783622010-02-26 00:20:39 -05002092 blk_queue_max_segments(q, min_t(unsigned short, shost->sg_tablesize,
Ming Lin65e86172016-04-04 14:48:10 -07002093 SG_MAX_SEGMENTS));
Jens Axboea8474ce2007-08-07 09:02:51 +02002094
Martin K. Petersen13f05c82010-09-10 20:50:10 +02002095 if (scsi_host_prot_dma(shost)) {
2096 shost->sg_prot_tablesize =
2097 min_not_zero(shost->sg_prot_tablesize,
2098 (unsigned short)SCSI_MAX_PROT_SG_SEGMENTS);
2099 BUG_ON(shost->sg_prot_tablesize < shost->sg_tablesize);
2100 blk_queue_max_integrity_segments(q, shost->sg_prot_tablesize);
2101 }
2102
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05002103 blk_queue_max_hw_sectors(q, shost->max_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));
2105 blk_queue_segment_boundary(q, shost->dma_boundary);
FUJITA Tomonori99c84db2008-02-04 22:28:17 -08002106 dma_set_seg_boundary(dev, shost->dma_boundary);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
FUJITA Tomonori860ac562008-02-04 22:28:05 -08002108 blk_queue_max_segment_size(q, dma_get_max_seg_size(dev));
2109
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (!shost->use_clustering)
Martin K. Petersene692cb62010-12-01 19:41:49 +01002111 q->limits.cluster = 0;
James Bottomley465ff312008-01-01 10:00:10 -06002112
2113 /*
2114 * set a reasonable default alignment on word boundaries: the
2115 * host and device may alter it using
2116 * blk_queue_update_dma_alignment() later.
2117 */
2118 blk_queue_dma_alignment(q, 0x03);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002119}
Christoph Hellwigd48777a62017-01-02 21:52:10 +03002120EXPORT_SYMBOL_GPL(__scsi_init_queue);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002121
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002122static int scsi_init_rq(struct request_queue *q, struct request *rq, gfp_t gfp)
2123{
2124 struct Scsi_Host *shost = q->rq_alloc_data;
2125 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
2126
2127 memset(cmd, 0, sizeof(*cmd));
2128
2129 cmd->sense_buffer = scsi_alloc_sense_buffer(shost, gfp, NUMA_NO_NODE);
2130 if (!cmd->sense_buffer)
2131 goto fail;
Christoph Hellwig82ed4db2017-01-27 09:46:29 +01002132 cmd->req.sense = cmd->sense_buffer;
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002133
2134 if (scsi_host_get_prot(shost) >= SHOST_DIX_TYPE0_PROTECTION) {
2135 cmd->prot_sdb = kmem_cache_zalloc(scsi_sdb_cache, gfp);
2136 if (!cmd->prot_sdb)
2137 goto fail_free_sense;
2138 }
2139
2140 return 0;
2141
2142fail_free_sense:
2143 scsi_free_sense_buffer(shost, cmd->sense_buffer);
2144fail:
2145 return -ENOMEM;
2146}
2147
2148static void scsi_exit_rq(struct request_queue *q, struct request *rq)
2149{
2150 struct Scsi_Host *shost = q->rq_alloc_data;
2151 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
2152
2153 if (cmd->prot_sdb)
2154 kmem_cache_free(scsi_sdb_cache, cmd->prot_sdb);
2155 scsi_free_sense_buffer(shost, cmd->sense_buffer);
2156}
2157
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002158struct request_queue *scsi_alloc_queue(struct scsi_device *sdev)
2159{
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002160 struct Scsi_Host *shost = sdev->host;
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002161 struct request_queue *q;
2162
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002163 q = blk_alloc_queue_node(GFP_KERNEL, NUMA_NO_NODE);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002164 if (!q)
2165 return NULL;
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002166 q->cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size;
2167 q->rq_alloc_data = shost;
2168 q->request_fn = scsi_request_fn;
2169 q->init_rq_fn = scsi_init_rq;
2170 q->exit_rq_fn = scsi_exit_rq;
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002171
Christoph Hellwige9c787e2017-01-02 21:55:26 +03002172 if (blk_init_allocated_queue(q) < 0) {
2173 blk_cleanup_queue(q);
2174 return NULL;
2175 }
2176
2177 __scsi_init_queue(shost, q);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002178 blk_queue_prep_rq(q, scsi_prep_fn);
Christoph Hellwiga1b73fc2014-05-01 16:51:04 +02002179 blk_queue_unprep_rq(q, scsi_unprep_fn);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002180 blk_queue_softirq_done(q, scsi_softirq_done);
Jens Axboe242f9dc2008-09-14 05:55:09 -07002181 blk_queue_rq_timed_out(q, scsi_times_out);
Kiyoshi Ueda6c5121b2008-10-04 14:11:35 -04002182 blk_queue_lld_busy(q, scsi_lld_busy);
FUJITA Tomonorib58d9152006-11-16 19:24:10 +09002183 return q;
2184}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Christoph Hellwigd2852032014-01-17 12:06:53 +01002186static struct blk_mq_ops scsi_mq_ops = {
Christoph Hellwigd2852032014-01-17 12:06:53 +01002187 .queue_rq = scsi_queue_rq,
2188 .complete = scsi_softirq_done,
Christoph Hellwig0152fb62014-09-13 16:40:13 -07002189 .timeout = scsi_timeout,
Christoph Hellwigd2852032014-01-17 12:06:53 +01002190 .init_request = scsi_init_request,
2191 .exit_request = scsi_exit_request,
Christoph Hellwig2d9c5c22016-11-01 08:12:48 -06002192 .map_queues = scsi_map_queues,
Christoph Hellwigd2852032014-01-17 12:06:53 +01002193};
2194
2195struct request_queue *scsi_mq_alloc_queue(struct scsi_device *sdev)
2196{
2197 sdev->request_queue = blk_mq_init_queue(&sdev->host->tag_set);
2198 if (IS_ERR(sdev->request_queue))
2199 return NULL;
2200
2201 sdev->request_queue->queuedata = sdev;
2202 __scsi_init_queue(sdev->host, sdev->request_queue);
2203 return sdev->request_queue;
2204}
2205
2206int scsi_mq_setup_tags(struct Scsi_Host *shost)
2207{
2208 unsigned int cmd_size, sgl_size, tbl_size;
2209
2210 tbl_size = shost->sg_tablesize;
Ming Lin65e86172016-04-04 14:48:10 -07002211 if (tbl_size > SG_CHUNK_SIZE)
2212 tbl_size = SG_CHUNK_SIZE;
Christoph Hellwigd2852032014-01-17 12:06:53 +01002213 sgl_size = tbl_size * sizeof(struct scatterlist);
2214 cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size;
2215 if (scsi_host_get_prot(shost))
2216 cmd_size += sizeof(struct scsi_data_buffer) + sgl_size;
2217
2218 memset(&shost->tag_set, 0, sizeof(shost->tag_set));
2219 shost->tag_set.ops = &scsi_mq_ops;
Bart Van Asscheefec4b92014-10-30 14:45:36 +01002220 shost->tag_set.nr_hw_queues = shost->nr_hw_queues ? : 1;
Christoph Hellwigd2852032014-01-17 12:06:53 +01002221 shost->tag_set.queue_depth = shost->can_queue;
2222 shost->tag_set.cmd_size = cmd_size;
2223 shost->tag_set.numa_node = NUMA_NO_NODE;
2224 shost->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
Shaohua Li24391c02015-01-23 14:18:00 -07002225 shost->tag_set.flags |=
2226 BLK_ALLOC_POLICY_TO_MQ_FLAG(shost->hostt->tag_alloc_policy);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002227 shost->tag_set.driver_data = shost;
2228
2229 return blk_mq_alloc_tag_set(&shost->tag_set);
2230}
2231
2232void scsi_mq_destroy_tags(struct Scsi_Host *shost)
2233{
2234 blk_mq_free_tag_set(&shost->tag_set);
2235}
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237/*
2238 * Function: scsi_block_requests()
2239 *
2240 * Purpose: Utility function used by low-level drivers to prevent further
2241 * commands from being queued to the device.
2242 *
2243 * Arguments: shost - Host in question
2244 *
2245 * Returns: Nothing
2246 *
2247 * Lock status: No locks are assumed held.
2248 *
2249 * Notes: There is no timer nor any other means by which the requests
2250 * get unblocked other than the low-level driver calling
2251 * scsi_unblock_requests().
2252 */
2253void scsi_block_requests(struct Scsi_Host *shost)
2254{
2255 shost->host_self_blocked = 1;
2256}
2257EXPORT_SYMBOL(scsi_block_requests);
2258
2259/*
2260 * Function: scsi_unblock_requests()
2261 *
2262 * Purpose: Utility function used by low-level drivers to allow further
2263 * commands from being queued to the device.
2264 *
2265 * Arguments: shost - Host in question
2266 *
2267 * Returns: Nothing
2268 *
2269 * Lock status: No locks are assumed held.
2270 *
2271 * Notes: There is no timer nor any other means by which the requests
2272 * get unblocked other than the low-level driver calling
2273 * scsi_unblock_requests().
2274 *
2275 * This is done as an API function so that changes to the
2276 * internals of the scsi mid-layer won't require wholesale
2277 * changes to drivers that use this feature.
2278 */
2279void scsi_unblock_requests(struct Scsi_Host *shost)
2280{
2281 shost->host_self_blocked = 0;
2282 scsi_run_host_queues(shost);
2283}
2284EXPORT_SYMBOL(scsi_unblock_requests);
2285
2286int __init scsi_init_queue(void)
2287{
Martin K. Petersen6362abd2008-06-05 23:30:03 -04002288 scsi_sdb_cache = kmem_cache_create("scsi_data_buffer",
2289 sizeof(struct scsi_data_buffer),
2290 0, 0, NULL);
2291 if (!scsi_sdb_cache) {
2292 printk(KERN_ERR "SCSI: can't init scsi sdb cache\n");
FUJITA Tomonorif0787272008-12-14 01:23:45 +09002293 return -ENOMEM;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +02002294 }
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 return 0;
2297}
2298
2299void scsi_exit_queue(void)
2300{
Christoph Hellwig0a6ac4e2017-01-03 08:28:41 +03002301 kmem_cache_destroy(scsi_sense_cache);
2302 kmem_cache_destroy(scsi_sense_isadma_cache);
Martin K. Petersen6362abd2008-06-05 23:30:03 -04002303 kmem_cache_destroy(scsi_sdb_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
James Bottomley5baba832006-03-18 14:10:35 -06002305
2306/**
2307 * scsi_mode_select - issue a mode select
2308 * @sdev: SCSI device to be queried
2309 * @pf: Page format bit (1 == standard, 0 == vendor specific)
2310 * @sp: Save page bit (0 == don't save, 1 == save)
2311 * @modepage: mode page being requested
2312 * @buffer: request buffer (may not be smaller than eight bytes)
2313 * @len: length of request buffer.
2314 * @timeout: command timeout
2315 * @retries: number of retries before failing
2316 * @data: returns a structure abstracting the mode header data
Rob Landleyeb448202007-11-03 13:30:39 -05002317 * @sshdr: place to put sense data (or NULL if no sense to be collected).
James Bottomley5baba832006-03-18 14:10:35 -06002318 * must be SCSI_SENSE_BUFFERSIZE big.
2319 *
2320 * Returns zero if successful; negative error number or scsi
2321 * status on error
2322 *
2323 */
2324int
2325scsi_mode_select(struct scsi_device *sdev, int pf, int sp, int modepage,
2326 unsigned char *buffer, int len, int timeout, int retries,
2327 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2328{
2329 unsigned char cmd[10];
2330 unsigned char *real_buffer;
2331 int ret;
2332
2333 memset(cmd, 0, sizeof(cmd));
2334 cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0);
2335
2336 if (sdev->use_10_for_ms) {
2337 if (len > 65535)
2338 return -EINVAL;
2339 real_buffer = kmalloc(8 + len, GFP_KERNEL);
2340 if (!real_buffer)
2341 return -ENOMEM;
2342 memcpy(real_buffer + 8, buffer, len);
2343 len += 8;
2344 real_buffer[0] = 0;
2345 real_buffer[1] = 0;
2346 real_buffer[2] = data->medium_type;
2347 real_buffer[3] = data->device_specific;
2348 real_buffer[4] = data->longlba ? 0x01 : 0;
2349 real_buffer[5] = 0;
2350 real_buffer[6] = data->block_descriptor_length >> 8;
2351 real_buffer[7] = data->block_descriptor_length;
2352
2353 cmd[0] = MODE_SELECT_10;
2354 cmd[7] = len >> 8;
2355 cmd[8] = len;
2356 } else {
2357 if (len > 255 || data->block_descriptor_length > 255 ||
2358 data->longlba)
2359 return -EINVAL;
2360
2361 real_buffer = kmalloc(4 + len, GFP_KERNEL);
2362 if (!real_buffer)
2363 return -ENOMEM;
2364 memcpy(real_buffer + 4, buffer, len);
2365 len += 4;
2366 real_buffer[0] = 0;
2367 real_buffer[1] = data->medium_type;
2368 real_buffer[2] = data->device_specific;
2369 real_buffer[3] = data->block_descriptor_length;
2370
2371
2372 cmd[0] = MODE_SELECT;
2373 cmd[4] = len;
2374 }
2375
2376 ret = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, real_buffer, len,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002377 sshdr, timeout, retries, NULL);
James Bottomley5baba832006-03-18 14:10:35 -06002378 kfree(real_buffer);
2379 return ret;
2380}
2381EXPORT_SYMBOL_GPL(scsi_mode_select);
2382
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383/**
Rob Landleyeb448202007-11-03 13:30:39 -05002384 * scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary.
James Bottomley1cf72692005-08-28 11:27:01 -05002385 * @sdev: SCSI device to be queried
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 * @dbd: set if mode sense will allow block descriptors to be returned
2387 * @modepage: mode page being requested
2388 * @buffer: request buffer (may not be smaller than eight bytes)
2389 * @len: length of request buffer.
2390 * @timeout: command timeout
2391 * @retries: number of retries before failing
2392 * @data: returns a structure abstracting the mode header data
Rob Landleyeb448202007-11-03 13:30:39 -05002393 * @sshdr: place to put sense data (or NULL if no sense to be collected).
James Bottomley1cf72692005-08-28 11:27:01 -05002394 * must be SCSI_SENSE_BUFFERSIZE big.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 *
2396 * Returns zero if unsuccessful, or the header offset (either 4
2397 * or 8 depending on whether a six or ten byte command was
2398 * issued) if successful.
Rob Landleyeb448202007-11-03 13:30:39 -05002399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400int
James Bottomley1cf72692005-08-28 11:27:01 -05002401scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 unsigned char *buffer, int len, int timeout, int retries,
James Bottomley5baba832006-03-18 14:10:35 -06002403 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2404{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 unsigned char cmd[12];
2406 int use_10_for_ms;
2407 int header_length;
Hannes Reinecke0ae80ba2015-06-12 16:12:48 +02002408 int result, retry_count = retries;
James Bottomleyea73a9f2005-08-28 11:33:52 -05002409 struct scsi_sense_hdr my_sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410
2411 memset(data, 0, sizeof(*data));
2412 memset(&cmd[0], 0, 12);
2413 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */
2414 cmd[2] = modepage;
2415
James Bottomleyea73a9f2005-08-28 11:33:52 -05002416 /* caller might not be interested in sense, but we need it */
2417 if (!sshdr)
2418 sshdr = &my_sshdr;
2419
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 retry:
James Bottomley1cf72692005-08-28 11:27:01 -05002421 use_10_for_ms = sdev->use_10_for_ms;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (use_10_for_ms) {
2424 if (len < 8)
2425 len = 8;
2426
2427 cmd[0] = MODE_SENSE_10;
2428 cmd[8] = len;
2429 header_length = 8;
2430 } else {
2431 if (len < 4)
2432 len = 4;
2433
2434 cmd[0] = MODE_SENSE;
2435 cmd[4] = len;
2436 header_length = 4;
2437 }
2438
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 memset(buffer, 0, len);
2440
James Bottomley1cf72692005-08-28 11:27:01 -05002441 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002442 sshdr, timeout, retries, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444 /* This code looks awful: what it's doing is making sure an
2445 * ILLEGAL REQUEST sense return identifies the actual command
2446 * byte as the problem. MODE_SENSE commands can return
2447 * ILLEGAL REQUEST if the code page isn't supported */
2448
James Bottomley1cf72692005-08-28 11:27:01 -05002449 if (use_10_for_ms && !scsi_status_is_good(result) &&
2450 (driver_byte(result) & DRIVER_SENSE)) {
James Bottomleyea73a9f2005-08-28 11:33:52 -05002451 if (scsi_sense_valid(sshdr)) {
2452 if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
2453 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /*
2455 * Invalid command operation code
2456 */
James Bottomley1cf72692005-08-28 11:27:01 -05002457 sdev->use_10_for_ms = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 goto retry;
2459 }
2460 }
2461 }
2462
James Bottomley1cf72692005-08-28 11:27:01 -05002463 if(scsi_status_is_good(result)) {
Al Viro6d73c852006-02-23 02:03:16 +01002464 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b &&
2465 (modepage == 6 || modepage == 8))) {
2466 /* Initio breakage? */
2467 header_length = 0;
2468 data->length = 13;
2469 data->medium_type = 0;
2470 data->device_specific = 0;
2471 data->longlba = 0;
2472 data->block_descriptor_length = 0;
2473 } else if(use_10_for_ms) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 data->length = buffer[0]*256 + buffer[1] + 2;
2475 data->medium_type = buffer[2];
2476 data->device_specific = buffer[3];
2477 data->longlba = buffer[4] & 0x01;
2478 data->block_descriptor_length = buffer[6]*256
2479 + buffer[7];
2480 } else {
2481 data->length = buffer[0] + 1;
2482 data->medium_type = buffer[1];
2483 data->device_specific = buffer[2];
2484 data->block_descriptor_length = buffer[3];
2485 }
Al Viro6d73c852006-02-23 02:03:16 +01002486 data->header_length = header_length;
Hannes Reinecke0ae80ba2015-06-12 16:12:48 +02002487 } else if ((status_byte(result) == CHECK_CONDITION) &&
2488 scsi_sense_valid(sshdr) &&
2489 sshdr->sense_key == UNIT_ATTENTION && retry_count) {
2490 retry_count--;
2491 goto retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493
James Bottomley1cf72692005-08-28 11:27:01 -05002494 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
2496EXPORT_SYMBOL(scsi_mode_sense);
2497
James Bottomley001aac22007-12-02 19:10:40 +02002498/**
2499 * scsi_test_unit_ready - test if unit is ready
2500 * @sdev: scsi device to change the state of.
2501 * @timeout: command timeout
2502 * @retries: number of retries before failing
2503 * @sshdr_external: Optional pointer to struct scsi_sense_hdr for
2504 * returning sense. Make sure that this is cleared before passing
2505 * in.
2506 *
2507 * Returns zero if unsuccessful or an error if TUR failed. For
Tejun Heo9f8a2c22010-12-08 20:57:40 +01002508 * removable media, UNIT_ATTENTION sets ->changed flag.
James Bottomley001aac22007-12-02 19:10:40 +02002509 **/
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510int
James Bottomley001aac22007-12-02 19:10:40 +02002511scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries,
2512 struct scsi_sense_hdr *sshdr_external)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 char cmd[] = {
2515 TEST_UNIT_READY, 0, 0, 0, 0, 0,
2516 };
James Bottomley001aac22007-12-02 19:10:40 +02002517 struct scsi_sense_hdr *sshdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 int result;
James Bottomley001aac22007-12-02 19:10:40 +02002519
2520 if (!sshdr_external)
2521 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
2522 else
2523 sshdr = sshdr_external;
2524
2525 /* try to eat the UNIT_ATTENTION if there are enough retries */
2526 do {
2527 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr,
FUJITA Tomonorif4f4e472008-12-04 14:24:39 +09002528 timeout, retries, NULL);
James Bottomley32c356d2008-08-20 00:58:13 +02002529 if (sdev->removable && scsi_sense_valid(sshdr) &&
2530 sshdr->sense_key == UNIT_ATTENTION)
2531 sdev->changed = 1;
2532 } while (scsi_sense_valid(sshdr) &&
2533 sshdr->sense_key == UNIT_ATTENTION && --retries);
James Bottomley001aac22007-12-02 19:10:40 +02002534
James Bottomley001aac22007-12-02 19:10:40 +02002535 if (!sshdr_external)
2536 kfree(sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 return result;
2538}
2539EXPORT_SYMBOL(scsi_test_unit_ready);
2540
2541/**
Rob Landleyeb448202007-11-03 13:30:39 -05002542 * scsi_device_set_state - Take the given device through the device state model.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 * @sdev: scsi device to change the state of.
2544 * @state: state to change to.
2545 *
2546 * Returns zero if unsuccessful or an error if the requested
2547 * transition is illegal.
Rob Landleyeb448202007-11-03 13:30:39 -05002548 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549int
2550scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
2551{
2552 enum scsi_device_state oldstate = sdev->sdev_state;
2553
2554 if (state == oldstate)
2555 return 0;
2556
2557 switch (state) {
2558 case SDEV_CREATED:
James Bottomley6f4267e2008-08-22 16:53:31 -05002559 switch (oldstate) {
2560 case SDEV_CREATED_BLOCK:
2561 break;
2562 default:
2563 goto illegal;
2564 }
2565 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
2567 case SDEV_RUNNING:
2568 switch (oldstate) {
2569 case SDEV_CREATED:
2570 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002571 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 case SDEV_QUIESCE:
2573 case SDEV_BLOCK:
2574 break;
2575 default:
2576 goto illegal;
2577 }
2578 break;
2579
2580 case SDEV_QUIESCE:
2581 switch (oldstate) {
2582 case SDEV_RUNNING:
2583 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002584 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 break;
2586 default:
2587 goto illegal;
2588 }
2589 break;
2590
2591 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002592 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 switch (oldstate) {
2594 case SDEV_CREATED:
2595 case SDEV_RUNNING:
2596 case SDEV_QUIESCE:
2597 case SDEV_BLOCK:
2598 break;
2599 default:
2600 goto illegal;
2601 }
2602 break;
2603
2604 case SDEV_BLOCK:
2605 switch (oldstate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 case SDEV_RUNNING:
James Bottomley6f4267e2008-08-22 16:53:31 -05002607 case SDEV_CREATED_BLOCK:
2608 break;
2609 default:
2610 goto illegal;
2611 }
2612 break;
2613
2614 case SDEV_CREATED_BLOCK:
2615 switch (oldstate) {
2616 case SDEV_CREATED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 break;
2618 default:
2619 goto illegal;
2620 }
2621 break;
2622
2623 case SDEV_CANCEL:
2624 switch (oldstate) {
2625 case SDEV_CREATED:
2626 case SDEV_RUNNING:
Alan Stern9ea72902006-06-23 14:25:34 -04002627 case SDEV_QUIESCE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002629 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 case SDEV_BLOCK:
2631 break;
2632 default:
2633 goto illegal;
2634 }
2635 break;
2636
2637 case SDEV_DEL:
2638 switch (oldstate) {
Brian King309bd272006-06-27 11:10:43 -05002639 case SDEV_CREATED:
2640 case SDEV_RUNNING:
2641 case SDEV_OFFLINE:
Mike Christie1b8d2622012-05-17 23:56:56 -05002642 case SDEV_TRANSPORT_OFFLINE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 case SDEV_CANCEL:
Bart Van Assche0516c082013-07-02 15:06:33 +02002644 case SDEV_CREATED_BLOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 break;
2646 default:
2647 goto illegal;
2648 }
2649 break;
2650
2651 }
2652 sdev->sdev_state = state;
2653 return 0;
2654
2655 illegal:
Hannes Reinecke91921e02014-06-25 16:39:59 +02002656 SCSI_LOG_ERROR_RECOVERY(1,
James Bottomley9ccfc752005-10-02 11:45:08 -05002657 sdev_printk(KERN_ERR, sdev,
Hannes Reinecke91921e02014-06-25 16:39:59 +02002658 "Illegal state transition %s->%s",
James Bottomley9ccfc752005-10-02 11:45:08 -05002659 scsi_device_state_name(oldstate),
2660 scsi_device_state_name(state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 );
2662 return -EINVAL;
2663}
2664EXPORT_SYMBOL(scsi_device_set_state);
2665
2666/**
Jeff Garzika341cd02007-10-29 17:15:22 -04002667 * sdev_evt_emit - emit a single SCSI device uevent
2668 * @sdev: associated SCSI device
2669 * @evt: event to emit
2670 *
2671 * Send a single uevent (scsi_event) to the associated scsi_device.
2672 */
2673static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
2674{
2675 int idx = 0;
2676 char *envp[3];
2677
2678 switch (evt->evt_type) {
2679 case SDEV_EVT_MEDIA_CHANGE:
2680 envp[idx++] = "SDEV_MEDIA_CHANGE=1";
2681 break;
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002682 case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
Hannes Reinecked3d32892016-02-19 09:17:16 +01002683 scsi_rescan_device(&sdev->sdev_gendev);
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002684 envp[idx++] = "SDEV_UA=INQUIRY_DATA_HAS_CHANGED";
2685 break;
2686 case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2687 envp[idx++] = "SDEV_UA=CAPACITY_DATA_HAS_CHANGED";
2688 break;
2689 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2690 envp[idx++] = "SDEV_UA=THIN_PROVISIONING_SOFT_THRESHOLD_REACHED";
2691 break;
2692 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2693 envp[idx++] = "SDEV_UA=MODE_PARAMETERS_CHANGED";
2694 break;
2695 case SDEV_EVT_LUN_CHANGE_REPORTED:
2696 envp[idx++] = "SDEV_UA=REPORTED_LUNS_DATA_HAS_CHANGED";
2697 break;
Hannes Reinecke14c3e672015-07-06 13:41:53 +02002698 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
2699 envp[idx++] = "SDEV_UA=ASYMMETRIC_ACCESS_STATE_CHANGED";
2700 break;
Jeff Garzika341cd02007-10-29 17:15:22 -04002701 default:
2702 /* do nothing */
2703 break;
2704 }
2705
2706 envp[idx++] = NULL;
2707
2708 kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp);
2709}
2710
2711/**
2712 * sdev_evt_thread - send a uevent for each scsi event
2713 * @work: work struct for scsi_device
2714 *
2715 * Dispatch queued events to their associated scsi_device kobjects
2716 * as uevents.
2717 */
2718void scsi_evt_thread(struct work_struct *work)
2719{
2720 struct scsi_device *sdev;
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002721 enum scsi_device_event evt_type;
Jeff Garzika341cd02007-10-29 17:15:22 -04002722 LIST_HEAD(event_list);
2723
2724 sdev = container_of(work, struct scsi_device, event_work);
2725
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002726 for (evt_type = SDEV_EVT_FIRST; evt_type <= SDEV_EVT_LAST; evt_type++)
2727 if (test_and_clear_bit(evt_type, sdev->pending_events))
2728 sdev_evt_send_simple(sdev, evt_type, GFP_KERNEL);
2729
Jeff Garzika341cd02007-10-29 17:15:22 -04002730 while (1) {
2731 struct scsi_event *evt;
2732 struct list_head *this, *tmp;
2733 unsigned long flags;
2734
2735 spin_lock_irqsave(&sdev->list_lock, flags);
2736 list_splice_init(&sdev->event_list, &event_list);
2737 spin_unlock_irqrestore(&sdev->list_lock, flags);
2738
2739 if (list_empty(&event_list))
2740 break;
2741
2742 list_for_each_safe(this, tmp, &event_list) {
2743 evt = list_entry(this, struct scsi_event, node);
2744 list_del(&evt->node);
2745 scsi_evt_emit(sdev, evt);
2746 kfree(evt);
2747 }
2748 }
2749}
2750
2751/**
2752 * sdev_evt_send - send asserted event to uevent thread
2753 * @sdev: scsi_device event occurred on
2754 * @evt: event to send
2755 *
2756 * Assert scsi device event asynchronously.
2757 */
2758void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
2759{
2760 unsigned long flags;
2761
Kay Sievers4d1566e2008-03-19 13:04:47 +01002762#if 0
2763 /* FIXME: currently this check eliminates all media change events
2764 * for polled devices. Need to update to discriminate between AN
2765 * and polled events */
Jeff Garzika341cd02007-10-29 17:15:22 -04002766 if (!test_bit(evt->evt_type, sdev->supported_events)) {
2767 kfree(evt);
2768 return;
2769 }
Kay Sievers4d1566e2008-03-19 13:04:47 +01002770#endif
Jeff Garzika341cd02007-10-29 17:15:22 -04002771
2772 spin_lock_irqsave(&sdev->list_lock, flags);
2773 list_add_tail(&evt->node, &sdev->event_list);
2774 schedule_work(&sdev->event_work);
2775 spin_unlock_irqrestore(&sdev->list_lock, flags);
2776}
2777EXPORT_SYMBOL_GPL(sdev_evt_send);
2778
2779/**
2780 * sdev_evt_alloc - allocate a new scsi event
2781 * @evt_type: type of event to allocate
2782 * @gfpflags: GFP flags for allocation
2783 *
2784 * Allocates and returns a new scsi_event.
2785 */
2786struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
2787 gfp_t gfpflags)
2788{
2789 struct scsi_event *evt = kzalloc(sizeof(struct scsi_event), gfpflags);
2790 if (!evt)
2791 return NULL;
2792
2793 evt->evt_type = evt_type;
2794 INIT_LIST_HEAD(&evt->node);
2795
2796 /* evt_type-specific initialization, if any */
2797 switch (evt_type) {
2798 case SDEV_EVT_MEDIA_CHANGE:
Ewan D. Milne279afdf2013-08-08 15:07:48 -04002799 case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
2800 case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2801 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2802 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2803 case SDEV_EVT_LUN_CHANGE_REPORTED:
Hannes Reinecke14c3e672015-07-06 13:41:53 +02002804 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
Jeff Garzika341cd02007-10-29 17:15:22 -04002805 default:
2806 /* do nothing */
2807 break;
2808 }
2809
2810 return evt;
2811}
2812EXPORT_SYMBOL_GPL(sdev_evt_alloc);
2813
2814/**
2815 * sdev_evt_send_simple - send asserted event to uevent thread
2816 * @sdev: scsi_device event occurred on
2817 * @evt_type: type of event to send
2818 * @gfpflags: GFP flags for allocation
2819 *
2820 * Assert scsi device event asynchronously, given an event type.
2821 */
2822void sdev_evt_send_simple(struct scsi_device *sdev,
2823 enum scsi_device_event evt_type, gfp_t gfpflags)
2824{
2825 struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
2826 if (!evt) {
2827 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n",
2828 evt_type);
2829 return;
2830 }
2831
2832 sdev_evt_send(sdev, evt);
2833}
2834EXPORT_SYMBOL_GPL(sdev_evt_send_simple);
2835
2836/**
Bart Van Assche669f0442016-11-22 16:17:13 -08002837 * scsi_request_fn_active() - number of kernel threads inside scsi_request_fn()
2838 * @sdev: SCSI device to count the number of scsi_request_fn() callers for.
2839 */
2840static int scsi_request_fn_active(struct scsi_device *sdev)
2841{
2842 struct request_queue *q = sdev->request_queue;
2843 int request_fn_active;
2844
2845 WARN_ON_ONCE(sdev->host->use_blk_mq);
2846
2847 spin_lock_irq(q->queue_lock);
2848 request_fn_active = q->request_fn_active;
2849 spin_unlock_irq(q->queue_lock);
2850
2851 return request_fn_active;
2852}
2853
2854/**
2855 * scsi_wait_for_queuecommand() - wait for ongoing queuecommand() calls
2856 * @sdev: SCSI device pointer.
2857 *
2858 * Wait until the ongoing shost->hostt->queuecommand() calls that are
2859 * invoked from scsi_request_fn() have finished.
2860 */
2861static void scsi_wait_for_queuecommand(struct scsi_device *sdev)
2862{
2863 WARN_ON_ONCE(sdev->host->use_blk_mq);
2864
2865 while (scsi_request_fn_active(sdev))
2866 msleep(20);
2867}
2868
2869/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 * scsi_device_quiesce - Block user issued commands.
2871 * @sdev: scsi device to quiesce.
2872 *
2873 * This works by trying to transition to the SDEV_QUIESCE state
2874 * (which must be a legal transition). When the device is in this
2875 * state, only special requests will be accepted, all others will
2876 * be deferred. Since special requests may also be requeued requests,
2877 * a successful return doesn't guarantee the device will be
2878 * totally quiescent.
2879 *
2880 * Must be called with user context, may sleep.
2881 *
2882 * Returns zero if unsuccessful or an error if not.
Rob Landleyeb448202007-11-03 13:30:39 -05002883 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884int
2885scsi_device_quiesce(struct scsi_device *sdev)
2886{
2887 int err = scsi_device_set_state(sdev, SDEV_QUIESCE);
2888 if (err)
2889 return err;
2890
2891 scsi_run_queue(sdev->request_queue);
Christoph Hellwig71e75c92014-04-11 19:07:01 +02002892 while (atomic_read(&sdev->device_busy)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 msleep_interruptible(200);
2894 scsi_run_queue(sdev->request_queue);
2895 }
2896 return 0;
2897}
2898EXPORT_SYMBOL(scsi_device_quiesce);
2899
2900/**
2901 * scsi_device_resume - Restart user issued commands to a quiesced device.
2902 * @sdev: scsi device to resume.
2903 *
2904 * Moves the device from quiesced back to running and restarts the
2905 * queues.
2906 *
2907 * Must be called with user context, may sleep.
Rob Landleyeb448202007-11-03 13:30:39 -05002908 */
Dan Williamsa7a20d12012-03-22 17:05:11 -07002909void scsi_device_resume(struct scsi_device *sdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Dan Williamsa7a20d12012-03-22 17:05:11 -07002911 /* check if the device state was mutated prior to resume, and if
2912 * so assume the state is being managed elsewhere (for example
2913 * device deleted during suspend)
2914 */
2915 if (sdev->sdev_state != SDEV_QUIESCE ||
2916 scsi_device_set_state(sdev, SDEV_RUNNING))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return;
2918 scsi_run_queue(sdev->request_queue);
2919}
2920EXPORT_SYMBOL(scsi_device_resume);
2921
2922static void
2923device_quiesce_fn(struct scsi_device *sdev, void *data)
2924{
2925 scsi_device_quiesce(sdev);
2926}
2927
2928void
2929scsi_target_quiesce(struct scsi_target *starget)
2930{
2931 starget_for_each_device(starget, NULL, device_quiesce_fn);
2932}
2933EXPORT_SYMBOL(scsi_target_quiesce);
2934
2935static void
2936device_resume_fn(struct scsi_device *sdev, void *data)
2937{
2938 scsi_device_resume(sdev);
2939}
2940
2941void
2942scsi_target_resume(struct scsi_target *starget)
2943{
2944 starget_for_each_device(starget, NULL, device_resume_fn);
2945}
2946EXPORT_SYMBOL(scsi_target_resume);
2947
2948/**
Rob Landleyeb448202007-11-03 13:30:39 -05002949 * scsi_internal_device_block - internal function to put a device temporarily into the SDEV_BLOCK state
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 * @sdev: device to block
2951 *
2952 * Block request made by scsi lld's to temporarily stop all
Bart Van Assche669f0442016-11-22 16:17:13 -08002953 * scsi commands on the specified device. May sleep.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 *
2955 * Returns zero if successful or error if not
2956 *
2957 * Notes:
2958 * This routine transitions the device to the SDEV_BLOCK state
2959 * (which must be a legal transition). When the device is in this
2960 * state, all commands are deferred until the scsi lld reenables
2961 * the device with scsi_device_unblock or device_block_tmo fires.
Bart Van Assche669f0442016-11-22 16:17:13 -08002962 *
2963 * To do: avoid that scsi_send_eh_cmnd() calls queuecommand() after
2964 * scsi_internal_device_block() has blocked a SCSI device and also
2965 * remove the rport mutex lock and unlock calls from srp_queuecommand().
Rob Landleyeb448202007-11-03 13:30:39 -05002966 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967int
2968scsi_internal_device_block(struct scsi_device *sdev)
2969{
Jens Axboe165125e2007-07-24 09:28:11 +02002970 struct request_queue *q = sdev->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 unsigned long flags;
2972 int err = 0;
2973
2974 err = scsi_device_set_state(sdev, SDEV_BLOCK);
James Bottomley6f4267e2008-08-22 16:53:31 -05002975 if (err) {
2976 err = scsi_device_set_state(sdev, SDEV_CREATED_BLOCK);
2977
2978 if (err)
2979 return err;
2980 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
2982 /*
2983 * The device has transitioned to SDEV_BLOCK. Stop the
2984 * block layer from calling the midlayer with this device's
2985 * request queue.
2986 */
Christoph Hellwigd2852032014-01-17 12:06:53 +01002987 if (q->mq_ops) {
Bart Van Assche7dbbf0f2016-11-22 16:17:50 -08002988 blk_mq_quiesce_queue(q);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002989 } else {
2990 spin_lock_irqsave(q->queue_lock, flags);
2991 blk_stop_queue(q);
2992 spin_unlock_irqrestore(q->queue_lock, flags);
Bart Van Assche669f0442016-11-22 16:17:13 -08002993 scsi_wait_for_queuecommand(sdev);
Christoph Hellwigd2852032014-01-17 12:06:53 +01002994 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 return 0;
2997}
2998EXPORT_SYMBOL_GPL(scsi_internal_device_block);
2999
3000/**
3001 * scsi_internal_device_unblock - resume a device after a block request
3002 * @sdev: device to resume
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003003 * @new_state: state to set devices to after unblocking
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 *
3005 * Called by scsi lld's or the midlayer to restart the device queue
3006 * for the previously suspended scsi device. Called from interrupt or
3007 * normal process context.
3008 *
3009 * Returns zero if successful or error if not.
3010 *
3011 * Notes:
3012 * This routine transitions the device to the SDEV_RUNNING state
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003013 * or to one of the offline states (which must be a legal transition)
Mike Christied0754982012-05-17 23:56:58 -05003014 * allowing the midlayer to goose the queue for this device.
Rob Landleyeb448202007-11-03 13:30:39 -05003015 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016int
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003017scsi_internal_device_unblock(struct scsi_device *sdev,
3018 enum scsi_device_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Jens Axboe165125e2007-07-24 09:28:11 +02003020 struct request_queue *q = sdev->request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 unsigned long flags;
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003022
3023 /*
3024 * Try to transition the scsi device to SDEV_RUNNING or one of the
3025 * offlined states and goose the device queue if successful.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 */
Vikas Chaudhary0e580762012-08-09 04:51:30 -04003027 if ((sdev->sdev_state == SDEV_BLOCK) ||
3028 (sdev->sdev_state == SDEV_TRANSPORT_OFFLINE))
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003029 sdev->sdev_state = new_state;
3030 else if (sdev->sdev_state == SDEV_CREATED_BLOCK) {
3031 if (new_state == SDEV_TRANSPORT_OFFLINE ||
3032 new_state == SDEV_OFFLINE)
3033 sdev->sdev_state = new_state;
3034 else
3035 sdev->sdev_state = SDEV_CREATED;
3036 } else if (sdev->sdev_state != SDEV_CANCEL &&
Mike Christie986fe6c2010-10-06 03:10:59 -05003037 sdev->sdev_state != SDEV_OFFLINE)
Takahiro Yasui5c10e632009-04-29 12:13:02 -04003038 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Christoph Hellwigd2852032014-01-17 12:06:53 +01003040 if (q->mq_ops) {
3041 blk_mq_start_stopped_hw_queues(q, false);
3042 } else {
3043 spin_lock_irqsave(q->queue_lock, flags);
3044 blk_start_queue(q);
3045 spin_unlock_irqrestore(q->queue_lock, flags);
3046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048 return 0;
3049}
3050EXPORT_SYMBOL_GPL(scsi_internal_device_unblock);
3051
3052static void
3053device_block(struct scsi_device *sdev, void *data)
3054{
3055 scsi_internal_device_block(sdev);
3056}
3057
3058static int
3059target_block(struct device *dev, void *data)
3060{
3061 if (scsi_is_target_device(dev))
3062 starget_for_each_device(to_scsi_target(dev), NULL,
3063 device_block);
3064 return 0;
3065}
3066
3067void
3068scsi_target_block(struct device *dev)
3069{
3070 if (scsi_is_target_device(dev))
3071 starget_for_each_device(to_scsi_target(dev), NULL,
3072 device_block);
3073 else
3074 device_for_each_child(dev, NULL, target_block);
3075}
3076EXPORT_SYMBOL_GPL(scsi_target_block);
3077
3078static void
3079device_unblock(struct scsi_device *sdev, void *data)
3080{
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003081 scsi_internal_device_unblock(sdev, *(enum scsi_device_state *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082}
3083
3084static int
3085target_unblock(struct device *dev, void *data)
3086{
3087 if (scsi_is_target_device(dev))
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003088 starget_for_each_device(to_scsi_target(dev), data,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 device_unblock);
3090 return 0;
3091}
3092
3093void
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003094scsi_target_unblock(struct device *dev, enum scsi_device_state new_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095{
3096 if (scsi_is_target_device(dev))
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003097 starget_for_each_device(to_scsi_target(dev), &new_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 device_unblock);
3099 else
Mike Christie5d9fb5c2012-05-17 23:56:57 -05003100 device_for_each_child(dev, &new_state, target_unblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101}
3102EXPORT_SYMBOL_GPL(scsi_target_unblock);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003103
3104/**
3105 * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt
Rob Landleyeb448202007-11-03 13:30:39 -05003106 * @sgl: scatter-gather list
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003107 * @sg_count: number of segments in sg
3108 * @offset: offset in bytes into sg, on return offset into the mapped area
3109 * @len: bytes to map, on return number of bytes mapped
3110 *
3111 * Returns virtual address of the start of the mapped page
3112 */
Jens Axboec6132da2007-10-16 11:08:49 +02003113void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count,
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003114 size_t *offset, size_t *len)
3115{
3116 int i;
3117 size_t sg_len = 0, len_complete = 0;
Jens Axboec6132da2007-10-16 11:08:49 +02003118 struct scatterlist *sg;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003119 struct page *page;
3120
Andrew Morton22cfefb2007-02-05 16:39:03 -08003121 WARN_ON(!irqs_disabled());
3122
Jens Axboec6132da2007-10-16 11:08:49 +02003123 for_each_sg(sgl, sg, sg_count, i) {
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003124 len_complete = sg_len; /* Complete sg-entries */
Jens Axboec6132da2007-10-16 11:08:49 +02003125 sg_len += sg->length;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003126 if (sg_len > *offset)
3127 break;
3128 }
3129
3130 if (unlikely(i == sg_count)) {
Andrew Morton169e1a22006-04-18 21:09:08 -07003131 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
3132 "elements %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07003133 __func__, sg_len, *offset, sg_count);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003134 WARN_ON(1);
3135 return NULL;
3136 }
3137
3138 /* Offset starting from the beginning of first page in this sg-entry */
Jens Axboec6132da2007-10-16 11:08:49 +02003139 *offset = *offset - len_complete + sg->offset;
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003140
3141 /* Assumption: contiguous pages can be accessed as "page + i" */
Jens Axboe45711f12007-10-22 21:19:53 +02003142 page = nth_page(sg_page(sg), (*offset >> PAGE_SHIFT));
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003143 *offset &= ~PAGE_MASK;
3144
3145 /* Bytes in this sg-entry from *offset to the end of the page */
3146 sg_len = PAGE_SIZE - *offset;
3147 if (*len > sg_len)
3148 *len = sg_len;
3149
Cong Wang77dfce02011-11-25 23:14:23 +08003150 return kmap_atomic(page);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003151}
3152EXPORT_SYMBOL(scsi_kmap_atomic_sg);
3153
3154/**
Rob Landleyeb448202007-11-03 13:30:39 -05003155 * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003156 * @virt: virtual address to be unmapped
3157 */
3158void scsi_kunmap_atomic_sg(void *virt)
3159{
Cong Wang77dfce02011-11-25 23:14:23 +08003160 kunmap_atomic(virt);
Guennadi Liakhovetskicdb8c2a2006-04-02 21:57:43 +02003161}
3162EXPORT_SYMBOL(scsi_kunmap_atomic_sg);
Aaron Lu6f4c8272013-01-23 15:09:32 +08003163
3164void sdev_disable_disk_events(struct scsi_device *sdev)
3165{
3166 atomic_inc(&sdev->disk_events_disable_depth);
3167}
3168EXPORT_SYMBOL(sdev_disable_disk_events);
3169
3170void sdev_enable_disk_events(struct scsi_device *sdev)
3171{
3172 if (WARN_ON_ONCE(atomic_read(&sdev->disk_events_disable_depth) <= 0))
3173 return;
3174 atomic_dec(&sdev->disk_events_disable_depth);
3175}
3176EXPORT_SYMBOL(sdev_enable_disk_events);
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003177
3178/**
3179 * scsi_vpd_lun_id - return a unique device identification
3180 * @sdev: SCSI device
3181 * @id: buffer for the identification
3182 * @id_len: length of the buffer
3183 *
3184 * Copies a unique device identification into @id based
3185 * on the information in the VPD page 0x83 of the device.
3186 * The string will be formatted as a SCSI name string.
3187 *
3188 * Returns the length of the identification or error on failure.
3189 * If the identifier is longer than the supplied buffer the actual
3190 * identifier length is returned and the buffer is not zero-padded.
3191 */
3192int scsi_vpd_lun_id(struct scsi_device *sdev, char *id, size_t id_len)
3193{
3194 u8 cur_id_type = 0xff;
3195 u8 cur_id_size = 0;
3196 unsigned char *d, *cur_id_str;
3197 unsigned char __rcu *vpd_pg83;
3198 int id_size = -EINVAL;
3199
3200 rcu_read_lock();
3201 vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3202 if (!vpd_pg83) {
3203 rcu_read_unlock();
3204 return -ENXIO;
3205 }
3206
3207 /*
3208 * Look for the correct descriptor.
3209 * Order of preference for lun descriptor:
3210 * - SCSI name string
3211 * - NAA IEEE Registered Extended
3212 * - EUI-64 based 16-byte
3213 * - EUI-64 based 12-byte
3214 * - NAA IEEE Registered
3215 * - NAA IEEE Extended
Hannes Reinecked2308232016-05-09 09:14:29 +02003216 * - T10 Vendor ID
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003217 * as longer descriptors reduce the likelyhood
3218 * of identification clashes.
3219 */
3220
3221 /* The id string must be at least 20 bytes + terminating NULL byte */
3222 if (id_len < 21) {
3223 rcu_read_unlock();
3224 return -EINVAL;
3225 }
3226
3227 memset(id, 0, id_len);
3228 d = vpd_pg83 + 4;
3229 while (d < vpd_pg83 + sdev->vpd_pg83_len) {
3230 /* Skip designators not referring to the LUN */
3231 if ((d[1] & 0x30) != 0x00)
3232 goto next_desig;
3233
3234 switch (d[1] & 0xf) {
Hannes Reinecked2308232016-05-09 09:14:29 +02003235 case 0x1:
3236 /* T10 Vendor ID */
3237 if (cur_id_size > d[3])
3238 break;
3239 /* Prefer anything */
3240 if (cur_id_type > 0x01 && cur_id_type != 0xff)
3241 break;
3242 cur_id_size = d[3];
3243 if (cur_id_size + 4 > id_len)
3244 cur_id_size = id_len - 4;
3245 cur_id_str = d + 4;
3246 cur_id_type = d[1] & 0xf;
3247 id_size = snprintf(id, id_len, "t10.%*pE",
3248 cur_id_size, cur_id_str);
3249 break;
Hannes Reinecke9983bed2015-12-01 10:16:55 +01003250 case 0x2:
3251 /* EUI-64 */
3252 if (cur_id_size > d[3])
3253 break;
3254 /* Prefer NAA IEEE Registered Extended */
3255 if (cur_id_type == 0x3 &&
3256 cur_id_size == d[3])
3257 break;
3258 cur_id_size = d[3];
3259 cur_id_str = d + 4;
3260 cur_id_type = d[1] & 0xf;
3261 switch (cur_id_size) {
3262 case 8:
3263 id_size = snprintf(id, id_len,
3264 "eui.%8phN",
3265 cur_id_str);
3266 break;
3267 case 12:
3268 id_size = snprintf(id, id_len,
3269 "eui.%12phN",
3270 cur_id_str);
3271 break;
3272 case 16:
3273 id_size = snprintf(id, id_len,
3274 "eui.%16phN",
3275 cur_id_str);
3276 break;
3277 default:
3278 cur_id_size = 0;
3279 break;
3280 }
3281 break;
3282 case 0x3:
3283 /* NAA */
3284 if (cur_id_size > d[3])
3285 break;
3286 cur_id_size = d[3];
3287 cur_id_str = d + 4;
3288 cur_id_type = d[1] & 0xf;
3289 switch (cur_id_size) {
3290 case 8:
3291 id_size = snprintf(id, id_len,
3292 "naa.%8phN",
3293 cur_id_str);
3294 break;
3295 case 16:
3296 id_size = snprintf(id, id_len,
3297 "naa.%16phN",
3298 cur_id_str);
3299 break;
3300 default:
3301 cur_id_size = 0;
3302 break;
3303 }
3304 break;
3305 case 0x8:
3306 /* SCSI name string */
3307 if (cur_id_size + 4 > d[3])
3308 break;
3309 /* Prefer others for truncated descriptor */
3310 if (cur_id_size && d[3] > id_len)
3311 break;
3312 cur_id_size = id_size = d[3];
3313 cur_id_str = d + 4;
3314 cur_id_type = d[1] & 0xf;
3315 if (cur_id_size >= id_len)
3316 cur_id_size = id_len - 1;
3317 memcpy(id, cur_id_str, cur_id_size);
3318 /* Decrease priority for truncated descriptor */
3319 if (cur_id_size != id_size)
3320 cur_id_size = 6;
3321 break;
3322 default:
3323 break;
3324 }
3325next_desig:
3326 d += d[3] + 4;
3327 }
3328 rcu_read_unlock();
3329
3330 return id_size;
3331}
3332EXPORT_SYMBOL(scsi_vpd_lun_id);
Hannes Reineckea8aa3972015-12-01 10:16:57 +01003333
3334/*
3335 * scsi_vpd_tpg_id - return a target port group identifier
3336 * @sdev: SCSI device
3337 *
3338 * Returns the Target Port Group identifier from the information
3339 * froom VPD page 0x83 of the device.
3340 *
3341 * Returns the identifier or error on failure.
3342 */
3343int scsi_vpd_tpg_id(struct scsi_device *sdev, int *rel_id)
3344{
3345 unsigned char *d;
3346 unsigned char __rcu *vpd_pg83;
3347 int group_id = -EAGAIN, rel_port = -1;
3348
3349 rcu_read_lock();
3350 vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3351 if (!vpd_pg83) {
3352 rcu_read_unlock();
3353 return -ENXIO;
3354 }
3355
3356 d = sdev->vpd_pg83 + 4;
3357 while (d < sdev->vpd_pg83 + sdev->vpd_pg83_len) {
3358 switch (d[1] & 0xf) {
3359 case 0x4:
3360 /* Relative target port */
3361 rel_port = get_unaligned_be16(&d[6]);
3362 break;
3363 case 0x5:
3364 /* Target port group */
3365 group_id = get_unaligned_be16(&d[6]);
3366 break;
3367 default:
3368 break;
3369 }
3370 d += d[3] + 4;
3371 }
3372 rcu_read_unlock();
3373
3374 if (group_id >= 0 && rel_id && rel_port != -1)
3375 *rel_id = rel_port;
3376
3377 return group_id;
3378}
3379EXPORT_SYMBOL(scsi_vpd_tpg_id);