1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (C) 1999 Eric Youngdale 4 * Copyright (C) 2014 Christoph Hellwig 5 * 6 * SCSI queueing library. 7 * Initial versions: Eric Youngdale (eric@andante.org). 8 * Based upon conversations with large numbers 9 * of people at Linux Expo. 10 */ 11 12 #include <linux/bio.h> 13 #include <linux/bitops.h> 14 #include <linux/blkdev.h> 15 #include <linux/completion.h> 16 #include <linux/ctype.h> 17 #include <linux/kernel.h> 18 #include <linux/export.h> 19 #include <linux/init.h> 20 #include <linux/pci.h> 21 #include <linux/delay.h> 22 #include <linux/hardirq.h> 23 #include <linux/scatterlist.h> 24 #include <linux/blk-mq.h> 25 #include <linux/blk-integrity.h> 26 #include <linux/ratelimit.h> 27 #include <linux/unaligned.h> 28 29 #include <scsi/scsi.h> 30 #include <scsi/scsi_cmnd.h> 31 #include <scsi/scsi_dbg.h> 32 #include <scsi/scsi_device.h> 33 #include <scsi/scsi_driver.h> 34 #include <scsi/scsi_eh.h> 35 #include <scsi/scsi_host.h> 36 #include <scsi/scsi_transport.h> /* scsi_init_limits() */ 37 #include <scsi/scsi_dh.h> 38 39 #include <trace/events/scsi.h> 40 41 #include "scsi_debugfs.h" 42 #include "scsi_priv.h" 43 #include "scsi_logging.h" 44 45 /* 46 * Size of integrity metadata is usually small, 1 inline sg should 47 * cover normal cases. 48 */ 49 #ifdef CONFIG_ARCH_NO_SG_CHAIN 50 #define SCSI_INLINE_PROT_SG_CNT 0 51 #define SCSI_INLINE_SG_CNT 0 52 #else 53 #define SCSI_INLINE_PROT_SG_CNT 1 54 #define SCSI_INLINE_SG_CNT 2 55 #endif 56 57 static struct kmem_cache *scsi_sense_cache; 58 static DEFINE_MUTEX(scsi_sense_cache_mutex); 59 60 static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd); 61 62 int scsi_init_sense_cache(struct Scsi_Host *shost) 63 { 64 int ret = 0; 65 66 mutex_lock(&scsi_sense_cache_mutex); 67 if (!scsi_sense_cache) { 68 scsi_sense_cache = 69 kmem_cache_create_usercopy("scsi_sense_cache", 70 SCSI_SENSE_BUFFERSIZE, 0, SLAB_HWCACHE_ALIGN, 71 0, SCSI_SENSE_BUFFERSIZE, NULL); 72 if (!scsi_sense_cache) 73 ret = -ENOMEM; 74 } 75 mutex_unlock(&scsi_sense_cache_mutex); 76 return ret; 77 } 78 79 static void 80 scsi_set_blocked(struct scsi_cmnd *cmd, enum scsi_qc_status reason) 81 { 82 struct Scsi_Host *host = cmd->device->host; 83 struct scsi_device *device = cmd->device; 84 struct scsi_target *starget = scsi_target(device); 85 86 /* 87 * Set the appropriate busy bit for the device/host. 88 * 89 * If the host/device isn't busy, assume that something actually 90 * completed, and that we should be able to queue a command now. 91 * 92 * Note that the prior mid-layer assumption that any host could 93 * always queue at least one command is now broken. The mid-layer 94 * will implement a user specifiable stall (see 95 * scsi_host.max_host_blocked and scsi_device.max_device_blocked) 96 * if a command is requeued with no other commands outstanding 97 * either for the device or for the host. 98 */ 99 switch (reason) { 100 case SCSI_MLQUEUE_HOST_BUSY: 101 atomic_set(&host->host_blocked, host->max_host_blocked); 102 break; 103 case SCSI_MLQUEUE_DEVICE_BUSY: 104 case SCSI_MLQUEUE_EH_RETRY: 105 atomic_set(&device->device_blocked, 106 device->max_device_blocked); 107 break; 108 case SCSI_MLQUEUE_TARGET_BUSY: 109 atomic_set(&starget->target_blocked, 110 starget->max_target_blocked); 111 break; 112 } 113 } 114 115 static void scsi_mq_requeue_cmd(struct scsi_cmnd *cmd, unsigned long msecs) 116 { 117 struct request *rq = scsi_cmd_to_rq(cmd); 118 119 if (rq->rq_flags & RQF_DONTPREP) { 120 rq->rq_flags &= ~RQF_DONTPREP; 121 scsi_mq_uninit_cmd(cmd); 122 } else { 123 WARN_ON_ONCE(true); 124 } 125 126 blk_mq_requeue_request(rq, false); 127 if (!scsi_host_in_recovery(cmd->device->host)) 128 blk_mq_delay_kick_requeue_list(rq->q, msecs); 129 } 130 131 /** 132 * __scsi_queue_insert - private queue insertion 133 * @cmd: The SCSI command being requeued 134 * @reason: The reason for the requeue 135 * @unbusy: Whether the queue should be unbusied 136 * 137 * This is a private queue insertion. The public interface 138 * scsi_queue_insert() always assumes the queue should be unbusied 139 * because it's always called before the completion. This function is 140 * for a requeue after completion, which should only occur in this 141 * file. 142 */ 143 static void __scsi_queue_insert(struct scsi_cmnd *cmd, 144 enum scsi_qc_status reason, bool unbusy) 145 { 146 struct scsi_device *device = cmd->device; 147 148 SCSI_LOG_MLQUEUE(1, scmd_printk(KERN_INFO, cmd, 149 "Inserting command %p into mlqueue\n", cmd)); 150 151 scsi_set_blocked(cmd, reason); 152 153 /* 154 * Decrement the counters, since these commands are no longer 155 * active on the host/device. 156 */ 157 if (unbusy) 158 scsi_device_unbusy(device, cmd); 159 160 /* 161 * Requeue this command. It will go before all other commands 162 * that are already in the queue. Schedule requeue work under 163 * lock such that the kblockd_schedule_work() call happens 164 * before blk_mq_destroy_queue() finishes. 165 */ 166 cmd->result = 0; 167 168 blk_mq_requeue_request(scsi_cmd_to_rq(cmd), 169 !scsi_host_in_recovery(cmd->device->host)); 170 } 171 172 /** 173 * scsi_queue_insert - Reinsert a command in the queue. 174 * @cmd: command that we are adding to queue. 175 * @reason: why we are inserting command to queue. 176 * 177 * We do this for one of two cases. Either the host is busy and it cannot accept 178 * any more commands for the time being, or the device returned QUEUE_FULL and 179 * can accept no more commands. 180 * 181 * Context: This could be called either from an interrupt context or a normal 182 * process context. 183 */ 184 void scsi_queue_insert(struct scsi_cmnd *cmd, enum scsi_qc_status reason) 185 { 186 __scsi_queue_insert(cmd, reason, true); 187 } 188 189 /** 190 * scsi_failures_reset_retries - reset all failures to zero 191 * @failures: &struct scsi_failures with specific failure modes set 192 */ 193 void scsi_failures_reset_retries(struct scsi_failures *failures) 194 { 195 struct scsi_failure *failure; 196 197 failures->total_retries = 0; 198 199 for (failure = failures->failure_definitions; failure->result; 200 failure++) 201 failure->retries = 0; 202 } 203 EXPORT_SYMBOL_GPL(scsi_failures_reset_retries); 204 205 /** 206 * scsi_check_passthrough - Determine if passthrough scsi_cmnd needs a retry. 207 * @scmd: scsi_cmnd to check. 208 * @failures: scsi_failures struct that lists failures to check for. 209 * 210 * Returns -EAGAIN if the caller should retry else 0. 211 */ 212 static int scsi_check_passthrough(struct scsi_cmnd *scmd, 213 struct scsi_failures *failures) 214 { 215 struct scsi_failure *failure; 216 struct scsi_sense_hdr sshdr; 217 enum sam_status status; 218 219 if (!scmd->result) 220 return 0; 221 222 if (!failures) 223 return 0; 224 225 for (failure = failures->failure_definitions; failure->result; 226 failure++) { 227 if (failure->result == SCMD_FAILURE_RESULT_ANY) 228 goto maybe_retry; 229 230 if (host_byte(scmd->result) && 231 host_byte(scmd->result) == host_byte(failure->result)) 232 goto maybe_retry; 233 234 status = status_byte(scmd->result); 235 if (!status) 236 continue; 237 238 if (failure->result == SCMD_FAILURE_STAT_ANY && 239 !scsi_status_is_good(scmd->result)) 240 goto maybe_retry; 241 242 if (status != status_byte(failure->result)) 243 continue; 244 245 if (status_byte(failure->result) != SAM_STAT_CHECK_CONDITION || 246 failure->sense == SCMD_FAILURE_SENSE_ANY) 247 goto maybe_retry; 248 249 if (!scsi_command_normalize_sense(scmd, &sshdr)) 250 return 0; 251 252 if (failure->sense != sshdr.sense_key) 253 continue; 254 255 if (failure->asc == SCMD_FAILURE_ASC_ANY) 256 goto maybe_retry; 257 258 if (failure->asc != sshdr.asc) 259 continue; 260 261 if (failure->ascq == SCMD_FAILURE_ASCQ_ANY || 262 failure->ascq == sshdr.ascq) 263 goto maybe_retry; 264 } 265 266 return 0; 267 268 maybe_retry: 269 if (failure->allowed) { 270 if (failure->allowed == SCMD_FAILURE_NO_LIMIT || 271 ++failure->retries <= failure->allowed) 272 return -EAGAIN; 273 } else { 274 if (failures->total_allowed == SCMD_FAILURE_NO_LIMIT || 275 ++failures->total_retries <= failures->total_allowed) 276 return -EAGAIN; 277 } 278 279 return 0; 280 } 281 282 /** 283 * scsi_execute_cmd - insert request and wait for the result 284 * @sdev: scsi_device 285 * @cmd: scsi command 286 * @opf: block layer request cmd_flags 287 * @buffer: data buffer 288 * @bufflen: len of buffer 289 * @timeout: request timeout in HZ 290 * @ml_retries: number of times SCSI midlayer will retry request 291 * @args: Optional args. See struct definition for field descriptions 292 * 293 * Returns the scsi_cmnd result field if a command was executed, or a negative 294 * Linux error code if we didn't get that far. 295 */ 296 int scsi_execute_cmd(struct scsi_device *sdev, const unsigned char *cmd, 297 blk_opf_t opf, void *buffer, unsigned int bufflen, 298 int timeout, int ml_retries, 299 const struct scsi_exec_args *args) 300 { 301 static const struct scsi_exec_args default_args; 302 struct request *req; 303 struct scsi_cmnd *scmd; 304 int ret; 305 306 if (!args) 307 args = &default_args; 308 else if (WARN_ON_ONCE(args->sense && 309 args->sense_len != SCSI_SENSE_BUFFERSIZE)) 310 return -EINVAL; 311 312 retry: 313 req = scsi_alloc_request(sdev->request_queue, opf, args->req_flags); 314 if (IS_ERR(req)) 315 return PTR_ERR(req); 316 317 if (bufflen) { 318 ret = blk_rq_map_kern(req, buffer, bufflen, GFP_NOIO); 319 if (ret) 320 goto out; 321 } 322 scmd = blk_mq_rq_to_pdu(req); 323 scmd->cmd_len = COMMAND_SIZE(cmd[0]); 324 memcpy(scmd->cmnd, cmd, scmd->cmd_len); 325 scmd->allowed = ml_retries; 326 scmd->flags |= args->scmd_flags; 327 req->timeout = timeout; 328 req->rq_flags |= RQF_QUIET; 329 330 /* 331 * head injection *required* here otherwise quiesce won't work 332 */ 333 blk_execute_rq(req, true); 334 335 if (scsi_check_passthrough(scmd, args->failures) == -EAGAIN) { 336 blk_mq_free_request(req); 337 goto retry; 338 } 339 340 /* 341 * Some devices (USB mass-storage in particular) may transfer 342 * garbage data together with a residue indicating that the data 343 * is invalid. Prevent the garbage from being misinterpreted 344 * and prevent security leaks by zeroing out the excess data. 345 */ 346 if (unlikely(scmd->resid_len > 0 && scmd->resid_len <= bufflen)) 347 memset(buffer + bufflen - scmd->resid_len, 0, scmd->resid_len); 348 349 if (args->resid) 350 *args->resid = scmd->resid_len; 351 if (args->sense) 352 memcpy(args->sense, scmd->sense_buffer, SCSI_SENSE_BUFFERSIZE); 353 if (args->sshdr) 354 scsi_normalize_sense(scmd->sense_buffer, scmd->sense_len, 355 args->sshdr); 356 357 ret = scmd->result; 358 out: 359 blk_mq_free_request(req); 360 361 return ret; 362 } 363 EXPORT_SYMBOL(scsi_execute_cmd); 364 365 /* 366 * Wake up the error handler if necessary. Avoid as follows that the error 367 * handler is not woken up if host in-flight requests number == 368 * shost->host_failed: use call_rcu() in scsi_eh_scmd_add() in combination 369 * with an RCU read lock in this function to ensure that this function in 370 * its entirety either finishes before scsi_eh_scmd_add() increases the 371 * host_failed counter or that it notices the shost state change made by 372 * scsi_eh_scmd_add(). 373 */ 374 static void scsi_dec_host_busy(struct Scsi_Host *shost, struct scsi_cmnd *cmd) 375 { 376 unsigned long flags; 377 378 rcu_read_lock(); 379 __clear_bit(SCMD_STATE_INFLIGHT, &cmd->state); 380 if (unlikely(scsi_host_in_recovery(shost))) { 381 /* 382 * Ensure the clear of SCMD_STATE_INFLIGHT is visible to 383 * other CPUs before counting busy requests. Otherwise, 384 * reordering can cause CPUs to race and miss an eh wakeup 385 * when no CPU sees all busy requests as done or timed out. 386 */ 387 smp_mb(); 388 389 unsigned int busy = scsi_host_busy(shost); 390 391 spin_lock_irqsave(shost->host_lock, flags); 392 if (shost->host_failed || shost->host_eh_scheduled) 393 scsi_eh_wakeup(shost, busy); 394 spin_unlock_irqrestore(shost->host_lock, flags); 395 } 396 rcu_read_unlock(); 397 } 398 399 void scsi_device_unbusy(struct scsi_device *sdev, struct scsi_cmnd *cmd) 400 { 401 struct Scsi_Host *shost = sdev->host; 402 struct scsi_target *starget = scsi_target(sdev); 403 404 scsi_dec_host_busy(shost, cmd); 405 406 if (starget->can_queue > 0) 407 atomic_dec(&starget->target_busy); 408 409 if (sdev->budget_map.map) 410 sbitmap_put(&sdev->budget_map, cmd->budget_token); 411 cmd->budget_token = -1; 412 } 413 414 /* 415 * Kick the queue of SCSI device @sdev if @sdev != current_sdev. Called with 416 * interrupts disabled. 417 */ 418 static void scsi_kick_sdev_queue(struct scsi_device *sdev, void *data) 419 { 420 struct scsi_device *current_sdev = data; 421 422 if (sdev != current_sdev) 423 blk_mq_run_hw_queues(sdev->request_queue, true); 424 } 425 426 /* 427 * Called for single_lun devices on IO completion. Clear starget_sdev_user, 428 * and call blk_run_queue for all the scsi_devices on the target - 429 * including current_sdev first. 430 * 431 * Called with *no* scsi locks held. 432 */ 433 static void scsi_single_lun_run(struct scsi_device *current_sdev) 434 { 435 struct Scsi_Host *shost = current_sdev->host; 436 struct scsi_target *starget = scsi_target(current_sdev); 437 unsigned long flags; 438 439 spin_lock_irqsave(shost->host_lock, flags); 440 starget->starget_sdev_user = NULL; 441 spin_unlock_irqrestore(shost->host_lock, flags); 442 443 /* 444 * Call blk_run_queue for all LUNs on the target, starting with 445 * current_sdev. We race with others (to set starget_sdev_user), 446 * but in most cases, we will be first. Ideally, each LU on the 447 * target would get some limited time or requests on the target. 448 */ 449 blk_mq_run_hw_queues(current_sdev->request_queue, 450 shost->queuecommand_may_block); 451 452 spin_lock_irqsave(shost->host_lock, flags); 453 if (!starget->starget_sdev_user) 454 __starget_for_each_device(starget, current_sdev, 455 scsi_kick_sdev_queue); 456 spin_unlock_irqrestore(shost->host_lock, flags); 457 } 458 459 static inline bool scsi_device_is_busy(struct scsi_device *sdev) 460 { 461 if (scsi_device_busy(sdev) >= sdev->queue_depth) 462 return true; 463 if (atomic_read(&sdev->device_blocked) > 0) 464 return true; 465 return false; 466 } 467 468 static inline bool scsi_target_is_busy(struct scsi_target *starget) 469 { 470 if (starget->can_queue > 0) { 471 if (atomic_read(&starget->target_busy) >= starget->can_queue) 472 return true; 473 if (atomic_read(&starget->target_blocked) > 0) 474 return true; 475 } 476 return false; 477 } 478 479 static inline bool scsi_host_is_busy(struct Scsi_Host *shost) 480 { 481 if (atomic_read(&shost->host_blocked) > 0) 482 return true; 483 if (shost->host_self_blocked) 484 return true; 485 return false; 486 } 487 488 static void scsi_starved_list_run(struct Scsi_Host *shost) 489 { 490 LIST_HEAD(starved_list); 491 struct scsi_device *sdev; 492 unsigned long flags; 493 494 spin_lock_irqsave(shost->host_lock, flags); 495 list_splice_init(&shost->starved_list, &starved_list); 496 497 while (!list_empty(&starved_list)) { 498 struct request_queue *slq; 499 500 /* 501 * As long as shost is accepting commands and we have 502 * starved queues, call blk_run_queue. scsi_request_fn 503 * drops the queue_lock and can add us back to the 504 * starved_list. 505 * 506 * host_lock protects the starved_list and starved_entry. 507 * scsi_request_fn must get the host_lock before checking 508 * or modifying starved_list or starved_entry. 509 */ 510 if (scsi_host_is_busy(shost)) 511 break; 512 513 sdev = list_entry(starved_list.next, 514 struct scsi_device, starved_entry); 515 list_del_init(&sdev->starved_entry); 516 if (scsi_target_is_busy(scsi_target(sdev))) { 517 list_move_tail(&sdev->starved_entry, 518 &shost->starved_list); 519 continue; 520 } 521 522 /* 523 * Once we drop the host lock, a racing scsi_remove_device() 524 * call may remove the sdev from the starved list and destroy 525 * it and the queue. Mitigate by taking a reference to the 526 * queue and never touching the sdev again after we drop the 527 * host lock. Note: if __scsi_remove_device() invokes 528 * blk_mq_destroy_queue() before the queue is run from this 529 * function then blk_run_queue() will return immediately since 530 * blk_mq_destroy_queue() marks the queue with QUEUE_FLAG_DYING. 531 */ 532 slq = sdev->request_queue; 533 if (!blk_get_queue(slq)) 534 continue; 535 spin_unlock_irqrestore(shost->host_lock, flags); 536 537 blk_mq_run_hw_queues(slq, false); 538 blk_put_queue(slq); 539 540 spin_lock_irqsave(shost->host_lock, flags); 541 } 542 /* put any unprocessed entries back */ 543 list_splice(&starved_list, &shost->starved_list); 544 spin_unlock_irqrestore(shost->host_lock, flags); 545 } 546 547 /** 548 * scsi_run_queue - Select a proper request queue to serve next. 549 * @q: last request's queue 550 * 551 * The previous command was completely finished, start a new one if possible. 552 */ 553 static void scsi_run_queue(struct request_queue *q) 554 { 555 struct scsi_device *sdev = q->queuedata; 556 557 if (scsi_target(sdev)->single_lun) 558 scsi_single_lun_run(sdev); 559 if (!list_empty(&sdev->host->starved_list)) 560 scsi_starved_list_run(sdev->host); 561 562 /* Note: blk_mq_kick_requeue_list() runs the queue asynchronously. */ 563 blk_mq_kick_requeue_list(q); 564 } 565 566 void scsi_requeue_run_queue(struct work_struct *work) 567 { 568 struct scsi_device *sdev; 569 struct request_queue *q; 570 571 sdev = container_of(work, struct scsi_device, requeue_work); 572 q = sdev->request_queue; 573 scsi_run_queue(q); 574 } 575 576 void scsi_run_host_queues(struct Scsi_Host *shost) 577 { 578 struct scsi_device *sdev, *prev = NULL; 579 unsigned long flags; 580 581 spin_lock_irqsave(shost->host_lock, flags); 582 __shost_for_each_device(sdev, shost) { 583 /* 584 * Only skip devices so deep into removal they will never need 585 * another kick to their queues. Thus scsi_device_get() cannot 586 * be used as it would skip devices in SDEV_CANCEL state which 587 * may need a queue kick. 588 */ 589 if (sdev->sdev_state == SDEV_DEL || 590 !get_device(&sdev->sdev_gendev)) 591 continue; 592 spin_unlock_irqrestore(shost->host_lock, flags); 593 594 if (prev) 595 put_device(&prev->sdev_gendev); 596 scsi_run_queue(sdev->request_queue); 597 598 prev = sdev; 599 600 spin_lock_irqsave(shost->host_lock, flags); 601 } 602 spin_unlock_irqrestore(shost->host_lock, flags); 603 if (prev) 604 put_device(&prev->sdev_gendev); 605 } 606 607 static void scsi_uninit_cmd(struct scsi_cmnd *cmd) 608 { 609 if (!blk_rq_is_passthrough(scsi_cmd_to_rq(cmd))) { 610 struct scsi_driver *drv = scsi_cmd_to_driver(cmd); 611 612 if (drv->uninit_command) 613 drv->uninit_command(cmd); 614 } 615 } 616 617 void scsi_free_sgtables(struct scsi_cmnd *cmd) 618 { 619 if (cmd->sdb.table.nents) 620 sg_free_table_chained(&cmd->sdb.table, 621 SCSI_INLINE_SG_CNT); 622 if (scsi_prot_sg_count(cmd)) 623 sg_free_table_chained(&cmd->prot_sdb->table, 624 SCSI_INLINE_PROT_SG_CNT); 625 } 626 EXPORT_SYMBOL_GPL(scsi_free_sgtables); 627 628 static void scsi_mq_uninit_cmd(struct scsi_cmnd *cmd) 629 { 630 scsi_free_sgtables(cmd); 631 scsi_uninit_cmd(cmd); 632 } 633 634 static void scsi_run_queue_async(struct scsi_device *sdev) 635 { 636 if (scsi_host_in_recovery(sdev->host)) 637 return; 638 639 if (scsi_target(sdev)->single_lun || 640 !list_empty(&sdev->host->starved_list)) { 641 kblockd_schedule_work(&sdev->requeue_work); 642 } else { 643 /* 644 * smp_mb() present in sbitmap_queue_clear() or implied in 645 * .end_io is for ordering writing .device_busy in 646 * scsi_device_unbusy() and reading sdev->restarts. 647 */ 648 int old = atomic_read(&sdev->restarts); 649 650 /* 651 * ->restarts has to be kept as non-zero if new budget 652 * contention occurs. 653 * 654 * No need to run queue when either another re-run 655 * queue wins in updating ->restarts or a new budget 656 * contention occurs. 657 */ 658 if (old && atomic_cmpxchg(&sdev->restarts, old, 0) == old) 659 blk_mq_run_hw_queues(sdev->request_queue, true); 660 } 661 } 662 663 /* Returns false when no more bytes to process, true if there are more */ 664 static bool scsi_end_request(struct request *req, blk_status_t error, 665 unsigned int bytes) 666 { 667 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 668 struct scsi_device *sdev = cmd->device; 669 struct request_queue *q = sdev->request_queue; 670 671 if (blk_update_request(req, error, bytes)) 672 return true; 673 674 if (q->limits.features & BLK_FEAT_ADD_RANDOM) 675 add_disk_randomness(req->q->disk); 676 677 WARN_ON_ONCE(!blk_rq_is_passthrough(req) && 678 !(cmd->flags & SCMD_INITIALIZED)); 679 cmd->flags = 0; 680 681 /* 682 * Calling rcu_barrier() is not necessary here because the 683 * SCSI error handler guarantees that the function called by 684 * call_rcu() has been called before scsi_end_request() is 685 * called. 686 */ 687 destroy_rcu_head(&cmd->rcu); 688 689 /* 690 * In the MQ case the command gets freed by __blk_mq_end_request, 691 * so we have to do all cleanup that depends on it earlier. 692 * 693 * We also can't kick the queues from irq context, so we 694 * will have to defer it to a workqueue. 695 */ 696 scsi_mq_uninit_cmd(cmd); 697 698 /* 699 * queue is still alive, so grab the ref for preventing it 700 * from being cleaned up during running queue. 701 */ 702 percpu_ref_get(&q->q_usage_counter); 703 704 __blk_mq_end_request(req, error); 705 706 scsi_run_queue_async(sdev); 707 708 percpu_ref_put(&q->q_usage_counter); 709 return false; 710 } 711 712 /** 713 * scsi_result_to_blk_status - translate a SCSI result code into blk_status_t 714 * @result: scsi error code 715 * 716 * Translate a SCSI result code into a blk_status_t value. 717 */ 718 static blk_status_t scsi_result_to_blk_status(int result) 719 { 720 /* 721 * Check the scsi-ml byte first in case we converted a host or status 722 * byte. 723 */ 724 switch (scsi_ml_byte(result)) { 725 case SCSIML_STAT_OK: 726 break; 727 case SCSIML_STAT_RESV_CONFLICT: 728 return BLK_STS_RESV_CONFLICT; 729 case SCSIML_STAT_NOSPC: 730 return BLK_STS_NOSPC; 731 case SCSIML_STAT_MED_ERROR: 732 return BLK_STS_MEDIUM; 733 case SCSIML_STAT_TGT_FAILURE: 734 return BLK_STS_TARGET; 735 case SCSIML_STAT_DL_TIMEOUT: 736 return BLK_STS_DURATION_LIMIT; 737 } 738 739 switch (host_byte(result)) { 740 case DID_OK: 741 if (scsi_status_is_good(result)) 742 return BLK_STS_OK; 743 return BLK_STS_IOERR; 744 case DID_TRANSPORT_FAILFAST: 745 case DID_TRANSPORT_MARGINAL: 746 return BLK_STS_TRANSPORT; 747 default: 748 return BLK_STS_IOERR; 749 } 750 } 751 752 /** 753 * scsi_rq_err_bytes - determine number of bytes till the next failure boundary 754 * @rq: request to examine 755 * 756 * Description: 757 * A request could be merge of IOs which require different failure 758 * handling. This function determines the number of bytes which 759 * can be failed from the beginning of the request without 760 * crossing into area which need to be retried further. 761 * 762 * Return: 763 * The number of bytes to fail. 764 */ 765 static unsigned int scsi_rq_err_bytes(const struct request *rq) 766 { 767 blk_opf_t ff = rq->cmd_flags & REQ_FAILFAST_MASK; 768 unsigned int bytes = 0; 769 struct bio *bio; 770 771 if (!(rq->rq_flags & RQF_MIXED_MERGE)) 772 return blk_rq_bytes(rq); 773 774 /* 775 * Currently the only 'mixing' which can happen is between 776 * different fastfail types. We can safely fail portions 777 * which have all the failfast bits that the first one has - 778 * the ones which are at least as eager to fail as the first 779 * one. 780 */ 781 for (bio = rq->bio; bio; bio = bio->bi_next) { 782 if ((bio->bi_opf & ff) != ff) 783 break; 784 bytes += bio->bi_iter.bi_size; 785 } 786 787 /* this could lead to infinite loop */ 788 BUG_ON(blk_rq_bytes(rq) && !bytes); 789 return bytes; 790 } 791 792 static bool scsi_cmd_runtime_exceeced(struct scsi_cmnd *cmd) 793 { 794 struct request *req = scsi_cmd_to_rq(cmd); 795 unsigned long wait_for; 796 797 if (cmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT) 798 return false; 799 800 wait_for = (cmd->allowed + 1) * req->timeout; 801 if (time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) { 802 scmd_printk(KERN_ERR, cmd, "timing out command, waited %lus\n", 803 wait_for/HZ); 804 return true; 805 } 806 return false; 807 } 808 809 /* 810 * When ALUA transition state is returned, reprep the cmd to 811 * use the ALUA handler's transition timeout. Delay the reprep 812 * 1 sec to avoid aggressive retries of the target in that 813 * state. 814 */ 815 #define ALUA_TRANSITION_REPREP_DELAY 1000 816 817 /* Helper for scsi_io_completion() when special action required. */ 818 static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result) 819 { 820 struct request *req = scsi_cmd_to_rq(cmd); 821 int level = 0; 822 enum {ACTION_FAIL, ACTION_REPREP, ACTION_DELAYED_REPREP, 823 ACTION_RETRY, ACTION_DELAYED_RETRY} action; 824 struct scsi_sense_hdr sshdr; 825 bool sense_valid; 826 bool sense_current = true; /* false implies "deferred sense" */ 827 blk_status_t blk_stat; 828 829 sense_valid = scsi_command_normalize_sense(cmd, &sshdr); 830 if (sense_valid) 831 sense_current = !scsi_sense_is_deferred(&sshdr); 832 833 blk_stat = scsi_result_to_blk_status(result); 834 835 if (host_byte(result) == DID_RESET) { 836 /* Third party bus reset or reset for error recovery 837 * reasons. Just retry the command and see what 838 * happens. 839 */ 840 action = ACTION_RETRY; 841 } else if (sense_valid && sense_current) { 842 switch (sshdr.sense_key) { 843 case UNIT_ATTENTION: 844 if (cmd->device->removable) { 845 /* Detected disc change. Set a bit 846 * and quietly refuse further access. 847 */ 848 cmd->device->changed = 1; 849 action = ACTION_FAIL; 850 } else { 851 /* Must have been a power glitch, or a 852 * bus reset. Could not have been a 853 * media change, so we just retry the 854 * command and see what happens. 855 */ 856 action = ACTION_RETRY; 857 } 858 break; 859 case ILLEGAL_REQUEST: 860 /* If we had an ILLEGAL REQUEST returned, then 861 * we may have performed an unsupported 862 * command. The only thing this should be 863 * would be a ten byte read where only a six 864 * byte read was supported. Also, on a system 865 * where READ CAPACITY failed, we may have 866 * read past the end of the disk. 867 */ 868 if ((cmd->device->use_10_for_rw && 869 sshdr.asc == 0x20 && sshdr.ascq == 0x00) && 870 (cmd->cmnd[0] == READ_10 || 871 cmd->cmnd[0] == WRITE_10)) { 872 /* This will issue a new 6-byte command. */ 873 cmd->device->use_10_for_rw = 0; 874 action = ACTION_REPREP; 875 } else if (sshdr.asc == 0x10) /* DIX */ { 876 action = ACTION_FAIL; 877 blk_stat = BLK_STS_PROTECTION; 878 /* INVALID COMMAND OPCODE or INVALID FIELD IN CDB */ 879 } else if (sshdr.asc == 0x20 || sshdr.asc == 0x24) { 880 action = ACTION_FAIL; 881 blk_stat = BLK_STS_TARGET; 882 } else 883 action = ACTION_FAIL; 884 break; 885 case ABORTED_COMMAND: 886 action = ACTION_FAIL; 887 if (sshdr.asc == 0x10) /* DIF */ 888 blk_stat = BLK_STS_PROTECTION; 889 break; 890 case NOT_READY: 891 /* If the device is in the process of becoming 892 * ready, or has a temporary blockage, retry. 893 */ 894 if (sshdr.asc == 0x04) { 895 switch (sshdr.ascq) { 896 case 0x01: /* becoming ready */ 897 case 0x04: /* format in progress */ 898 case 0x05: /* rebuild in progress */ 899 case 0x06: /* recalculation in progress */ 900 case 0x07: /* operation in progress */ 901 case 0x08: /* Long write in progress */ 902 case 0x09: /* self test in progress */ 903 case 0x11: /* notify (enable spinup) required */ 904 case 0x14: /* space allocation in progress */ 905 case 0x1a: /* start stop unit in progress */ 906 case 0x1b: /* sanitize in progress */ 907 case 0x1d: /* configuration in progress */ 908 action = ACTION_DELAYED_RETRY; 909 break; 910 case 0x0a: /* ALUA state transition */ 911 action = ACTION_DELAYED_REPREP; 912 break; 913 /* 914 * Depopulation might take many hours, 915 * thus it is not worthwhile to retry. 916 */ 917 case 0x24: /* depopulation in progress */ 918 case 0x25: /* depopulation restore in progress */ 919 fallthrough; 920 default: 921 action = ACTION_FAIL; 922 break; 923 } 924 } else 925 action = ACTION_FAIL; 926 break; 927 case VOLUME_OVERFLOW: 928 /* See SSC3rXX or current. */ 929 action = ACTION_FAIL; 930 break; 931 case DATA_PROTECT: 932 action = ACTION_FAIL; 933 if ((sshdr.asc == 0x0C && sshdr.ascq == 0x12) || 934 (sshdr.asc == 0x55 && 935 (sshdr.ascq == 0x0E || sshdr.ascq == 0x0F))) { 936 /* Insufficient zone resources */ 937 blk_stat = BLK_STS_ZONE_OPEN_RESOURCE; 938 } 939 break; 940 case COMPLETED: 941 fallthrough; 942 default: 943 action = ACTION_FAIL; 944 break; 945 } 946 } else 947 action = ACTION_FAIL; 948 949 if (action != ACTION_FAIL && scsi_cmd_runtime_exceeced(cmd)) 950 action = ACTION_FAIL; 951 952 switch (action) { 953 case ACTION_FAIL: 954 /* Give up and fail the remainder of the request */ 955 if (!(req->rq_flags & RQF_QUIET)) { 956 static DEFINE_RATELIMIT_STATE(_rs, 957 DEFAULT_RATELIMIT_INTERVAL, 958 DEFAULT_RATELIMIT_BURST); 959 960 if (unlikely(scsi_logging_level)) 961 level = 962 SCSI_LOG_LEVEL(SCSI_LOG_MLCOMPLETE_SHIFT, 963 SCSI_LOG_MLCOMPLETE_BITS); 964 965 /* 966 * if logging is enabled the failure will be printed 967 * in scsi_log_completion(), so avoid duplicate messages 968 */ 969 if (!level && __ratelimit(&_rs)) { 970 scsi_print_result(cmd, NULL, FAILED); 971 if (sense_valid) 972 scsi_print_sense(cmd); 973 scsi_print_command(cmd); 974 } 975 } 976 if (!scsi_end_request(req, blk_stat, scsi_rq_err_bytes(req))) 977 return; 978 fallthrough; 979 case ACTION_REPREP: 980 scsi_mq_requeue_cmd(cmd, 0); 981 break; 982 case ACTION_DELAYED_REPREP: 983 scsi_mq_requeue_cmd(cmd, ALUA_TRANSITION_REPREP_DELAY); 984 break; 985 case ACTION_RETRY: 986 /* Retry the same command immediately */ 987 __scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY, false); 988 break; 989 case ACTION_DELAYED_RETRY: 990 /* Retry the same command after a delay */ 991 __scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY, false); 992 break; 993 } 994 } 995 996 /* 997 * Helper for scsi_io_completion() when cmd->result is non-zero. Returns a 998 * new result that may suppress further error checking. Also modifies 999 * *blk_statp in some cases. 1000 */ 1001 static int scsi_io_completion_nz_result(struct scsi_cmnd *cmd, int result, 1002 blk_status_t *blk_statp) 1003 { 1004 bool sense_valid; 1005 bool sense_current = true; /* false implies "deferred sense" */ 1006 struct request *req = scsi_cmd_to_rq(cmd); 1007 struct scsi_sense_hdr sshdr; 1008 1009 sense_valid = scsi_command_normalize_sense(cmd, &sshdr); 1010 if (sense_valid) 1011 sense_current = !scsi_sense_is_deferred(&sshdr); 1012 1013 if (blk_rq_is_passthrough(req)) { 1014 if (sense_valid) { 1015 /* 1016 * SG_IO wants current and deferred errors 1017 */ 1018 cmd->sense_len = min(8 + cmd->sense_buffer[7], 1019 SCSI_SENSE_BUFFERSIZE); 1020 } 1021 if (sense_current) 1022 *blk_statp = scsi_result_to_blk_status(result); 1023 } else if (blk_rq_bytes(req) == 0 && sense_current) { 1024 /* 1025 * Flush commands do not transfers any data, and thus cannot use 1026 * good_bytes != blk_rq_bytes(req) as the signal for an error. 1027 * This sets *blk_statp explicitly for the problem case. 1028 */ 1029 *blk_statp = scsi_result_to_blk_status(result); 1030 } 1031 /* 1032 * Recovered errors need reporting, but they're always treated as 1033 * success, so fiddle the result code here. For passthrough requests 1034 * we already took a copy of the original into sreq->result which 1035 * is what gets returned to the user 1036 */ 1037 if (sense_valid && (sshdr.sense_key == RECOVERED_ERROR)) { 1038 bool do_print = true; 1039 /* 1040 * if ATA PASS-THROUGH INFORMATION AVAILABLE [0x0, 0x1d] 1041 * skip print since caller wants ATA registers. Only occurs 1042 * on SCSI ATA PASS_THROUGH commands when CK_COND=1 1043 */ 1044 if ((sshdr.asc == 0x0) && (sshdr.ascq == 0x1d)) 1045 do_print = false; 1046 else if (req->rq_flags & RQF_QUIET) 1047 do_print = false; 1048 if (do_print) 1049 scsi_print_sense(cmd); 1050 result = 0; 1051 /* for passthrough, *blk_statp may be set */ 1052 *blk_statp = BLK_STS_OK; 1053 } 1054 /* 1055 * Another corner case: the SCSI status byte is non-zero but 'good'. 1056 * Example: PRE-FETCH command returns SAM_STAT_CONDITION_MET when 1057 * it is able to fit nominated LBs in its cache (and SAM_STAT_GOOD 1058 * if it can't fit). Treat SAM_STAT_CONDITION_MET and the related 1059 * intermediate statuses (both obsolete in SAM-4) as good. 1060 */ 1061 if ((result & 0xff) && scsi_status_is_good(result)) { 1062 result = 0; 1063 *blk_statp = BLK_STS_OK; 1064 } 1065 return result; 1066 } 1067 1068 /** 1069 * scsi_io_completion - Completion processing for SCSI commands. 1070 * @cmd: command that is finished. 1071 * @good_bytes: number of processed bytes. 1072 * 1073 * We will finish off the specified number of sectors. If we are done, the 1074 * command block will be released and the queue function will be goosed. If we 1075 * are not done then we have to figure out what to do next: 1076 * 1077 * a) We can call scsi_mq_requeue_cmd(). The request will be 1078 * unprepared and put back on the queue. Then a new command will 1079 * be created for it. This should be used if we made forward 1080 * progress, or if we want to switch from READ(10) to READ(6) for 1081 * example. 1082 * 1083 * b) We can call scsi_io_completion_action(). The request will be 1084 * put back on the queue and retried using the same command as 1085 * before, possibly after a delay. 1086 * 1087 * c) We can call scsi_end_request() with blk_stat other than 1088 * BLK_STS_OK, to fail the remainder of the request. 1089 */ 1090 void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes) 1091 { 1092 int result = cmd->result; 1093 struct request *req = scsi_cmd_to_rq(cmd); 1094 blk_status_t blk_stat = BLK_STS_OK; 1095 1096 if (unlikely(result)) /* a nz result may or may not be an error */ 1097 result = scsi_io_completion_nz_result(cmd, result, &blk_stat); 1098 1099 /* 1100 * Next deal with any sectors which we were able to correctly 1101 * handle. 1102 */ 1103 SCSI_LOG_HLCOMPLETE(1, scmd_printk(KERN_INFO, cmd, 1104 "%u sectors total, %d bytes done.\n", 1105 blk_rq_sectors(req), good_bytes)); 1106 1107 /* 1108 * Failed, zero length commands always need to drop down 1109 * to retry code. Fast path should return in this block. 1110 */ 1111 if (likely(blk_rq_bytes(req) > 0 || blk_stat == BLK_STS_OK)) { 1112 if (likely(!scsi_end_request(req, blk_stat, good_bytes))) 1113 return; /* no bytes remaining */ 1114 } 1115 1116 /* Kill remainder if no retries. */ 1117 if (unlikely(blk_stat && scsi_noretry_cmd(cmd))) { 1118 if (scsi_end_request(req, blk_stat, blk_rq_bytes(req))) 1119 WARN_ONCE(true, 1120 "Bytes remaining after failed, no-retry command"); 1121 return; 1122 } 1123 1124 /* 1125 * If there had been no error, but we have leftover bytes in the 1126 * request just queue the command up again. 1127 */ 1128 if (likely(result == 0)) 1129 scsi_mq_requeue_cmd(cmd, 0); 1130 else 1131 scsi_io_completion_action(cmd, result); 1132 } 1133 1134 static inline bool scsi_cmd_needs_dma_drain(struct scsi_device *sdev, 1135 struct request *rq) 1136 { 1137 return sdev->dma_drain_len && blk_rq_is_passthrough(rq) && 1138 !op_is_write(req_op(rq)) && 1139 sdev->host->hostt->dma_need_drain(rq); 1140 } 1141 1142 /** 1143 * scsi_alloc_sgtables - Allocate and initialize data and integrity scatterlists 1144 * @cmd: SCSI command data structure to initialize. 1145 * 1146 * Initializes @cmd->sdb and also @cmd->prot_sdb if data integrity is enabled 1147 * for @cmd. 1148 * 1149 * Returns: 1150 * * BLK_STS_OK - on success 1151 * * BLK_STS_RESOURCE - if the failure is retryable 1152 * * BLK_STS_IOERR - if the failure is fatal 1153 */ 1154 blk_status_t scsi_alloc_sgtables(struct scsi_cmnd *cmd) 1155 { 1156 struct scsi_device *sdev = cmd->device; 1157 struct request *rq = scsi_cmd_to_rq(cmd); 1158 unsigned short nr_segs = blk_rq_nr_phys_segments(rq); 1159 struct scatterlist *last_sg = NULL; 1160 blk_status_t ret; 1161 bool need_drain = scsi_cmd_needs_dma_drain(sdev, rq); 1162 int count; 1163 1164 if (WARN_ON_ONCE(!nr_segs)) 1165 return BLK_STS_IOERR; 1166 1167 /* 1168 * Make sure there is space for the drain. The driver must adjust 1169 * max_hw_segments to be prepared for this. 1170 */ 1171 if (need_drain) 1172 nr_segs++; 1173 1174 /* 1175 * If sg table allocation fails, requeue request later. 1176 */ 1177 if (unlikely(sg_alloc_table_chained(&cmd->sdb.table, nr_segs, 1178 cmd->sdb.table.sgl, SCSI_INLINE_SG_CNT))) 1179 return BLK_STS_RESOURCE; 1180 1181 /* 1182 * Next, walk the list, and fill in the addresses and sizes of 1183 * each segment. 1184 */ 1185 count = __blk_rq_map_sg(rq, cmd->sdb.table.sgl, &last_sg); 1186 1187 if (blk_rq_bytes(rq) & rq->q->limits.dma_pad_mask) { 1188 unsigned int pad_len = 1189 (rq->q->limits.dma_pad_mask & ~blk_rq_bytes(rq)) + 1; 1190 1191 last_sg->length += pad_len; 1192 cmd->extra_len += pad_len; 1193 } 1194 1195 if (need_drain) { 1196 sg_unmark_end(last_sg); 1197 last_sg = sg_next(last_sg); 1198 sg_set_buf(last_sg, sdev->dma_drain_buf, sdev->dma_drain_len); 1199 sg_mark_end(last_sg); 1200 1201 cmd->extra_len += sdev->dma_drain_len; 1202 count++; 1203 } 1204 1205 BUG_ON(count > cmd->sdb.table.nents); 1206 cmd->sdb.table.nents = count; 1207 cmd->sdb.length = blk_rq_payload_bytes(rq); 1208 1209 if (blk_integrity_rq(rq)) { 1210 struct scsi_data_buffer *prot_sdb = cmd->prot_sdb; 1211 1212 if (WARN_ON_ONCE(!prot_sdb)) { 1213 /* 1214 * This can happen if someone (e.g. multipath) 1215 * queues a command to a device on an adapter 1216 * that does not support DIX. 1217 */ 1218 ret = BLK_STS_IOERR; 1219 goto out_free_sgtables; 1220 } 1221 1222 if (sg_alloc_table_chained(&prot_sdb->table, 1223 rq->nr_integrity_segments, 1224 prot_sdb->table.sgl, 1225 SCSI_INLINE_PROT_SG_CNT)) { 1226 ret = BLK_STS_RESOURCE; 1227 goto out_free_sgtables; 1228 } 1229 1230 count = blk_rq_map_integrity_sg(rq, prot_sdb->table.sgl); 1231 cmd->prot_sdb = prot_sdb; 1232 cmd->prot_sdb->table.nents = count; 1233 } 1234 1235 return BLK_STS_OK; 1236 out_free_sgtables: 1237 scsi_free_sgtables(cmd); 1238 return ret; 1239 } 1240 EXPORT_SYMBOL(scsi_alloc_sgtables); 1241 1242 /** 1243 * scsi_initialize_rq - initialize struct scsi_cmnd partially 1244 * @rq: Request associated with the SCSI command to be initialized. 1245 * 1246 * This function initializes the members of struct scsi_cmnd that must be 1247 * initialized before request processing starts and that won't be 1248 * reinitialized if a SCSI command is requeued. 1249 */ 1250 static void scsi_initialize_rq(struct request *rq) 1251 { 1252 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq); 1253 1254 memset(cmd->cmnd, 0, sizeof(cmd->cmnd)); 1255 cmd->cmd_len = MAX_COMMAND_SIZE; 1256 cmd->sense_len = 0; 1257 init_rcu_head(&cmd->rcu); 1258 cmd->jiffies_at_alloc = jiffies; 1259 cmd->retries = 0; 1260 } 1261 1262 /** 1263 * scsi_alloc_request - allocate a block request and partially 1264 * initialize its &scsi_cmnd 1265 * @q: the device's request queue 1266 * @opf: the request operation code 1267 * @flags: block layer allocation flags 1268 * 1269 * Return: &struct request pointer on success or %NULL on failure 1270 */ 1271 struct request *scsi_alloc_request(struct request_queue *q, blk_opf_t opf, 1272 blk_mq_req_flags_t flags) 1273 { 1274 struct request *rq; 1275 1276 rq = blk_mq_alloc_request(q, opf, flags); 1277 if (!IS_ERR(rq)) 1278 scsi_initialize_rq(rq); 1279 return rq; 1280 } 1281 EXPORT_SYMBOL_GPL(scsi_alloc_request); 1282 1283 /* 1284 * Only called when the request isn't completed by SCSI, and not freed by 1285 * SCSI 1286 */ 1287 static void scsi_cleanup_rq(struct request *rq) 1288 { 1289 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq); 1290 1291 cmd->flags = 0; 1292 1293 if (rq->rq_flags & RQF_DONTPREP) { 1294 scsi_mq_uninit_cmd(cmd); 1295 rq->rq_flags &= ~RQF_DONTPREP; 1296 } 1297 } 1298 1299 /* Called before a request is prepared. See also scsi_mq_prep_fn(). */ 1300 void scsi_init_command(struct scsi_device *dev, struct scsi_cmnd *cmd) 1301 { 1302 struct request *rq = scsi_cmd_to_rq(cmd); 1303 1304 if (!blk_rq_is_passthrough(rq) && !(cmd->flags & SCMD_INITIALIZED)) { 1305 cmd->flags |= SCMD_INITIALIZED; 1306 scsi_initialize_rq(rq); 1307 } 1308 1309 cmd->device = dev; 1310 INIT_LIST_HEAD(&cmd->eh_entry); 1311 INIT_DELAYED_WORK(&cmd->abort_work, scmd_eh_abort_handler); 1312 } 1313 1314 static blk_status_t scsi_setup_scsi_cmnd(struct scsi_device *sdev, 1315 struct request *req) 1316 { 1317 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 1318 1319 /* 1320 * Passthrough requests may transfer data, in which case they must 1321 * a bio attached to them. Or they might contain a SCSI command 1322 * that does not transfer data, in which case they may optionally 1323 * submit a request without an attached bio. 1324 */ 1325 if (req->bio) { 1326 blk_status_t ret = scsi_alloc_sgtables(cmd); 1327 if (unlikely(ret != BLK_STS_OK)) 1328 return ret; 1329 } else { 1330 BUG_ON(blk_rq_bytes(req)); 1331 1332 memset(&cmd->sdb, 0, sizeof(cmd->sdb)); 1333 } 1334 1335 cmd->transfersize = blk_rq_bytes(req); 1336 return BLK_STS_OK; 1337 } 1338 1339 static blk_status_t 1340 scsi_device_state_check(struct scsi_device *sdev, struct request *req) 1341 { 1342 switch (sdev->sdev_state) { 1343 case SDEV_CREATED: 1344 return BLK_STS_OK; 1345 case SDEV_OFFLINE: 1346 case SDEV_TRANSPORT_OFFLINE: 1347 /* 1348 * If the device is offline we refuse to process any 1349 * commands. The device must be brought online 1350 * before trying any recovery commands. 1351 */ 1352 if (!sdev->offline_already) { 1353 sdev->offline_already = true; 1354 sdev_printk(KERN_ERR, sdev, 1355 "rejecting I/O to offline device\n"); 1356 } 1357 return BLK_STS_IOERR; 1358 case SDEV_DEL: 1359 /* 1360 * If the device is fully deleted, we refuse to 1361 * process any commands as well. 1362 */ 1363 sdev_printk(KERN_ERR, sdev, 1364 "rejecting I/O to dead device\n"); 1365 return BLK_STS_IOERR; 1366 case SDEV_BLOCK: 1367 case SDEV_CREATED_BLOCK: 1368 return BLK_STS_RESOURCE; 1369 case SDEV_QUIESCE: 1370 /* 1371 * If the device is blocked we only accept power management 1372 * commands. 1373 */ 1374 if (req && WARN_ON_ONCE(!(req->rq_flags & RQF_PM))) 1375 return BLK_STS_RESOURCE; 1376 return BLK_STS_OK; 1377 default: 1378 /* 1379 * For any other not fully online state we only allow 1380 * power management commands. 1381 */ 1382 if (req && !(req->rq_flags & RQF_PM)) 1383 return BLK_STS_OFFLINE; 1384 return BLK_STS_OK; 1385 } 1386 } 1387 1388 /* 1389 * scsi_dev_queue_ready: if we can send requests to sdev, assign one token 1390 * and return the token else return -1. 1391 */ 1392 static inline int scsi_dev_queue_ready(struct request_queue *q, 1393 struct scsi_device *sdev) 1394 { 1395 int token; 1396 1397 if (!sdev->budget_map.map) 1398 return INT_MAX; 1399 1400 token = sbitmap_get(&sdev->budget_map); 1401 if (token < 0) 1402 return -1; 1403 1404 if (!atomic_read(&sdev->device_blocked)) 1405 return token; 1406 1407 /* 1408 * Only unblock if no other commands are pending and 1409 * if device_blocked has decreased to zero 1410 */ 1411 if (scsi_device_busy(sdev) > 1 || 1412 atomic_dec_return(&sdev->device_blocked) > 0) { 1413 sbitmap_put(&sdev->budget_map, token); 1414 return -1; 1415 } 1416 1417 SCSI_LOG_MLQUEUE(3, sdev_printk(KERN_INFO, sdev, 1418 "unblocking device at zero depth\n")); 1419 1420 return token; 1421 } 1422 1423 /* 1424 * scsi_target_queue_ready: checks if there we can send commands to target 1425 * @sdev: scsi device on starget to check. 1426 */ 1427 static inline int scsi_target_queue_ready(struct Scsi_Host *shost, 1428 struct scsi_device *sdev) 1429 { 1430 struct scsi_target *starget = scsi_target(sdev); 1431 unsigned int busy; 1432 1433 if (starget->single_lun) { 1434 spin_lock_irq(shost->host_lock); 1435 if (starget->starget_sdev_user && 1436 starget->starget_sdev_user != sdev) { 1437 spin_unlock_irq(shost->host_lock); 1438 return 0; 1439 } 1440 starget->starget_sdev_user = sdev; 1441 spin_unlock_irq(shost->host_lock); 1442 } 1443 1444 if (starget->can_queue <= 0) 1445 return 1; 1446 1447 busy = atomic_inc_return(&starget->target_busy) - 1; 1448 if (atomic_read(&starget->target_blocked) > 0) { 1449 if (busy) 1450 goto starved; 1451 1452 /* 1453 * unblock after target_blocked iterates to zero 1454 */ 1455 if (atomic_dec_return(&starget->target_blocked) > 0) 1456 goto out_dec; 1457 1458 SCSI_LOG_MLQUEUE(3, starget_printk(KERN_INFO, starget, 1459 "unblocking target at zero depth\n")); 1460 } 1461 1462 if (busy >= starget->can_queue) 1463 goto starved; 1464 1465 return 1; 1466 1467 starved: 1468 spin_lock_irq(shost->host_lock); 1469 list_move_tail(&sdev->starved_entry, &shost->starved_list); 1470 spin_unlock_irq(shost->host_lock); 1471 out_dec: 1472 if (starget->can_queue > 0) 1473 atomic_dec(&starget->target_busy); 1474 return 0; 1475 } 1476 1477 /* 1478 * scsi_host_queue_ready: if we can send requests to shost, return 1 else 1479 * return 0. We must end up running the queue again whenever 0 is 1480 * returned, else IO can hang. 1481 */ 1482 static inline int scsi_host_queue_ready(struct request_queue *q, 1483 struct Scsi_Host *shost, 1484 struct scsi_device *sdev, 1485 struct scsi_cmnd *cmd) 1486 { 1487 if (atomic_read(&shost->host_blocked) > 0) { 1488 if (scsi_host_busy(shost) > 0) 1489 goto starved; 1490 1491 /* 1492 * unblock after host_blocked iterates to zero 1493 */ 1494 if (atomic_dec_return(&shost->host_blocked) > 0) 1495 goto out_dec; 1496 1497 SCSI_LOG_MLQUEUE(3, 1498 shost_printk(KERN_INFO, shost, 1499 "unblocking host at zero depth\n")); 1500 } 1501 1502 if (shost->host_self_blocked) 1503 goto starved; 1504 1505 /* We're OK to process the command, so we can't be starved */ 1506 if (!list_empty(&sdev->starved_entry)) { 1507 spin_lock_irq(shost->host_lock); 1508 if (!list_empty(&sdev->starved_entry)) 1509 list_del_init(&sdev->starved_entry); 1510 spin_unlock_irq(shost->host_lock); 1511 } 1512 1513 __set_bit(SCMD_STATE_INFLIGHT, &cmd->state); 1514 1515 return 1; 1516 1517 starved: 1518 spin_lock_irq(shost->host_lock); 1519 if (list_empty(&sdev->starved_entry)) 1520 list_add_tail(&sdev->starved_entry, &shost->starved_list); 1521 spin_unlock_irq(shost->host_lock); 1522 out_dec: 1523 scsi_dec_host_busy(shost, cmd); 1524 return 0; 1525 } 1526 1527 /* 1528 * Busy state exporting function for request stacking drivers. 1529 * 1530 * For efficiency, no lock is taken to check the busy state of 1531 * shost/starget/sdev, since the returned value is not guaranteed and 1532 * may be changed after request stacking drivers call the function, 1533 * regardless of taking lock or not. 1534 * 1535 * When scsi can't dispatch I/Os anymore and needs to kill I/Os scsi 1536 * needs to return 'not busy'. Otherwise, request stacking drivers 1537 * may hold requests forever. 1538 */ 1539 static bool scsi_mq_lld_busy(struct request_queue *q) 1540 { 1541 struct scsi_device *sdev = q->queuedata; 1542 struct Scsi_Host *shost; 1543 1544 if (blk_queue_dying(q)) 1545 return false; 1546 1547 shost = sdev->host; 1548 1549 /* 1550 * Ignore host/starget busy state. 1551 * Since block layer does not have a concept of fairness across 1552 * multiple queues, congestion of host/starget needs to be handled 1553 * in SCSI layer. 1554 */ 1555 if (scsi_host_in_recovery(shost) || scsi_device_is_busy(sdev)) 1556 return true; 1557 1558 return false; 1559 } 1560 1561 /* 1562 * Block layer request completion callback. May be called from interrupt 1563 * context. 1564 */ 1565 static void scsi_complete(struct request *rq) 1566 { 1567 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq); 1568 enum scsi_disposition disposition; 1569 1570 if (blk_mq_is_reserved_rq(rq)) { 1571 /* Only pass-through requests are supported in this code path. */ 1572 WARN_ON_ONCE(!blk_rq_is_passthrough(scsi_cmd_to_rq(cmd))); 1573 scsi_mq_uninit_cmd(cmd); 1574 __blk_mq_end_request(rq, scsi_result_to_blk_status(cmd->result)); 1575 return; 1576 } 1577 1578 INIT_LIST_HEAD(&cmd->eh_entry); 1579 1580 atomic_inc(&cmd->device->iodone_cnt); 1581 if (cmd->result) 1582 atomic_inc(&cmd->device->ioerr_cnt); 1583 1584 disposition = scsi_decide_disposition(cmd); 1585 if (disposition != SUCCESS && scsi_cmd_runtime_exceeced(cmd)) 1586 disposition = SUCCESS; 1587 1588 scsi_log_completion(cmd, disposition); 1589 1590 switch (disposition) { 1591 case SUCCESS: 1592 scsi_finish_command(cmd); 1593 break; 1594 case NEEDS_RETRY: 1595 scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY); 1596 break; 1597 case ADD_TO_MLQUEUE: 1598 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY); 1599 break; 1600 default: 1601 scsi_eh_scmd_add(cmd); 1602 break; 1603 } 1604 } 1605 1606 /** 1607 * scsi_dispatch_cmd - Dispatch a command to the low-level driver. 1608 * @cmd: command block we are dispatching. 1609 * 1610 * Return: nonzero return request was rejected and device's queue needs to be 1611 * plugged. 1612 */ 1613 static enum scsi_qc_status scsi_dispatch_cmd(struct scsi_cmnd *cmd) 1614 { 1615 struct Scsi_Host *host = cmd->device->host; 1616 int rtn = 0; 1617 1618 atomic_inc(&cmd->device->iorequest_cnt); 1619 1620 /* check if the device is still usable */ 1621 if (unlikely(cmd->device->sdev_state == SDEV_DEL)) { 1622 /* in SDEV_DEL we error all commands. DID_NO_CONNECT 1623 * returns an immediate error upwards, and signals 1624 * that the device is no longer present */ 1625 cmd->result = DID_NO_CONNECT << 16; 1626 goto done; 1627 } 1628 1629 /* Check to see if the scsi lld made this device blocked. */ 1630 if (unlikely(scsi_device_blocked(cmd->device))) { 1631 /* 1632 * in blocked state, the command is just put back on 1633 * the device queue. The suspend state has already 1634 * blocked the queue so future requests should not 1635 * occur until the device transitions out of the 1636 * suspend state. 1637 */ 1638 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd, 1639 "queuecommand : device blocked\n")); 1640 atomic_dec(&cmd->device->iorequest_cnt); 1641 return SCSI_MLQUEUE_DEVICE_BUSY; 1642 } 1643 1644 /* Store the LUN value in cmnd, if needed. */ 1645 if (cmd->device->lun_in_cdb) 1646 cmd->cmnd[1] = (cmd->cmnd[1] & 0x1f) | 1647 (cmd->device->lun << 5 & 0xe0); 1648 1649 scsi_log_send(cmd); 1650 1651 /* 1652 * Before we queue this command, check if the command 1653 * length exceeds what the host adapter can handle. 1654 */ 1655 if (cmd->cmd_len > cmd->device->host->max_cmd_len) { 1656 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd, 1657 "queuecommand : command too long. " 1658 "cdb_size=%d host->max_cmd_len=%d\n", 1659 cmd->cmd_len, cmd->device->host->max_cmd_len)); 1660 cmd->result = (DID_ABORT << 16); 1661 goto done; 1662 } 1663 1664 if (unlikely(host->shost_state == SHOST_DEL)) { 1665 cmd->result = (DID_NO_CONNECT << 16); 1666 goto done; 1667 1668 } 1669 1670 trace_scsi_dispatch_cmd_start(cmd); 1671 rtn = host->hostt->queuecommand(host, cmd); 1672 if (rtn) { 1673 atomic_dec(&cmd->device->iorequest_cnt); 1674 trace_scsi_dispatch_cmd_error(cmd, rtn); 1675 if (rtn != SCSI_MLQUEUE_DEVICE_BUSY && 1676 rtn != SCSI_MLQUEUE_TARGET_BUSY) 1677 rtn = SCSI_MLQUEUE_HOST_BUSY; 1678 1679 SCSI_LOG_MLQUEUE(3, scmd_printk(KERN_INFO, cmd, 1680 "queuecommand : request rejected\n")); 1681 } 1682 1683 return rtn; 1684 done: 1685 scsi_done(cmd); 1686 return 0; 1687 } 1688 1689 /* Size in bytes of the sg-list stored in the scsi-mq command-private data. */ 1690 static unsigned int scsi_mq_inline_sgl_size(struct Scsi_Host *shost) 1691 { 1692 return min_t(unsigned int, shost->sg_tablesize, SCSI_INLINE_SG_CNT) * 1693 sizeof(struct scatterlist); 1694 } 1695 1696 static blk_status_t scsi_prepare_cmd(struct request *req) 1697 { 1698 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 1699 struct scsi_device *sdev = req->q->queuedata; 1700 struct Scsi_Host *shost = sdev->host; 1701 bool in_flight = test_bit(SCMD_STATE_INFLIGHT, &cmd->state); 1702 struct scatterlist *sg; 1703 1704 scsi_init_command(sdev, cmd); 1705 1706 cmd->eh_eflags = 0; 1707 cmd->prot_type = 0; 1708 cmd->prot_flags = 0; 1709 cmd->submitter = 0; 1710 memset(&cmd->sdb, 0, sizeof(cmd->sdb)); 1711 cmd->underflow = 0; 1712 cmd->transfersize = 0; 1713 cmd->host_scribble = NULL; 1714 cmd->result = 0; 1715 cmd->extra_len = 0; 1716 cmd->state = 0; 1717 if (in_flight) 1718 __set_bit(SCMD_STATE_INFLIGHT, &cmd->state); 1719 1720 cmd->prot_op = SCSI_PROT_NORMAL; 1721 if (blk_rq_bytes(req)) 1722 cmd->sc_data_direction = rq_dma_dir(req); 1723 else 1724 cmd->sc_data_direction = DMA_NONE; 1725 1726 sg = (void *)cmd + sizeof(struct scsi_cmnd) + shost->hostt->cmd_size; 1727 cmd->sdb.table.sgl = sg; 1728 1729 if (scsi_host_get_prot(shost)) { 1730 memset(cmd->prot_sdb, 0, sizeof(struct scsi_data_buffer)); 1731 1732 cmd->prot_sdb->table.sgl = 1733 (struct scatterlist *)(cmd->prot_sdb + 1); 1734 } 1735 1736 /* 1737 * Special handling for passthrough commands, which don't go to the ULP 1738 * at all: 1739 */ 1740 if (blk_rq_is_passthrough(req)) 1741 return scsi_setup_scsi_cmnd(sdev, req); 1742 1743 if (sdev->handler && sdev->handler->prep_fn) { 1744 blk_status_t ret = sdev->handler->prep_fn(sdev, req); 1745 1746 if (ret != BLK_STS_OK) 1747 return ret; 1748 } 1749 1750 /* Usually overridden by the ULP */ 1751 cmd->allowed = 0; 1752 memset(cmd->cmnd, 0, sizeof(cmd->cmnd)); 1753 return scsi_cmd_to_driver(cmd)->init_command(cmd); 1754 } 1755 1756 static void scsi_done_internal(struct scsi_cmnd *cmd, bool complete_directly) 1757 { 1758 struct request *req = scsi_cmd_to_rq(cmd); 1759 1760 switch (cmd->submitter) { 1761 case SUBMITTED_BY_BLOCK_LAYER: 1762 break; 1763 case SUBMITTED_BY_SCSI_ERROR_HANDLER: 1764 return scsi_eh_done(cmd); 1765 case SUBMITTED_BY_SCSI_RESET_IOCTL: 1766 return; 1767 } 1768 1769 if (unlikely(blk_should_fake_timeout(scsi_cmd_to_rq(cmd)->q))) 1770 return; 1771 if (unlikely(test_and_set_bit(SCMD_STATE_COMPLETE, &cmd->state))) 1772 return; 1773 trace_scsi_dispatch_cmd_done(cmd); 1774 1775 if (complete_directly) 1776 blk_mq_complete_request_direct(req, scsi_complete); 1777 else 1778 blk_mq_complete_request(req); 1779 } 1780 1781 void scsi_done(struct scsi_cmnd *cmd) 1782 { 1783 scsi_done_internal(cmd, false); 1784 } 1785 EXPORT_SYMBOL(scsi_done); 1786 1787 void scsi_done_direct(struct scsi_cmnd *cmd) 1788 { 1789 scsi_done_internal(cmd, true); 1790 } 1791 EXPORT_SYMBOL(scsi_done_direct); 1792 1793 static void scsi_mq_put_budget(struct request_queue *q, int budget_token) 1794 { 1795 struct scsi_device *sdev = q->queuedata; 1796 1797 if (sdev->budget_map.map) 1798 sbitmap_put(&sdev->budget_map, budget_token); 1799 } 1800 1801 /* 1802 * When to reinvoke queueing after a resource shortage. It's 3 msecs to 1803 * not change behaviour from the previous unplug mechanism, experimentation 1804 * may prove this needs changing. 1805 */ 1806 #define SCSI_QUEUE_DELAY 3 1807 1808 static int scsi_mq_get_budget(struct request_queue *q) 1809 { 1810 struct scsi_device *sdev = q->queuedata; 1811 int token = scsi_dev_queue_ready(q, sdev); 1812 1813 if (token >= 0) 1814 return token; 1815 1816 atomic_inc(&sdev->restarts); 1817 1818 /* 1819 * Orders atomic_inc(&sdev->restarts) and atomic_read(&sdev->device_busy). 1820 * .restarts must be incremented before .device_busy is read because the 1821 * code in scsi_run_queue_async() depends on the order of these operations. 1822 */ 1823 smp_mb__after_atomic(); 1824 1825 /* 1826 * If all in-flight requests originated from this LUN are completed 1827 * before reading .device_busy, sdev->device_busy will be observed as 1828 * zero, then blk_mq_delay_run_hw_queues() will dispatch this request 1829 * soon. Otherwise, completion of one of these requests will observe 1830 * the .restarts flag, and the request queue will be run for handling 1831 * this request, see scsi_end_request(). 1832 */ 1833 if (unlikely(scsi_device_busy(sdev) == 0 && 1834 !scsi_device_blocked(sdev))) 1835 blk_mq_delay_run_hw_queues(sdev->request_queue, SCSI_QUEUE_DELAY); 1836 return -1; 1837 } 1838 1839 static void scsi_mq_set_rq_budget_token(struct request *req, int token) 1840 { 1841 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 1842 1843 cmd->budget_token = token; 1844 } 1845 1846 static int scsi_mq_get_rq_budget_token(struct request *req) 1847 { 1848 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 1849 1850 return cmd->budget_token; 1851 } 1852 1853 static blk_status_t scsi_queue_rq(struct blk_mq_hw_ctx *hctx, 1854 const struct blk_mq_queue_data *bd) 1855 { 1856 struct request *req = bd->rq; 1857 struct request_queue *q = req->q; 1858 struct scsi_device *sdev = q->queuedata; 1859 struct Scsi_Host *shost = sdev->host; 1860 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(req); 1861 blk_status_t ret; 1862 enum scsi_qc_status reason; 1863 1864 WARN_ON_ONCE(cmd->budget_token < 0); 1865 1866 /* 1867 * Bypass the SCSI device, SCSI target and SCSI host checks for 1868 * reserved commands. 1869 */ 1870 if (!blk_mq_is_reserved_rq(req)) { 1871 /* 1872 * If the device is not in running state we will reject some or 1873 * all commands. 1874 */ 1875 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) { 1876 ret = scsi_device_state_check(sdev, req); 1877 if (ret != BLK_STS_OK) 1878 goto out_put_budget; 1879 } 1880 1881 ret = BLK_STS_RESOURCE; 1882 if (!scsi_target_queue_ready(shost, sdev)) 1883 goto out_put_budget; 1884 if (unlikely(scsi_host_in_recovery(shost))) { 1885 if (cmd->flags & SCMD_FAIL_IF_RECOVERING) 1886 ret = BLK_STS_OFFLINE; 1887 goto out_dec_target_busy; 1888 } 1889 if (!scsi_host_queue_ready(q, shost, sdev, cmd)) 1890 goto out_dec_target_busy; 1891 } 1892 1893 /* 1894 * Only clear the driver-private command data if the LLD does not supply 1895 * a function to initialize that data. 1896 */ 1897 if (shost->hostt->cmd_size && !shost->hostt->init_cmd_priv) 1898 memset(scsi_cmd_priv(cmd), 0, shost->hostt->cmd_size); 1899 1900 if (!(req->rq_flags & RQF_DONTPREP)) { 1901 ret = scsi_prepare_cmd(req); 1902 if (ret != BLK_STS_OK) 1903 goto out_dec_host_busy; 1904 req->rq_flags |= RQF_DONTPREP; 1905 } else { 1906 clear_bit(SCMD_STATE_COMPLETE, &cmd->state); 1907 } 1908 1909 cmd->flags &= SCMD_PRESERVED_FLAGS; 1910 if (sdev->simple_tags) 1911 cmd->flags |= SCMD_TAGGED; 1912 if (bd->last) 1913 cmd->flags |= SCMD_LAST; 1914 1915 scsi_set_resid(cmd, 0); 1916 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE); 1917 cmd->submitter = SUBMITTED_BY_BLOCK_LAYER; 1918 1919 blk_mq_start_request(req); 1920 if (blk_mq_is_reserved_rq(req)) { 1921 reason = shost->hostt->queue_reserved_command(shost, cmd); 1922 if (reason) { 1923 ret = BLK_STS_RESOURCE; 1924 goto out_put_budget; 1925 } 1926 return BLK_STS_OK; 1927 } 1928 reason = scsi_dispatch_cmd(cmd); 1929 if (reason) { 1930 scsi_set_blocked(cmd, reason); 1931 ret = BLK_STS_RESOURCE; 1932 goto out_dec_host_busy; 1933 } 1934 1935 return BLK_STS_OK; 1936 1937 out_dec_host_busy: 1938 scsi_dec_host_busy(shost, cmd); 1939 out_dec_target_busy: 1940 if (scsi_target(sdev)->can_queue > 0) 1941 atomic_dec(&scsi_target(sdev)->target_busy); 1942 out_put_budget: 1943 scsi_mq_put_budget(q, cmd->budget_token); 1944 cmd->budget_token = -1; 1945 switch (ret) { 1946 case BLK_STS_OK: 1947 break; 1948 case BLK_STS_RESOURCE: 1949 if (scsi_device_blocked(sdev)) 1950 ret = BLK_STS_DEV_RESOURCE; 1951 break; 1952 case BLK_STS_AGAIN: 1953 cmd->result = DID_BUS_BUSY << 16; 1954 if (req->rq_flags & RQF_DONTPREP) 1955 scsi_mq_uninit_cmd(cmd); 1956 break; 1957 default: 1958 if (unlikely(!scsi_device_online(sdev))) 1959 cmd->result = DID_NO_CONNECT << 16; 1960 else 1961 cmd->result = DID_ERROR << 16; 1962 /* 1963 * Make sure to release all allocated resources when 1964 * we hit an error, as we will never see this command 1965 * again. 1966 */ 1967 if (req->rq_flags & RQF_DONTPREP) 1968 scsi_mq_uninit_cmd(cmd); 1969 scsi_run_queue_async(sdev); 1970 break; 1971 } 1972 return ret; 1973 } 1974 1975 static int scsi_mq_init_request(struct blk_mq_tag_set *set, struct request *rq, 1976 unsigned int hctx_idx, int numa_node) 1977 { 1978 struct Scsi_Host *shost = set->driver_data; 1979 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq); 1980 struct scatterlist *sg; 1981 int ret = 0; 1982 1983 cmd->sense_buffer = 1984 kmem_cache_alloc_node(scsi_sense_cache, GFP_KERNEL, numa_node); 1985 if (!cmd->sense_buffer) 1986 return -ENOMEM; 1987 1988 if (scsi_host_get_prot(shost)) { 1989 sg = (void *)cmd + sizeof(struct scsi_cmnd) + 1990 shost->hostt->cmd_size; 1991 cmd->prot_sdb = (void *)sg + scsi_mq_inline_sgl_size(shost); 1992 } 1993 1994 if (shost->hostt->init_cmd_priv) { 1995 ret = shost->hostt->init_cmd_priv(shost, cmd); 1996 if (ret < 0) 1997 kmem_cache_free(scsi_sense_cache, cmd->sense_buffer); 1998 } 1999 2000 return ret; 2001 } 2002 2003 static void scsi_mq_exit_request(struct blk_mq_tag_set *set, struct request *rq, 2004 unsigned int hctx_idx) 2005 { 2006 struct Scsi_Host *shost = set->driver_data; 2007 struct scsi_cmnd *cmd = blk_mq_rq_to_pdu(rq); 2008 2009 if (shost->hostt->exit_cmd_priv) 2010 shost->hostt->exit_cmd_priv(shost, cmd); 2011 kmem_cache_free(scsi_sense_cache, cmd->sense_buffer); 2012 } 2013 2014 2015 static int scsi_mq_poll(struct blk_mq_hw_ctx *hctx, struct io_comp_batch *iob) 2016 { 2017 struct Scsi_Host *shost = hctx->driver_data; 2018 2019 if (shost->hostt->mq_poll) 2020 return shost->hostt->mq_poll(shost, hctx->queue_num); 2021 2022 return 0; 2023 } 2024 2025 static int scsi_init_hctx(struct blk_mq_hw_ctx *hctx, void *data, 2026 unsigned int hctx_idx) 2027 { 2028 struct Scsi_Host *shost = data; 2029 2030 hctx->driver_data = shost; 2031 return 0; 2032 } 2033 2034 static void scsi_map_queues(struct blk_mq_tag_set *set) 2035 { 2036 struct Scsi_Host *shost = container_of(set, struct Scsi_Host, tag_set); 2037 2038 if (shost->hostt->map_queues) 2039 return shost->hostt->map_queues(shost); 2040 blk_mq_map_queues(&set->map[HCTX_TYPE_DEFAULT]); 2041 } 2042 2043 void scsi_init_limits(struct Scsi_Host *shost, struct queue_limits *lim) 2044 { 2045 struct device *dev = shost->dma_dev; 2046 2047 memset(lim, 0, sizeof(*lim)); 2048 lim->max_segments = 2049 min_t(unsigned short, shost->sg_tablesize, SG_MAX_SEGMENTS); 2050 2051 if (scsi_host_prot_dma(shost)) { 2052 shost->sg_prot_tablesize = 2053 min_not_zero(shost->sg_prot_tablesize, 2054 (unsigned short)SCSI_MAX_PROT_SG_SEGMENTS); 2055 BUG_ON(shost->sg_prot_tablesize < shost->sg_tablesize); 2056 lim->max_integrity_segments = shost->sg_prot_tablesize; 2057 } 2058 2059 lim->max_hw_sectors = shost->max_sectors; 2060 lim->seg_boundary_mask = shost->dma_boundary; 2061 lim->max_segment_size = shost->max_segment_size; 2062 lim->virt_boundary_mask = shost->virt_boundary_mask; 2063 lim->dma_alignment = max_t(unsigned int, 2064 shost->dma_alignment, dma_get_cache_alignment() - 1); 2065 2066 /* 2067 * Propagate the DMA formation properties to the dma-mapping layer as 2068 * a courtesy service to the LLDDs. This needs to check that the buses 2069 * actually support the DMA API first, though. 2070 */ 2071 if (dev->dma_parms) { 2072 dma_set_seg_boundary(dev, shost->dma_boundary); 2073 dma_set_max_seg_size(dev, shost->max_segment_size); 2074 } 2075 } 2076 EXPORT_SYMBOL_GPL(scsi_init_limits); 2077 2078 static const struct blk_mq_ops scsi_mq_ops_no_commit = { 2079 .get_budget = scsi_mq_get_budget, 2080 .put_budget = scsi_mq_put_budget, 2081 .queue_rq = scsi_queue_rq, 2082 .complete = scsi_complete, 2083 .timeout = scsi_timeout, 2084 #ifdef CONFIG_BLK_DEBUG_FS 2085 .show_rq = scsi_show_rq, 2086 #endif 2087 .init_request = scsi_mq_init_request, 2088 .exit_request = scsi_mq_exit_request, 2089 .cleanup_rq = scsi_cleanup_rq, 2090 .busy = scsi_mq_lld_busy, 2091 .map_queues = scsi_map_queues, 2092 .init_hctx = scsi_init_hctx, 2093 .poll = scsi_mq_poll, 2094 .set_rq_budget_token = scsi_mq_set_rq_budget_token, 2095 .get_rq_budget_token = scsi_mq_get_rq_budget_token, 2096 }; 2097 2098 2099 static void scsi_commit_rqs(struct blk_mq_hw_ctx *hctx) 2100 { 2101 struct Scsi_Host *shost = hctx->driver_data; 2102 2103 shost->hostt->commit_rqs(shost, hctx->queue_num); 2104 } 2105 2106 static const struct blk_mq_ops scsi_mq_ops = { 2107 .get_budget = scsi_mq_get_budget, 2108 .put_budget = scsi_mq_put_budget, 2109 .queue_rq = scsi_queue_rq, 2110 .commit_rqs = scsi_commit_rqs, 2111 .complete = scsi_complete, 2112 .timeout = scsi_timeout, 2113 #ifdef CONFIG_BLK_DEBUG_FS 2114 .show_rq = scsi_show_rq, 2115 #endif 2116 .init_request = scsi_mq_init_request, 2117 .exit_request = scsi_mq_exit_request, 2118 .cleanup_rq = scsi_cleanup_rq, 2119 .busy = scsi_mq_lld_busy, 2120 .map_queues = scsi_map_queues, 2121 .init_hctx = scsi_init_hctx, 2122 .poll = scsi_mq_poll, 2123 .set_rq_budget_token = scsi_mq_set_rq_budget_token, 2124 .get_rq_budget_token = scsi_mq_get_rq_budget_token, 2125 }; 2126 2127 int scsi_mq_setup_tags(struct Scsi_Host *shost) 2128 { 2129 unsigned int cmd_size, sgl_size; 2130 struct blk_mq_tag_set *tag_set = &shost->tag_set; 2131 2132 sgl_size = max_t(unsigned int, sizeof(struct scatterlist), 2133 scsi_mq_inline_sgl_size(shost)); 2134 cmd_size = sizeof(struct scsi_cmnd) + shost->hostt->cmd_size + sgl_size; 2135 if (scsi_host_get_prot(shost)) 2136 cmd_size += sizeof(struct scsi_data_buffer) + 2137 sizeof(struct scatterlist) * SCSI_INLINE_PROT_SG_CNT; 2138 2139 memset(tag_set, 0, sizeof(*tag_set)); 2140 if (shost->hostt->commit_rqs) 2141 tag_set->ops = &scsi_mq_ops; 2142 else 2143 tag_set->ops = &scsi_mq_ops_no_commit; 2144 tag_set->nr_hw_queues = shost->nr_hw_queues ? : 1; 2145 tag_set->nr_maps = shost->nr_maps ? : 1; 2146 tag_set->queue_depth = shost->can_queue + shost->nr_reserved_cmds; 2147 tag_set->reserved_tags = shost->nr_reserved_cmds; 2148 tag_set->cmd_size = cmd_size; 2149 tag_set->numa_node = dev_to_node(shost->dma_dev); 2150 if (shost->hostt->tag_alloc_policy_rr) 2151 tag_set->flags |= BLK_MQ_F_TAG_RR; 2152 if (shost->queuecommand_may_block) 2153 tag_set->flags |= BLK_MQ_F_BLOCKING; 2154 tag_set->driver_data = shost; 2155 if (shost->host_tagset) 2156 tag_set->flags |= BLK_MQ_F_TAG_HCTX_SHARED; 2157 2158 return blk_mq_alloc_tag_set(tag_set); 2159 } 2160 2161 void scsi_mq_free_tags(struct kref *kref) 2162 { 2163 struct Scsi_Host *shost = container_of(kref, typeof(*shost), 2164 tagset_refcnt); 2165 2166 blk_mq_free_tag_set(&shost->tag_set); 2167 complete(&shost->tagset_freed); 2168 } 2169 2170 /** 2171 * scsi_get_internal_cmd() - Allocate an internal SCSI command. 2172 * @sdev: SCSI device from which to allocate the command 2173 * @data_direction: Data direction for the allocated command 2174 * @flags: request allocation flags, e.g. BLK_MQ_REQ_RESERVED or 2175 * BLK_MQ_REQ_NOWAIT. 2176 * 2177 * Allocates a SCSI command for internal LLDD use. 2178 */ 2179 struct scsi_cmnd *scsi_get_internal_cmd(struct scsi_device *sdev, 2180 enum dma_data_direction data_direction, 2181 blk_mq_req_flags_t flags) 2182 { 2183 enum req_op op = data_direction == DMA_TO_DEVICE ? REQ_OP_DRV_OUT : 2184 REQ_OP_DRV_IN; 2185 struct scsi_cmnd *scmd; 2186 struct request *rq; 2187 2188 rq = scsi_alloc_request(sdev->request_queue, op, flags); 2189 if (IS_ERR(rq)) 2190 return NULL; 2191 scmd = blk_mq_rq_to_pdu(rq); 2192 scmd->device = sdev; 2193 2194 return scmd; 2195 } 2196 EXPORT_SYMBOL_GPL(scsi_get_internal_cmd); 2197 2198 /** 2199 * scsi_put_internal_cmd() - Free an internal SCSI command. 2200 * @scmd: SCSI command to be freed 2201 */ 2202 void scsi_put_internal_cmd(struct scsi_cmnd *scmd) 2203 { 2204 blk_mq_free_request(blk_mq_rq_from_pdu(scmd)); 2205 } 2206 EXPORT_SYMBOL_GPL(scsi_put_internal_cmd); 2207 2208 /** 2209 * scsi_device_from_queue - return sdev associated with a request_queue 2210 * @q: The request queue to return the sdev from 2211 * 2212 * Return the sdev associated with a request queue or NULL if the 2213 * request_queue does not reference a SCSI device. 2214 */ 2215 struct scsi_device *scsi_device_from_queue(struct request_queue *q) 2216 { 2217 struct scsi_device *sdev = NULL; 2218 2219 if (q->mq_ops == &scsi_mq_ops_no_commit || 2220 q->mq_ops == &scsi_mq_ops) 2221 sdev = q->queuedata; 2222 if (!sdev || !get_device(&sdev->sdev_gendev)) 2223 sdev = NULL; 2224 2225 return sdev; 2226 } 2227 2228 /** 2229 * scsi_block_requests - Utility function used by low-level drivers to prevent 2230 * further commands from being queued to the device. 2231 * @shost: host in question 2232 * 2233 * There is no timer nor any other means by which the requests get unblocked 2234 * other than the low-level driver calling scsi_unblock_requests(). 2235 */ 2236 void scsi_block_requests(struct Scsi_Host *shost) 2237 { 2238 shost->host_self_blocked = 1; 2239 } 2240 EXPORT_SYMBOL(scsi_block_requests); 2241 2242 /** 2243 * scsi_unblock_requests - Utility function used by low-level drivers to allow 2244 * further commands to be queued to the device. 2245 * @shost: host in question 2246 * 2247 * There is no timer nor any other means by which the requests get unblocked 2248 * other than the low-level driver calling scsi_unblock_requests(). This is done 2249 * as an API function so that changes to the internals of the scsi mid-layer 2250 * won't require wholesale changes to drivers that use this feature. 2251 */ 2252 void scsi_unblock_requests(struct Scsi_Host *shost) 2253 { 2254 shost->host_self_blocked = 0; 2255 scsi_run_host_queues(shost); 2256 } 2257 EXPORT_SYMBOL(scsi_unblock_requests); 2258 2259 void scsi_exit_queue(void) 2260 { 2261 kmem_cache_destroy(scsi_sense_cache); 2262 } 2263 2264 /** 2265 * scsi_mode_select - issue a mode select 2266 * @sdev: SCSI device to be queried 2267 * @pf: Page format bit (1 == standard, 0 == vendor specific) 2268 * @sp: Save page bit (0 == don't save, 1 == save) 2269 * @buffer: request buffer (may not be smaller than eight bytes) 2270 * @len: length of request buffer. 2271 * @timeout: command timeout 2272 * @retries: number of retries before failing 2273 * @data: returns a structure abstracting the mode header data 2274 * @sshdr: place to put sense data (or NULL if no sense to be collected). 2275 * must be SCSI_SENSE_BUFFERSIZE big. 2276 * 2277 * Returns zero if successful; negative error number or scsi 2278 * status on error 2279 * 2280 */ 2281 int scsi_mode_select(struct scsi_device *sdev, int pf, int sp, 2282 unsigned char *buffer, int len, int timeout, int retries, 2283 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr) 2284 { 2285 unsigned char cmd[10]; 2286 unsigned char *real_buffer; 2287 const struct scsi_exec_args exec_args = { 2288 .sshdr = sshdr, 2289 }; 2290 int ret; 2291 2292 memset(cmd, 0, sizeof(cmd)); 2293 cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0); 2294 2295 /* 2296 * Use MODE SELECT(10) if the device asked for it or if the mode page 2297 * and the mode select header cannot fit within the maximumm 255 bytes 2298 * of the MODE SELECT(6) command. 2299 */ 2300 if (sdev->use_10_for_ms || 2301 len + 4 > 255 || 2302 data->block_descriptor_length > 255) { 2303 if (len > 65535 - 8) 2304 return -EINVAL; 2305 real_buffer = kmalloc(8 + len, GFP_KERNEL); 2306 if (!real_buffer) 2307 return -ENOMEM; 2308 memcpy(real_buffer + 8, buffer, len); 2309 len += 8; 2310 real_buffer[0] = 0; 2311 real_buffer[1] = 0; 2312 real_buffer[2] = data->medium_type; 2313 real_buffer[3] = data->device_specific; 2314 real_buffer[4] = data->longlba ? 0x01 : 0; 2315 real_buffer[5] = 0; 2316 put_unaligned_be16(data->block_descriptor_length, 2317 &real_buffer[6]); 2318 2319 cmd[0] = MODE_SELECT_10; 2320 put_unaligned_be16(len, &cmd[7]); 2321 } else { 2322 if (data->longlba) 2323 return -EINVAL; 2324 2325 real_buffer = kmalloc(4 + len, GFP_KERNEL); 2326 if (!real_buffer) 2327 return -ENOMEM; 2328 memcpy(real_buffer + 4, buffer, len); 2329 len += 4; 2330 real_buffer[0] = 0; 2331 real_buffer[1] = data->medium_type; 2332 real_buffer[2] = data->device_specific; 2333 real_buffer[3] = data->block_descriptor_length; 2334 2335 cmd[0] = MODE_SELECT; 2336 cmd[4] = len; 2337 } 2338 2339 ret = scsi_execute_cmd(sdev, cmd, REQ_OP_DRV_OUT, real_buffer, len, 2340 timeout, retries, &exec_args); 2341 kfree(real_buffer); 2342 return ret; 2343 } 2344 EXPORT_SYMBOL_GPL(scsi_mode_select); 2345 2346 /** 2347 * scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary. 2348 * @sdev: SCSI device to be queried 2349 * @dbd: set to prevent mode sense from returning block descriptors 2350 * @modepage: mode page being requested 2351 * @subpage: sub-page of the mode page being requested 2352 * @buffer: request buffer (may not be smaller than eight bytes) 2353 * @len: length of request buffer. 2354 * @timeout: command timeout 2355 * @retries: number of retries before failing 2356 * @data: returns a structure abstracting the mode header data 2357 * @sshdr: place to put sense data (or NULL if no sense to be collected). 2358 * must be SCSI_SENSE_BUFFERSIZE big. 2359 * 2360 * Returns zero if successful, or a negative error number on failure 2361 */ 2362 int 2363 scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage, int subpage, 2364 unsigned char *buffer, int len, int timeout, int retries, 2365 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr) 2366 { 2367 unsigned char cmd[12]; 2368 int use_10_for_ms; 2369 int header_length; 2370 int result; 2371 struct scsi_sense_hdr my_sshdr; 2372 struct scsi_failure failure_defs[] = { 2373 { 2374 .sense = UNIT_ATTENTION, 2375 .asc = SCMD_FAILURE_ASC_ANY, 2376 .ascq = SCMD_FAILURE_ASCQ_ANY, 2377 .allowed = retries, 2378 .result = SAM_STAT_CHECK_CONDITION, 2379 }, 2380 {} 2381 }; 2382 struct scsi_failures failures = { 2383 .failure_definitions = failure_defs, 2384 }; 2385 const struct scsi_exec_args exec_args = { 2386 /* caller might not be interested in sense, but we need it */ 2387 .sshdr = sshdr ? : &my_sshdr, 2388 .failures = &failures, 2389 }; 2390 2391 memset(data, 0, sizeof(*data)); 2392 memset(&cmd[0], 0, 12); 2393 2394 dbd = sdev->set_dbd_for_ms ? 8 : dbd; 2395 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */ 2396 cmd[2] = modepage; 2397 cmd[3] = subpage; 2398 2399 sshdr = exec_args.sshdr; 2400 2401 retry: 2402 use_10_for_ms = sdev->use_10_for_ms || len > 255; 2403 2404 if (use_10_for_ms) { 2405 if (len < 8 || len > 65535) 2406 return -EINVAL; 2407 2408 cmd[0] = MODE_SENSE_10; 2409 put_unaligned_be16(len, &cmd[7]); 2410 header_length = 8; 2411 } else { 2412 if (len < 4) 2413 return -EINVAL; 2414 2415 cmd[0] = MODE_SENSE; 2416 cmd[4] = len; 2417 header_length = 4; 2418 } 2419 2420 memset(buffer, 0, len); 2421 2422 result = scsi_execute_cmd(sdev, cmd, REQ_OP_DRV_IN, buffer, len, 2423 timeout, retries, &exec_args); 2424 if (result < 0) 2425 return result; 2426 2427 /* This code looks awful: what it's doing is making sure an 2428 * ILLEGAL REQUEST sense return identifies the actual command 2429 * byte as the problem. MODE_SENSE commands can return 2430 * ILLEGAL REQUEST if the code page isn't supported */ 2431 2432 if (!scsi_status_is_good(result)) { 2433 if (scsi_sense_valid(sshdr)) { 2434 if ((sshdr->sense_key == ILLEGAL_REQUEST) && 2435 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) { 2436 /* 2437 * Invalid command operation code: retry using 2438 * MODE SENSE(6) if this was a MODE SENSE(10) 2439 * request, except if the request mode page is 2440 * too large for MODE SENSE single byte 2441 * allocation length field. 2442 */ 2443 if (use_10_for_ms) { 2444 if (len > 255) 2445 return -EIO; 2446 sdev->use_10_for_ms = 0; 2447 goto retry; 2448 } 2449 } 2450 } 2451 return -EIO; 2452 } 2453 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b && 2454 (modepage == 6 || modepage == 8))) { 2455 /* Initio breakage? */ 2456 header_length = 0; 2457 data->length = 13; 2458 data->medium_type = 0; 2459 data->device_specific = 0; 2460 data->longlba = 0; 2461 data->block_descriptor_length = 0; 2462 } else if (use_10_for_ms) { 2463 data->length = get_unaligned_be16(&buffer[0]) + 2; 2464 data->medium_type = buffer[2]; 2465 data->device_specific = buffer[3]; 2466 data->longlba = buffer[4] & 0x01; 2467 data->block_descriptor_length = get_unaligned_be16(&buffer[6]); 2468 } else { 2469 data->length = buffer[0] + 1; 2470 data->medium_type = buffer[1]; 2471 data->device_specific = buffer[2]; 2472 data->block_descriptor_length = buffer[3]; 2473 } 2474 data->header_length = header_length; 2475 2476 return 0; 2477 } 2478 EXPORT_SYMBOL(scsi_mode_sense); 2479 2480 /** 2481 * scsi_test_unit_ready - test if unit is ready 2482 * @sdev: scsi device to change the state of. 2483 * @timeout: command timeout 2484 * @retries: number of retries before failing 2485 * @sshdr: outpout pointer for decoded sense information. 2486 * 2487 * Returns zero if successful or an error if TUR failed. For 2488 * removable media, UNIT_ATTENTION sets ->changed flag. 2489 **/ 2490 int 2491 scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries, 2492 struct scsi_sense_hdr *sshdr) 2493 { 2494 char cmd[] = { 2495 TEST_UNIT_READY, 0, 0, 0, 0, 0, 2496 }; 2497 const struct scsi_exec_args exec_args = { 2498 .sshdr = sshdr, 2499 }; 2500 int result; 2501 2502 /* try to eat the UNIT_ATTENTION if there are enough retries */ 2503 do { 2504 result = scsi_execute_cmd(sdev, cmd, REQ_OP_DRV_IN, NULL, 0, 2505 timeout, 1, &exec_args); 2506 if (sdev->removable && result > 0 && scsi_sense_valid(sshdr) && 2507 sshdr->sense_key == UNIT_ATTENTION) 2508 sdev->changed = 1; 2509 } while (result > 0 && scsi_sense_valid(sshdr) && 2510 sshdr->sense_key == UNIT_ATTENTION && --retries); 2511 2512 return result; 2513 } 2514 EXPORT_SYMBOL(scsi_test_unit_ready); 2515 2516 /** 2517 * scsi_device_set_state - Take the given device through the device state model. 2518 * @sdev: scsi device to change the state of. 2519 * @state: state to change to. 2520 * 2521 * Returns zero if successful or an error if the requested 2522 * transition is illegal. 2523 */ 2524 int 2525 scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state) 2526 { 2527 enum scsi_device_state oldstate = sdev->sdev_state; 2528 2529 if (state == oldstate) 2530 return 0; 2531 2532 switch (state) { 2533 case SDEV_CREATED: 2534 switch (oldstate) { 2535 case SDEV_CREATED_BLOCK: 2536 break; 2537 default: 2538 goto illegal; 2539 } 2540 break; 2541 2542 case SDEV_RUNNING: 2543 switch (oldstate) { 2544 case SDEV_CREATED: 2545 case SDEV_OFFLINE: 2546 case SDEV_TRANSPORT_OFFLINE: 2547 case SDEV_QUIESCE: 2548 case SDEV_BLOCK: 2549 break; 2550 default: 2551 goto illegal; 2552 } 2553 break; 2554 2555 case SDEV_QUIESCE: 2556 switch (oldstate) { 2557 case SDEV_RUNNING: 2558 case SDEV_OFFLINE: 2559 case SDEV_TRANSPORT_OFFLINE: 2560 break; 2561 default: 2562 goto illegal; 2563 } 2564 break; 2565 2566 case SDEV_OFFLINE: 2567 case SDEV_TRANSPORT_OFFLINE: 2568 switch (oldstate) { 2569 case SDEV_CREATED: 2570 case SDEV_RUNNING: 2571 case SDEV_QUIESCE: 2572 case SDEV_BLOCK: 2573 break; 2574 default: 2575 goto illegal; 2576 } 2577 break; 2578 2579 case SDEV_BLOCK: 2580 switch (oldstate) { 2581 case SDEV_RUNNING: 2582 case SDEV_CREATED_BLOCK: 2583 case SDEV_QUIESCE: 2584 case SDEV_OFFLINE: 2585 break; 2586 default: 2587 goto illegal; 2588 } 2589 break; 2590 2591 case SDEV_CREATED_BLOCK: 2592 switch (oldstate) { 2593 case SDEV_CREATED: 2594 break; 2595 default: 2596 goto illegal; 2597 } 2598 break; 2599 2600 case SDEV_CANCEL: 2601 switch (oldstate) { 2602 case SDEV_CREATED: 2603 case SDEV_RUNNING: 2604 case SDEV_QUIESCE: 2605 case SDEV_OFFLINE: 2606 case SDEV_TRANSPORT_OFFLINE: 2607 break; 2608 default: 2609 goto illegal; 2610 } 2611 break; 2612 2613 case SDEV_DEL: 2614 switch (oldstate) { 2615 case SDEV_CREATED: 2616 case SDEV_RUNNING: 2617 case SDEV_OFFLINE: 2618 case SDEV_TRANSPORT_OFFLINE: 2619 case SDEV_CANCEL: 2620 case SDEV_BLOCK: 2621 case SDEV_CREATED_BLOCK: 2622 break; 2623 default: 2624 goto illegal; 2625 } 2626 break; 2627 2628 } 2629 sdev->offline_already = false; 2630 sdev->sdev_state = state; 2631 return 0; 2632 2633 illegal: 2634 SCSI_LOG_ERROR_RECOVERY(1, 2635 sdev_printk(KERN_ERR, sdev, 2636 "Illegal state transition %s->%s", 2637 scsi_device_state_name(oldstate), 2638 scsi_device_state_name(state)) 2639 ); 2640 return -EINVAL; 2641 } 2642 EXPORT_SYMBOL(scsi_device_set_state); 2643 2644 /** 2645 * scsi_evt_emit - emit a single SCSI device uevent 2646 * @sdev: associated SCSI device 2647 * @evt: event to emit 2648 * 2649 * Send a single uevent (scsi_event) to the associated scsi_device. 2650 */ 2651 static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt) 2652 { 2653 int idx = 0; 2654 char *envp[3]; 2655 2656 switch (evt->evt_type) { 2657 case SDEV_EVT_MEDIA_CHANGE: 2658 envp[idx++] = "SDEV_MEDIA_CHANGE=1"; 2659 break; 2660 case SDEV_EVT_INQUIRY_CHANGE_REPORTED: 2661 scsi_rescan_device(sdev); 2662 envp[idx++] = "SDEV_UA=INQUIRY_DATA_HAS_CHANGED"; 2663 break; 2664 case SDEV_EVT_CAPACITY_CHANGE_REPORTED: 2665 envp[idx++] = "SDEV_UA=CAPACITY_DATA_HAS_CHANGED"; 2666 break; 2667 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED: 2668 envp[idx++] = "SDEV_UA=THIN_PROVISIONING_SOFT_THRESHOLD_REACHED"; 2669 break; 2670 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED: 2671 envp[idx++] = "SDEV_UA=MODE_PARAMETERS_CHANGED"; 2672 break; 2673 case SDEV_EVT_LUN_CHANGE_REPORTED: 2674 envp[idx++] = "SDEV_UA=REPORTED_LUNS_DATA_HAS_CHANGED"; 2675 break; 2676 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED: 2677 envp[idx++] = "SDEV_UA=ASYMMETRIC_ACCESS_STATE_CHANGED"; 2678 break; 2679 case SDEV_EVT_POWER_ON_RESET_OCCURRED: 2680 envp[idx++] = "SDEV_UA=POWER_ON_RESET_OCCURRED"; 2681 break; 2682 default: 2683 /* do nothing */ 2684 break; 2685 } 2686 2687 envp[idx++] = NULL; 2688 2689 kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp); 2690 } 2691 2692 /** 2693 * scsi_evt_thread - send a uevent for each scsi event 2694 * @work: work struct for scsi_device 2695 * 2696 * Dispatch queued events to their associated scsi_device kobjects 2697 * as uevents. 2698 */ 2699 void scsi_evt_thread(struct work_struct *work) 2700 { 2701 struct scsi_device *sdev; 2702 enum scsi_device_event evt_type; 2703 LIST_HEAD(event_list); 2704 2705 sdev = container_of(work, struct scsi_device, event_work); 2706 2707 for (evt_type = SDEV_EVT_FIRST; evt_type <= SDEV_EVT_LAST; evt_type++) 2708 if (test_and_clear_bit(evt_type, sdev->pending_events)) 2709 sdev_evt_send_simple(sdev, evt_type, GFP_KERNEL); 2710 2711 while (1) { 2712 struct scsi_event *evt; 2713 struct list_head *this, *tmp; 2714 unsigned long flags; 2715 2716 spin_lock_irqsave(&sdev->list_lock, flags); 2717 list_splice_init(&sdev->event_list, &event_list); 2718 spin_unlock_irqrestore(&sdev->list_lock, flags); 2719 2720 if (list_empty(&event_list)) 2721 break; 2722 2723 list_for_each_safe(this, tmp, &event_list) { 2724 evt = list_entry(this, struct scsi_event, node); 2725 list_del(&evt->node); 2726 scsi_evt_emit(sdev, evt); 2727 kfree(evt); 2728 } 2729 } 2730 } 2731 2732 /** 2733 * sdev_evt_send - send asserted event to uevent thread 2734 * @sdev: scsi_device event occurred on 2735 * @evt: event to send 2736 * 2737 * Assert scsi device event asynchronously. 2738 */ 2739 void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt) 2740 { 2741 unsigned long flags; 2742 2743 #if 0 2744 /* FIXME: currently this check eliminates all media change events 2745 * for polled devices. Need to update to discriminate between AN 2746 * and polled events */ 2747 if (!test_bit(evt->evt_type, sdev->supported_events)) { 2748 kfree(evt); 2749 return; 2750 } 2751 #endif 2752 2753 spin_lock_irqsave(&sdev->list_lock, flags); 2754 list_add_tail(&evt->node, &sdev->event_list); 2755 schedule_work(&sdev->event_work); 2756 spin_unlock_irqrestore(&sdev->list_lock, flags); 2757 } 2758 EXPORT_SYMBOL_GPL(sdev_evt_send); 2759 2760 /** 2761 * sdev_evt_alloc - allocate a new scsi event 2762 * @evt_type: type of event to allocate 2763 * @gfpflags: GFP flags for allocation 2764 * 2765 * Allocates and returns a new scsi_event. 2766 */ 2767 struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type, 2768 gfp_t gfpflags) 2769 { 2770 struct scsi_event *evt = kzalloc_obj(struct scsi_event, gfpflags); 2771 if (!evt) 2772 return NULL; 2773 2774 evt->evt_type = evt_type; 2775 INIT_LIST_HEAD(&evt->node); 2776 2777 /* evt_type-specific initialization, if any */ 2778 switch (evt_type) { 2779 case SDEV_EVT_MEDIA_CHANGE: 2780 case SDEV_EVT_INQUIRY_CHANGE_REPORTED: 2781 case SDEV_EVT_CAPACITY_CHANGE_REPORTED: 2782 case SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED: 2783 case SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED: 2784 case SDEV_EVT_LUN_CHANGE_REPORTED: 2785 case SDEV_EVT_ALUA_STATE_CHANGE_REPORTED: 2786 case SDEV_EVT_POWER_ON_RESET_OCCURRED: 2787 default: 2788 /* do nothing */ 2789 break; 2790 } 2791 2792 return evt; 2793 } 2794 EXPORT_SYMBOL_GPL(sdev_evt_alloc); 2795 2796 /** 2797 * sdev_evt_send_simple - send asserted event to uevent thread 2798 * @sdev: scsi_device event occurred on 2799 * @evt_type: type of event to send 2800 * @gfpflags: GFP flags for allocation 2801 * 2802 * Assert scsi device event asynchronously, given an event type. 2803 */ 2804 void sdev_evt_send_simple(struct scsi_device *sdev, 2805 enum scsi_device_event evt_type, gfp_t gfpflags) 2806 { 2807 struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags); 2808 if (!evt) { 2809 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n", 2810 evt_type); 2811 return; 2812 } 2813 2814 sdev_evt_send(sdev, evt); 2815 } 2816 EXPORT_SYMBOL_GPL(sdev_evt_send_simple); 2817 2818 /** 2819 * scsi_device_quiesce - Block all commands except power management. 2820 * @sdev: scsi device to quiesce. 2821 * 2822 * This works by trying to transition to the SDEV_QUIESCE state 2823 * (which must be a legal transition). When the device is in this 2824 * state, only power management requests will be accepted, all others will 2825 * be deferred. 2826 * 2827 * Must be called with user context, may sleep. 2828 * 2829 * Returns zero if successful or an error if not. 2830 */ 2831 int 2832 scsi_device_quiesce(struct scsi_device *sdev) 2833 { 2834 struct request_queue *q = sdev->request_queue; 2835 unsigned int memflags; 2836 int err; 2837 2838 /* 2839 * It is allowed to call scsi_device_quiesce() multiple times from 2840 * the same context but concurrent scsi_device_quiesce() calls are 2841 * not allowed. 2842 */ 2843 WARN_ON_ONCE(sdev->quiesced_by && sdev->quiesced_by != current); 2844 2845 if (sdev->quiesced_by == current) 2846 return 0; 2847 2848 blk_set_pm_only(q); 2849 2850 memflags = blk_mq_freeze_queue(q); 2851 /* 2852 * Ensure that the effect of blk_set_pm_only() will be visible 2853 * for percpu_ref_tryget() callers that occur after the queue 2854 * unfreeze even if the queue was already frozen before this function 2855 * was called. See also https://lwn.net/Articles/573497/. 2856 */ 2857 synchronize_rcu(); 2858 blk_mq_unfreeze_queue(q, memflags); 2859 2860 mutex_lock(&sdev->state_mutex); 2861 err = scsi_device_set_state(sdev, SDEV_QUIESCE); 2862 if (err == 0) 2863 sdev->quiesced_by = current; 2864 else 2865 blk_clear_pm_only(q); 2866 mutex_unlock(&sdev->state_mutex); 2867 2868 return err; 2869 } 2870 EXPORT_SYMBOL(scsi_device_quiesce); 2871 2872 /** 2873 * scsi_device_resume - Restart user issued commands to a quiesced device. 2874 * @sdev: scsi device to resume. 2875 * 2876 * Moves the device from quiesced back to running and restarts the 2877 * queues. 2878 * 2879 * Must be called with user context, may sleep. 2880 */ 2881 void scsi_device_resume(struct scsi_device *sdev) 2882 { 2883 /* check if the device state was mutated prior to resume, and if 2884 * so assume the state is being managed elsewhere (for example 2885 * device deleted during suspend) 2886 */ 2887 mutex_lock(&sdev->state_mutex); 2888 if (sdev->sdev_state == SDEV_QUIESCE) 2889 scsi_device_set_state(sdev, SDEV_RUNNING); 2890 if (sdev->quiesced_by) { 2891 sdev->quiesced_by = NULL; 2892 blk_clear_pm_only(sdev->request_queue); 2893 } 2894 mutex_unlock(&sdev->state_mutex); 2895 } 2896 EXPORT_SYMBOL(scsi_device_resume); 2897 2898 static void 2899 device_quiesce_fn(struct scsi_device *sdev, void *data) 2900 { 2901 scsi_device_quiesce(sdev); 2902 } 2903 2904 void 2905 scsi_target_quiesce(struct scsi_target *starget) 2906 { 2907 starget_for_each_device(starget, NULL, device_quiesce_fn); 2908 } 2909 EXPORT_SYMBOL(scsi_target_quiesce); 2910 2911 static void 2912 device_resume_fn(struct scsi_device *sdev, void *data) 2913 { 2914 scsi_device_resume(sdev); 2915 } 2916 2917 void 2918 scsi_target_resume(struct scsi_target *starget) 2919 { 2920 starget_for_each_device(starget, NULL, device_resume_fn); 2921 } 2922 EXPORT_SYMBOL(scsi_target_resume); 2923 2924 static int __scsi_internal_device_block_nowait(struct scsi_device *sdev) 2925 { 2926 if (scsi_device_set_state(sdev, SDEV_BLOCK)) 2927 return scsi_device_set_state(sdev, SDEV_CREATED_BLOCK); 2928 2929 return 0; 2930 } 2931 2932 void scsi_start_queue(struct scsi_device *sdev) 2933 { 2934 if (cmpxchg(&sdev->queue_stopped, 1, 0)) 2935 blk_mq_unquiesce_queue(sdev->request_queue); 2936 } 2937 2938 static void scsi_stop_queue(struct scsi_device *sdev) 2939 { 2940 /* 2941 * The atomic variable of ->queue_stopped covers that 2942 * blk_mq_quiesce_queue* is balanced with blk_mq_unquiesce_queue. 2943 * 2944 * The caller needs to wait until quiesce is done. 2945 */ 2946 if (!cmpxchg(&sdev->queue_stopped, 0, 1)) 2947 blk_mq_quiesce_queue_nowait(sdev->request_queue); 2948 } 2949 2950 /** 2951 * scsi_internal_device_block_nowait - try to transition to the SDEV_BLOCK state 2952 * @sdev: device to block 2953 * 2954 * Pause SCSI command processing on the specified device. Does not sleep. 2955 * 2956 * Returns zero if successful or a negative error code upon failure. 2957 * 2958 * Notes: 2959 * This routine transitions the device to the SDEV_BLOCK state (which must be 2960 * a legal transition). When the device is in this state, command processing 2961 * is paused until the device leaves the SDEV_BLOCK state. See also 2962 * scsi_internal_device_unblock_nowait(). 2963 */ 2964 int scsi_internal_device_block_nowait(struct scsi_device *sdev) 2965 { 2966 int ret = __scsi_internal_device_block_nowait(sdev); 2967 2968 /* 2969 * The device has transitioned to SDEV_BLOCK. Stop the 2970 * block layer from calling the midlayer with this device's 2971 * request queue. 2972 */ 2973 if (!ret) 2974 scsi_stop_queue(sdev); 2975 return ret; 2976 } 2977 EXPORT_SYMBOL_GPL(scsi_internal_device_block_nowait); 2978 2979 /** 2980 * scsi_device_block - try to transition to the SDEV_BLOCK state 2981 * @sdev: device to block 2982 * @data: dummy argument, ignored 2983 * 2984 * Pause SCSI command processing on the specified device. Callers must wait 2985 * until all ongoing scsi_queue_rq() calls have finished after this function 2986 * returns. 2987 * 2988 * Note: 2989 * This routine transitions the device to the SDEV_BLOCK state (which must be 2990 * a legal transition). When the device is in this state, command processing 2991 * is paused until the device leaves the SDEV_BLOCK state. See also 2992 * scsi_internal_device_unblock(). 2993 */ 2994 static void scsi_device_block(struct scsi_device *sdev, void *data) 2995 { 2996 int err; 2997 enum scsi_device_state state; 2998 2999 mutex_lock(&sdev->state_mutex); 3000 err = __scsi_internal_device_block_nowait(sdev); 3001 state = sdev->sdev_state; 3002 if (err == 0) 3003 /* 3004 * scsi_stop_queue() must be called with the state_mutex 3005 * held. Otherwise a simultaneous scsi_start_queue() call 3006 * might unquiesce the queue before we quiesce it. 3007 */ 3008 scsi_stop_queue(sdev); 3009 3010 mutex_unlock(&sdev->state_mutex); 3011 3012 WARN_ONCE(err, "%s: failed to block %s in state %d\n", 3013 __func__, dev_name(&sdev->sdev_gendev), state); 3014 } 3015 3016 /** 3017 * scsi_internal_device_unblock_nowait - resume a device after a block request 3018 * @sdev: device to resume 3019 * @new_state: state to set the device to after unblocking 3020 * 3021 * Restart the device queue for a previously suspended SCSI device. Does not 3022 * sleep. 3023 * 3024 * Returns zero if successful or a negative error code upon failure. 3025 * 3026 * Notes: 3027 * This routine transitions the device to the SDEV_RUNNING state or to one of 3028 * the offline states (which must be a legal transition) allowing the midlayer 3029 * to goose the queue for this device. 3030 */ 3031 int scsi_internal_device_unblock_nowait(struct scsi_device *sdev, 3032 enum scsi_device_state new_state) 3033 { 3034 switch (new_state) { 3035 case SDEV_RUNNING: 3036 case SDEV_TRANSPORT_OFFLINE: 3037 break; 3038 default: 3039 return -EINVAL; 3040 } 3041 3042 /* 3043 * Try to transition the scsi device to SDEV_RUNNING or one of the 3044 * offlined states and goose the device queue if successful. 3045 */ 3046 switch (sdev->sdev_state) { 3047 case SDEV_BLOCK: 3048 case SDEV_TRANSPORT_OFFLINE: 3049 sdev->sdev_state = new_state; 3050 break; 3051 case SDEV_CREATED_BLOCK: 3052 if (new_state == SDEV_TRANSPORT_OFFLINE || 3053 new_state == SDEV_OFFLINE) 3054 sdev->sdev_state = new_state; 3055 else 3056 sdev->sdev_state = SDEV_CREATED; 3057 break; 3058 case SDEV_CANCEL: 3059 case SDEV_OFFLINE: 3060 break; 3061 default: 3062 return -EINVAL; 3063 } 3064 scsi_start_queue(sdev); 3065 3066 return 0; 3067 } 3068 EXPORT_SYMBOL_GPL(scsi_internal_device_unblock_nowait); 3069 3070 /** 3071 * scsi_internal_device_unblock - resume a device after a block request 3072 * @sdev: device to resume 3073 * @new_state: state to set the device to after unblocking 3074 * 3075 * Restart the device queue for a previously suspended SCSI device. May sleep. 3076 * 3077 * Returns zero if successful or a negative error code upon failure. 3078 * 3079 * Notes: 3080 * This routine transitions the device to the SDEV_RUNNING state or to one of 3081 * the offline states (which must be a legal transition) allowing the midlayer 3082 * to goose the queue for this device. 3083 */ 3084 static int scsi_internal_device_unblock(struct scsi_device *sdev, 3085 enum scsi_device_state new_state) 3086 { 3087 int ret; 3088 3089 mutex_lock(&sdev->state_mutex); 3090 ret = scsi_internal_device_unblock_nowait(sdev, new_state); 3091 mutex_unlock(&sdev->state_mutex); 3092 3093 return ret; 3094 } 3095 3096 static int 3097 target_block(struct device *dev, void *data) 3098 { 3099 if (scsi_is_target_device(dev)) 3100 starget_for_each_device(to_scsi_target(dev), NULL, 3101 scsi_device_block); 3102 return 0; 3103 } 3104 3105 /** 3106 * scsi_block_targets - transition all SCSI child devices to SDEV_BLOCK state 3107 * @dev: a parent device of one or more scsi_target devices 3108 * @shost: the Scsi_Host to which this device belongs 3109 * 3110 * Iterate over all children of @dev, which should be scsi_target devices, 3111 * and switch all subordinate scsi devices to SDEV_BLOCK state. Wait for 3112 * ongoing scsi_queue_rq() calls to finish. May sleep. 3113 * 3114 * Note: 3115 * @dev must not itself be a scsi_target device. 3116 */ 3117 void 3118 scsi_block_targets(struct Scsi_Host *shost, struct device *dev) 3119 { 3120 WARN_ON_ONCE(scsi_is_target_device(dev)); 3121 device_for_each_child(dev, NULL, target_block); 3122 blk_mq_wait_quiesce_done(&shost->tag_set); 3123 } 3124 EXPORT_SYMBOL_GPL(scsi_block_targets); 3125 3126 static void 3127 device_unblock(struct scsi_device *sdev, void *data) 3128 { 3129 scsi_internal_device_unblock(sdev, *(enum scsi_device_state *)data); 3130 } 3131 3132 static int 3133 target_unblock(struct device *dev, void *data) 3134 { 3135 if (scsi_is_target_device(dev)) 3136 starget_for_each_device(to_scsi_target(dev), data, 3137 device_unblock); 3138 return 0; 3139 } 3140 3141 void 3142 scsi_target_unblock(struct device *dev, enum scsi_device_state new_state) 3143 { 3144 if (scsi_is_target_device(dev)) 3145 starget_for_each_device(to_scsi_target(dev), &new_state, 3146 device_unblock); 3147 else 3148 device_for_each_child(dev, &new_state, target_unblock); 3149 } 3150 EXPORT_SYMBOL_GPL(scsi_target_unblock); 3151 3152 /** 3153 * scsi_host_block - Try to transition all logical units to the SDEV_BLOCK state 3154 * @shost: device to block 3155 * 3156 * Pause SCSI command processing for all logical units associated with the SCSI 3157 * host and wait until pending scsi_queue_rq() calls have finished. 3158 * 3159 * Returns zero if successful or a negative error code upon failure. 3160 */ 3161 int 3162 scsi_host_block(struct Scsi_Host *shost) 3163 { 3164 struct scsi_device *sdev; 3165 int ret; 3166 3167 /* 3168 * Call scsi_internal_device_block_nowait so we can avoid 3169 * calling synchronize_rcu() for each LUN. 3170 */ 3171 shost_for_each_device(sdev, shost) { 3172 mutex_lock(&sdev->state_mutex); 3173 ret = scsi_internal_device_block_nowait(sdev); 3174 mutex_unlock(&sdev->state_mutex); 3175 if (ret) { 3176 scsi_device_put(sdev); 3177 return ret; 3178 } 3179 } 3180 3181 /* Wait for ongoing scsi_queue_rq() calls to finish. */ 3182 blk_mq_wait_quiesce_done(&shost->tag_set); 3183 3184 return 0; 3185 } 3186 EXPORT_SYMBOL_GPL(scsi_host_block); 3187 3188 int 3189 scsi_host_unblock(struct Scsi_Host *shost, int new_state) 3190 { 3191 struct scsi_device *sdev; 3192 int ret = 0; 3193 3194 shost_for_each_device(sdev, shost) { 3195 ret = scsi_internal_device_unblock(sdev, new_state); 3196 if (ret) { 3197 scsi_device_put(sdev); 3198 break; 3199 } 3200 } 3201 return ret; 3202 } 3203 EXPORT_SYMBOL_GPL(scsi_host_unblock); 3204 3205 /** 3206 * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt 3207 * @sgl: scatter-gather list 3208 * @sg_count: number of segments in sg 3209 * @offset: offset in bytes into sg, on return offset into the mapped area 3210 * @len: bytes to map, on return number of bytes mapped 3211 * 3212 * Returns virtual address of the start of the mapped page 3213 */ 3214 void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count, 3215 size_t *offset, size_t *len) 3216 { 3217 int i; 3218 size_t sg_len = 0, len_complete = 0; 3219 struct scatterlist *sg; 3220 struct page *page; 3221 3222 WARN_ON(!irqs_disabled()); 3223 3224 for_each_sg(sgl, sg, sg_count, i) { 3225 len_complete = sg_len; /* Complete sg-entries */ 3226 sg_len += sg->length; 3227 if (sg_len > *offset) 3228 break; 3229 } 3230 3231 if (unlikely(i == sg_count)) { 3232 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, " 3233 "elements %d\n", 3234 __func__, sg_len, *offset, sg_count); 3235 WARN_ON(1); 3236 return NULL; 3237 } 3238 3239 /* Offset starting from the beginning of first page in this sg-entry */ 3240 *offset = *offset - len_complete + sg->offset; 3241 3242 page = sg_page(sg) + (*offset >> PAGE_SHIFT); 3243 *offset &= ~PAGE_MASK; 3244 3245 /* Bytes in this sg-entry from *offset to the end of the page */ 3246 sg_len = PAGE_SIZE - *offset; 3247 if (*len > sg_len) 3248 *len = sg_len; 3249 3250 return kmap_atomic(page); 3251 } 3252 EXPORT_SYMBOL(scsi_kmap_atomic_sg); 3253 3254 /** 3255 * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg 3256 * @virt: virtual address to be unmapped 3257 */ 3258 void scsi_kunmap_atomic_sg(void *virt) 3259 { 3260 kunmap_atomic(virt); 3261 } 3262 EXPORT_SYMBOL(scsi_kunmap_atomic_sg); 3263 3264 void sdev_disable_disk_events(struct scsi_device *sdev) 3265 { 3266 atomic_inc(&sdev->disk_events_disable_depth); 3267 } 3268 EXPORT_SYMBOL(sdev_disable_disk_events); 3269 3270 void sdev_enable_disk_events(struct scsi_device *sdev) 3271 { 3272 if (WARN_ON_ONCE(atomic_read(&sdev->disk_events_disable_depth) <= 0)) 3273 return; 3274 atomic_dec(&sdev->disk_events_disable_depth); 3275 } 3276 EXPORT_SYMBOL(sdev_enable_disk_events); 3277 3278 static unsigned char designator_prio(const unsigned char *d) 3279 { 3280 if (d[1] & 0x30) 3281 /* not associated with LUN */ 3282 return 0; 3283 3284 if (d[3] == 0) 3285 /* invalid length */ 3286 return 0; 3287 3288 /* 3289 * Order of preference for lun descriptor: 3290 * - SCSI name string 3291 * - NAA IEEE Registered Extended 3292 * - EUI-64 based 16-byte 3293 * - EUI-64 based 12-byte 3294 * - NAA IEEE Registered 3295 * - NAA IEEE Extended 3296 * - EUI-64 based 8-byte 3297 * - SCSI name string (truncated) 3298 * - T10 Vendor ID 3299 * as longer descriptors reduce the likelyhood 3300 * of identification clashes. 3301 */ 3302 3303 switch (d[1] & 0xf) { 3304 case 8: 3305 /* SCSI name string, variable-length UTF-8 */ 3306 return 9; 3307 case 3: 3308 switch (d[4] >> 4) { 3309 case 6: 3310 /* NAA registered extended */ 3311 return 8; 3312 case 5: 3313 /* NAA registered */ 3314 return 5; 3315 case 4: 3316 /* NAA extended */ 3317 return 4; 3318 case 3: 3319 /* NAA locally assigned */ 3320 return 1; 3321 default: 3322 break; 3323 } 3324 break; 3325 case 2: 3326 switch (d[3]) { 3327 case 16: 3328 /* EUI64-based, 16 byte */ 3329 return 7; 3330 case 12: 3331 /* EUI64-based, 12 byte */ 3332 return 6; 3333 case 8: 3334 /* EUI64-based, 8 byte */ 3335 return 3; 3336 default: 3337 break; 3338 } 3339 break; 3340 case 1: 3341 /* T10 vendor ID */ 3342 return 1; 3343 default: 3344 break; 3345 } 3346 3347 return 0; 3348 } 3349 3350 /** 3351 * scsi_vpd_lun_id - return a unique device identification 3352 * @sdev: SCSI device 3353 * @id: buffer for the identification 3354 * @id_len: length of the buffer 3355 * 3356 * Copies a unique device identification into @id based 3357 * on the information in the VPD page 0x83 of the device. 3358 * The string will be formatted as a SCSI name string. 3359 * 3360 * Returns the length of the identification or error on failure. 3361 * If the identifier is longer than the supplied buffer the actual 3362 * identifier length is returned and the buffer is not zero-padded. 3363 */ 3364 int scsi_vpd_lun_id(struct scsi_device *sdev, char *id, size_t id_len) 3365 { 3366 u8 cur_id_prio = 0; 3367 u8 cur_id_size = 0; 3368 const unsigned char *d, *cur_id_str; 3369 const struct scsi_vpd *vpd_pg83; 3370 int id_size = -EINVAL; 3371 3372 rcu_read_lock(); 3373 vpd_pg83 = rcu_dereference(sdev->vpd_pg83); 3374 if (!vpd_pg83) { 3375 rcu_read_unlock(); 3376 return -ENXIO; 3377 } 3378 3379 /* The id string must be at least 20 bytes + terminating NULL byte */ 3380 if (id_len < 21) { 3381 rcu_read_unlock(); 3382 return -EINVAL; 3383 } 3384 3385 memset(id, 0, id_len); 3386 for (d = vpd_pg83->data + 4; 3387 d < vpd_pg83->data + vpd_pg83->len; 3388 d += d[3] + 4) { 3389 u8 prio = designator_prio(d); 3390 3391 if (prio == 0 || cur_id_prio > prio) 3392 continue; 3393 3394 switch (d[1] & 0xf) { 3395 case 0x1: 3396 /* T10 Vendor ID */ 3397 if (cur_id_size > d[3]) 3398 break; 3399 cur_id_prio = prio; 3400 cur_id_size = d[3]; 3401 if (cur_id_size + 4 > id_len) 3402 cur_id_size = id_len - 4; 3403 cur_id_str = d + 4; 3404 id_size = snprintf(id, id_len, "t10.%*pE", 3405 cur_id_size, cur_id_str); 3406 break; 3407 case 0x2: 3408 /* EUI-64 */ 3409 cur_id_prio = prio; 3410 cur_id_size = d[3]; 3411 cur_id_str = d + 4; 3412 switch (cur_id_size) { 3413 case 8: 3414 id_size = snprintf(id, id_len, 3415 "eui.%8phN", 3416 cur_id_str); 3417 break; 3418 case 12: 3419 id_size = snprintf(id, id_len, 3420 "eui.%12phN", 3421 cur_id_str); 3422 break; 3423 case 16: 3424 id_size = snprintf(id, id_len, 3425 "eui.%16phN", 3426 cur_id_str); 3427 break; 3428 default: 3429 break; 3430 } 3431 break; 3432 case 0x3: 3433 /* NAA */ 3434 cur_id_prio = prio; 3435 cur_id_size = d[3]; 3436 cur_id_str = d + 4; 3437 switch (cur_id_size) { 3438 case 8: 3439 id_size = snprintf(id, id_len, 3440 "naa.%8phN", 3441 cur_id_str); 3442 break; 3443 case 16: 3444 id_size = snprintf(id, id_len, 3445 "naa.%16phN", 3446 cur_id_str); 3447 break; 3448 default: 3449 break; 3450 } 3451 break; 3452 case 0x8: 3453 /* SCSI name string */ 3454 if (cur_id_size > d[3]) 3455 break; 3456 /* Prefer others for truncated descriptor */ 3457 if (d[3] > id_len) { 3458 prio = 2; 3459 if (cur_id_prio > prio) 3460 break; 3461 } 3462 cur_id_prio = prio; 3463 cur_id_size = id_size = d[3]; 3464 cur_id_str = d + 4; 3465 if (cur_id_size >= id_len) 3466 cur_id_size = id_len - 1; 3467 memcpy(id, cur_id_str, cur_id_size); 3468 break; 3469 default: 3470 break; 3471 } 3472 } 3473 rcu_read_unlock(); 3474 3475 return id_size; 3476 } 3477 EXPORT_SYMBOL(scsi_vpd_lun_id); 3478 3479 /** 3480 * scsi_vpd_lun_serial - return a unique device serial number 3481 * @sdev: SCSI device 3482 * @sn: buffer for the serial number 3483 * @sn_size: size of the buffer 3484 * 3485 * Copies the device serial number into @sn based on the information in 3486 * the VPD page 0x80 of the device. The string will be null terminated 3487 * and have leading and trailing whitespace stripped. 3488 * 3489 * Returns the length of the serial number or error on failure. 3490 */ 3491 int scsi_vpd_lun_serial(struct scsi_device *sdev, char *sn, size_t sn_size) 3492 { 3493 const struct scsi_vpd *vpd_pg80; 3494 const unsigned char *d; 3495 int len; 3496 3497 guard(rcu)(); 3498 vpd_pg80 = rcu_dereference(sdev->vpd_pg80); 3499 if (!vpd_pg80) 3500 return -ENXIO; 3501 3502 len = vpd_pg80->len - 4; 3503 d = vpd_pg80->data + 4; 3504 3505 /* Skip leading spaces */ 3506 while (len > 0 && isspace(*d)) { 3507 len--; 3508 d++; 3509 } 3510 3511 /* Skip trailing spaces */ 3512 while (len > 0 && isspace(d[len - 1])) 3513 len--; 3514 3515 if (sn_size < len + 1) 3516 return -EINVAL; 3517 3518 memcpy(sn, d, len); 3519 sn[len] = '\0'; 3520 3521 return len; 3522 } 3523 EXPORT_SYMBOL(scsi_vpd_lun_serial); 3524 3525 /** 3526 * scsi_vpd_tpg_id - return a target port group identifier 3527 * @sdev: SCSI device 3528 * @rel_id: pointer to return relative target port in if not %NULL 3529 * 3530 * Returns the Target Port Group identifier from the information 3531 * from VPD page 0x83 of the device. 3532 * Optionally sets @rel_id to the relative target port on success. 3533 * 3534 * Return: the identifier or error on failure. 3535 */ 3536 int scsi_vpd_tpg_id(struct scsi_device *sdev, int *rel_id) 3537 { 3538 const unsigned char *d; 3539 const struct scsi_vpd *vpd_pg83; 3540 int group_id = -EAGAIN, rel_port = -1; 3541 3542 rcu_read_lock(); 3543 vpd_pg83 = rcu_dereference(sdev->vpd_pg83); 3544 if (!vpd_pg83) { 3545 rcu_read_unlock(); 3546 return -ENXIO; 3547 } 3548 3549 d = vpd_pg83->data + 4; 3550 while (d < vpd_pg83->data + vpd_pg83->len) { 3551 switch (d[1] & 0xf) { 3552 case 0x4: 3553 /* Relative target port */ 3554 rel_port = get_unaligned_be16(&d[6]); 3555 break; 3556 case 0x5: 3557 /* Target port group */ 3558 group_id = get_unaligned_be16(&d[6]); 3559 break; 3560 default: 3561 break; 3562 } 3563 d += d[3] + 4; 3564 } 3565 rcu_read_unlock(); 3566 3567 if (group_id >= 0 && rel_id && rel_port != -1) 3568 *rel_id = rel_port; 3569 3570 return group_id; 3571 } 3572 EXPORT_SYMBOL(scsi_vpd_tpg_id); 3573 3574 /** 3575 * scsi_build_sense - build sense data for a command 3576 * @scmd: scsi command for which the sense should be formatted 3577 * @desc: Sense format (non-zero == descriptor format, 3578 * 0 == fixed format) 3579 * @key: Sense key 3580 * @asc: Additional sense code 3581 * @ascq: Additional sense code qualifier 3582 * 3583 **/ 3584 void scsi_build_sense(struct scsi_cmnd *scmd, int desc, u8 key, u8 asc, u8 ascq) 3585 { 3586 scsi_build_sense_buffer(desc, scmd->sense_buffer, key, asc, ascq); 3587 scmd->result = SAM_STAT_CHECK_CONDITION; 3588 } 3589 EXPORT_SYMBOL_GPL(scsi_build_sense); 3590 3591 #ifdef CONFIG_SCSI_LIB_KUNIT_TEST 3592 #include "scsi_lib_test.c" 3593 #endif 3594