GNU Linux-libre 4.9.290-gnu1
[releases.git] / drivers / scsi / scsi_lib.c
1 /*
2  * Copyright (C) 1999 Eric Youngdale
3  * Copyright (C) 2014 Christoph Hellwig
4  *
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>
12 #include <linux/bitops.h>
13 #include <linux/blkdev.h>
14 #include <linux/completion.h>
15 #include <linux/kernel.h>
16 #include <linux/export.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/delay.h>
20 #include <linux/hardirq.h>
21 #include <linux/scatterlist.h>
22 #include <linux/blk-mq.h>
23 #include <linux/ratelimit.h>
24 #include <asm/unaligned.h>
25
26 #include <scsi/scsi.h>
27 #include <scsi/scsi_cmnd.h>
28 #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>
33 #include <scsi/scsi_dh.h>
34
35 #include <trace/events/scsi.h>
36
37 #include "scsi_priv.h"
38 #include "scsi_logging.h"
39
40
41 struct kmem_cache *scsi_sdb_cache;
42
43 /*
44  * When to reinvoke queueing after a resource shortage. It's 3 msecs to
45  * not change behaviour from the previous unplug mechanism, experimentation
46  * may prove this needs changing.
47  */
48 #define SCSI_QUEUE_DELAY        3
49
50 static void
51 scsi_set_blocked(struct scsi_cmnd *cmd, int reason)
52 {
53         struct Scsi_Host *host = cmd->device->host;
54         struct scsi_device *device = cmd->device;
55         struct scsi_target *starget = scsi_target(device);
56
57         /*
58          * Set the appropriate busy bit for the device/host.
59          *
60          * If the host/device isn't busy, assume that something actually
61          * completed, and that we should be able to queue a command now.
62          *
63          * Note that the prior mid-layer assumption that any host could
64          * always queue at least one command is now broken.  The mid-layer
65          * will implement a user specifiable stall (see
66          * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
67          * if a command is requeued with no other commands outstanding
68          * either for the device or for the host.
69          */
70         switch (reason) {
71         case SCSI_MLQUEUE_HOST_BUSY:
72                 atomic_set(&host->host_blocked, host->max_host_blocked);
73                 break;
74         case SCSI_MLQUEUE_DEVICE_BUSY:
75         case SCSI_MLQUEUE_EH_RETRY:
76                 atomic_set(&device->device_blocked,
77                            device->max_device_blocked);
78                 break;
79         case SCSI_MLQUEUE_TARGET_BUSY:
80                 atomic_set(&starget->target_blocked,
81                            starget->max_target_blocked);
82                 break;
83         }
84 }
85
86 static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd)
87 {
88         struct scsi_device *sdev = cmd->device;
89         struct request_queue *q = cmd->request->q;
90
91         blk_mq_requeue_request(cmd->request);
92         blk_mq_kick_requeue_list(q);
93         put_device(&sdev->sdev_gendev);
94 }
95
96 /**
97  * __scsi_queue_insert - private queue insertion
98  * @cmd: The SCSI command being requeued
99  * @reason:  The reason for the requeue
100  * @unbusy: Whether the queue should be unbusied
101  *
102  * This is a private queue insertion.  The public interface
103  * scsi_queue_insert() always assumes the queue should be unbusied
104  * because it's always called before the completion.  This function is
105  * for a requeue after completion, which should only occur in this
106  * file.
107  */
108 static void __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy)
109 {
110         struct scsi_device *device = cmd->device;
111         struct request_queue *q = device->request_queue;
112         unsigned long flags;
113
114         SCSI_LOG_MLQUEUE(1, scmd_printk(KERN_INFO, cmd,
115                 "Inserting command %p into mlqueue\n", cmd));
116
117         scsi_set_blocked(cmd, reason);
118
119         /*
120          * Decrement the counters, since these commands are no longer
121          * active on the host/device.
122          */
123         if (unbusy)
124                 scsi_device_unbusy(device);
125
126         /*
127          * Requeue this command.  It will go before all other commands
128          * that are already in the queue. Schedule requeue work under
129          * lock such that the kblockd_schedule_work() call happens
130          * before blk_cleanup_queue() finishes.
131          */
132         cmd->result = 0;
133         if (q->mq_ops) {
134                 scsi_mq_requeue_cmd(cmd);
135                 return;
136         }
137         spin_lock_irqsave(q->queue_lock, flags);
138         blk_requeue_request(q, cmd->request);
139         kblockd_schedule_work(&device->requeue_work);
140         spin_unlock_irqrestore(q->queue_lock, flags);
141 }
142
143 /*
144  * Function:    scsi_queue_insert()
145  *
146  * Purpose:     Insert a command in the midlevel queue.
147  *
148  * Arguments:   cmd    - command that we are adding to queue.
149  *              reason - why we are inserting command to queue.
150  *
151  * Lock status: Assumed that lock is not held upon entry.
152  *
153  * Returns:     Nothing.
154  *
155  * Notes:       We do this for one of two cases.  Either the host is busy
156  *              and it cannot accept any more commands for the time being,
157  *              or the device returned QUEUE_FULL and can accept no more
158  *              commands.
159  * Notes:       This could be called either from an interrupt context or a
160  *              normal process context.
161  */
162 void scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
163 {
164         __scsi_queue_insert(cmd, reason, 1);
165 }
166 /**
167  * scsi_execute - insert request and wait for the result
168  * @sdev:       scsi device
169  * @cmd:        scsi command
170  * @data_direction: data direction
171  * @buffer:     data buffer
172  * @bufflen:    len of buffer
173  * @sense:      optional sense buffer
174  * @timeout:    request timeout in seconds
175  * @retries:    number of times to retry request
176  * @flags:      or into request flags;
177  * @resid:      optional residual length
178  *
179  * returns the req->errors value which is the scsi_cmnd result
180  * field.
181  */
182 int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
183                  int data_direction, void *buffer, unsigned bufflen,
184                  unsigned char *sense, int timeout, int retries, u64 flags,
185                  int *resid)
186 {
187         struct request *req;
188         int write = (data_direction == DMA_TO_DEVICE);
189         int ret = DRIVER_ERROR << 24;
190
191         req = blk_get_request(sdev->request_queue, write, __GFP_RECLAIM);
192         if (IS_ERR(req))
193                 return ret;
194         blk_rq_set_block_pc(req);
195
196         if (bufflen &&  blk_rq_map_kern(sdev->request_queue, req,
197                                         buffer, bufflen, __GFP_RECLAIM))
198                 goto out;
199
200         req->cmd_len = COMMAND_SIZE(cmd[0]);
201         memcpy(req->cmd, cmd, req->cmd_len);
202         req->sense = sense;
203         req->sense_len = 0;
204         req->retries = retries;
205         req->timeout = timeout;
206         req->cmd_flags |= flags | REQ_QUIET | REQ_PREEMPT;
207
208         /*
209          * head injection *required* here otherwise quiesce won't work
210          */
211         blk_execute_rq(req->q, NULL, req, 1);
212
213         /*
214          * Some devices (USB mass-storage in particular) may transfer
215          * garbage data together with a residue indicating that the data
216          * is invalid.  Prevent the garbage from being misinterpreted
217          * and prevent security leaks by zeroing out the excess data.
218          */
219         if (unlikely(req->resid_len > 0 && req->resid_len <= bufflen))
220                 memset(buffer + (bufflen - req->resid_len), 0, req->resid_len);
221
222         if (resid)
223                 *resid = req->resid_len;
224         ret = req->errors;
225  out:
226         blk_put_request(req);
227
228         return ret;
229 }
230 EXPORT_SYMBOL(scsi_execute);
231
232 int scsi_execute_req_flags(struct scsi_device *sdev, const unsigned char *cmd,
233                      int data_direction, void *buffer, unsigned bufflen,
234                      struct scsi_sense_hdr *sshdr, int timeout, int retries,
235                      int *resid, u64 flags)
236 {
237         char *sense = NULL;
238         int result;
239         
240         if (sshdr) {
241                 sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
242                 if (!sense)
243                         return DRIVER_ERROR << 24;
244         }
245         result = scsi_execute(sdev, cmd, data_direction, buffer, bufflen,
246                               sense, timeout, retries, flags, resid);
247         if (sshdr)
248                 scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, sshdr);
249
250         kfree(sense);
251         return result;
252 }
253 EXPORT_SYMBOL(scsi_execute_req_flags);
254
255 /*
256  * Function:    scsi_init_cmd_errh()
257  *
258  * Purpose:     Initialize cmd fields related to error handling.
259  *
260  * Arguments:   cmd     - command that is ready to be queued.
261  *
262  * Notes:       This function has the job of initializing a number of
263  *              fields related to error handling.   Typically this will
264  *              be called once for each command, as required.
265  */
266 static void scsi_init_cmd_errh(struct scsi_cmnd *cmd)
267 {
268         cmd->serial_number = 0;
269         scsi_set_resid(cmd, 0);
270         memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
271         if (cmd->cmd_len == 0)
272                 cmd->cmd_len = scsi_command_size(cmd->cmnd);
273 }
274
275 void scsi_device_unbusy(struct scsi_device *sdev)
276 {
277         struct Scsi_Host *shost = sdev->host;
278         struct scsi_target *starget = scsi_target(sdev);
279         unsigned long flags;
280
281         atomic_dec(&shost->host_busy);
282         if (starget->can_queue > 0)
283                 atomic_dec(&starget->target_busy);
284
285         if (unlikely(scsi_host_in_recovery(shost) &&
286                      (shost->host_failed || shost->host_eh_scheduled))) {
287                 spin_lock_irqsave(shost->host_lock, flags);
288                 scsi_eh_wakeup(shost);
289                 spin_unlock_irqrestore(shost->host_lock, flags);
290         }
291
292         atomic_dec(&sdev->device_busy);
293 }
294
295 static void scsi_kick_queue(struct request_queue *q)
296 {
297         if (q->mq_ops)
298                 blk_mq_start_hw_queues(q);
299         else
300                 blk_run_queue(q);
301 }
302
303 /*
304  * Called for single_lun devices on IO completion. Clear starget_sdev_user,
305  * and call blk_run_queue for all the scsi_devices on the target -
306  * including current_sdev first.
307  *
308  * Called with *no* scsi locks held.
309  */
310 static void scsi_single_lun_run(struct scsi_device *current_sdev)
311 {
312         struct Scsi_Host *shost = current_sdev->host;
313         struct scsi_device *sdev, *tmp;
314         struct scsi_target *starget = scsi_target(current_sdev);
315         unsigned long flags;
316
317         spin_lock_irqsave(shost->host_lock, flags);
318         starget->starget_sdev_user = NULL;
319         spin_unlock_irqrestore(shost->host_lock, flags);
320
321         /*
322          * Call blk_run_queue for all LUNs on the target, starting with
323          * current_sdev. We race with others (to set starget_sdev_user),
324          * but in most cases, we will be first. Ideally, each LU on the
325          * target would get some limited time or requests on the target.
326          */
327         scsi_kick_queue(current_sdev->request_queue);
328
329         spin_lock_irqsave(shost->host_lock, flags);
330         if (starget->starget_sdev_user)
331                 goto out;
332         list_for_each_entry_safe(sdev, tmp, &starget->devices,
333                         same_target_siblings) {
334                 if (sdev == current_sdev)
335                         continue;
336                 if (scsi_device_get(sdev))
337                         continue;
338
339                 spin_unlock_irqrestore(shost->host_lock, flags);
340                 scsi_kick_queue(sdev->request_queue);
341                 spin_lock_irqsave(shost->host_lock, flags);
342         
343                 scsi_device_put(sdev);
344         }
345  out:
346         spin_unlock_irqrestore(shost->host_lock, flags);
347 }
348
349 static inline bool scsi_device_is_busy(struct scsi_device *sdev)
350 {
351         if (atomic_read(&sdev->device_busy) >= sdev->queue_depth)
352                 return true;
353         if (atomic_read(&sdev->device_blocked) > 0)
354                 return true;
355         return false;
356 }
357
358 static inline bool scsi_target_is_busy(struct scsi_target *starget)
359 {
360         if (starget->can_queue > 0) {
361                 if (atomic_read(&starget->target_busy) >= starget->can_queue)
362                         return true;
363                 if (atomic_read(&starget->target_blocked) > 0)
364                         return true;
365         }
366         return false;
367 }
368
369 static inline bool scsi_host_is_busy(struct Scsi_Host *shost)
370 {
371         if (shost->can_queue > 0 &&
372             atomic_read(&shost->host_busy) >= shost->can_queue)
373                 return true;
374         if (atomic_read(&shost->host_blocked) > 0)
375                 return true;
376         if (shost->host_self_blocked)
377                 return true;
378         return false;
379 }
380
381 static void scsi_starved_list_run(struct Scsi_Host *shost)
382 {
383         LIST_HEAD(starved_list);
384         struct scsi_device *sdev;
385         unsigned long flags;
386
387         spin_lock_irqsave(shost->host_lock, flags);
388         list_splice_init(&shost->starved_list, &starved_list);
389
390         while (!list_empty(&starved_list)) {
391                 struct request_queue *slq;
392
393                 /*
394                  * As long as shost is accepting commands and we have
395                  * starved queues, call blk_run_queue. scsi_request_fn
396                  * drops the queue_lock and can add us back to the
397                  * starved_list.
398                  *
399                  * host_lock protects the starved_list and starved_entry.
400                  * scsi_request_fn must get the host_lock before checking
401                  * or modifying starved_list or starved_entry.
402                  */
403                 if (scsi_host_is_busy(shost))
404                         break;
405
406                 sdev = list_entry(starved_list.next,
407                                   struct scsi_device, starved_entry);
408                 list_del_init(&sdev->starved_entry);
409                 if (scsi_target_is_busy(scsi_target(sdev))) {
410                         list_move_tail(&sdev->starved_entry,
411                                        &shost->starved_list);
412                         continue;
413                 }
414
415                 /*
416                  * Once we drop the host lock, a racing scsi_remove_device()
417                  * call may remove the sdev from the starved list and destroy
418                  * it and the queue.  Mitigate by taking a reference to the
419                  * queue and never touching the sdev again after we drop the
420                  * host lock.  Note: if __scsi_remove_device() invokes
421                  * blk_cleanup_queue() before the queue is run from this
422                  * function then blk_run_queue() will return immediately since
423                  * blk_cleanup_queue() marks the queue with QUEUE_FLAG_DYING.
424                  */
425                 slq = sdev->request_queue;
426                 if (!blk_get_queue(slq))
427                         continue;
428                 spin_unlock_irqrestore(shost->host_lock, flags);
429
430                 scsi_kick_queue(slq);
431                 blk_put_queue(slq);
432
433                 spin_lock_irqsave(shost->host_lock, flags);
434         }
435         /* put any unprocessed entries back */
436         list_splice(&starved_list, &shost->starved_list);
437         spin_unlock_irqrestore(shost->host_lock, flags);
438 }
439
440 /*
441  * Function:   scsi_run_queue()
442  *
443  * Purpose:    Select a proper request queue to serve next
444  *
445  * Arguments:  q       - last request's queue
446  *
447  * Returns:     Nothing
448  *
449  * Notes:      The previous command was completely finished, start
450  *             a new one if possible.
451  */
452 static void scsi_run_queue(struct request_queue *q)
453 {
454         struct scsi_device *sdev = q->queuedata;
455
456         if (scsi_target(sdev)->single_lun)
457                 scsi_single_lun_run(sdev);
458         if (!list_empty(&sdev->host->starved_list))
459                 scsi_starved_list_run(sdev->host);
460
461         if (q->mq_ops)
462                 blk_mq_start_stopped_hw_queues(q, false);
463         else
464                 blk_run_queue(q);
465 }
466
467 void scsi_requeue_run_queue(struct work_struct *work)
468 {
469         struct scsi_device *sdev;
470         struct request_queue *q;
471
472         sdev = container_of(work, struct scsi_device, requeue_work);
473         q = sdev->request_queue;
474         scsi_run_queue(q);
475 }
476
477 /*
478  * Function:    scsi_requeue_command()
479  *
480  * Purpose:     Handle post-processing of completed commands.
481  *
482  * Arguments:   q       - queue to operate on
483  *              cmd     - command that may need to be requeued.
484  *
485  * Returns:     Nothing
486  *
487  * Notes:       After command completion, there may be blocks left
488  *              over which weren't finished by the previous command
489  *              this can be for a number of reasons - the main one is
490  *              I/O errors in the middle of the request, in which case
491  *              we need to request the blocks that come after the bad
492  *              sector.
493  * Notes:       Upon return, cmd is a stale pointer.
494  */
495 static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd)
496 {
497         struct scsi_device *sdev = cmd->device;
498         struct request *req = cmd->request;
499         unsigned long flags;
500
501         spin_lock_irqsave(q->queue_lock, flags);
502         blk_unprep_request(req);
503         req->special = NULL;
504         scsi_put_command(cmd);
505         blk_requeue_request(q, req);
506         spin_unlock_irqrestore(q->queue_lock, flags);
507
508         scsi_run_queue(q);
509
510         put_device(&sdev->sdev_gendev);
511 }
512
513 void scsi_run_host_queues(struct Scsi_Host *shost)
514 {
515         struct scsi_device *sdev;
516
517         shost_for_each_device(sdev, shost)
518                 scsi_run_queue(sdev->request_queue);
519 }
520
521 static void scsi_uninit_cmd(struct scsi_cmnd *cmd)
522 {
523         if (cmd->request->cmd_type == REQ_TYPE_FS) {
524                 struct scsi_driver *drv = scsi_cmd_to_driver(cmd);
525
526                 if (drv->uninit_command)
527                         drv->uninit_command(cmd);
528         }
529 }
530
531 static void scsi_mq_free_sgtables(struct scsi_cmnd *cmd)
532 {
533         struct scsi_data_buffer *sdb;
534
535         if (cmd->sdb.table.nents)
536                 sg_free_table_chained(&cmd->sdb.table, true);
537         if (cmd->request->next_rq) {
538                 sdb = cmd->request->next_rq->special;
539                 if (sdb)
540                         sg_free_table_chained(&sdb->table, true);
541         }
542         if (scsi_prot_sg_count(cmd))
543                 sg_free_table_chained(&cmd->prot_sdb->table, true);
544 }
545
546 static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd)
547 {
548         struct scsi_device *sdev = cmd->device;
549         struct Scsi_Host *shost = sdev->host;
550         unsigned long flags;
551
552         scsi_mq_free_sgtables(cmd);
553         scsi_uninit_cmd(cmd);
554
555         if (shost->use_cmd_list) {
556                 BUG_ON(list_empty(&cmd->list));
557                 spin_lock_irqsave(&sdev->list_lock, flags);
558                 list_del_init(&cmd->list);
559                 spin_unlock_irqrestore(&sdev->list_lock, flags);
560         }
561 }
562
563 /*
564  * Function:    scsi_release_buffers()
565  *
566  * Purpose:     Free resources allocate for a scsi_command.
567  *
568  * Arguments:   cmd     - command that we are bailing.
569  *
570  * Lock status: Assumed that no lock is held upon entry.
571  *
572  * Returns:     Nothing
573  *
574  * Notes:       In the event that an upper level driver rejects a
575  *              command, we must release resources allocated during
576  *              the __init_io() function.  Primarily this would involve
577  *              the scatter-gather table.
578  */
579 static void scsi_release_buffers(struct scsi_cmnd *cmd)
580 {
581         if (cmd->sdb.table.nents)
582                 sg_free_table_chained(&cmd->sdb.table, false);
583
584         memset(&cmd->sdb, 0, sizeof(cmd->sdb));
585
586         if (scsi_prot_sg_count(cmd))
587                 sg_free_table_chained(&cmd->prot_sdb->table, false);
588 }
589
590 static void scsi_release_bidi_buffers(struct scsi_cmnd *cmd)
591 {
592         struct scsi_data_buffer *bidi_sdb = cmd->request->next_rq->special;
593
594         sg_free_table_chained(&bidi_sdb->table, false);
595         kmem_cache_free(scsi_sdb_cache, bidi_sdb);
596         cmd->request->next_rq->special = NULL;
597 }
598
599 static bool scsi_end_request(struct request *req, int error,
600                 unsigned int bytes, unsigned int bidi_bytes)
601 {
602         struct scsi_cmnd *cmd = req->special;
603         struct scsi_device *sdev = cmd->device;
604         struct request_queue *q = sdev->request_queue;
605
606         if (blk_update_request(req, error, bytes))
607                 return true;
608
609         /* Bidi request must be completed as a whole */
610         if (unlikely(bidi_bytes) &&
611             blk_update_request(req->next_rq, error, bidi_bytes))
612                 return true;
613
614         if (blk_queue_add_random(q))
615                 add_disk_randomness(req->rq_disk);
616
617         if (req->mq_ctx) {
618                 /*
619                  * In the MQ case the command gets freed by __blk_mq_end_request,
620                  * so we have to do all cleanup that depends on it earlier.
621                  *
622                  * We also can't kick the queues from irq context, so we
623                  * will have to defer it to a workqueue.
624                  */
625                 scsi_mq_uninit_cmd(cmd);
626
627                 __blk_mq_end_request(req, error);
628
629                 if (scsi_target(sdev)->single_lun ||
630                     !list_empty(&sdev->host->starved_list))
631                         kblockd_schedule_work(&sdev->requeue_work);
632                 else
633                         blk_mq_start_stopped_hw_queues(q, true);
634         } else {
635                 unsigned long flags;
636
637                 if (bidi_bytes)
638                         scsi_release_bidi_buffers(cmd);
639
640                 spin_lock_irqsave(q->queue_lock, flags);
641                 blk_finish_request(req, error);
642                 spin_unlock_irqrestore(q->queue_lock, flags);
643
644                 scsi_release_buffers(cmd);
645
646                 scsi_put_command(cmd);
647                 scsi_run_queue(q);
648         }
649
650         put_device(&sdev->sdev_gendev);
651         return false;
652 }
653
654 /**
655  * __scsi_error_from_host_byte - translate SCSI error code into errno
656  * @cmd:        SCSI command (unused)
657  * @result:     scsi error code
658  *
659  * Translate SCSI error code into standard UNIX errno.
660  * Return values:
661  * -ENOLINK     temporary transport failure
662  * -EREMOTEIO   permanent target failure, do not retry
663  * -EBADE       permanent nexus failure, retry on other path
664  * -ENOSPC      No write space available
665  * -ENODATA     Medium error
666  * -EIO         unspecified I/O error
667  */
668 static int __scsi_error_from_host_byte(struct scsi_cmnd *cmd, int result)
669 {
670         int error = 0;
671
672         switch(host_byte(result)) {
673         case DID_TRANSPORT_FAILFAST:
674                 error = -ENOLINK;
675                 break;
676         case DID_TARGET_FAILURE:
677                 set_host_byte(cmd, DID_OK);
678                 error = -EREMOTEIO;
679                 break;
680         case DID_NEXUS_FAILURE:
681                 set_host_byte(cmd, DID_OK);
682                 error = -EBADE;
683                 break;
684         case DID_ALLOC_FAILURE:
685                 set_host_byte(cmd, DID_OK);
686                 error = -ENOSPC;
687                 break;
688         case DID_MEDIUM_ERROR:
689                 set_host_byte(cmd, DID_OK);
690                 error = -ENODATA;
691                 break;
692         default:
693                 error = -EIO;
694                 break;
695         }
696
697         return error;
698 }
699
700 /*
701  * Function:    scsi_io_completion()
702  *
703  * Purpose:     Completion processing for block device I/O requests.
704  *
705  * Arguments:   cmd   - command that is finished.
706  *
707  * Lock status: Assumed that no lock is held upon entry.
708  *
709  * Returns:     Nothing
710  *
711  * Notes:       We will finish off the specified number of sectors.  If we
712  *              are done, the command block will be released and the queue
713  *              function will be goosed.  If we are not done then we have to
714  *              figure out what to do next:
715  *
716  *              a) We can call scsi_requeue_command().  The request
717  *                 will be unprepared and put back on the queue.  Then
718  *                 a new command will be created for it.  This should
719  *                 be used if we made forward progress, or if we want
720  *                 to switch from READ(10) to READ(6) for example.
721  *
722  *              b) We can call __scsi_queue_insert().  The request will
723  *                 be put back on the queue and retried using the same
724  *                 command as before, possibly after a delay.
725  *
726  *              c) We can call scsi_end_request() with -EIO to fail
727  *                 the remainder of the request.
728  */
729 void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
730 {
731         int result = cmd->result;
732         struct request_queue *q = cmd->device->request_queue;
733         struct request *req = cmd->request;
734         int error = 0;
735         struct scsi_sense_hdr sshdr;
736         bool sense_valid = false;
737         int sense_deferred = 0, level = 0;
738         enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY,
739               ACTION_DELAYED_RETRY} action;
740         unsigned long wait_for = (cmd->allowed + 1) * req->timeout;
741
742         if (result) {
743                 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
744                 if (sense_valid)
745                         sense_deferred = scsi_sense_is_deferred(&sshdr);
746         }
747
748         if (req->cmd_type == REQ_TYPE_BLOCK_PC) { /* SG_IO ioctl from block level */
749                 if (result) {
750                         if (sense_valid && req->sense) {
751                                 /*
752                                  * SG_IO wants current and deferred errors
753                                  */
754                                 int len = 8 + cmd->sense_buffer[7];
755
756                                 if (len > SCSI_SENSE_BUFFERSIZE)
757                                         len = SCSI_SENSE_BUFFERSIZE;
758                                 memcpy(req->sense, cmd->sense_buffer,  len);
759                                 req->sense_len = len;
760                         }
761                         if (!sense_deferred)
762                                 error = __scsi_error_from_host_byte(cmd, result);
763                 }
764                 /*
765                  * __scsi_error_from_host_byte may have reset the host_byte
766                  */
767                 req->errors = cmd->result;
768
769                 req->resid_len = scsi_get_resid(cmd);
770
771                 if (scsi_bidi_cmnd(cmd)) {
772                         /*
773                          * Bidi commands Must be complete as a whole,
774                          * both sides at once.
775                          */
776                         req->next_rq->resid_len = scsi_in(cmd)->resid;
777                         if (scsi_end_request(req, 0, blk_rq_bytes(req),
778                                         blk_rq_bytes(req->next_rq)))
779                                 BUG();
780                         return;
781                 }
782         } else if (blk_rq_bytes(req) == 0 && result && !sense_deferred) {
783                 /*
784                  * Certain non BLOCK_PC requests are commands that don't
785                  * actually transfer anything (FLUSH), so cannot use
786                  * good_bytes != blk_rq_bytes(req) as the signal for an error.
787                  * This sets the error explicitly for the problem case.
788                  */
789                 error = __scsi_error_from_host_byte(cmd, result);
790         }
791
792         /* no bidi support for !REQ_TYPE_BLOCK_PC yet */
793         BUG_ON(blk_bidi_rq(req));
794
795         /*
796          * Next deal with any sectors which we were able to correctly
797          * handle.
798          */
799         SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, cmd,
800                 "%u sectors total, %d bytes done.\n",
801                 blk_rq_sectors(req), good_bytes));
802
803         /*
804          * Recovered errors need reporting, but they're always treated
805          * as success, so fiddle the result code here.  For BLOCK_PC
806          * we already took a copy of the original into rq->errors which
807          * is what gets returned to the user
808          */
809         if (sense_valid && (sshdr.sense_key == RECOVERED_ERROR)) {
810                 /* if ATA PASS-THROUGH INFORMATION AVAILABLE skip
811                  * print since caller wants ATA registers. Only occurs on
812                  * SCSI ATA PASS_THROUGH commands when CK_COND=1
813                  */
814                 if ((sshdr.asc == 0x0) && (sshdr.ascq == 0x1d))
815                         ;
816                 else if (!(req->cmd_flags & REQ_QUIET))
817                         scsi_print_sense(cmd);
818                 result = 0;
819                 /* BLOCK_PC may have set error */
820                 error = 0;
821         }
822
823         /*
824          * special case: failed zero length commands always need to
825          * drop down into the retry code. Otherwise, if we finished
826          * all bytes in the request we are done now.
827          */
828         if (!(blk_rq_bytes(req) == 0 && error) &&
829             !scsi_end_request(req, error, good_bytes, 0))
830                 return;
831
832         /*
833          * Kill remainder if no retrys.
834          */
835         if (error && scsi_noretry_cmd(cmd)) {
836                 if (scsi_end_request(req, error, blk_rq_bytes(req), 0))
837                         BUG();
838                 return;
839         }
840
841         /*
842          * If there had been no error, but we have leftover bytes in the
843          * requeues just queue the command up again.
844          */
845         if (result == 0)
846                 goto requeue;
847
848         error = __scsi_error_from_host_byte(cmd, result);
849
850         if (host_byte(result) == DID_RESET) {
851                 /* Third party bus reset or reset for error recovery
852                  * reasons.  Just retry the command and see what
853                  * happens.
854                  */
855                 action = ACTION_RETRY;
856         } else if (sense_valid && !sense_deferred) {
857                 switch (sshdr.sense_key) {
858                 case UNIT_ATTENTION:
859                         if (cmd->device->removable) {
860                                 /* Detected disc change.  Set a bit
861                                  * and quietly refuse further access.
862                                  */
863                                 cmd->device->changed = 1;
864                                 action = ACTION_FAIL;
865                         } else {
866                                 /* Must have been a power glitch, or a
867                                  * bus reset.  Could not have been a
868                                  * media change, so we just retry the
869                                  * command and see what happens.
870                                  */
871                                 action = ACTION_RETRY;
872                         }
873                         break;
874                 case ILLEGAL_REQUEST:
875                         /* If we had an ILLEGAL REQUEST returned, then
876                          * we may have performed an unsupported
877                          * command.  The only thing this should be
878                          * would be a ten byte read where only a six
879                          * byte read was supported.  Also, on a system
880                          * where READ CAPACITY failed, we may have
881                          * read past the end of the disk.
882                          */
883                         if ((cmd->device->use_10_for_rw &&
884                             sshdr.asc == 0x20 && sshdr.ascq == 0x00) &&
885                             (cmd->cmnd[0] == READ_10 ||
886                              cmd->cmnd[0] == WRITE_10)) {
887                                 /* This will issue a new 6-byte command. */
888                                 cmd->device->use_10_for_rw = 0;
889                                 action = ACTION_REPREP;
890                         } else if (sshdr.asc == 0x10) /* DIX */ {
891                                 action = ACTION_FAIL;
892                                 error = -EILSEQ;
893                         /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */
894                         } else if (sshdr.asc == 0x20 || sshdr.asc == 0x24) {
895                                 action = ACTION_FAIL;
896                                 error = -EREMOTEIO;
897                         } else
898                                 action = ACTION_FAIL;
899                         break;
900                 case ABORTED_COMMAND:
901                         action = ACTION_FAIL;
902                         if (sshdr.asc == 0x10) /* DIF */
903                                 error = -EILSEQ;
904                         break;
905                 case NOT_READY:
906                         /* If the device is in the process of becoming
907                          * ready, or has a temporary blockage, retry.
908                          */
909                         if (sshdr.asc == 0x04) {
910                                 switch (sshdr.ascq) {
911                                 case 0x01: /* becoming ready */
912                                 case 0x04: /* format in progress */
913                                 case 0x05: /* rebuild in progress */
914                                 case 0x06: /* recalculation in progress */
915                                 case 0x07: /* operation in progress */
916                                 case 0x08: /* Long write in progress */
917                                 case 0x09: /* self test in progress */
918                                 case 0x11: /* notify (enable spinup) required */
919                                 case 0x14: /* space allocation in progress */
920                                         action = ACTION_DELAYED_RETRY;
921                                         break;
922                                 default:
923                                         action = ACTION_FAIL;
924                                         break;
925                                 }
926                         } else
927                                 action = ACTION_FAIL;
928                         break;
929                 case VOLUME_OVERFLOW:
930                         /* See SSC3rXX or current. */
931                         action = ACTION_FAIL;
932                         break;
933                 default:
934                         action = ACTION_FAIL;
935                         break;
936                 }
937         } else
938                 action = ACTION_FAIL;
939
940         if (action != ACTION_FAIL &&
941             time_before(cmd->jiffies_at_alloc + wait_for, jiffies))
942                 action = ACTION_FAIL;
943
944         switch (action) {
945         case ACTION_FAIL:
946                 /* Give up and fail the remainder of the request */
947                 if (!(req->cmd_flags & REQ_QUIET)) {
948                         static DEFINE_RATELIMIT_STATE(_rs,
949                                         DEFAULT_RATELIMIT_INTERVAL,
950                                         DEFAULT_RATELIMIT_BURST);
951
952                         if (unlikely(scsi_logging_level))
953                                 level = SCSI_LOG_LEVEL(SCSI_LOG_MLCOMPLETE_SHIFT,
954                                                        SCSI_LOG_MLCOMPLETE_BITS);
955
956                         /*
957                          * if logging is enabled the failure will be printed
958                          * in scsi_log_completion(), so avoid duplicate messages
959                          */
960                         if (!level && __ratelimit(&_rs)) {
961                                 scsi_print_result(cmd, NULL, FAILED);
962                                 if (driver_byte(result) & DRIVER_SENSE)
963                                         scsi_print_sense(cmd);
964                                 scsi_print_command(cmd);
965                         }
966                 }
967                 if (!scsi_end_request(req, error, blk_rq_err_bytes(req), 0))
968                         return;
969                 /*FALLTHRU*/
970         case ACTION_REPREP:
971         requeue:
972                 /* Unprep the request and put it back at the head of the queue.
973                  * A new command will be prepared and issued.
974                  */
975                 if (q->mq_ops) {
976                         cmd->request->cmd_flags &= ~REQ_DONTPREP;
977                         scsi_mq_uninit_cmd(cmd);
978                         scsi_mq_requeue_cmd(cmd);
979                 } else {
980                         scsi_release_buffers(cmd);
981                         scsi_requeue_command(q, cmd);
982                 }
983                 break;
984         case ACTION_RETRY:
985                 /* Retry the same command immediately */
986                 __scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY, 0);
987                 break;
988         case ACTION_DELAYED_RETRY:
989                 /* Retry the same command after a delay */
990                 __scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY, 0);
991                 break;
992         }
993 }
994
995 static int scsi_init_sgtable(struct request *req, struct scsi_data_buffer *sdb)
996 {
997         int count;
998
999         /*
1000          * If sg table allocation fails, requeue request later.
1001          */
1002         if (unlikely(sg_alloc_table_chained(&sdb->table, req->nr_phys_segments,
1003                                         sdb->table.sgl)))
1004                 return BLKPREP_DEFER;
1005
1006         /* 
1007          * Next, walk the list, and fill in the addresses and sizes of
1008          * each segment.
1009          */
1010         count = blk_rq_map_sg(req->q, req, sdb->table.sgl);
1011         BUG_ON(count > sdb->table.nents);
1012         sdb->table.nents = count;
1013         sdb->length = blk_rq_bytes(req);
1014         return BLKPREP_OK;
1015 }
1016
1017 /*
1018  * Function:    scsi_init_io()
1019  *
1020  * Purpose:     SCSI I/O initialize function.
1021  *
1022  * Arguments:   cmd   - Command descriptor we wish to initialize
1023  *
1024  * Returns:     0 on success
1025  *              BLKPREP_DEFER if the failure is retryable
1026  *              BLKPREP_KILL if the failure is fatal
1027  */
1028 int scsi_init_io(struct scsi_cmnd *cmd)
1029 {
1030         struct scsi_device *sdev = cmd->device;
1031         struct request *rq = cmd->request;
1032         bool is_mq = (rq->mq_ctx != NULL);
1033         int error = BLKPREP_KILL;
1034
1035         if (WARN_ON_ONCE(!rq->nr_phys_segments))
1036                 goto err_exit;
1037
1038         error = scsi_init_sgtable(rq, &cmd->sdb);
1039         if (error)
1040                 goto err_exit;
1041
1042         if (blk_bidi_rq(rq)) {
1043                 if (!rq->q->mq_ops) {
1044                         struct scsi_data_buffer *bidi_sdb =
1045                                 kmem_cache_zalloc(scsi_sdb_cache, GFP_ATOMIC);
1046                         if (!bidi_sdb) {
1047                                 error = BLKPREP_DEFER;
1048                                 goto err_exit;
1049                         }
1050
1051                         rq->next_rq->special = bidi_sdb;
1052                 }
1053
1054                 error = scsi_init_sgtable(rq->next_rq, rq->next_rq->special);
1055                 if (error)
1056                         goto err_exit;
1057         }
1058
1059         if (blk_integrity_rq(rq)) {
1060                 struct scsi_data_buffer *prot_sdb = cmd->prot_sdb;
1061                 int ivecs, count;
1062
1063                 if (prot_sdb == NULL) {
1064                         /*
1065                          * This can happen if someone (e.g. multipath)
1066                          * queues a command to a device on an adapter
1067                          * that does not support DIX.
1068                          */
1069                         WARN_ON_ONCE(1);
1070                         error = BLKPREP_KILL;
1071                         goto err_exit;
1072                 }
1073
1074                 ivecs = blk_rq_count_integrity_sg(rq->q, rq->bio);
1075
1076                 if (sg_alloc_table_chained(&prot_sdb->table, ivecs,
1077                                 prot_sdb->table.sgl)) {
1078                         error = BLKPREP_DEFER;
1079                         goto err_exit;
1080                 }
1081
1082                 count = blk_rq_map_integrity_sg(rq->q, rq->bio,
1083                                                 prot_sdb->table.sgl);
1084                 BUG_ON(unlikely(count > ivecs));
1085                 BUG_ON(unlikely(count > queue_max_integrity_segments(rq->q)));
1086
1087                 cmd->prot_sdb = prot_sdb;
1088                 cmd->prot_sdb->table.nents = count;
1089         }
1090
1091         return BLKPREP_OK;
1092 err_exit:
1093         if (is_mq) {
1094                 scsi_mq_free_sgtables(cmd);
1095         } else {
1096                 scsi_release_buffers(cmd);
1097                 cmd->request->special = NULL;
1098                 scsi_put_command(cmd);
1099                 put_device(&sdev->sdev_gendev);
1100         }
1101         return error;
1102 }
1103 EXPORT_SYMBOL(scsi_init_io);
1104
1105 static struct scsi_cmnd *scsi_get_cmd_from_req(struct scsi_device *sdev,
1106                 struct request *req)
1107 {
1108         struct scsi_cmnd *cmd;
1109
1110         if (!req->special) {
1111                 /* Bail if we can't get a reference to the device */
1112                 if (!get_device(&sdev->sdev_gendev))
1113                         return NULL;
1114
1115                 cmd = scsi_get_command(sdev, GFP_ATOMIC);
1116                 if (unlikely(!cmd)) {
1117                         put_device(&sdev->sdev_gendev);
1118                         return NULL;
1119                 }
1120                 req->special = cmd;
1121         } else {
1122                 cmd = req->special;
1123         }
1124
1125         /* pull a tag out of the request if we have one */
1126         cmd->tag = req->tag;
1127         cmd->request = req;
1128
1129         cmd->cmnd = req->cmd;
1130         cmd->prot_op = SCSI_PROT_NORMAL;
1131
1132         return cmd;
1133 }
1134
1135 static int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req)
1136 {
1137         struct scsi_cmnd *cmd = req->special;
1138
1139         /*
1140          * BLOCK_PC requests may transfer data, in which case they must
1141          * a bio attached to them.  Or they might contain a SCSI command
1142          * that does not transfer data, in which case they may optionally
1143          * submit a request without an attached bio.
1144          */
1145         if (req->bio) {
1146                 int ret = scsi_init_io(cmd);
1147                 if (unlikely(ret))
1148                         return ret;
1149         } else {
1150                 BUG_ON(blk_rq_bytes(req));
1151
1152                 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
1153         }
1154
1155         cmd->cmd_len = req->cmd_len;
1156         cmd->transfersize = blk_rq_bytes(req);
1157         cmd->allowed = req->retries;
1158         return BLKPREP_OK;
1159 }
1160
1161 /*
1162  * Setup a REQ_TYPE_FS command.  These are simple request from filesystems
1163  * that still need to be translated to SCSI CDBs from the ULD.
1164  */
1165 static int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
1166 {
1167         struct scsi_cmnd *cmd = req->special;
1168
1169         if (unlikely(sdev->handler && sdev->handler->prep_fn)) {
1170                 int ret = sdev->handler->prep_fn(sdev, req);
1171                 if (ret != BLKPREP_OK)
1172                         return ret;
1173         }
1174
1175         memset(cmd->cmnd, 0, BLK_MAX_CDB);
1176         return scsi_cmd_to_driver(cmd)->init_command(cmd);
1177 }
1178
1179 static int scsi_setup_cmnd(struct scsi_device *sdev, struct request *req)
1180 {
1181         struct scsi_cmnd *cmd = req->special;
1182
1183         if (!blk_rq_bytes(req))
1184                 cmd->sc_data_direction = DMA_NONE;
1185         else if (rq_data_dir(req) == WRITE)
1186                 cmd->sc_data_direction = DMA_TO_DEVICE;
1187         else
1188                 cmd->sc_data_direction = DMA_FROM_DEVICE;
1189
1190         switch (req->cmd_type) {
1191         case REQ_TYPE_FS:
1192                 return scsi_setup_fs_cmnd(sdev, req);
1193         case REQ_TYPE_BLOCK_PC:
1194                 return scsi_setup_blk_pc_cmnd(sdev, req);
1195         default:
1196                 return BLKPREP_KILL;
1197         }
1198 }
1199
1200 static int
1201 scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
1202 {
1203         int ret = BLKPREP_OK;
1204
1205         /*
1206          * If the device is not in running state we will reject some
1207          * or all commands.
1208          */
1209         if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
1210                 switch (sdev->sdev_state) {
1211                 case SDEV_OFFLINE:
1212                 case SDEV_TRANSPORT_OFFLINE:
1213                         /*
1214                          * If the device is offline we refuse to process any
1215                          * commands.  The device must be brought online
1216                          * before trying any recovery commands.
1217                          */
1218                         sdev_printk(KERN_ERR, sdev,
1219                                     "rejecting I/O to offline device\n");
1220                         ret = BLKPREP_KILL;
1221                         break;
1222                 case SDEV_DEL:
1223                         /*
1224                          * If the device is fully deleted, we refuse to
1225                          * process any commands as well.
1226                          */
1227                         sdev_printk(KERN_ERR, sdev,
1228                                     "rejecting I/O to dead device\n");
1229                         ret = BLKPREP_KILL;
1230                         break;
1231                 case SDEV_BLOCK:
1232                 case SDEV_CREATED_BLOCK:
1233                         ret = BLKPREP_DEFER;
1234                         break;
1235                 case SDEV_QUIESCE:
1236                         /*
1237                          * If the devices is blocked we defer normal commands.
1238                          */
1239                         if (!(req->cmd_flags & REQ_PREEMPT))
1240                                 ret = BLKPREP_DEFER;
1241                         break;
1242                 default:
1243                         /*
1244                          * For any other not fully online state we only allow
1245                          * special commands.  In particular any user initiated
1246                          * command is not allowed.
1247                          */
1248                         if (!(req->cmd_flags & REQ_PREEMPT))
1249                                 ret = BLKPREP_KILL;
1250                         break;
1251                 }
1252         }
1253         return ret;
1254 }
1255
1256 static int
1257 scsi_prep_return(struct request_queue *q, struct request *req, int ret)
1258 {
1259         struct scsi_device *sdev = q->queuedata;
1260
1261         switch (ret) {
1262         case BLKPREP_KILL:
1263         case BLKPREP_INVALID:
1264                 req->errors = DID_NO_CONNECT << 16;
1265                 /* release the command and kill it */
1266                 if (req->special) {
1267                         struct scsi_cmnd *cmd = req->special;
1268                         scsi_release_buffers(cmd);
1269                         scsi_put_command(cmd);
1270                         put_device(&sdev->sdev_gendev);
1271                         req->special = NULL;
1272                 }
1273                 break;
1274         case BLKPREP_DEFER:
1275                 /*
1276                  * If we defer, the blk_peek_request() returns NULL, but the
1277                  * queue must be restarted, so we schedule a callback to happen
1278                  * shortly.
1279                  */
1280                 if (atomic_read(&sdev->device_busy) == 0)
1281                         blk_delay_queue(q, SCSI_QUEUE_DELAY);
1282                 break;
1283         default:
1284                 req->cmd_flags |= REQ_DONTPREP;
1285         }
1286
1287         return ret;
1288 }
1289
1290 static int scsi_prep_fn(struct request_queue *q, struct request *req)
1291 {
1292         struct scsi_device *sdev = q->queuedata;
1293         struct scsi_cmnd *cmd;
1294         int ret;
1295
1296         ret = scsi_prep_state_check(sdev, req);
1297         if (ret != BLKPREP_OK)
1298                 goto out;
1299
1300         cmd = scsi_get_cmd_from_req(sdev, req);
1301         if (unlikely(!cmd)) {
1302                 ret = BLKPREP_DEFER;
1303                 goto out;
1304         }
1305
1306         ret = scsi_setup_cmnd(sdev, req);
1307 out:
1308         return scsi_prep_return(q, req, ret);
1309 }
1310
1311 static void scsi_unprep_fn(struct request_queue *q, struct request *req)
1312 {
1313         scsi_uninit_cmd(req->special);
1314 }
1315
1316 /*
1317  * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1318  * return 0.
1319  *
1320  * Called with the queue_lock held.
1321  */
1322 static inline int scsi_dev_queue_ready(struct request_queue *q,
1323                                   struct scsi_device *sdev)
1324 {
1325         unsigned int busy;
1326
1327         busy = atomic_inc_return(&sdev->device_busy) - 1;
1328         if (atomic_read(&sdev->device_blocked)) {
1329                 if (busy)
1330                         goto out_dec;
1331
1332                 /*
1333                  * unblock after device_blocked iterates to zero
1334                  */
1335                 if (atomic_dec_return(&sdev->device_blocked) > 0) {
1336                         /*
1337                          * For the MQ case we take care of this in the caller.
1338                          */
1339                         if (!q->mq_ops)
1340                                 blk_delay_queue(q, SCSI_QUEUE_DELAY);
1341                         goto out_dec;
1342                 }
1343                 SCSI_LOG_MLQUEUE(3, sdev_printk(KERN_INFO, sdev,
1344                                    "unblocking device at zero depth\n"));
1345         }
1346
1347         if (busy >= sdev->queue_depth)
1348                 goto out_dec;
1349
1350         return 1;
1351 out_dec:
1352         atomic_dec(&sdev->device_busy);
1353         return 0;
1354 }
1355
1356 /*
1357  * scsi_target_queue_ready: checks if there we can send commands to target
1358  * @sdev: scsi device on starget to check.
1359  */
1360 static inline int scsi_target_queue_ready(struct Scsi_Host *shost,
1361                                            struct scsi_device *sdev)
1362 {
1363         struct scsi_target *starget = scsi_target(sdev);
1364         unsigned int busy;
1365
1366         if (starget->single_lun) {
1367                 spin_lock_irq(shost->host_lock);
1368                 if (starget->starget_sdev_user &&
1369                     starget->starget_sdev_user != sdev) {
1370                         spin_unlock_irq(shost->host_lock);
1371                         return 0;
1372                 }
1373                 starget->starget_sdev_user = sdev;
1374                 spin_unlock_irq(shost->host_lock);
1375         }
1376
1377         if (starget->can_queue <= 0)
1378                 return 1;
1379
1380         busy = atomic_inc_return(&starget->target_busy) - 1;
1381         if (atomic_read(&starget->target_blocked) > 0) {
1382                 if (busy)
1383                         goto starved;
1384
1385                 /*
1386                  * unblock after target_blocked iterates to zero
1387                  */
1388                 if (atomic_dec_return(&starget->target_blocked) > 0)
1389                         goto out_dec;
1390
1391                 SCSI_LOG_MLQUEUE(3, starget_printk(KERN_INFO, starget,
1392                                  "unblocking target at zero depth\n"));
1393         }
1394
1395         if (busy >= starget->can_queue)
1396                 goto starved;
1397
1398         return 1;
1399
1400 starved:
1401         spin_lock_irq(shost->host_lock);
1402         list_move_tail(&sdev->starved_entry, &shost->starved_list);
1403         spin_unlock_irq(shost->host_lock);
1404 out_dec:
1405         if (starget->can_queue > 0)
1406                 atomic_dec(&starget->target_busy);
1407         return 0;
1408 }
1409
1410 /*
1411  * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1412  * return 0. We must end up running the queue again whenever 0 is
1413  * returned, else IO can hang.
1414  */
1415 static inline int scsi_host_queue_ready(struct request_queue *q,
1416                                    struct Scsi_Host *shost,
1417                                    struct scsi_device *sdev)
1418 {
1419         unsigned int busy;
1420
1421         if (scsi_host_in_recovery(shost))
1422                 return 0;
1423
1424         busy = atomic_inc_return(&shost->host_busy) - 1;
1425         if (atomic_read(&shost->host_blocked) > 0) {
1426                 if (busy)
1427                         goto starved;
1428
1429                 /*
1430                  * unblock after host_blocked iterates to zero
1431                  */
1432                 if (atomic_dec_return(&shost->host_blocked) > 0)
1433                         goto out_dec;
1434
1435                 SCSI_LOG_MLQUEUE(3,
1436                         shost_printk(KERN_INFO, shost,
1437                                      "unblocking host at zero depth\n"));
1438         }
1439
1440         if (shost->can_queue > 0 && busy >= shost->can_queue)
1441                 goto starved;
1442         if (shost->host_self_blocked)
1443                 goto starved;
1444
1445         /* We're OK to process the command, so we can't be starved */
1446         if (!list_empty(&sdev->starved_entry)) {
1447                 spin_lock_irq(shost->host_lock);
1448                 if (!list_empty(&sdev->starved_entry))
1449                         list_del_init(&sdev->starved_entry);
1450                 spin_unlock_irq(shost->host_lock);
1451         }
1452
1453         return 1;
1454
1455 starved:
1456         spin_lock_irq(shost->host_lock);
1457         if (list_empty(&sdev->starved_entry))
1458                 list_add_tail(&sdev->starved_entry, &shost->starved_list);
1459         spin_unlock_irq(shost->host_lock);
1460 out_dec:
1461         atomic_dec(&shost->host_busy);
1462         return 0;
1463 }
1464
1465 /*
1466  * Busy state exporting function for request stacking drivers.
1467  *
1468  * For efficiency, no lock is taken to check the busy state of
1469  * shost/starget/sdev, since the returned value is not guaranteed and
1470  * may be changed after request stacking drivers call the function,
1471  * regardless of taking lock or not.
1472  *
1473  * When scsi can't dispatch I/Os anymore and needs to kill I/Os scsi
1474  * needs to return 'not busy'. Otherwise, request stacking drivers
1475  * may hold requests forever.
1476  */
1477 static int scsi_lld_busy(struct request_queue *q)
1478 {
1479         struct scsi_device *sdev = q->queuedata;
1480         struct Scsi_Host *shost;
1481
1482         if (blk_queue_dying(q))
1483                 return 0;
1484
1485         shost = sdev->host;
1486
1487         /*
1488          * Ignore host/starget busy state.
1489          * Since block layer does not have a concept of fairness across
1490          * multiple queues, congestion of host/starget needs to be handled
1491          * in SCSI layer.
1492          */
1493         if (scsi_host_in_recovery(shost) || scsi_device_is_busy(sdev))
1494                 return 1;
1495
1496         return 0;
1497 }
1498
1499 /*
1500  * Kill a request for a dead device
1501  */
1502 static void scsi_kill_request(struct request *req, struct request_queue *q)
1503 {
1504         struct scsi_cmnd *cmd = req->special;
1505         struct scsi_device *sdev;
1506         struct scsi_target *starget;
1507         struct Scsi_Host *shost;
1508
1509         blk_start_request(req);
1510
1511         scmd_printk(KERN_INFO, cmd, "killing request\n");
1512
1513         sdev = cmd->device;
1514         starget = scsi_target(sdev);
1515         shost = sdev->host;
1516         scsi_init_cmd_errh(cmd);
1517         cmd->result = DID_NO_CONNECT << 16;
1518         atomic_inc(&cmd->device->iorequest_cnt);
1519
1520         /*
1521          * SCSI request completion path will do scsi_device_unbusy(),
1522          * bump busy counts.  To bump the counters, we need to dance
1523          * with the locks as normal issue path does.
1524          */
1525         atomic_inc(&sdev->device_busy);
1526         atomic_inc(&shost->host_busy);
1527         if (starget->can_queue > 0)
1528                 atomic_inc(&starget->target_busy);
1529
1530         blk_complete_request(req);
1531 }
1532
1533 static void scsi_softirq_done(struct request *rq)
1534 {
1535         struct scsi_cmnd *cmd = rq->special;
1536         unsigned long wait_for = (cmd->allowed + 1) * rq->timeout;
1537         int disposition;
1538
1539         INIT_LIST_HEAD(&cmd->eh_entry);
1540
1541         atomic_inc(&cmd->device->iodone_cnt);
1542         if (cmd->result)
1543                 atomic_inc(&cmd->device->ioerr_cnt);
1544
1545         disposition = scsi_decide_disposition(cmd);
1546         if (disposition != SUCCESS &&
1547             time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
1548                 sdev_printk(KERN_ERR, cmd->device,
1549                             "timing out command, waited %lus\n",
1550                             wait_for/HZ);
1551                 disposition = SUCCESS;
1552         }
1553
1554         scsi_log_completion(cmd, disposition);
1555
1556         switch (disposition) {
1557                 case SUCCESS:
1558                         scsi_finish_command(cmd);
1559                         break;
1560                 case NEEDS_RETRY:
1561                         scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY);
1562                         break;
1563                 case ADD_TO_MLQUEUE:
1564                         scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
1565                         break;
1566                 default:
1567                         if (!scsi_eh_scmd_add(cmd, 0))
1568                                 scsi_finish_command(cmd);
1569         }
1570 }
1571
1572 /**
1573  * scsi_dispatch_command - Dispatch a command to the low-level driver.
1574  * @cmd: command block we are dispatching.
1575  *
1576  * Return: nonzero return request was rejected and device's queue needs to be
1577  * plugged.
1578  */
1579 static int scsi_dispatch_cmd(struct scsi_cmnd *cmd)
1580 {
1581         struct Scsi_Host *host = cmd->device->host;
1582         int rtn = 0;
1583
1584         atomic_inc(&cmd->device->iorequest_cnt);
1585
1586         /* check if the device is still usable */
1587         if (unlikely(cmd->device->sdev_state == SDEV_DEL)) {
1588                 /* in SDEV_DEL we error all commands. DID_NO_CONNECT
1589                  * returns an immediate error upwards, and signals
1590                  * that the device is no longer present */
1591                 cmd->result = DID_NO_CONNECT << 16;
1592                 goto done;
1593         }
1594
1595         /* Check to see if the scsi lld made this device blocked. */
1596         if (unlikely(scsi_device_blocked(cmd->device))) {
1597                 /*
1598                  * in blocked state, the command is just put back on
1599                  * the device queue.  The suspend state has already
1600                  * blocked the queue so future requests should not
1601                  * occur until the device transitions out of the
1602                  * suspend state.
1603                  */
1604                 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1605                         "queuecommand : device blocked\n"));
1606                 return SCSI_MLQUEUE_DEVICE_BUSY;
1607         }
1608
1609         /* Store the LUN value in cmnd, if needed. */
1610         if (cmd->device->lun_in_cdb)
1611                 cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) |
1612                                (cmd->device->lun << 5 & 0xe0);
1613
1614         scsi_log_send(cmd);
1615
1616         /*
1617          * Before we queue this command, check if the command
1618          * length exceeds what the host adapter can handle.
1619          */
1620         if (cmd->cmd_len > cmd->device->host->max_cmd_len) {
1621                 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1622                                "queuecommand : command too long. "
1623                                "cdb_size=%d host->max_cmd_len=%d\n",
1624                                cmd->cmd_len, cmd->device->host->max_cmd_len));
1625                 cmd->result = (DID_ABORT << 16);
1626                 goto done;
1627         }
1628
1629         if (unlikely(host->shost_state == SHOST_DEL)) {
1630                 cmd->result = (DID_NO_CONNECT << 16);
1631                 goto done;
1632
1633         }
1634
1635         trace_scsi_dispatch_cmd_start(cmd);
1636         rtn = host->hostt->queuecommand(host, cmd);
1637         if (rtn) {
1638                 trace_scsi_dispatch_cmd_error(cmd, rtn);
1639                 if (rtn != SCSI_MLQUEUE_DEVICE_BUSY &&
1640                     rtn != SCSI_MLQUEUE_TARGET_BUSY)
1641                         rtn = SCSI_MLQUEUE_HOST_BUSY;
1642
1643                 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd,
1644                         "queuecommand : request rejected\n"));
1645         }
1646
1647         return rtn;
1648  done:
1649         cmd->scsi_done(cmd);
1650         return 0;
1651 }
1652
1653 /**
1654  * scsi_done - Invoke completion on finished SCSI command.
1655  * @cmd: The SCSI Command for which a low-level device driver (LLDD) gives
1656  * ownership back to SCSI Core -- i.e. the LLDD has finished with it.
1657  *
1658  * Description: This function is the mid-level's (SCSI Core) interrupt routine,
1659  * which regains ownership of the SCSI command (de facto) from a LLDD, and
1660  * calls blk_complete_request() for further processing.
1661  *
1662  * This function is interrupt context safe.
1663  */
1664 static void scsi_done(struct scsi_cmnd *cmd)
1665 {
1666         trace_scsi_dispatch_cmd_done(cmd);
1667         blk_complete_request(cmd->request);
1668 }
1669
1670 /*
1671  * Function:    scsi_request_fn()
1672  *
1673  * Purpose:     Main strategy routine for SCSI.
1674  *
1675  * Arguments:   q       - Pointer to actual queue.
1676  *
1677  * Returns:     Nothing
1678  *
1679  * Lock status: IO request lock assumed to be held when called.
1680  */
1681 static void scsi_request_fn(struct request_queue *q)
1682         __releases(q->queue_lock)
1683         __acquires(q->queue_lock)
1684 {
1685         struct scsi_device *sdev = q->queuedata;
1686         struct Scsi_Host *shost;
1687         struct scsi_cmnd *cmd;
1688         struct request *req;
1689
1690         /*
1691          * To start with, we keep looping until the queue is empty, or until
1692          * the host is no longer able to accept any more requests.
1693          */
1694         shost = sdev->host;
1695         for (;;) {
1696                 int rtn;
1697                 /*
1698                  * get next queueable request.  We do this early to make sure
1699                  * that the request is fully prepared even if we cannot
1700                  * accept it.
1701                  */
1702                 req = blk_peek_request(q);
1703                 if (!req)
1704                         break;
1705
1706                 if (unlikely(!scsi_device_online(sdev))) {
1707                         sdev_printk(KERN_ERR, sdev,
1708                                     "rejecting I/O to offline device\n");
1709                         scsi_kill_request(req, q);
1710                         continue;
1711                 }
1712
1713                 if (!scsi_dev_queue_ready(q, sdev))
1714                         break;
1715
1716                 /*
1717                  * Remove the request from the request list.
1718                  */
1719                 if (!(blk_queue_tagged(q) && !blk_queue_start_tag(q, req)))
1720                         blk_start_request(req);
1721
1722                 spin_unlock_irq(q->queue_lock);
1723                 cmd = req->special;
1724                 if (unlikely(cmd == NULL)) {
1725                         printk(KERN_CRIT "impossible request in %s.\n"
1726                                          "please mail a stack trace to "
1727                                          "linux-scsi@vger.kernel.org\n",
1728                                          __func__);
1729                         blk_dump_rq_flags(req, "foo");
1730                         BUG();
1731                 }
1732
1733                 /*
1734                  * We hit this when the driver is using a host wide
1735                  * tag map. For device level tag maps the queue_depth check
1736                  * in the device ready fn would prevent us from trying
1737                  * to allocate a tag. Since the map is a shared host resource
1738                  * we add the dev to the starved list so it eventually gets
1739                  * a run when a tag is freed.
1740                  */
1741                 if (blk_queue_tagged(q) && !(req->cmd_flags & REQ_QUEUED)) {
1742                         spin_lock_irq(shost->host_lock);
1743                         if (list_empty(&sdev->starved_entry))
1744                                 list_add_tail(&sdev->starved_entry,
1745                                               &shost->starved_list);
1746                         spin_unlock_irq(shost->host_lock);
1747                         goto not_ready;
1748                 }
1749
1750                 if (!scsi_target_queue_ready(shost, sdev))
1751                         goto not_ready;
1752
1753                 if (!scsi_host_queue_ready(q, shost, sdev))
1754                         goto host_not_ready;
1755         
1756                 if (sdev->simple_tags)
1757                         cmd->flags |= SCMD_TAGGED;
1758                 else
1759                         cmd->flags &= ~SCMD_TAGGED;
1760
1761                 /*
1762                  * Finally, initialize any error handling parameters, and set up
1763                  * the timers for timeouts.
1764                  */
1765                 scsi_init_cmd_errh(cmd);
1766
1767                 /*
1768                  * Dispatch the command to the low-level driver.
1769                  */
1770                 cmd->scsi_done = scsi_done;
1771                 rtn = scsi_dispatch_cmd(cmd);
1772                 if (rtn) {
1773                         scsi_queue_insert(cmd, rtn);
1774                         spin_lock_irq(q->queue_lock);
1775                         goto out_delay;
1776                 }
1777                 spin_lock_irq(q->queue_lock);
1778         }
1779
1780         return;
1781
1782  host_not_ready:
1783         if (scsi_target(sdev)->can_queue > 0)
1784                 atomic_dec(&scsi_target(sdev)->target_busy);
1785  not_ready:
1786         /*
1787          * lock q, handle tag, requeue req, and decrement device_busy. We
1788          * must return with queue_lock held.
1789          *
1790          * Decrementing device_busy without checking it is OK, as all such
1791          * cases (host limits or settings) should run the queue at some
1792          * later time.
1793          */
1794         spin_lock_irq(q->queue_lock);
1795         blk_requeue_request(q, req);
1796         atomic_dec(&sdev->device_busy);
1797 out_delay:
1798         if (!atomic_read(&sdev->device_busy) && !scsi_device_blocked(sdev))
1799                 blk_delay_queue(q, SCSI_QUEUE_DELAY);
1800 }
1801
1802 static inline int prep_to_mq(int ret)
1803 {
1804         switch (ret) {
1805         case BLKPREP_OK:
1806                 return 0;
1807         case BLKPREP_DEFER:
1808                 return BLK_MQ_RQ_QUEUE_BUSY;
1809         default:
1810                 return BLK_MQ_RQ_QUEUE_ERROR;
1811         }
1812 }
1813
1814 static int scsi_mq_prep_fn(struct request *req)
1815 {
1816         struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1817         struct scsi_device *sdev = req->q->queuedata;
1818         struct Scsi_Host *shost = sdev->host;
1819         unsigned char *sense_buf = cmd->sense_buffer;
1820         struct scatterlist *sg;
1821
1822         memset(cmd, 0, sizeof(struct scsi_cmnd));
1823
1824         req->special = cmd;
1825
1826         cmd->request = req;
1827         cmd->device = sdev;
1828         cmd->sense_buffer = sense_buf;
1829
1830         cmd->tag = req->tag;
1831
1832         cmd->cmnd = req->cmd;
1833         cmd->prot_op = SCSI_PROT_NORMAL;
1834
1835         INIT_LIST_HEAD(&cmd->list);
1836         INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler);
1837         cmd->jiffies_at_alloc = jiffies;
1838
1839         if (shost->use_cmd_list) {
1840                 spin_lock_irq(&sdev->list_lock);
1841                 list_add_tail(&cmd->list, &sdev->cmd_list);
1842                 spin_unlock_irq(&sdev->list_lock);
1843         }
1844
1845         sg = (void *)cmd + sizeof(struct scsi_cmnd) + shost->hostt->cmd_size;
1846         cmd->sdb.table.sgl = sg;
1847
1848         if (scsi_host_get_prot(shost)) {
1849                 cmd->prot_sdb = (void *)sg +
1850                         min_t(unsigned int,
1851                               shost->sg_tablesize, SG_CHUNK_SIZE) *
1852                         sizeof(struct scatterlist);
1853                 memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer));
1854
1855                 cmd->prot_sdb->table.sgl =
1856                         (struct scatterlist *)(cmd->prot_sdb + 1);
1857         }
1858
1859         if (blk_bidi_rq(req)) {
1860                 struct request *next_rq = req->next_rq;
1861                 struct scsi_data_buffer *bidi_sdb = blk_mq_rq_to_pdu(next_rq);
1862
1863                 memset(bidi_sdb, 0, sizeof(struct scsi_data_buffer));
1864                 bidi_sdb->table.sgl =
1865                         (struct scatterlist *)(bidi_sdb + 1);
1866
1867                 next_rq->special = bidi_sdb;
1868         }
1869
1870         blk_mq_start_request(req);
1871
1872         return scsi_setup_cmnd(sdev, req);
1873 }
1874
1875 static void scsi_mq_done(struct scsi_cmnd *cmd)
1876 {
1877         trace_scsi_dispatch_cmd_done(cmd);
1878         blk_mq_complete_request(cmd->request, cmd->request->errors);
1879 }
1880
1881 static int scsi_queue_rq(struct blk_mq_hw_ctx *hctx,
1882                          const struct blk_mq_queue_data *bd)
1883 {
1884         struct request *req = bd->rq;
1885         struct request_queue *q = req->q;
1886         struct scsi_device *sdev = q->queuedata;
1887         struct Scsi_Host *shost = sdev->host;
1888         struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req);
1889         int ret;
1890         int reason;
1891
1892         ret = prep_to_mq(scsi_prep_state_check(sdev, req));
1893         if (ret)
1894                 goto out;
1895
1896         ret = BLK_MQ_RQ_QUEUE_BUSY;
1897         if (!get_device(&sdev->sdev_gendev))
1898                 goto out;
1899
1900         if (!scsi_dev_queue_ready(q, sdev))
1901                 goto out_put_device;
1902         if (!scsi_target_queue_ready(shost, sdev))
1903                 goto out_dec_device_busy;
1904         if (!scsi_host_queue_ready(q, shost, sdev))
1905                 goto out_dec_target_busy;
1906
1907
1908         if (!(req->cmd_flags & REQ_DONTPREP)) {
1909                 ret = prep_to_mq(scsi_mq_prep_fn(req));
1910                 if (ret)
1911                         goto out_dec_host_busy;
1912                 req->cmd_flags |= REQ_DONTPREP;
1913         } else {
1914                 blk_mq_start_request(req);
1915         }
1916
1917         if (sdev->simple_tags)
1918                 cmd->flags |= SCMD_TAGGED;
1919         else
1920                 cmd->flags &= ~SCMD_TAGGED;
1921
1922         scsi_init_cmd_errh(cmd);
1923         cmd->scsi_done = scsi_mq_done;
1924
1925         reason = scsi_dispatch_cmd(cmd);
1926         if (reason) {
1927                 scsi_set_blocked(cmd, reason);
1928                 ret = BLK_MQ_RQ_QUEUE_BUSY;
1929                 goto out_dec_host_busy;
1930         }
1931
1932         return BLK_MQ_RQ_QUEUE_OK;
1933
1934 out_dec_host_busy:
1935         atomic_dec(&shost->host_busy);
1936 out_dec_target_busy:
1937         if (scsi_target(sdev)->can_queue > 0)
1938                 atomic_dec(&scsi_target(sdev)->target_busy);
1939 out_dec_device_busy:
1940         atomic_dec(&sdev->device_busy);
1941 out_put_device:
1942         put_device(&sdev->sdev_gendev);
1943 out:
1944         switch (ret) {
1945         case BLK_MQ_RQ_QUEUE_BUSY:
1946                 blk_mq_stop_hw_queue(hctx);
1947                 if (atomic_read(&sdev->device_busy) == 0 &&
1948                     !scsi_device_blocked(sdev))
1949                         blk_mq_delay_queue(hctx, SCSI_QUEUE_DELAY);
1950                 break;
1951         case BLK_MQ_RQ_QUEUE_ERROR:
1952                 /*
1953                  * Make sure to release all allocated ressources when
1954                  * we hit an error, as we will never see this command
1955                  * again.
1956                  */
1957                 if (req->cmd_flags & REQ_DONTPREP)
1958                         scsi_mq_uninit_cmd(cmd);
1959                 break;
1960         default:
1961                 break;
1962         }
1963         return ret;
1964 }
1965
1966 static enum blk_eh_timer_return scsi_timeout(struct request *req,
1967                 bool reserved)
1968 {
1969         if (reserved)
1970                 return BLK_EH_RESET_TIMER;
1971         return scsi_times_out(req);
1972 }
1973
1974 static int scsi_init_request(void *data, struct request *rq,
1975                 unsigned int hctx_idx, unsigned int request_idx,
1976                 unsigned int numa_node)
1977 {
1978         struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
1979
1980         cmd->sense_buffer = kzalloc_node(SCSI_SENSE_BUFFERSIZE, GFP_KERNEL,
1981                         numa_node);
1982         if (!cmd->sense_buffer)
1983                 return -ENOMEM;
1984         return 0;
1985 }
1986
1987 static void scsi_exit_request(void *data, struct request *rq,
1988                 unsigned int hctx_idx, unsigned int request_idx)
1989 {
1990         struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq);
1991
1992         kfree(cmd->sense_buffer);
1993 }
1994
1995 static u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
1996 {
1997         struct device *host_dev;
1998         u64 bounce_limit = 0xffffffff;
1999
2000         if (shost->unchecked_isa_dma)
2001                 return BLK_BOUNCE_ISA;
2002         /*
2003          * Platforms with virtual-DMA translation
2004          * hardware have no practical limit.
2005          */
2006         if (!PCI_DMA_BUS_IS_PHYS)
2007                 return BLK_BOUNCE_ANY;
2008
2009         host_dev = scsi_get_device(shost);
2010         if (host_dev && host_dev->dma_mask)
2011                 bounce_limit = (u64)dma_max_pfn(host_dev) << PAGE_SHIFT;
2012
2013         return bounce_limit;
2014 }
2015
2016 static void __scsi_init_queue(struct Scsi_Host *shost, struct request_queue *q)
2017 {
2018         struct device *dev = shost->dma_dev;
2019
2020         /*
2021          * this limit is imposed by hardware restrictions
2022          */
2023         blk_queue_max_segments(q, min_t(unsigned short, shost->sg_tablesize,
2024                                         SG_MAX_SEGMENTS));
2025
2026         if (scsi_host_prot_dma(shost)) {
2027                 shost->sg_prot_tablesize =
2028                         min_not_zero(shost->sg_prot_tablesize,
2029                                      (unsigned short)SCSI_MAX_PROT_SG_SEGMENTS);
2030                 BUG_ON(shost->sg_prot_tablesize < shost->sg_tablesize);
2031                 blk_queue_max_integrity_segments(q, shost->sg_prot_tablesize);
2032         }
2033
2034         blk_queue_max_hw_sectors(q, shost->max_sectors);
2035         blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));
2036         blk_queue_segment_boundary(q, shost->dma_boundary);
2037         dma_set_seg_boundary(dev, shost->dma_boundary);
2038
2039         blk_queue_max_segment_size(q, dma_get_max_seg_size(dev));
2040
2041         if (!shost->use_clustering)
2042                 q->limits.cluster = 0;
2043
2044         /*
2045          * Set a reasonable default alignment:  The larger of 32-byte (dword),
2046          * which is a common minimum for HBAs, and the minimum DMA alignment,
2047          * which is set by the platform.
2048          *
2049          * Devices that require a bigger alignment can increase it later.
2050          */
2051         blk_queue_dma_alignment(q, max(4, dma_get_cache_alignment()) - 1);
2052 }
2053
2054 struct request_queue *__scsi_alloc_queue(struct Scsi_Host *shost,
2055                                          request_fn_proc *request_fn)
2056 {
2057         struct request_queue *q;
2058
2059         q = blk_init_queue(request_fn, NULL);
2060         if (!q)
2061                 return NULL;
2062         __scsi_init_queue(shost, q);
2063         return q;
2064 }
2065 EXPORT_SYMBOL(__scsi_alloc_queue);
2066
2067 struct request_queue *scsi_alloc_queue(struct scsi_device *sdev)
2068 {
2069         struct request_queue *q;
2070
2071         q = __scsi_alloc_queue(sdev->host, scsi_request_fn);
2072         if (!q)
2073                 return NULL;
2074
2075         blk_queue_prep_rq(q, scsi_prep_fn);
2076         blk_queue_unprep_rq(q, scsi_unprep_fn);
2077         blk_queue_softirq_done(q, scsi_softirq_done);
2078         blk_queue_rq_timed_out(q, scsi_times_out);
2079         blk_queue_lld_busy(q, scsi_lld_busy);
2080         return q;
2081 }
2082
2083 static struct blk_mq_ops scsi_mq_ops = {
2084         .queue_rq       = scsi_queue_rq,
2085         .complete       = scsi_softirq_done,
2086         .timeout        = scsi_timeout,
2087         .init_request   = scsi_init_request,
2088         .exit_request   = scsi_exit_request,
2089 };
2090
2091 struct request_queue *scsi_mq_alloc_queue(struct scsi_device *sdev)
2092 {
2093         sdev->request_queue = blk_mq_init_queue(&sdev->host->tag_set);
2094         if (IS_ERR(sdev->request_queue))
2095                 return NULL;
2096
2097         sdev->request_queue->queuedata = sdev;
2098         __scsi_init_queue(sdev->host, sdev->request_queue);
2099         return sdev->request_queue;
2100 }
2101
2102 int scsi_mq_setup_tags(struct Scsi_Host *shost)
2103 {
2104         unsigned int cmd_size, sgl_size, tbl_size;
2105
2106         tbl_size = shost->sg_tablesize;
2107         if (tbl_size > SG_CHUNK_SIZE)
2108                 tbl_size = SG_CHUNK_SIZE;
2109         sgl_size = tbl_size * sizeof(struct scatterlist);
2110         cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size;
2111         if (scsi_host_get_prot(shost))
2112                 cmd_size += sizeof(struct scsi_data_buffer) + sgl_size;
2113
2114         memset(&shost->tag_set, 0, sizeof(shost->tag_set));
2115         shost->tag_set.ops = &scsi_mq_ops;
2116         shost->tag_set.nr_hw_queues = shost->nr_hw_queues ? : 1;
2117         shost->tag_set.queue_depth = shost->can_queue;
2118         shost->tag_set.cmd_size = cmd_size;
2119         shost->tag_set.numa_node = NUMA_NO_NODE;
2120         shost->tag_set.flags = BLK_MQ_F_SHOULD_MERGE | BLK_MQ_F_SG_MERGE;
2121         shost->tag_set.flags |=
2122                 BLK_ALLOC_POLICY_TO_MQ_FLAG(shost->hostt->tag_alloc_policy);
2123         shost->tag_set.driver_data = shost;
2124
2125         return blk_mq_alloc_tag_set(&shost->tag_set);
2126 }
2127
2128 void scsi_mq_destroy_tags(struct Scsi_Host *shost)
2129 {
2130         blk_mq_free_tag_set(&shost->tag_set);
2131 }
2132
2133 /**
2134  * scsi_device_from_queue - return sdev associated with a request_queue
2135  * @q: The request queue to return the sdev from
2136  *
2137  * Return the sdev associated with a request queue or NULL if the
2138  * request_queue does not reference a SCSI device.
2139  */
2140 struct scsi_device *scsi_device_from_queue(struct request_queue *q)
2141 {
2142         struct scsi_device *sdev = NULL;
2143
2144         if (q->mq_ops) {
2145                 if (q->mq_ops == &scsi_mq_ops)
2146                         sdev = q->queuedata;
2147         } else if (q->request_fn == scsi_request_fn)
2148                 sdev = q->queuedata;
2149         if (!sdev || !get_device(&sdev->sdev_gendev))
2150                 sdev = NULL;
2151
2152         return sdev;
2153 }
2154 EXPORT_SYMBOL_GPL(scsi_device_from_queue);
2155
2156 /*
2157  * Function:    scsi_block_requests()
2158  *
2159  * Purpose:     Utility function used by low-level drivers to prevent further
2160  *              commands from being queued to the device.
2161  *
2162  * Arguments:   shost       - Host in question
2163  *
2164  * Returns:     Nothing
2165  *
2166  * Lock status: No locks are assumed held.
2167  *
2168  * Notes:       There is no timer nor any other means by which the requests
2169  *              get unblocked other than the low-level driver calling
2170  *              scsi_unblock_requests().
2171  */
2172 void scsi_block_requests(struct Scsi_Host *shost)
2173 {
2174         shost->host_self_blocked = 1;
2175 }
2176 EXPORT_SYMBOL(scsi_block_requests);
2177
2178 /*
2179  * Function:    scsi_unblock_requests()
2180  *
2181  * Purpose:     Utility function used by low-level drivers to allow further
2182  *              commands from being queued to the device.
2183  *
2184  * Arguments:   shost       - Host in question
2185  *
2186  * Returns:     Nothing
2187  *
2188  * Lock status: No locks are assumed held.
2189  *
2190  * Notes:       There is no timer nor any other means by which the requests
2191  *              get unblocked other than the low-level driver calling
2192  *              scsi_unblock_requests().
2193  *
2194  *              This is done as an API function so that changes to the
2195  *              internals of the scsi mid-layer won't require wholesale
2196  *              changes to drivers that use this feature.
2197  */
2198 void scsi_unblock_requests(struct Scsi_Host *shost)
2199 {
2200         shost->host_self_blocked = 0;
2201         scsi_run_host_queues(shost);
2202 }
2203 EXPORT_SYMBOL(scsi_unblock_requests);
2204
2205 int __init scsi_init_queue(void)
2206 {
2207         scsi_sdb_cache = kmem_cache_create("scsi_data_buffer",
2208                                            sizeof(struct scsi_data_buffer),
2209                                            0, 0, NULL);
2210         if (!scsi_sdb_cache) {
2211                 printk(KERN_ERR "SCSI: can't init scsi sdb cache\n");
2212                 return -ENOMEM;
2213         }
2214
2215         return 0;
2216 }
2217
2218 void scsi_exit_queue(void)
2219 {
2220         kmem_cache_destroy(scsi_sdb_cache);
2221 }
2222
2223 /**
2224  *      scsi_mode_select - issue a mode select
2225  *      @sdev:  SCSI device to be queried
2226  *      @pf:    Page format bit (1 == standard, 0 == vendor specific)
2227  *      @sp:    Save page bit (0 == don't save, 1 == save)
2228  *      @modepage: mode page being requested
2229  *      @buffer: request buffer (may not be smaller than eight bytes)
2230  *      @len:   length of request buffer.
2231  *      @timeout: command timeout
2232  *      @retries: number of retries before failing
2233  *      @data: returns a structure abstracting the mode header data
2234  *      @sshdr: place to put sense data (or NULL if no sense to be collected).
2235  *              must be SCSI_SENSE_BUFFERSIZE big.
2236  *
2237  *      Returns zero if successful; negative error number or scsi
2238  *      status on error
2239  *
2240  */
2241 int
2242 scsi_mode_select(struct scsi_device *sdev, int pf, int sp, int modepage,
2243                  unsigned char *buffer, int len, int timeout, int retries,
2244                  struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2245 {
2246         unsigned char cmd[10];
2247         unsigned char *real_buffer;
2248         int ret;
2249
2250         memset(cmd, 0, sizeof(cmd));
2251         cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0);
2252
2253         if (sdev->use_10_for_ms) {
2254                 if (len > 65535)
2255                         return -EINVAL;
2256                 real_buffer = kmalloc(8 + len, GFP_KERNEL);
2257                 if (!real_buffer)
2258                         return -ENOMEM;
2259                 memcpy(real_buffer + 8, buffer, len);
2260                 len += 8;
2261                 real_buffer[0] = 0;
2262                 real_buffer[1] = 0;
2263                 real_buffer[2] = data->medium_type;
2264                 real_buffer[3] = data->device_specific;
2265                 real_buffer[4] = data->longlba ? 0x01 : 0;
2266                 real_buffer[5] = 0;
2267                 real_buffer[6] = data->block_descriptor_length >> 8;
2268                 real_buffer[7] = data->block_descriptor_length;
2269
2270                 cmd[0] = MODE_SELECT_10;
2271                 cmd[7] = len >> 8;
2272                 cmd[8] = len;
2273         } else {
2274                 if (len > 255 || data->block_descriptor_length > 255 ||
2275                     data->longlba)
2276                         return -EINVAL;
2277
2278                 real_buffer = kmalloc(4 + len, GFP_KERNEL);
2279                 if (!real_buffer)
2280                         return -ENOMEM;
2281                 memcpy(real_buffer + 4, buffer, len);
2282                 len += 4;
2283                 real_buffer[0] = 0;
2284                 real_buffer[1] = data->medium_type;
2285                 real_buffer[2] = data->device_specific;
2286                 real_buffer[3] = data->block_descriptor_length;
2287                 
2288
2289                 cmd[0] = MODE_SELECT;
2290                 cmd[4] = len;
2291         }
2292
2293         ret = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, real_buffer, len,
2294                                sshdr, timeout, retries, NULL);
2295         kfree(real_buffer);
2296         return ret;
2297 }
2298 EXPORT_SYMBOL_GPL(scsi_mode_select);
2299
2300 /**
2301  *      scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary.
2302  *      @sdev:  SCSI device to be queried
2303  *      @dbd:   set if mode sense will allow block descriptors to be returned
2304  *      @modepage: mode page being requested
2305  *      @buffer: request buffer (may not be smaller than eight bytes)
2306  *      @len:   length of request buffer.
2307  *      @timeout: command timeout
2308  *      @retries: number of retries before failing
2309  *      @data: returns a structure abstracting the mode header data
2310  *      @sshdr: place to put sense data (or NULL if no sense to be collected).
2311  *              must be SCSI_SENSE_BUFFERSIZE big.
2312  *
2313  *      Returns zero if unsuccessful, or the header offset (either 4
2314  *      or 8 depending on whether a six or ten byte command was
2315  *      issued) if successful.
2316  */
2317 int
2318 scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
2319                   unsigned char *buffer, int len, int timeout, int retries,
2320                   struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2321 {
2322         unsigned char cmd[12];
2323         int use_10_for_ms;
2324         int header_length;
2325         int result, retry_count = retries;
2326         struct scsi_sense_hdr my_sshdr;
2327
2328         memset(data, 0, sizeof(*data));
2329         memset(&cmd[0], 0, 12);
2330         cmd[1] = dbd & 0x18;    /* allows DBD and LLBA bits */
2331         cmd[2] = modepage;
2332
2333         /* caller might not be interested in sense, but we need it */
2334         if (!sshdr)
2335                 sshdr = &my_sshdr;
2336
2337  retry:
2338         use_10_for_ms = sdev->use_10_for_ms;
2339
2340         if (use_10_for_ms) {
2341                 if (len < 8)
2342                         len = 8;
2343
2344                 cmd[0] = MODE_SENSE_10;
2345                 cmd[8] = len;
2346                 header_length = 8;
2347         } else {
2348                 if (len < 4)
2349                         len = 4;
2350
2351                 cmd[0] = MODE_SENSE;
2352                 cmd[4] = len;
2353                 header_length = 4;
2354         }
2355
2356         memset(buffer, 0, len);
2357
2358         result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
2359                                   sshdr, timeout, retries, NULL);
2360
2361         /* This code looks awful: what it's doing is making sure an
2362          * ILLEGAL REQUEST sense return identifies the actual command
2363          * byte as the problem.  MODE_SENSE commands can return
2364          * ILLEGAL REQUEST if the code page isn't supported */
2365
2366         if (use_10_for_ms && !scsi_status_is_good(result) &&
2367             (driver_byte(result) & DRIVER_SENSE)) {
2368                 if (scsi_sense_valid(sshdr)) {
2369                         if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
2370                             (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
2371                                 /* 
2372                                  * Invalid command operation code
2373                                  */
2374                                 sdev->use_10_for_ms = 0;
2375                                 goto retry;
2376                         }
2377                 }
2378         }
2379
2380         if(scsi_status_is_good(result)) {
2381                 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b &&
2382                              (modepage == 6 || modepage == 8))) {
2383                         /* Initio breakage? */
2384                         header_length = 0;
2385                         data->length = 13;
2386                         data->medium_type = 0;
2387                         data->device_specific = 0;
2388                         data->longlba = 0;
2389                         data->block_descriptor_length = 0;
2390                 } else if(use_10_for_ms) {
2391                         data->length = buffer[0]*256 + buffer[1] + 2;
2392                         data->medium_type = buffer[2];
2393                         data->device_specific = buffer[3];
2394                         data->longlba = buffer[4] & 0x01;
2395                         data->block_descriptor_length = buffer[6]*256
2396                                 + buffer[7];
2397                 } else {
2398                         data->length = buffer[0] + 1;
2399                         data->medium_type = buffer[1];
2400                         data->device_specific = buffer[2];
2401                         data->block_descriptor_length = buffer[3];
2402                 }
2403                 data->header_length = header_length;
2404         } else if ((status_byte(result) == CHECK_CONDITION) &&
2405                    scsi_sense_valid(sshdr) &&
2406                    sshdr->sense_key == UNIT_ATTENTION && retry_count) {
2407                 retry_count--;
2408                 goto retry;
2409         }
2410
2411         return result;
2412 }
2413 EXPORT_SYMBOL(scsi_mode_sense);
2414
2415 /**
2416  *      scsi_test_unit_ready - test if unit is ready
2417  *      @sdev:  scsi device to change the state of.
2418  *      @timeout: command timeout
2419  *      @retries: number of retries before failing
2420  *      @sshdr_external: Optional pointer to struct scsi_sense_hdr for
2421  *              returning sense. Make sure that this is cleared before passing
2422  *              in.
2423  *
2424  *      Returns zero if unsuccessful or an error if TUR failed.  For
2425  *      removable media, UNIT_ATTENTION sets ->changed flag.
2426  **/
2427 int
2428 scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries,
2429                      struct scsi_sense_hdr *sshdr_external)
2430 {
2431         char cmd[] = {
2432                 TEST_UNIT_READY, 0, 0, 0, 0, 0,
2433         };
2434         struct scsi_sense_hdr *sshdr;
2435         int result;
2436
2437         if (!sshdr_external)
2438                 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
2439         else
2440                 sshdr = sshdr_external;
2441
2442         /* try to eat the UNIT_ATTENTION if there are enough retries */
2443         do {
2444                 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr,
2445                                           timeout, retries, NULL);
2446                 if (sdev->removable && scsi_sense_valid(sshdr) &&
2447                     sshdr->sense_key == UNIT_ATTENTION)
2448                         sdev->changed = 1;
2449         } while (scsi_sense_valid(sshdr) &&
2450                  sshdr->sense_key == UNIT_ATTENTION && --retries);
2451
2452         if (!sshdr_external)
2453                 kfree(sshdr);
2454         return result;
2455 }
2456 EXPORT_SYMBOL(scsi_test_unit_ready);
2457
2458 /**
2459  *      scsi_device_set_state - Take the given device through the device state model.
2460  *      @sdev:  scsi device to change the state of.
2461  *      @state: state to change to.
2462  *
2463  *      Returns zero if unsuccessful or an error if the requested 
2464  *      transition is illegal.
2465  */
2466 int
2467 scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
2468 {
2469         enum scsi_device_state oldstate = sdev->sdev_state;
2470
2471         if (state == oldstate)
2472                 return 0;
2473
2474         switch (state) {
2475         case SDEV_CREATED:
2476                 switch (oldstate) {
2477                 case SDEV_CREATED_BLOCK:
2478                         break;
2479                 default:
2480                         goto illegal;
2481                 }
2482                 break;
2483                         
2484         case SDEV_RUNNING:
2485                 switch (oldstate) {
2486                 case SDEV_CREATED:
2487                 case SDEV_OFFLINE:
2488                 case SDEV_TRANSPORT_OFFLINE:
2489                 case SDEV_QUIESCE:
2490                 case SDEV_BLOCK:
2491                         break;
2492                 default:
2493                         goto illegal;
2494                 }
2495                 break;
2496
2497         case SDEV_QUIESCE:
2498                 switch (oldstate) {
2499                 case SDEV_RUNNING:
2500                 case SDEV_OFFLINE:
2501                 case SDEV_TRANSPORT_OFFLINE:
2502                         break;
2503                 default:
2504                         goto illegal;
2505                 }
2506                 break;
2507
2508         case SDEV_OFFLINE:
2509         case SDEV_TRANSPORT_OFFLINE:
2510                 switch (oldstate) {
2511                 case SDEV_CREATED:
2512                 case SDEV_RUNNING:
2513                 case SDEV_QUIESCE:
2514                 case SDEV_BLOCK:
2515                         break;
2516                 default:
2517                         goto illegal;
2518                 }
2519                 break;
2520
2521         case SDEV_BLOCK:
2522                 switch (oldstate) {
2523                 case SDEV_RUNNING:
2524                 case SDEV_CREATED_BLOCK:
2525                         break;
2526                 default:
2527                         goto illegal;
2528                 }
2529                 break;
2530
2531         case SDEV_CREATED_BLOCK:
2532                 switch (oldstate) {
2533                 case SDEV_CREATED:
2534                         break;
2535                 default:
2536                         goto illegal;
2537                 }
2538                 break;
2539
2540         case SDEV_CANCEL:
2541                 switch (oldstate) {
2542                 case SDEV_CREATED:
2543                 case SDEV_RUNNING:
2544                 case SDEV_QUIESCE:
2545                 case SDEV_OFFLINE:
2546                 case SDEV_TRANSPORT_OFFLINE:
2547                 case SDEV_BLOCK:
2548                         break;
2549                 default:
2550                         goto illegal;
2551                 }
2552                 break;
2553
2554         case SDEV_DEL:
2555                 switch (oldstate) {
2556                 case SDEV_CREATED:
2557                 case SDEV_RUNNING:
2558                 case SDEV_OFFLINE:
2559                 case SDEV_TRANSPORT_OFFLINE:
2560                 case SDEV_CANCEL:
2561                 case SDEV_CREATED_BLOCK:
2562                         break;
2563                 default:
2564                         goto illegal;
2565                 }
2566                 break;
2567
2568         }
2569         sdev->sdev_state = state;
2570         return 0;
2571
2572  illegal:
2573         SCSI_LOG_ERROR_RECOVERY(1,
2574                                 sdev_printk(KERN_ERR, sdev,
2575                                             "Illegal state transition %s->%s",
2576                                             scsi_device_state_name(oldstate),
2577                                             scsi_device_state_name(state))
2578                                 );
2579         return -EINVAL;
2580 }
2581 EXPORT_SYMBOL(scsi_device_set_state);
2582
2583 /**
2584  *      sdev_evt_emit - emit a single SCSI device uevent
2585  *      @sdev: associated SCSI device
2586  *      @evt: event to emit
2587  *
2588  *      Send a single uevent (scsi_event) to the associated scsi_device.
2589  */
2590 static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
2591 {
2592         int idx = 0;
2593         char *envp[3];
2594
2595         switch (evt->evt_type) {
2596         case SDEV_EVT_MEDIA_CHANGE:
2597                 envp[idx++] = "SDEV_MEDIA_CHANGE=1";
2598                 break;
2599         case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
2600                 scsi_rescan_device(&sdev->sdev_gendev);
2601                 envp[idx++] = "SDEV_UA=INQUIRY_DATA_HAS_CHANGED";
2602                 break;
2603         case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2604                 envp[idx++] = "SDEV_UA=CAPACITY_DATA_HAS_CHANGED";
2605                 break;
2606         case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2607                envp[idx++] = "SDEV_UA=THIN_PROVISIONING_SOFT_THRESHOLD_REACHED";
2608                 break;
2609         case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2610                 envp[idx++] = "SDEV_UA=MODE_PARAMETERS_CHANGED";
2611                 break;
2612         case SDEV_EVT_LUN_CHANGE_REPORTED:
2613                 envp[idx++] = "SDEV_UA=REPORTED_LUNS_DATA_HAS_CHANGED";
2614                 break;
2615         case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
2616                 envp[idx++] = "SDEV_UA=ASYMMETRIC_ACCESS_STATE_CHANGED";
2617                 break;
2618         default:
2619                 /* do nothing */
2620                 break;
2621         }
2622
2623         envp[idx++] = NULL;
2624
2625         kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp);
2626 }
2627
2628 /**
2629  *      sdev_evt_thread - send a uevent for each scsi event
2630  *      @work: work struct for scsi_device
2631  *
2632  *      Dispatch queued events to their associated scsi_device kobjects
2633  *      as uevents.
2634  */
2635 void scsi_evt_thread(struct work_struct *work)
2636 {
2637         struct scsi_device *sdev;
2638         enum scsi_device_event evt_type;
2639         LIST_HEAD(event_list);
2640
2641         sdev = container_of(work, struct scsi_device, event_work);
2642
2643         for (evt_type = SDEV_EVT_FIRST; evt_type <= SDEV_EVT_LAST; evt_type++)
2644                 if (test_and_clear_bit(evt_type, sdev->pending_events))
2645                         sdev_evt_send_simple(sdev, evt_type, GFP_KERNEL);
2646
2647         while (1) {
2648                 struct scsi_event *evt;
2649                 struct list_head *this, *tmp;
2650                 unsigned long flags;
2651
2652                 spin_lock_irqsave(&sdev->list_lock, flags);
2653                 list_splice_init(&sdev->event_list, &event_list);
2654                 spin_unlock_irqrestore(&sdev->list_lock, flags);
2655
2656                 if (list_empty(&event_list))
2657                         break;
2658
2659                 list_for_each_safe(this, tmp, &event_list) {
2660                         evt = list_entry(this, struct scsi_event, node);
2661                         list_del(&evt->node);
2662                         scsi_evt_emit(sdev, evt);
2663                         kfree(evt);
2664                 }
2665         }
2666 }
2667
2668 /**
2669  *      sdev_evt_send - send asserted event to uevent thread
2670  *      @sdev: scsi_device event occurred on
2671  *      @evt: event to send
2672  *
2673  *      Assert scsi device event asynchronously.
2674  */
2675 void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
2676 {
2677         unsigned long flags;
2678
2679 #if 0
2680         /* FIXME: currently this check eliminates all media change events
2681          * for polled devices.  Need to update to discriminate between AN
2682          * and polled events */
2683         if (!test_bit(evt->evt_type, sdev->supported_events)) {
2684                 kfree(evt);
2685                 return;
2686         }
2687 #endif
2688
2689         spin_lock_irqsave(&sdev->list_lock, flags);
2690         list_add_tail(&evt->node, &sdev->event_list);
2691         schedule_work(&sdev->event_work);
2692         spin_unlock_irqrestore(&sdev->list_lock, flags);
2693 }
2694 EXPORT_SYMBOL_GPL(sdev_evt_send);
2695
2696 /**
2697  *      sdev_evt_alloc - allocate a new scsi event
2698  *      @evt_type: type of event to allocate
2699  *      @gfpflags: GFP flags for allocation
2700  *
2701  *      Allocates and returns a new scsi_event.
2702  */
2703 struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
2704                                   gfp_t gfpflags)
2705 {
2706         struct scsi_event *evt = kzalloc(sizeof(struct scsi_event), gfpflags);
2707         if (!evt)
2708                 return NULL;
2709
2710         evt->evt_type = evt_type;
2711         INIT_LIST_HEAD(&evt->node);
2712
2713         /* evt_type-specific initialization, if any */
2714         switch (evt_type) {
2715         case SDEV_EVT_MEDIA_CHANGE:
2716         case SDEV_EVT_INQUIRY_CHANGE_REPORTED:
2717         case SDEV_EVT_CAPACITY_CHANGE_REPORTED:
2718         case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED:
2719         case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED:
2720         case SDEV_EVT_LUN_CHANGE_REPORTED:
2721         case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED:
2722         default:
2723                 /* do nothing */
2724                 break;
2725         }
2726
2727         return evt;
2728 }
2729 EXPORT_SYMBOL_GPL(sdev_evt_alloc);
2730
2731 /**
2732  *      sdev_evt_send_simple - send asserted event to uevent thread
2733  *      @sdev: scsi_device event occurred on
2734  *      @evt_type: type of event to send
2735  *      @gfpflags: GFP flags for allocation
2736  *
2737  *      Assert scsi device event asynchronously, given an event type.
2738  */
2739 void sdev_evt_send_simple(struct scsi_device *sdev,
2740                           enum scsi_device_event evt_type, gfp_t gfpflags)
2741 {
2742         struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
2743         if (!evt) {
2744                 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n",
2745                             evt_type);
2746                 return;
2747         }
2748
2749         sdev_evt_send(sdev, evt);
2750 }
2751 EXPORT_SYMBOL_GPL(sdev_evt_send_simple);
2752
2753 /**
2754  *      scsi_device_quiesce - Block user issued commands.
2755  *      @sdev:  scsi device to quiesce.
2756  *
2757  *      This works by trying to transition to the SDEV_QUIESCE state
2758  *      (which must be a legal transition).  When the device is in this
2759  *      state, only special requests will be accepted, all others will
2760  *      be deferred.  Since special requests may also be requeued requests,
2761  *      a successful return doesn't guarantee the device will be 
2762  *      totally quiescent.
2763  *
2764  *      Must be called with user context, may sleep.
2765  *
2766  *      Returns zero if unsuccessful or an error if not.
2767  */
2768 int
2769 scsi_device_quiesce(struct scsi_device *sdev)
2770 {
2771         int err = scsi_device_set_state(sdev, SDEV_QUIESCE);
2772         if (err)
2773                 return err;
2774
2775         scsi_run_queue(sdev->request_queue);
2776         while (atomic_read(&sdev->device_busy)) {
2777                 msleep_interruptible(200);
2778                 scsi_run_queue(sdev->request_queue);
2779         }
2780         return 0;
2781 }
2782 EXPORT_SYMBOL(scsi_device_quiesce);
2783
2784 /**
2785  *      scsi_device_resume - Restart user issued commands to a quiesced device.
2786  *      @sdev:  scsi device to resume.
2787  *
2788  *      Moves the device from quiesced back to running and restarts the
2789  *      queues.
2790  *
2791  *      Must be called with user context, may sleep.
2792  */
2793 void scsi_device_resume(struct scsi_device *sdev)
2794 {
2795         /* check if the device state was mutated prior to resume, and if
2796          * so assume the state is being managed elsewhere (for example
2797          * device deleted during suspend)
2798          */
2799         if (sdev->sdev_state != SDEV_QUIESCE ||
2800             scsi_device_set_state(sdev, SDEV_RUNNING))
2801                 return;
2802         scsi_run_queue(sdev->request_queue);
2803 }
2804 EXPORT_SYMBOL(scsi_device_resume);
2805
2806 static void
2807 device_quiesce_fn(struct scsi_device *sdev, void *data)
2808 {
2809         scsi_device_quiesce(sdev);
2810 }
2811
2812 void
2813 scsi_target_quiesce(struct scsi_target *starget)
2814 {
2815         starget_for_each_device(starget, NULL, device_quiesce_fn);
2816 }
2817 EXPORT_SYMBOL(scsi_target_quiesce);
2818
2819 static void
2820 device_resume_fn(struct scsi_device *sdev, void *data)
2821 {
2822         scsi_device_resume(sdev);
2823 }
2824
2825 void
2826 scsi_target_resume(struct scsi_target *starget)
2827 {
2828         starget_for_each_device(starget, NULL, device_resume_fn);
2829 }
2830 EXPORT_SYMBOL(scsi_target_resume);
2831
2832 /**
2833  * scsi_internal_device_block - internal function to put a device temporarily into the SDEV_BLOCK state
2834  * @sdev:       device to block
2835  *
2836  * Block request made by scsi lld's to temporarily stop all
2837  * scsi commands on the specified device.  Called from interrupt
2838  * or normal process context.
2839  *
2840  * Returns zero if successful or error if not
2841  *
2842  * Notes:       
2843  *      This routine transitions the device to the SDEV_BLOCK state
2844  *      (which must be a legal transition).  When the device is in this
2845  *      state, all commands are deferred until the scsi lld reenables
2846  *      the device with scsi_device_unblock or device_block_tmo fires.
2847  */
2848 int
2849 scsi_internal_device_block(struct scsi_device *sdev)
2850 {
2851         struct request_queue *q = sdev->request_queue;
2852         unsigned long flags;
2853         int err = 0;
2854
2855         err = scsi_device_set_state(sdev, SDEV_BLOCK);
2856         if (err) {
2857                 err = scsi_device_set_state(sdev, SDEV_CREATED_BLOCK);
2858
2859                 if (err)
2860                         return err;
2861         }
2862
2863         /* 
2864          * The device has transitioned to SDEV_BLOCK.  Stop the
2865          * block layer from calling the midlayer with this device's
2866          * request queue. 
2867          */
2868         if (q->mq_ops) {
2869                 blk_mq_stop_hw_queues(q);
2870         } else {
2871                 spin_lock_irqsave(q->queue_lock, flags);
2872                 blk_stop_queue(q);
2873                 spin_unlock_irqrestore(q->queue_lock, flags);
2874         }
2875
2876         return 0;
2877 }
2878 EXPORT_SYMBOL_GPL(scsi_internal_device_block);
2879  
2880 /**
2881  * scsi_internal_device_unblock - resume a device after a block request
2882  * @sdev:       device to resume
2883  * @new_state:  state to set devices to after unblocking
2884  *
2885  * Called by scsi lld's or the midlayer to restart the device queue
2886  * for the previously suspended scsi device.  Called from interrupt or
2887  * normal process context.
2888  *
2889  * Returns zero if successful or error if not.
2890  *
2891  * Notes:       
2892  *      This routine transitions the device to the SDEV_RUNNING state
2893  *      or to one of the offline states (which must be a legal transition)
2894  *      allowing the midlayer to goose the queue for this device.
2895  */
2896 int
2897 scsi_internal_device_unblock(struct scsi_device *sdev,
2898                              enum scsi_device_state new_state)
2899 {
2900         struct request_queue *q = sdev->request_queue; 
2901         unsigned long flags;
2902
2903         /*
2904          * Try to transition the scsi device to SDEV_RUNNING or one of the
2905          * offlined states and goose the device queue if successful.
2906          */
2907         if ((sdev->sdev_state == SDEV_BLOCK) ||
2908             (sdev->sdev_state == SDEV_TRANSPORT_OFFLINE))
2909                 sdev->sdev_state = new_state;
2910         else if (sdev->sdev_state == SDEV_CREATED_BLOCK) {
2911                 if (new_state == SDEV_TRANSPORT_OFFLINE ||
2912                     new_state == SDEV_OFFLINE)
2913                         sdev->sdev_state = new_state;
2914                 else
2915                         sdev->sdev_state = SDEV_CREATED;
2916         } else if (sdev->sdev_state != SDEV_CANCEL &&
2917                  sdev->sdev_state != SDEV_OFFLINE)
2918                 return -EINVAL;
2919
2920         if (q->mq_ops) {
2921                 blk_mq_start_stopped_hw_queues(q, false);
2922         } else {
2923                 spin_lock_irqsave(q->queue_lock, flags);
2924                 blk_start_queue(q);
2925                 spin_unlock_irqrestore(q->queue_lock, flags);
2926         }
2927
2928         return 0;
2929 }
2930 EXPORT_SYMBOL_GPL(scsi_internal_device_unblock);
2931
2932 static void
2933 device_block(struct scsi_device *sdev, void *data)
2934 {
2935         scsi_internal_device_block(sdev);
2936 }
2937
2938 static int
2939 target_block(struct device *dev, void *data)
2940 {
2941         if (scsi_is_target_device(dev))
2942                 starget_for_each_device(to_scsi_target(dev), NULL,
2943                                         device_block);
2944         return 0;
2945 }
2946
2947 void
2948 scsi_target_block(struct device *dev)
2949 {
2950         if (scsi_is_target_device(dev))
2951                 starget_for_each_device(to_scsi_target(dev), NULL,
2952                                         device_block);
2953         else
2954                 device_for_each_child(dev, NULL, target_block);
2955 }
2956 EXPORT_SYMBOL_GPL(scsi_target_block);
2957
2958 static void
2959 device_unblock(struct scsi_device *sdev, void *data)
2960 {
2961         scsi_internal_device_unblock(sdev, *(enum scsi_device_state *)data);
2962 }
2963
2964 static int
2965 target_unblock(struct device *dev, void *data)
2966 {
2967         if (scsi_is_target_device(dev))
2968                 starget_for_each_device(to_scsi_target(dev), data,
2969                                         device_unblock);
2970         return 0;
2971 }
2972
2973 void
2974 scsi_target_unblock(struct device *dev, enum scsi_device_state new_state)
2975 {
2976         if (scsi_is_target_device(dev))
2977                 starget_for_each_device(to_scsi_target(dev), &new_state,
2978                                         device_unblock);
2979         else
2980                 device_for_each_child(dev, &new_state, target_unblock);
2981 }
2982 EXPORT_SYMBOL_GPL(scsi_target_unblock);
2983
2984 /**
2985  * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt
2986  * @sgl:        scatter-gather list
2987  * @sg_count:   number of segments in sg
2988  * @offset:     offset in bytes into sg, on return offset into the mapped area
2989  * @len:        bytes to map, on return number of bytes mapped
2990  *
2991  * Returns virtual address of the start of the mapped page
2992  */
2993 void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count,
2994                           size_t *offset, size_t *len)
2995 {
2996         int i;
2997         size_t sg_len = 0, len_complete = 0;
2998         struct scatterlist *sg;
2999         struct page *page;
3000
3001         WARN_ON(!irqs_disabled());
3002
3003         for_each_sg(sgl, sg, sg_count, i) {
3004                 len_complete = sg_len; /* Complete sg-entries */
3005                 sg_len += sg->length;
3006                 if (sg_len > *offset)
3007                         break;
3008         }
3009
3010         if (unlikely(i == sg_count)) {
3011                 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
3012                         "elements %d\n",
3013                        __func__, sg_len, *offset, sg_count);
3014                 WARN_ON(1);
3015                 return NULL;
3016         }
3017
3018         /* Offset starting from the beginning of first page in this sg-entry */
3019         *offset = *offset - len_complete + sg->offset;
3020
3021         /* Assumption: contiguous pages can be accessed as "page + i" */
3022         page = nth_page(sg_page(sg), (*offset >> PAGE_SHIFT));
3023         *offset &= ~PAGE_MASK;
3024
3025         /* Bytes in this sg-entry from *offset to the end of the page */
3026         sg_len = PAGE_SIZE - *offset;
3027         if (*len > sg_len)
3028                 *len = sg_len;
3029
3030         return kmap_atomic(page);
3031 }
3032 EXPORT_SYMBOL(scsi_kmap_atomic_sg);
3033
3034 /**
3035  * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg
3036  * @virt:       virtual address to be unmapped
3037  */
3038 void scsi_kunmap_atomic_sg(void *virt)
3039 {
3040         kunmap_atomic(virt);
3041 }
3042 EXPORT_SYMBOL(scsi_kunmap_atomic_sg);
3043
3044 void sdev_disable_disk_events(struct scsi_device *sdev)
3045 {
3046         atomic_inc(&sdev->disk_events_disable_depth);
3047 }
3048 EXPORT_SYMBOL(sdev_disable_disk_events);
3049
3050 void sdev_enable_disk_events(struct scsi_device *sdev)
3051 {
3052         if (WARN_ON_ONCE(atomic_read(&sdev->disk_events_disable_depth) <= 0))
3053                 return;
3054         atomic_dec(&sdev->disk_events_disable_depth);
3055 }
3056 EXPORT_SYMBOL(sdev_enable_disk_events);
3057
3058 /**
3059  * scsi_vpd_lun_id - return a unique device identification
3060  * @sdev: SCSI device
3061  * @id:   buffer for the identification
3062  * @id_len:  length of the buffer
3063  *
3064  * Copies a unique device identification into @id based
3065  * on the information in the VPD page 0x83 of the device.
3066  * The string will be formatted as a SCSI name string.
3067  *
3068  * Returns the length of the identification or error on failure.
3069  * If the identifier is longer than the supplied buffer the actual
3070  * identifier length is returned and the buffer is not zero-padded.
3071  */
3072 int scsi_vpd_lun_id(struct scsi_device *sdev, char *id, size_t id_len)
3073 {
3074         u8 cur_id_type = 0xff;
3075         u8 cur_id_size = 0;
3076         unsigned char *d, *cur_id_str;
3077         unsigned char __rcu *vpd_pg83;
3078         int id_size = -EINVAL;
3079
3080         rcu_read_lock();
3081         vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3082         if (!vpd_pg83) {
3083                 rcu_read_unlock();
3084                 return -ENXIO;
3085         }
3086
3087         /*
3088          * Look for the correct descriptor.
3089          * Order of preference for lun descriptor:
3090          * - SCSI name string
3091          * - NAA IEEE Registered Extended
3092          * - EUI-64 based 16-byte
3093          * - EUI-64 based 12-byte
3094          * - NAA IEEE Registered
3095          * - NAA IEEE Extended
3096          * - T10 Vendor ID
3097          * as longer descriptors reduce the likelyhood
3098          * of identification clashes.
3099          */
3100
3101         /* The id string must be at least 20 bytes + terminating NULL byte */
3102         if (id_len < 21) {
3103                 rcu_read_unlock();
3104                 return -EINVAL;
3105         }
3106
3107         memset(id, 0, id_len);
3108         d = vpd_pg83 + 4;
3109         while (d < vpd_pg83 + sdev->vpd_pg83_len) {
3110                 /* Skip designators not referring to the LUN */
3111                 if ((d[1] & 0x30) != 0x00)
3112                         goto next_desig;
3113
3114                 switch (d[1] & 0xf) {
3115                 case 0x1:
3116                         /* T10 Vendor ID */
3117                         if (cur_id_size > d[3])
3118                                 break;
3119                         /* Prefer anything */
3120                         if (cur_id_type > 0x01 && cur_id_type != 0xff)
3121                                 break;
3122                         cur_id_size = d[3];
3123                         if (cur_id_size + 4 > id_len)
3124                                 cur_id_size = id_len - 4;
3125                         cur_id_str = d + 4;
3126                         cur_id_type = d[1] & 0xf;
3127                         id_size = snprintf(id, id_len, "t10.%*pE",
3128                                            cur_id_size, cur_id_str);
3129                         break;
3130                 case 0x2:
3131                         /* EUI-64 */
3132                         if (cur_id_size > d[3])
3133                                 break;
3134                         /* Prefer NAA IEEE Registered Extended */
3135                         if (cur_id_type == 0x3 &&
3136                             cur_id_size == d[3])
3137                                 break;
3138                         cur_id_size = d[3];
3139                         cur_id_str = d + 4;
3140                         cur_id_type = d[1] & 0xf;
3141                         switch (cur_id_size) {
3142                         case 8:
3143                                 id_size = snprintf(id, id_len,
3144                                                    "eui.%8phN",
3145                                                    cur_id_str);
3146                                 break;
3147                         case 12:
3148                                 id_size = snprintf(id, id_len,
3149                                                    "eui.%12phN",
3150                                                    cur_id_str);
3151                                 break;
3152                         case 16:
3153                                 id_size = snprintf(id, id_len,
3154                                                    "eui.%16phN",
3155                                                    cur_id_str);
3156                                 break;
3157                         default:
3158                                 cur_id_size = 0;
3159                                 break;
3160                         }
3161                         break;
3162                 case 0x3:
3163                         /* NAA */
3164                         if (cur_id_size > d[3])
3165                                 break;
3166                         cur_id_size = d[3];
3167                         cur_id_str = d + 4;
3168                         cur_id_type = d[1] & 0xf;
3169                         switch (cur_id_size) {
3170                         case 8:
3171                                 id_size = snprintf(id, id_len,
3172                                                    "naa.%8phN",
3173                                                    cur_id_str);
3174                                 break;
3175                         case 16:
3176                                 id_size = snprintf(id, id_len,
3177                                                    "naa.%16phN",
3178                                                    cur_id_str);
3179                                 break;
3180                         default:
3181                                 cur_id_size = 0;
3182                                 break;
3183                         }
3184                         break;
3185                 case 0x8:
3186                         /* SCSI name string */
3187                         if (cur_id_size + 4 > d[3])
3188                                 break;
3189                         /* Prefer others for truncated descriptor */
3190                         if (cur_id_size && d[3] > id_len)
3191                                 break;
3192                         cur_id_size = id_size = d[3];
3193                         cur_id_str = d + 4;
3194                         cur_id_type = d[1] & 0xf;
3195                         if (cur_id_size >= id_len)
3196                                 cur_id_size = id_len - 1;
3197                         memcpy(id, cur_id_str, cur_id_size);
3198                         /* Decrease priority for truncated descriptor */
3199                         if (cur_id_size != id_size)
3200                                 cur_id_size = 6;
3201                         break;
3202                 default:
3203                         break;
3204                 }
3205 next_desig:
3206                 d += d[3] + 4;
3207         }
3208         rcu_read_unlock();
3209
3210         return id_size;
3211 }
3212 EXPORT_SYMBOL(scsi_vpd_lun_id);
3213
3214 /*
3215  * scsi_vpd_tpg_id - return a target port group identifier
3216  * @sdev: SCSI device
3217  *
3218  * Returns the Target Port Group identifier from the information
3219  * froom VPD page 0x83 of the device.
3220  *
3221  * Returns the identifier or error on failure.
3222  */
3223 int scsi_vpd_tpg_id(struct scsi_device *sdev, int *rel_id)
3224 {
3225         unsigned char *d;
3226         unsigned char __rcu *vpd_pg83;
3227         int group_id = -EAGAIN, rel_port = -1;
3228
3229         rcu_read_lock();
3230         vpd_pg83 = rcu_dereference(sdev->vpd_pg83);
3231         if (!vpd_pg83) {
3232                 rcu_read_unlock();
3233                 return -ENXIO;
3234         }
3235
3236         d = sdev->vpd_pg83 + 4;
3237         while (d < sdev->vpd_pg83 + sdev->vpd_pg83_len) {
3238                 switch (d[1] & 0xf) {
3239                 case 0x4:
3240                         /* Relative target port */
3241                         rel_port = get_unaligned_be16(&d[6]);
3242                         break;
3243                 case 0x5:
3244                         /* Target port group */
3245                         group_id = get_unaligned_be16(&d[6]);
3246                         break;
3247                 default:
3248                         break;
3249                 }
3250                 d += d[3] + 4;
3251         }
3252         rcu_read_unlock();
3253
3254         if (group_id >= 0 && rel_id && rel_port != -1)
3255                 *rel_id = rel_port;
3256
3257         return group_id;
3258 }
3259 EXPORT_SYMBOL(scsi_vpd_tpg_id);