1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * scsi_error.c Copyright (C) 1997 Eric Youngdale
4 *
5 * SCSI error/timeout handling
6 * Initial versions: Eric Youngdale. Based upon conversations with
7 * Leonard Zubkoff and David Miller at Linux Expo,
8 * ideas originating from all over the place.
9 *
10 * Restructured scsi_unjam_host and associated functions.
11 * September 04, 2002 Mike Anderson (andmike@us.ibm.com)
12 *
13 * Forward port of Russell King's (rmk@arm.linux.org.uk) changes and
14 * minor cleanups.
15 * September 30, 2002 Mike Anderson (andmike@us.ibm.com)
16 */
17
18 #include <linux/module.h>
19 #include <linux/sched.h>
20 #include <linux/gfp.h>
21 #include <linux/timer.h>
22 #include <linux/string.h>
23 #include <linux/kernel.h>
24 #include <linux/freezer.h>
25 #include <linux/kthread.h>
26 #include <linux/interrupt.h>
27 #include <linux/blkdev.h>
28 #include <linux/delay.h>
29 #include <linux/jiffies.h>
30 #include <linux/list_sort.h>
31
32 #include <scsi/scsi.h>
33 #include <scsi/scsi_cmnd.h>
34 #include <scsi/scsi_dbg.h>
35 #include <scsi/scsi_device.h>
36 #include <scsi/scsi_driver.h>
37 #include <scsi/scsi_eh.h>
38 #include <scsi/scsi_common.h>
39 #include <scsi/scsi_transport.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_ioctl.h>
42 #include <scsi/scsi_dh.h>
43 #include <scsi/scsi_devinfo.h>
44 #include <scsi/sg.h>
45
46 #include "scsi_priv.h"
47 #include "scsi_logging.h"
48 #include "scsi_transport_api.h"
49
50 #include <trace/events/scsi.h>
51
52 #include <asm/unaligned.h>
53
54 static void scsi_eh_done(struct scsi_cmnd *scmd);
55
56 /*
57 * These should *probably* be handled by the host itself.
58 * Since it is allowed to sleep, it probably should.
59 */
60 #define BUS_RESET_SETTLE_TIME (10)
61 #define HOST_RESET_SETTLE_TIME (10)
62
63 static int scsi_eh_try_stu(struct scsi_cmnd *scmd);
64 static enum scsi_disposition scsi_try_to_abort_cmd(struct scsi_host_template *,
65 struct scsi_cmnd *);
66
scsi_eh_wakeup(struct Scsi_Host * shost,unsigned int busy)67 void scsi_eh_wakeup(struct Scsi_Host *shost, unsigned int busy)
68 {
69 lockdep_assert_held(shost->host_lock);
70
71 if (busy == shost->host_failed) {
72 trace_scsi_eh_wakeup(shost);
73 wake_up_process(shost->ehandler);
74 SCSI_LOG_ERROR_RECOVERY(5, shost_printk(KERN_INFO, shost,
75 "Waking error handler thread\n"));
76 }
77 }
78
79 /**
80 * scsi_schedule_eh - schedule EH for SCSI host
81 * @shost: SCSI host to invoke error handling on.
82 *
83 * Schedule SCSI EH without scmd.
84 */
scsi_schedule_eh(struct Scsi_Host * shost)85 void scsi_schedule_eh(struct Scsi_Host *shost)
86 {
87 unsigned long flags;
88
89 spin_lock_irqsave(shost->host_lock, flags);
90
91 if (scsi_host_set_state(shost, SHOST_RECOVERY) == 0 ||
92 scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY) == 0) {
93 shost->host_eh_scheduled++;
94 scsi_eh_wakeup(shost, scsi_host_busy(shost));
95 }
96
97 spin_unlock_irqrestore(shost->host_lock, flags);
98 }
99 EXPORT_SYMBOL_GPL(scsi_schedule_eh);
100
scsi_host_eh_past_deadline(struct Scsi_Host * shost)101 static int scsi_host_eh_past_deadline(struct Scsi_Host *shost)
102 {
103 if (!shost->last_reset || shost->eh_deadline == -1)
104 return 0;
105
106 /*
107 * 32bit accesses are guaranteed to be atomic
108 * (on all supported architectures), so instead
109 * of using a spinlock we can as well double check
110 * if eh_deadline has been set to 'off' during the
111 * time_before call.
112 */
113 if (time_before(jiffies, shost->last_reset + shost->eh_deadline) &&
114 shost->eh_deadline > -1)
115 return 0;
116
117 return 1;
118 }
119
scsi_cmd_retry_allowed(struct scsi_cmnd * cmd)120 static bool scsi_cmd_retry_allowed(struct scsi_cmnd *cmd)
121 {
122 if (cmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT)
123 return true;
124
125 return ++cmd->retries <= cmd->allowed;
126 }
127
scsi_eh_should_retry_cmd(struct scsi_cmnd * cmd)128 static bool scsi_eh_should_retry_cmd(struct scsi_cmnd *cmd)
129 {
130 struct scsi_device *sdev = cmd->device;
131 struct Scsi_Host *host = sdev->host;
132
133 if (host->hostt->eh_should_retry_cmd)
134 return host->hostt->eh_should_retry_cmd(cmd);
135
136 return true;
137 }
138
scsi_eh_complete_abort(struct scsi_cmnd * scmd,struct Scsi_Host * shost)139 static void scsi_eh_complete_abort(struct scsi_cmnd *scmd, struct Scsi_Host *shost)
140 {
141 unsigned long flags;
142
143 spin_lock_irqsave(shost->host_lock, flags);
144 list_del_init(&scmd->eh_entry);
145 /*
146 * If the abort succeeds, and there is no further
147 * EH action, clear the ->last_reset time.
148 */
149 if (list_empty(&shost->eh_abort_list) &&
150 list_empty(&shost->eh_cmd_q))
151 if (shost->eh_deadline != -1)
152 shost->last_reset = 0;
153 spin_unlock_irqrestore(shost->host_lock, flags);
154 }
155
156 /**
157 * scmd_eh_abort_handler - Handle command aborts
158 * @work: command to be aborted.
159 *
160 * Note: this function must be called only for a command that has timed out.
161 * Because the block layer marks a request as complete before it calls
162 * scsi_times_out(), a .scsi_done() call from the LLD for a command that has
163 * timed out do not have any effect. Hence it is safe to call
164 * scsi_finish_command() from this function.
165 */
166 void
scmd_eh_abort_handler(struct work_struct * work)167 scmd_eh_abort_handler(struct work_struct *work)
168 {
169 struct scsi_cmnd *scmd =
170 container_of(work, struct scsi_cmnd, abort_work.work);
171 struct scsi_device *sdev = scmd->device;
172 enum scsi_disposition rtn;
173 unsigned long flags;
174
175 if (scsi_host_eh_past_deadline(sdev->host)) {
176 SCSI_LOG_ERROR_RECOVERY(3,
177 scmd_printk(KERN_INFO, scmd,
178 "eh timeout, not aborting\n"));
179 } else {
180 SCSI_LOG_ERROR_RECOVERY(3,
181 scmd_printk(KERN_INFO, scmd,
182 "aborting command\n"));
183 rtn = scsi_try_to_abort_cmd(sdev->host->hostt, scmd);
184 if (rtn == SUCCESS) {
185 set_host_byte(scmd, DID_TIME_OUT);
186 if (scsi_host_eh_past_deadline(sdev->host)) {
187 SCSI_LOG_ERROR_RECOVERY(3,
188 scmd_printk(KERN_INFO, scmd,
189 "eh timeout, not retrying "
190 "aborted command\n"));
191 } else if (!scsi_noretry_cmd(scmd) &&
192 scsi_cmd_retry_allowed(scmd) &&
193 scsi_eh_should_retry_cmd(scmd)) {
194 SCSI_LOG_ERROR_RECOVERY(3,
195 scmd_printk(KERN_WARNING, scmd,
196 "retry aborted command\n"));
197 scsi_eh_complete_abort(scmd, sdev->host);
198 scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY);
199 return;
200 } else {
201 SCSI_LOG_ERROR_RECOVERY(3,
202 scmd_printk(KERN_WARNING, scmd,
203 "finish aborted command\n"));
204 scsi_eh_complete_abort(scmd, sdev->host);
205 scsi_finish_command(scmd);
206 return;
207 }
208 } else {
209 SCSI_LOG_ERROR_RECOVERY(3,
210 scmd_printk(KERN_INFO, scmd,
211 "cmd abort %s\n",
212 (rtn == FAST_IO_FAIL) ?
213 "not send" : "failed"));
214 }
215 }
216
217 spin_lock_irqsave(sdev->host->host_lock, flags);
218 list_del_init(&scmd->eh_entry);
219 spin_unlock_irqrestore(sdev->host->host_lock, flags);
220 scsi_eh_scmd_add(scmd);
221 }
222
223 /**
224 * scsi_abort_command - schedule a command abort
225 * @scmd: scmd to abort.
226 *
227 * We only need to abort commands after a command timeout
228 */
229 static int
scsi_abort_command(struct scsi_cmnd * scmd)230 scsi_abort_command(struct scsi_cmnd *scmd)
231 {
232 struct scsi_device *sdev = scmd->device;
233 struct Scsi_Host *shost = sdev->host;
234 unsigned long flags;
235
236 if (scmd->eh_eflags & SCSI_EH_ABORT_SCHEDULED) {
237 /*
238 * Retry after abort failed, escalate to next level.
239 */
240 SCSI_LOG_ERROR_RECOVERY(3,
241 scmd_printk(KERN_INFO, scmd,
242 "previous abort failed\n"));
243 BUG_ON(delayed_work_pending(&scmd->abort_work));
244 return FAILED;
245 }
246
247 spin_lock_irqsave(shost->host_lock, flags);
248 if (shost->eh_deadline != -1 && !shost->last_reset)
249 shost->last_reset = jiffies;
250 BUG_ON(!list_empty(&scmd->eh_entry));
251 list_add_tail(&scmd->eh_entry, &shost->eh_abort_list);
252 spin_unlock_irqrestore(shost->host_lock, flags);
253
254 scmd->eh_eflags |= SCSI_EH_ABORT_SCHEDULED;
255 SCSI_LOG_ERROR_RECOVERY(3,
256 scmd_printk(KERN_INFO, scmd, "abort scheduled\n"));
257 queue_delayed_work(shost->tmf_work_q, &scmd->abort_work, HZ / 100);
258 return SUCCESS;
259 }
260
261 /**
262 * scsi_eh_reset - call into ->eh_action to reset internal counters
263 * @scmd: scmd to run eh on.
264 *
265 * The scsi driver might be carrying internal state about the
266 * devices, so we need to call into the driver to reset the
267 * internal state once the error handler is started.
268 */
scsi_eh_reset(struct scsi_cmnd * scmd)269 static void scsi_eh_reset(struct scsi_cmnd *scmd)
270 {
271 if (!blk_rq_is_passthrough(scsi_cmd_to_rq(scmd))) {
272 struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd);
273 if (sdrv->eh_reset)
274 sdrv->eh_reset(scmd);
275 }
276 }
277
scsi_eh_inc_host_failed(struct rcu_head * head)278 static void scsi_eh_inc_host_failed(struct rcu_head *head)
279 {
280 struct scsi_cmnd *scmd = container_of(head, typeof(*scmd), rcu);
281 struct Scsi_Host *shost = scmd->device->host;
282 unsigned int busy = scsi_host_busy(shost);
283 unsigned long flags;
284
285 spin_lock_irqsave(shost->host_lock, flags);
286 shost->host_failed++;
287 scsi_eh_wakeup(shost, busy);
288 spin_unlock_irqrestore(shost->host_lock, flags);
289 }
290
291 /**
292 * scsi_eh_scmd_add - add scsi cmd to error handling.
293 * @scmd: scmd to run eh on.
294 */
scsi_eh_scmd_add(struct scsi_cmnd * scmd)295 void scsi_eh_scmd_add(struct scsi_cmnd *scmd)
296 {
297 struct Scsi_Host *shost = scmd->device->host;
298 unsigned long flags;
299 int ret;
300
301 WARN_ON_ONCE(!shost->ehandler);
302
303 spin_lock_irqsave(shost->host_lock, flags);
304 if (scsi_host_set_state(shost, SHOST_RECOVERY)) {
305 ret = scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY);
306 WARN_ON_ONCE(ret);
307 }
308 if (shost->eh_deadline != -1 && !shost->last_reset)
309 shost->last_reset = jiffies;
310
311 scsi_eh_reset(scmd);
312 list_add_tail(&scmd->eh_entry, &shost->eh_cmd_q);
313 spin_unlock_irqrestore(shost->host_lock, flags);
314 /*
315 * Ensure that all tasks observe the host state change before the
316 * host_failed change.
317 */
318 call_rcu_hurry(&scmd->rcu, scsi_eh_inc_host_failed);
319 }
320
321 /**
322 * scsi_times_out - Timeout function for normal scsi commands.
323 * @req: request that is timing out.
324 *
325 * Notes:
326 * We do not need to lock this. There is the potential for a race
327 * only in that the normal completion handling might run, but if the
328 * normal completion function determines that the timer has already
329 * fired, then it mustn't do anything.
330 */
scsi_times_out(struct request * req)331 enum blk_eh_timer_return scsi_times_out(struct request *req)
332 {
333 struct scsi_cmnd *scmd = blk_mq_rq_to_pdu(req);
334 struct Scsi_Host *host = scmd->device->host;
335
336 trace_scsi_dispatch_cmd_timeout(scmd);
337 scsi_log_completion(scmd, TIMEOUT_ERROR);
338
339 if (host->eh_deadline != -1 && !host->last_reset)
340 host->last_reset = jiffies;
341
342 if (host->hostt->eh_timed_out) {
343 switch (host->hostt->eh_timed_out(scmd)) {
344 case SCSI_EH_DONE:
345 return BLK_EH_DONE;
346 case SCSI_EH_RESET_TIMER:
347 return BLK_EH_RESET_TIMER;
348 case SCSI_EH_NOT_HANDLED:
349 break;
350 }
351 }
352
353 /*
354 * If scsi_done() has already set SCMD_STATE_COMPLETE, do not modify
355 * *scmd.
356 */
357 if (test_and_set_bit(SCMD_STATE_COMPLETE, &scmd->state))
358 return BLK_EH_DONE;
359 if (scsi_abort_command(scmd) != SUCCESS) {
360 set_host_byte(scmd, DID_TIME_OUT);
361 scsi_eh_scmd_add(scmd);
362 }
363
364 return BLK_EH_DONE;
365 }
366
367 /**
368 * scsi_block_when_processing_errors - Prevent cmds from being queued.
369 * @sdev: Device on which we are performing recovery.
370 *
371 * Description:
372 * We block until the host is out of error recovery, and then check to
373 * see whether the host or the device is offline.
374 *
375 * Return value:
376 * 0 when dev was taken offline by error recovery. 1 OK to proceed.
377 */
scsi_block_when_processing_errors(struct scsi_device * sdev)378 int scsi_block_when_processing_errors(struct scsi_device *sdev)
379 {
380 int online;
381
382 wait_event(sdev->host->host_wait, !scsi_host_in_recovery(sdev->host));
383
384 online = scsi_device_online(sdev);
385
386 return online;
387 }
388 EXPORT_SYMBOL(scsi_block_when_processing_errors);
389
390 #ifdef CONFIG_SCSI_LOGGING
391 /**
392 * scsi_eh_prt_fail_stats - Log info on failures.
393 * @shost: scsi host being recovered.
394 * @work_q: Queue of scsi cmds to process.
395 */
scsi_eh_prt_fail_stats(struct Scsi_Host * shost,struct list_head * work_q)396 static inline void scsi_eh_prt_fail_stats(struct Scsi_Host *shost,
397 struct list_head *work_q)
398 {
399 struct scsi_cmnd *scmd;
400 struct scsi_device *sdev;
401 int total_failures = 0;
402 int cmd_failed = 0;
403 int cmd_cancel = 0;
404 int devices_failed = 0;
405
406 shost_for_each_device(sdev, shost) {
407 list_for_each_entry(scmd, work_q, eh_entry) {
408 if (scmd->device == sdev) {
409 ++total_failures;
410 if (scmd->eh_eflags & SCSI_EH_ABORT_SCHEDULED)
411 ++cmd_cancel;
412 else
413 ++cmd_failed;
414 }
415 }
416
417 if (cmd_cancel || cmd_failed) {
418 SCSI_LOG_ERROR_RECOVERY(3,
419 shost_printk(KERN_INFO, shost,
420 "%s: cmds failed: %d, cancel: %d\n",
421 __func__, cmd_failed,
422 cmd_cancel));
423 cmd_cancel = 0;
424 cmd_failed = 0;
425 ++devices_failed;
426 }
427 }
428
429 SCSI_LOG_ERROR_RECOVERY(2, shost_printk(KERN_INFO, shost,
430 "Total of %d commands on %d"
431 " devices require eh work\n",
432 total_failures, devices_failed));
433 }
434 #endif
435
436 /**
437 * scsi_report_lun_change - Set flag on all *other* devices on the same target
438 * to indicate that a UNIT ATTENTION is expected.
439 * @sdev: Device reporting the UNIT ATTENTION
440 */
scsi_report_lun_change(struct scsi_device * sdev)441 static void scsi_report_lun_change(struct scsi_device *sdev)
442 {
443 sdev->sdev_target->expecting_lun_change = 1;
444 }
445
446 /**
447 * scsi_report_sense - Examine scsi sense information and log messages for
448 * certain conditions, also issue uevents for some of them.
449 * @sdev: Device reporting the sense code
450 * @sshdr: sshdr to be examined
451 */
scsi_report_sense(struct scsi_device * sdev,struct scsi_sense_hdr * sshdr)452 static void scsi_report_sense(struct scsi_device *sdev,
453 struct scsi_sense_hdr *sshdr)
454 {
455 enum scsi_device_event evt_type = SDEV_EVT_MAXBITS; /* i.e. none */
456
457 if (sshdr->sense_key == UNIT_ATTENTION) {
458 if (sshdr->asc == 0x3f && sshdr->ascq == 0x03) {
459 evt_type = SDEV_EVT_INQUIRY_CHANGE_REPORTED;
460 sdev_printk(KERN_WARNING, sdev,
461 "Inquiry data has changed");
462 } else if (sshdr->asc == 0x3f && sshdr->ascq == 0x0e) {
463 evt_type = SDEV_EVT_LUN_CHANGE_REPORTED;
464 scsi_report_lun_change(sdev);
465 sdev_printk(KERN_WARNING, sdev,
466 "Warning! Received an indication that the "
467 "LUN assignments on this target have "
468 "changed. The Linux SCSI layer does not "
469 "automatically remap LUN assignments.\n");
470 } else if (sshdr->asc == 0x3f)
471 sdev_printk(KERN_WARNING, sdev,
472 "Warning! Received an indication that the "
473 "operating parameters on this target have "
474 "changed. The Linux SCSI layer does not "
475 "automatically adjust these parameters.\n");
476
477 if (sshdr->asc == 0x38 && sshdr->ascq == 0x07) {
478 evt_type = SDEV_EVT_SOFT_THRESHOLD_REACHED_REPORTED;
479 sdev_printk(KERN_WARNING, sdev,
480 "Warning! Received an indication that the "
481 "LUN reached a thin provisioning soft "
482 "threshold.\n");
483 }
484
485 if (sshdr->asc == 0x29) {
486 evt_type = SDEV_EVT_POWER_ON_RESET_OCCURRED;
487 /*
488 * Do not print message if it is an expected side-effect
489 * of runtime PM.
490 */
491 if (!sdev->silence_suspend)
492 sdev_printk(KERN_WARNING, sdev,
493 "Power-on or device reset occurred\n");
494 }
495
496 if (sshdr->asc == 0x2a && sshdr->ascq == 0x01) {
497 evt_type = SDEV_EVT_MODE_PARAMETER_CHANGE_REPORTED;
498 sdev_printk(KERN_WARNING, sdev,
499 "Mode parameters changed");
500 } else if (sshdr->asc == 0x2a && sshdr->ascq == 0x06) {
501 evt_type = SDEV_EVT_ALUA_STATE_CHANGE_REPORTED;
502 sdev_printk(KERN_WARNING, sdev,
503 "Asymmetric access state changed");
504 } else if (sshdr->asc == 0x2a && sshdr->ascq == 0x09) {
505 evt_type = SDEV_EVT_CAPACITY_CHANGE_REPORTED;
506 sdev_printk(KERN_WARNING, sdev,
507 "Capacity data has changed");
508 } else if (sshdr->asc == 0x2a)
509 sdev_printk(KERN_WARNING, sdev,
510 "Parameters changed");
511 }
512
513 if (evt_type != SDEV_EVT_MAXBITS) {
514 set_bit(evt_type, sdev->pending_events);
515 schedule_work(&sdev->event_work);
516 }
517 }
518
519 /**
520 * scsi_check_sense - Examine scsi cmd sense
521 * @scmd: Cmd to have sense checked.
522 *
523 * Return value:
524 * SUCCESS or FAILED or NEEDS_RETRY or ADD_TO_MLQUEUE
525 *
526 * Notes:
527 * When a deferred error is detected the current command has
528 * not been executed and needs retrying.
529 */
scsi_check_sense(struct scsi_cmnd * scmd)530 enum scsi_disposition scsi_check_sense(struct scsi_cmnd *scmd)
531 {
532 struct request *req = scsi_cmd_to_rq(scmd);
533 struct scsi_device *sdev = scmd->device;
534 struct scsi_sense_hdr sshdr;
535
536 if (! scsi_command_normalize_sense(scmd, &sshdr))
537 return FAILED; /* no valid sense data */
538
539 scsi_report_sense(sdev, &sshdr);
540
541 if (scsi_sense_is_deferred(&sshdr))
542 return NEEDS_RETRY;
543
544 if (sdev->handler && sdev->handler->check_sense) {
545 enum scsi_disposition rc;
546
547 rc = sdev->handler->check_sense(sdev, &sshdr);
548 if (rc != SCSI_RETURN_NOT_HANDLED)
549 return rc;
550 /* handler does not care. Drop down to default handling */
551 }
552
553 if (scmd->cmnd[0] == TEST_UNIT_READY && scmd->scsi_done != scsi_eh_done)
554 /*
555 * nasty: for mid-layer issued TURs, we need to return the
556 * actual sense data without any recovery attempt. For eh
557 * issued ones, we need to try to recover and interpret
558 */
559 return SUCCESS;
560
561 /*
562 * Previous logic looked for FILEMARK, EOM or ILI which are
563 * mainly associated with tapes and returned SUCCESS.
564 */
565 if (sshdr.response_code == 0x70) {
566 /* fixed format */
567 if (scmd->sense_buffer[2] & 0xe0)
568 return SUCCESS;
569 } else {
570 /*
571 * descriptor format: look for "stream commands sense data
572 * descriptor" (see SSC-3). Assume single sense data
573 * descriptor. Ignore ILI from SBC-2 READ LONG and WRITE LONG.
574 */
575 if ((sshdr.additional_length > 3) &&
576 (scmd->sense_buffer[8] == 0x4) &&
577 (scmd->sense_buffer[11] & 0xe0))
578 return SUCCESS;
579 }
580
581 switch (sshdr.sense_key) {
582 case NO_SENSE:
583 return SUCCESS;
584 case RECOVERED_ERROR:
585 return /* soft_error */ SUCCESS;
586
587 case ABORTED_COMMAND:
588 if (sshdr.asc == 0x10) /* DIF */
589 return SUCCESS;
590
591 if (sshdr.asc == 0x44 && sdev->sdev_bflags & BLIST_RETRY_ITF)
592 return ADD_TO_MLQUEUE;
593 if (sshdr.asc == 0xc1 && sshdr.ascq == 0x01 &&
594 sdev->sdev_bflags & BLIST_RETRY_ASC_C1)
595 return ADD_TO_MLQUEUE;
596
597 return NEEDS_RETRY;
598 case NOT_READY:
599 case UNIT_ATTENTION:
600 /*
601 * if we are expecting a cc/ua because of a bus reset that we
602 * performed, treat this just as a retry. otherwise this is
603 * information that we should pass up to the upper-level driver
604 * so that we can deal with it there.
605 */
606 if (scmd->device->expecting_cc_ua) {
607 /*
608 * Because some device does not queue unit
609 * attentions correctly, we carefully check
610 * additional sense code and qualifier so as
611 * not to squash media change unit attention.
612 */
613 if (sshdr.asc != 0x28 || sshdr.ascq != 0x00) {
614 scmd->device->expecting_cc_ua = 0;
615 return NEEDS_RETRY;
616 }
617 }
618 /*
619 * we might also expect a cc/ua if another LUN on the target
620 * reported a UA with an ASC/ASCQ of 3F 0E -
621 * REPORTED LUNS DATA HAS CHANGED.
622 */
623 if (scmd->device->sdev_target->expecting_lun_change &&
624 sshdr.asc == 0x3f && sshdr.ascq == 0x0e)
625 return NEEDS_RETRY;
626 /*
627 * if the device is in the process of becoming ready, we
628 * should retry.
629 */
630 if ((sshdr.asc == 0x04) && (sshdr.ascq == 0x01))
631 return NEEDS_RETRY;
632 /*
633 * if the device is not started, we need to wake
634 * the error handler to start the motor
635 */
636 if (scmd->device->allow_restart &&
637 (sshdr.asc == 0x04) && (sshdr.ascq == 0x02))
638 return FAILED;
639 /*
640 * Pass the UA upwards for a determination in the completion
641 * functions.
642 */
643 return SUCCESS;
644
645 /* these are not supported */
646 case DATA_PROTECT:
647 if (sshdr.asc == 0x27 && sshdr.ascq == 0x07) {
648 /* Thin provisioning hard threshold reached */
649 set_host_byte(scmd, DID_ALLOC_FAILURE);
650 return SUCCESS;
651 }
652 fallthrough;
653 case COPY_ABORTED:
654 case VOLUME_OVERFLOW:
655 case MISCOMPARE:
656 case BLANK_CHECK:
657 set_host_byte(scmd, DID_TARGET_FAILURE);
658 return SUCCESS;
659
660 case MEDIUM_ERROR:
661 if (sshdr.asc == 0x11 || /* UNRECOVERED READ ERR */
662 sshdr.asc == 0x13 || /* AMNF DATA FIELD */
663 sshdr.asc == 0x14) { /* RECORD NOT FOUND */
664 set_host_byte(scmd, DID_MEDIUM_ERROR);
665 return SUCCESS;
666 }
667 return NEEDS_RETRY;
668
669 case HARDWARE_ERROR:
670 if (scmd->device->retry_hwerror)
671 return ADD_TO_MLQUEUE;
672 else
673 set_host_byte(scmd, DID_TARGET_FAILURE);
674 fallthrough;
675
676 case ILLEGAL_REQUEST:
677 /*
678 * Unaligned write command. This may indicate that zoned writes
679 * have been received by the device in the wrong order. If zone
680 * write locking is disabled, retry after all pending commands
681 * have completed.
682 */
683 if (sshdr.asc == 0x21 && sshdr.ascq == 0x04 &&
684 blk_queue_no_zone_write_lock(req->q) &&
685 blk_rq_is_seq_zoned_write(req) &&
686 scmd->retries < scmd->allowed) {
687 sdev_printk(KERN_INFO, scmd->device,
688 "Retrying unaligned write at LBA %#llx\n",
689 scsi_get_lba(scmd));
690 return NEEDS_DELAYED_RETRY;
691 }
692
693 if (sshdr.asc == 0x20 || /* Invalid command operation code */
694 sshdr.asc == 0x21 || /* Logical block address out of range */
695 sshdr.asc == 0x22 || /* Invalid function */
696 sshdr.asc == 0x24 || /* Invalid field in cdb */
697 sshdr.asc == 0x26 || /* Parameter value invalid */
698 sshdr.asc == 0x27) { /* Write protected */
699 set_host_byte(scmd, DID_TARGET_FAILURE);
700 }
701 return SUCCESS;
702
703 default:
704 return SUCCESS;
705 }
706 }
707 EXPORT_SYMBOL_GPL(scsi_check_sense);
708
scsi_handle_queue_ramp_up(struct scsi_device * sdev)709 static void scsi_handle_queue_ramp_up(struct scsi_device *sdev)
710 {
711 struct scsi_host_template *sht = sdev->host->hostt;
712 struct scsi_device *tmp_sdev;
713
714 if (!sht->track_queue_depth ||
715 sdev->queue_depth >= sdev->max_queue_depth)
716 return;
717
718 if (time_before(jiffies,
719 sdev->last_queue_ramp_up + sdev->queue_ramp_up_period))
720 return;
721
722 if (time_before(jiffies,
723 sdev->last_queue_full_time + sdev->queue_ramp_up_period))
724 return;
725
726 /*
727 * Walk all devices of a target and do
728 * ramp up on them.
729 */
730 shost_for_each_device(tmp_sdev, sdev->host) {
731 if (tmp_sdev->channel != sdev->channel ||
732 tmp_sdev->id != sdev->id ||
733 tmp_sdev->queue_depth == sdev->max_queue_depth)
734 continue;
735
736 scsi_change_queue_depth(tmp_sdev, tmp_sdev->queue_depth + 1);
737 sdev->last_queue_ramp_up = jiffies;
738 }
739 }
740
scsi_handle_queue_full(struct scsi_device * sdev)741 static void scsi_handle_queue_full(struct scsi_device *sdev)
742 {
743 struct scsi_host_template *sht = sdev->host->hostt;
744 struct scsi_device *tmp_sdev;
745
746 if (!sht->track_queue_depth)
747 return;
748
749 shost_for_each_device(tmp_sdev, sdev->host) {
750 if (tmp_sdev->channel != sdev->channel ||
751 tmp_sdev->id != sdev->id)
752 continue;
753 /*
754 * We do not know the number of commands that were at
755 * the device when we got the queue full so we start
756 * from the highest possible value and work our way down.
757 */
758 scsi_track_queue_full(tmp_sdev, tmp_sdev->queue_depth - 1);
759 }
760 }
761
762 /**
763 * scsi_eh_completed_normally - Disposition a eh cmd on return from LLD.
764 * @scmd: SCSI cmd to examine.
765 *
766 * Notes:
767 * This is *only* called when we are examining the status of commands
768 * queued during error recovery. the main difference here is that we
769 * don't allow for the possibility of retries here, and we are a lot
770 * more restrictive about what we consider acceptable.
771 */
scsi_eh_completed_normally(struct scsi_cmnd * scmd)772 static enum scsi_disposition scsi_eh_completed_normally(struct scsi_cmnd *scmd)
773 {
774 /*
775 * first check the host byte, to see if there is anything in there
776 * that would indicate what we need to do.
777 */
778 if (host_byte(scmd->result) == DID_RESET) {
779 /*
780 * rats. we are already in the error handler, so we now
781 * get to try and figure out what to do next. if the sense
782 * is valid, we have a pretty good idea of what to do.
783 * if not, we mark it as FAILED.
784 */
785 return scsi_check_sense(scmd);
786 }
787 if (host_byte(scmd->result) != DID_OK)
788 return FAILED;
789
790 /*
791 * now, check the status byte to see if this indicates
792 * anything special.
793 */
794 switch (get_status_byte(scmd)) {
795 case SAM_STAT_GOOD:
796 scsi_handle_queue_ramp_up(scmd->device);
797 fallthrough;
798 case SAM_STAT_COMMAND_TERMINATED:
799 return SUCCESS;
800 case SAM_STAT_CHECK_CONDITION:
801 return scsi_check_sense(scmd);
802 case SAM_STAT_CONDITION_MET:
803 case SAM_STAT_INTERMEDIATE:
804 case SAM_STAT_INTERMEDIATE_CONDITION_MET:
805 /*
806 * who knows? FIXME(eric)
807 */
808 return SUCCESS;
809 case SAM_STAT_RESERVATION_CONFLICT:
810 if (scmd->cmnd[0] == TEST_UNIT_READY)
811 /* it is a success, we probed the device and
812 * found it */
813 return SUCCESS;
814 /* otherwise, we failed to send the command */
815 return FAILED;
816 case SAM_STAT_TASK_SET_FULL:
817 scsi_handle_queue_full(scmd->device);
818 fallthrough;
819 case SAM_STAT_BUSY:
820 return NEEDS_RETRY;
821 default:
822 return FAILED;
823 }
824 return FAILED;
825 }
826
827 /**
828 * scsi_eh_done - Completion function for error handling.
829 * @scmd: Cmd that is done.
830 */
scsi_eh_done(struct scsi_cmnd * scmd)831 static void scsi_eh_done(struct scsi_cmnd *scmd)
832 {
833 struct completion *eh_action;
834
835 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
836 "%s result: %x\n", __func__, scmd->result));
837
838 eh_action = scmd->device->host->eh_action;
839 if (eh_action)
840 complete(eh_action);
841 }
842
843 /**
844 * scsi_try_host_reset - ask host adapter to reset itself
845 * @scmd: SCSI cmd to send host reset.
846 */
scsi_try_host_reset(struct scsi_cmnd * scmd)847 static enum scsi_disposition scsi_try_host_reset(struct scsi_cmnd *scmd)
848 {
849 unsigned long flags;
850 enum scsi_disposition rtn;
851 struct Scsi_Host *host = scmd->device->host;
852 struct scsi_host_template *hostt = host->hostt;
853
854 SCSI_LOG_ERROR_RECOVERY(3,
855 shost_printk(KERN_INFO, host, "Snd Host RST\n"));
856
857 if (!hostt->eh_host_reset_handler)
858 return FAILED;
859
860 rtn = hostt->eh_host_reset_handler(scmd);
861
862 if (rtn == SUCCESS) {
863 if (!hostt->skip_settle_delay)
864 ssleep(HOST_RESET_SETTLE_TIME);
865 spin_lock_irqsave(host->host_lock, flags);
866 scsi_report_bus_reset(host, scmd_channel(scmd));
867 spin_unlock_irqrestore(host->host_lock, flags);
868 }
869
870 return rtn;
871 }
872
873 /**
874 * scsi_try_bus_reset - ask host to perform a bus reset
875 * @scmd: SCSI cmd to send bus reset.
876 */
scsi_try_bus_reset(struct scsi_cmnd * scmd)877 static enum scsi_disposition scsi_try_bus_reset(struct scsi_cmnd *scmd)
878 {
879 unsigned long flags;
880 enum scsi_disposition rtn;
881 struct Scsi_Host *host = scmd->device->host;
882 struct scsi_host_template *hostt = host->hostt;
883
884 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
885 "%s: Snd Bus RST\n", __func__));
886
887 if (!hostt->eh_bus_reset_handler)
888 return FAILED;
889
890 rtn = hostt->eh_bus_reset_handler(scmd);
891
892 if (rtn == SUCCESS) {
893 if (!hostt->skip_settle_delay)
894 ssleep(BUS_RESET_SETTLE_TIME);
895 spin_lock_irqsave(host->host_lock, flags);
896 scsi_report_bus_reset(host, scmd_channel(scmd));
897 spin_unlock_irqrestore(host->host_lock, flags);
898 }
899
900 return rtn;
901 }
902
__scsi_report_device_reset(struct scsi_device * sdev,void * data)903 static void __scsi_report_device_reset(struct scsi_device *sdev, void *data)
904 {
905 sdev->was_reset = 1;
906 sdev->expecting_cc_ua = 1;
907 }
908
909 /**
910 * scsi_try_target_reset - Ask host to perform a target reset
911 * @scmd: SCSI cmd used to send a target reset
912 *
913 * Notes:
914 * There is no timeout for this operation. if this operation is
915 * unreliable for a given host, then the host itself needs to put a
916 * timer on it, and set the host back to a consistent state prior to
917 * returning.
918 */
scsi_try_target_reset(struct scsi_cmnd * scmd)919 static enum scsi_disposition scsi_try_target_reset(struct scsi_cmnd *scmd)
920 {
921 unsigned long flags;
922 enum scsi_disposition rtn;
923 struct Scsi_Host *host = scmd->device->host;
924 struct scsi_host_template *hostt = host->hostt;
925
926 if (!hostt->eh_target_reset_handler)
927 return FAILED;
928
929 rtn = hostt->eh_target_reset_handler(scmd);
930 if (rtn == SUCCESS) {
931 spin_lock_irqsave(host->host_lock, flags);
932 __starget_for_each_device(scsi_target(scmd->device), NULL,
933 __scsi_report_device_reset);
934 spin_unlock_irqrestore(host->host_lock, flags);
935 }
936
937 return rtn;
938 }
939
940 /**
941 * scsi_try_bus_device_reset - Ask host to perform a BDR on a dev
942 * @scmd: SCSI cmd used to send BDR
943 *
944 * Notes:
945 * There is no timeout for this operation. if this operation is
946 * unreliable for a given host, then the host itself needs to put a
947 * timer on it, and set the host back to a consistent state prior to
948 * returning.
949 */
scsi_try_bus_device_reset(struct scsi_cmnd * scmd)950 static enum scsi_disposition scsi_try_bus_device_reset(struct scsi_cmnd *scmd)
951 {
952 enum scsi_disposition rtn;
953 struct scsi_host_template *hostt = scmd->device->host->hostt;
954
955 if (!hostt->eh_device_reset_handler)
956 return FAILED;
957
958 rtn = hostt->eh_device_reset_handler(scmd);
959 if (rtn == SUCCESS)
960 __scsi_report_device_reset(scmd->device, NULL);
961 return rtn;
962 }
963
964 /**
965 * scsi_try_to_abort_cmd - Ask host to abort a SCSI command
966 * @hostt: SCSI driver host template
967 * @scmd: SCSI cmd used to send a target reset
968 *
969 * Return value:
970 * SUCCESS, FAILED, or FAST_IO_FAIL
971 *
972 * Notes:
973 * SUCCESS does not necessarily indicate that the command
974 * has been aborted; it only indicates that the LLDDs
975 * has cleared all references to that command.
976 * LLDDs should return FAILED only if an abort was required
977 * but could not be executed. LLDDs should return FAST_IO_FAIL
978 * if the device is temporarily unavailable (eg due to a
979 * link down on FibreChannel)
980 */
981 static enum scsi_disposition
scsi_try_to_abort_cmd(struct scsi_host_template * hostt,struct scsi_cmnd * scmd)982 scsi_try_to_abort_cmd(struct scsi_host_template *hostt, struct scsi_cmnd *scmd)
983 {
984 if (!hostt->eh_abort_handler)
985 return FAILED;
986
987 return hostt->eh_abort_handler(scmd);
988 }
989
scsi_abort_eh_cmnd(struct scsi_cmnd * scmd)990 static void scsi_abort_eh_cmnd(struct scsi_cmnd *scmd)
991 {
992 if (scsi_try_to_abort_cmd(scmd->device->host->hostt, scmd) != SUCCESS)
993 if (scsi_try_bus_device_reset(scmd) != SUCCESS)
994 if (scsi_try_target_reset(scmd) != SUCCESS)
995 if (scsi_try_bus_reset(scmd) != SUCCESS)
996 scsi_try_host_reset(scmd);
997 }
998
999 /**
1000 * scsi_eh_prep_cmnd - Save a scsi command info as part of error recovery
1001 * @scmd: SCSI command structure to hijack
1002 * @ses: structure to save restore information
1003 * @cmnd: CDB to send. Can be NULL if no new cmnd is needed
1004 * @cmnd_size: size in bytes of @cmnd (must be <= BLK_MAX_CDB)
1005 * @sense_bytes: size of sense data to copy. or 0 (if != 0 @cmnd is ignored)
1006 *
1007 * This function is used to save a scsi command information before re-execution
1008 * as part of the error recovery process. If @sense_bytes is 0 the command
1009 * sent must be one that does not transfer any data. If @sense_bytes != 0
1010 * @cmnd is ignored and this functions sets up a REQUEST_SENSE command
1011 * and cmnd buffers to read @sense_bytes into @scmd->sense_buffer.
1012 */
scsi_eh_prep_cmnd(struct scsi_cmnd * scmd,struct scsi_eh_save * ses,unsigned char * cmnd,int cmnd_size,unsigned sense_bytes)1013 void scsi_eh_prep_cmnd(struct scsi_cmnd *scmd, struct scsi_eh_save *ses,
1014 unsigned char *cmnd, int cmnd_size, unsigned sense_bytes)
1015 {
1016 struct scsi_device *sdev = scmd->device;
1017
1018 /*
1019 * We need saved copies of a number of fields - this is because
1020 * error handling may need to overwrite these with different values
1021 * to run different commands, and once error handling is complete,
1022 * we will need to restore these values prior to running the actual
1023 * command.
1024 */
1025 ses->cmd_len = scmd->cmd_len;
1026 ses->cmnd = scmd->cmnd;
1027 ses->data_direction = scmd->sc_data_direction;
1028 ses->sdb = scmd->sdb;
1029 ses->result = scmd->result;
1030 ses->resid_len = scmd->req.resid_len;
1031 ses->underflow = scmd->underflow;
1032 ses->prot_op = scmd->prot_op;
1033 ses->eh_eflags = scmd->eh_eflags;
1034
1035 scmd->prot_op = SCSI_PROT_NORMAL;
1036 scmd->eh_eflags = 0;
1037 scmd->cmnd = ses->eh_cmnd;
1038 memset(scmd->cmnd, 0, BLK_MAX_CDB);
1039 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
1040 scmd->result = 0;
1041 scmd->req.resid_len = 0;
1042
1043 if (sense_bytes) {
1044 scmd->sdb.length = min_t(unsigned, SCSI_SENSE_BUFFERSIZE,
1045 sense_bytes);
1046 sg_init_one(&ses->sense_sgl, scmd->sense_buffer,
1047 scmd->sdb.length);
1048 scmd->sdb.table.sgl = &ses->sense_sgl;
1049 scmd->sc_data_direction = DMA_FROM_DEVICE;
1050 scmd->sdb.table.nents = scmd->sdb.table.orig_nents = 1;
1051 scmd->cmnd[0] = REQUEST_SENSE;
1052 scmd->cmnd[4] = scmd->sdb.length;
1053 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
1054 } else {
1055 scmd->sc_data_direction = DMA_NONE;
1056 if (cmnd) {
1057 BUG_ON(cmnd_size > BLK_MAX_CDB);
1058 memcpy(scmd->cmnd, cmnd, cmnd_size);
1059 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
1060 }
1061 }
1062
1063 scmd->underflow = 0;
1064
1065 if (sdev->scsi_level <= SCSI_2 && sdev->scsi_level != SCSI_UNKNOWN)
1066 scmd->cmnd[1] = (scmd->cmnd[1] & 0x1f) |
1067 (sdev->lun << 5 & 0xe0);
1068
1069 /*
1070 * Zero the sense buffer. The scsi spec mandates that any
1071 * untransferred sense data should be interpreted as being zero.
1072 */
1073 memset(scmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1074 }
1075 EXPORT_SYMBOL(scsi_eh_prep_cmnd);
1076
1077 /**
1078 * scsi_eh_restore_cmnd - Restore a scsi command info as part of error recovery
1079 * @scmd: SCSI command structure to restore
1080 * @ses: saved information from a coresponding call to scsi_eh_prep_cmnd
1081 *
1082 * Undo any damage done by above scsi_eh_prep_cmnd().
1083 */
scsi_eh_restore_cmnd(struct scsi_cmnd * scmd,struct scsi_eh_save * ses)1084 void scsi_eh_restore_cmnd(struct scsi_cmnd* scmd, struct scsi_eh_save *ses)
1085 {
1086 /*
1087 * Restore original data
1088 */
1089 scmd->cmd_len = ses->cmd_len;
1090 scmd->cmnd = ses->cmnd;
1091 scmd->sc_data_direction = ses->data_direction;
1092 scmd->sdb = ses->sdb;
1093 scmd->result = ses->result;
1094 scmd->req.resid_len = ses->resid_len;
1095 scmd->underflow = ses->underflow;
1096 scmd->prot_op = ses->prot_op;
1097 scmd->eh_eflags = ses->eh_eflags;
1098 }
1099 EXPORT_SYMBOL(scsi_eh_restore_cmnd);
1100
1101 /**
1102 * scsi_send_eh_cmnd - submit a scsi command as part of error recovery
1103 * @scmd: SCSI command structure to hijack
1104 * @cmnd: CDB to send
1105 * @cmnd_size: size in bytes of @cmnd
1106 * @timeout: timeout for this request
1107 * @sense_bytes: size of sense data to copy or 0
1108 *
1109 * This function is used to send a scsi command down to a target device
1110 * as part of the error recovery process. See also scsi_eh_prep_cmnd() above.
1111 *
1112 * Return value:
1113 * SUCCESS or FAILED or NEEDS_RETRY
1114 */
scsi_send_eh_cmnd(struct scsi_cmnd * scmd,unsigned char * cmnd,int cmnd_size,int timeout,unsigned sense_bytes)1115 static enum scsi_disposition scsi_send_eh_cmnd(struct scsi_cmnd *scmd,
1116 unsigned char *cmnd, int cmnd_size, int timeout, unsigned sense_bytes)
1117 {
1118 struct scsi_device *sdev = scmd->device;
1119 struct Scsi_Host *shost = sdev->host;
1120 DECLARE_COMPLETION_ONSTACK(done);
1121 unsigned long timeleft = timeout, delay;
1122 struct scsi_eh_save ses;
1123 const unsigned long stall_for = msecs_to_jiffies(100);
1124 int rtn;
1125
1126 retry:
1127 scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
1128 shost->eh_action = &done;
1129
1130 scsi_log_send(scmd);
1131 scmd->scsi_done = scsi_eh_done;
1132 scmd->flags |= SCMD_LAST;
1133
1134 /*
1135 * Lock sdev->state_mutex to avoid that scsi_device_quiesce() can
1136 * change the SCSI device state after we have examined it and before
1137 * .queuecommand() is called.
1138 */
1139 mutex_lock(&sdev->state_mutex);
1140 while (sdev->sdev_state == SDEV_BLOCK && timeleft > 0) {
1141 mutex_unlock(&sdev->state_mutex);
1142 SCSI_LOG_ERROR_RECOVERY(5, sdev_printk(KERN_DEBUG, sdev,
1143 "%s: state %d <> %d\n", __func__, sdev->sdev_state,
1144 SDEV_BLOCK));
1145 delay = min(timeleft, stall_for);
1146 timeleft -= delay;
1147 msleep(jiffies_to_msecs(delay));
1148 mutex_lock(&sdev->state_mutex);
1149 }
1150 if (sdev->sdev_state != SDEV_BLOCK)
1151 rtn = shost->hostt->queuecommand(shost, scmd);
1152 else
1153 rtn = FAILED;
1154 mutex_unlock(&sdev->state_mutex);
1155
1156 if (rtn) {
1157 if (timeleft > stall_for) {
1158 scsi_eh_restore_cmnd(scmd, &ses);
1159 timeleft -= stall_for;
1160 msleep(jiffies_to_msecs(stall_for));
1161 goto retry;
1162 }
1163 /* signal not to enter either branch of the if () below */
1164 timeleft = 0;
1165 rtn = FAILED;
1166 } else {
1167 timeleft = wait_for_completion_timeout(&done, timeout);
1168 rtn = SUCCESS;
1169 }
1170
1171 shost->eh_action = NULL;
1172
1173 scsi_log_completion(scmd, rtn);
1174
1175 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
1176 "%s timeleft: %ld\n",
1177 __func__, timeleft));
1178
1179 /*
1180 * If there is time left scsi_eh_done got called, and we will examine
1181 * the actual status codes to see whether the command actually did
1182 * complete normally, else if we have a zero return and no time left,
1183 * the command must still be pending, so abort it and return FAILED.
1184 * If we never actually managed to issue the command, because
1185 * ->queuecommand() kept returning non zero, use the rtn = FAILED
1186 * value above (so don't execute either branch of the if)
1187 */
1188 if (timeleft) {
1189 rtn = scsi_eh_completed_normally(scmd);
1190 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
1191 "%s: scsi_eh_completed_normally %x\n", __func__, rtn));
1192
1193 switch (rtn) {
1194 case SUCCESS:
1195 case NEEDS_RETRY:
1196 case FAILED:
1197 break;
1198 case ADD_TO_MLQUEUE:
1199 rtn = NEEDS_RETRY;
1200 break;
1201 default:
1202 rtn = FAILED;
1203 break;
1204 }
1205 } else if (rtn != FAILED) {
1206 scsi_abort_eh_cmnd(scmd);
1207 rtn = FAILED;
1208 }
1209
1210 scsi_eh_restore_cmnd(scmd, &ses);
1211
1212 return rtn;
1213 }
1214
1215 /**
1216 * scsi_request_sense - Request sense data from a particular target.
1217 * @scmd: SCSI cmd for request sense.
1218 *
1219 * Notes:
1220 * Some hosts automatically obtain this information, others require
1221 * that we obtain it on our own. This function will *not* return until
1222 * the command either times out, or it completes.
1223 */
scsi_request_sense(struct scsi_cmnd * scmd)1224 static enum scsi_disposition scsi_request_sense(struct scsi_cmnd *scmd)
1225 {
1226 return scsi_send_eh_cmnd(scmd, NULL, 0, scmd->device->eh_timeout, ~0);
1227 }
1228
1229 static enum scsi_disposition
scsi_eh_action(struct scsi_cmnd * scmd,enum scsi_disposition rtn)1230 scsi_eh_action(struct scsi_cmnd *scmd, enum scsi_disposition rtn)
1231 {
1232 if (!blk_rq_is_passthrough(scsi_cmd_to_rq(scmd))) {
1233 struct scsi_driver *sdrv = scsi_cmd_to_driver(scmd);
1234 if (sdrv->eh_action)
1235 rtn = sdrv->eh_action(scmd, rtn);
1236 }
1237 return rtn;
1238 }
1239
1240 /**
1241 * scsi_eh_finish_cmd - Handle a cmd that eh is finished with.
1242 * @scmd: Original SCSI cmd that eh has finished.
1243 * @done_q: Queue for processed commands.
1244 *
1245 * Notes:
1246 * We don't want to use the normal command completion while we are are
1247 * still handling errors - it may cause other commands to be queued,
1248 * and that would disturb what we are doing. Thus we really want to
1249 * keep a list of pending commands for final completion, and once we
1250 * are ready to leave error handling we handle completion for real.
1251 */
scsi_eh_finish_cmd(struct scsi_cmnd * scmd,struct list_head * done_q)1252 void scsi_eh_finish_cmd(struct scsi_cmnd *scmd, struct list_head *done_q)
1253 {
1254 list_move_tail(&scmd->eh_entry, done_q);
1255 }
1256 EXPORT_SYMBOL(scsi_eh_finish_cmd);
1257
1258 /**
1259 * scsi_eh_get_sense - Get device sense data.
1260 * @work_q: Queue of commands to process.
1261 * @done_q: Queue of processed commands.
1262 *
1263 * Description:
1264 * See if we need to request sense information. if so, then get it
1265 * now, so we have a better idea of what to do.
1266 *
1267 * Notes:
1268 * This has the unfortunate side effect that if a shost adapter does
1269 * not automatically request sense information, we end up shutting
1270 * it down before we request it.
1271 *
1272 * All drivers should request sense information internally these days,
1273 * so for now all I have to say is tough noogies if you end up in here.
1274 *
1275 * XXX: Long term this code should go away, but that needs an audit of
1276 * all LLDDs first.
1277 */
scsi_eh_get_sense(struct list_head * work_q,struct list_head * done_q)1278 int scsi_eh_get_sense(struct list_head *work_q,
1279 struct list_head *done_q)
1280 {
1281 struct scsi_cmnd *scmd, *next;
1282 struct Scsi_Host *shost;
1283 enum scsi_disposition rtn;
1284
1285 /*
1286 * If SCSI_EH_ABORT_SCHEDULED has been set, it is timeout IO,
1287 * should not get sense.
1288 */
1289 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1290 if ((scmd->eh_eflags & SCSI_EH_ABORT_SCHEDULED) ||
1291 SCSI_SENSE_VALID(scmd))
1292 continue;
1293
1294 shost = scmd->device->host;
1295 if (scsi_host_eh_past_deadline(shost)) {
1296 SCSI_LOG_ERROR_RECOVERY(3,
1297 scmd_printk(KERN_INFO, scmd,
1298 "%s: skip request sense, past eh deadline\n",
1299 current->comm));
1300 break;
1301 }
1302 if (!scsi_status_is_check_condition(scmd->result))
1303 /*
1304 * don't request sense if there's no check condition
1305 * status because the error we're processing isn't one
1306 * that has a sense code (and some devices get
1307 * confused by sense requests out of the blue)
1308 */
1309 continue;
1310
1311 SCSI_LOG_ERROR_RECOVERY(2, scmd_printk(KERN_INFO, scmd,
1312 "%s: requesting sense\n",
1313 current->comm));
1314 rtn = scsi_request_sense(scmd);
1315 if (rtn != SUCCESS)
1316 continue;
1317
1318 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
1319 "sense requested, result %x\n", scmd->result));
1320 SCSI_LOG_ERROR_RECOVERY(3, scsi_print_sense(scmd));
1321
1322 rtn = scsi_decide_disposition(scmd);
1323
1324 /*
1325 * if the result was normal, then just pass it along to the
1326 * upper level.
1327 */
1328 if (rtn == SUCCESS)
1329 /*
1330 * We don't want this command reissued, just finished
1331 * with the sense data, so set retries to the max
1332 * allowed to ensure it won't get reissued. If the user
1333 * has requested infinite retries, we also want to
1334 * finish this command, so force completion by setting
1335 * retries and allowed to the same value.
1336 */
1337 if (scmd->allowed == SCSI_CMD_RETRIES_NO_LIMIT)
1338 scmd->retries = scmd->allowed = 1;
1339 else
1340 scmd->retries = scmd->allowed;
1341 else if (rtn != NEEDS_RETRY)
1342 continue;
1343
1344 scsi_eh_finish_cmd(scmd, done_q);
1345 }
1346
1347 return list_empty(work_q);
1348 }
1349 EXPORT_SYMBOL_GPL(scsi_eh_get_sense);
1350
1351 /**
1352 * scsi_eh_tur - Send TUR to device.
1353 * @scmd: &scsi_cmnd to send TUR
1354 *
1355 * Return value:
1356 * 0 - Device is ready. 1 - Device NOT ready.
1357 */
scsi_eh_tur(struct scsi_cmnd * scmd)1358 static int scsi_eh_tur(struct scsi_cmnd *scmd)
1359 {
1360 static unsigned char tur_command[6] = {TEST_UNIT_READY, 0, 0, 0, 0, 0};
1361 int retry_cnt = 1;
1362 enum scsi_disposition rtn;
1363
1364 retry_tur:
1365 rtn = scsi_send_eh_cmnd(scmd, tur_command, 6,
1366 scmd->device->eh_timeout, 0);
1367
1368 SCSI_LOG_ERROR_RECOVERY(3, scmd_printk(KERN_INFO, scmd,
1369 "%s return: %x\n", __func__, rtn));
1370
1371 switch (rtn) {
1372 case NEEDS_RETRY:
1373 if (retry_cnt--)
1374 goto retry_tur;
1375 fallthrough;
1376 case SUCCESS:
1377 return 0;
1378 default:
1379 return 1;
1380 }
1381 }
1382
1383 /**
1384 * scsi_eh_test_devices - check if devices are responding from error recovery.
1385 * @cmd_list: scsi commands in error recovery.
1386 * @work_q: queue for commands which still need more error recovery
1387 * @done_q: queue for commands which are finished
1388 * @try_stu: boolean on if a STU command should be tried in addition to TUR.
1389 *
1390 * Decription:
1391 * Tests if devices are in a working state. Commands to devices now in
1392 * a working state are sent to the done_q while commands to devices which
1393 * are still failing to respond are returned to the work_q for more
1394 * processing.
1395 **/
scsi_eh_test_devices(struct list_head * cmd_list,struct list_head * work_q,struct list_head * done_q,int try_stu)1396 static int scsi_eh_test_devices(struct list_head *cmd_list,
1397 struct list_head *work_q,
1398 struct list_head *done_q, int try_stu)
1399 {
1400 struct scsi_cmnd *scmd, *next;
1401 struct scsi_device *sdev;
1402 int finish_cmds;
1403
1404 while (!list_empty(cmd_list)) {
1405 scmd = list_entry(cmd_list->next, struct scsi_cmnd, eh_entry);
1406 sdev = scmd->device;
1407
1408 if (!try_stu) {
1409 if (scsi_host_eh_past_deadline(sdev->host)) {
1410 /* Push items back onto work_q */
1411 list_splice_init(cmd_list, work_q);
1412 SCSI_LOG_ERROR_RECOVERY(3,
1413 sdev_printk(KERN_INFO, sdev,
1414 "%s: skip test device, past eh deadline",
1415 current->comm));
1416 break;
1417 }
1418 }
1419
1420 finish_cmds = !scsi_device_online(scmd->device) ||
1421 (try_stu && !scsi_eh_try_stu(scmd) &&
1422 !scsi_eh_tur(scmd)) ||
1423 !scsi_eh_tur(scmd);
1424
1425 list_for_each_entry_safe(scmd, next, cmd_list, eh_entry)
1426 if (scmd->device == sdev) {
1427 if (finish_cmds &&
1428 (try_stu ||
1429 scsi_eh_action(scmd, SUCCESS) == SUCCESS))
1430 scsi_eh_finish_cmd(scmd, done_q);
1431 else
1432 list_move_tail(&scmd->eh_entry, work_q);
1433 }
1434 }
1435 return list_empty(work_q);
1436 }
1437
1438 /**
1439 * scsi_eh_try_stu - Send START_UNIT to device.
1440 * @scmd: &scsi_cmnd to send START_UNIT
1441 *
1442 * Return value:
1443 * 0 - Device is ready. 1 - Device NOT ready.
1444 */
scsi_eh_try_stu(struct scsi_cmnd * scmd)1445 static int scsi_eh_try_stu(struct scsi_cmnd *scmd)
1446 {
1447 static unsigned char stu_command[6] = {START_STOP, 0, 0, 0, 1, 0};
1448
1449 if (scmd->device->allow_restart) {
1450 int i;
1451 enum scsi_disposition rtn = NEEDS_RETRY;
1452
1453 for (i = 0; rtn == NEEDS_RETRY && i < 2; i++)
1454 rtn = scsi_send_eh_cmnd(scmd, stu_command, 6, scmd->device->request_queue->rq_timeout, 0);
1455
1456 if (rtn == SUCCESS)
1457 return 0;
1458 }
1459
1460 return 1;
1461 }
1462
1463 /**
1464 * scsi_eh_stu - send START_UNIT if needed
1465 * @shost: &scsi host being recovered.
1466 * @work_q: &list_head for pending commands.
1467 * @done_q: &list_head for processed commands.
1468 *
1469 * Notes:
1470 * If commands are failing due to not ready, initializing command required,
1471 * try revalidating the device, which will end up sending a start unit.
1472 */
scsi_eh_stu(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)1473 static int scsi_eh_stu(struct Scsi_Host *shost,
1474 struct list_head *work_q,
1475 struct list_head *done_q)
1476 {
1477 struct scsi_cmnd *scmd, *stu_scmd, *next;
1478 struct scsi_device *sdev;
1479
1480 shost_for_each_device(sdev, shost) {
1481 if (scsi_host_eh_past_deadline(shost)) {
1482 SCSI_LOG_ERROR_RECOVERY(3,
1483 sdev_printk(KERN_INFO, sdev,
1484 "%s: skip START_UNIT, past eh deadline\n",
1485 current->comm));
1486 scsi_device_put(sdev);
1487 break;
1488 }
1489 stu_scmd = NULL;
1490 list_for_each_entry(scmd, work_q, eh_entry)
1491 if (scmd->device == sdev && SCSI_SENSE_VALID(scmd) &&
1492 scsi_check_sense(scmd) == FAILED ) {
1493 stu_scmd = scmd;
1494 break;
1495 }
1496
1497 if (!stu_scmd)
1498 continue;
1499
1500 SCSI_LOG_ERROR_RECOVERY(3,
1501 sdev_printk(KERN_INFO, sdev,
1502 "%s: Sending START_UNIT\n",
1503 current->comm));
1504
1505 if (!scsi_eh_try_stu(stu_scmd)) {
1506 if (!scsi_device_online(sdev) ||
1507 !scsi_eh_tur(stu_scmd)) {
1508 list_for_each_entry_safe(scmd, next,
1509 work_q, eh_entry) {
1510 if (scmd->device == sdev &&
1511 scsi_eh_action(scmd, SUCCESS) == SUCCESS)
1512 scsi_eh_finish_cmd(scmd, done_q);
1513 }
1514 }
1515 } else {
1516 SCSI_LOG_ERROR_RECOVERY(3,
1517 sdev_printk(KERN_INFO, sdev,
1518 "%s: START_UNIT failed\n",
1519 current->comm));
1520 }
1521 }
1522
1523 return list_empty(work_q);
1524 }
1525
1526
1527 /**
1528 * scsi_eh_bus_device_reset - send bdr if needed
1529 * @shost: scsi host being recovered.
1530 * @work_q: &list_head for pending commands.
1531 * @done_q: &list_head for processed commands.
1532 *
1533 * Notes:
1534 * Try a bus device reset. Still, look to see whether we have multiple
1535 * devices that are jammed or not - if we have multiple devices, it
1536 * makes no sense to try bus_device_reset - we really would need to try
1537 * a bus_reset instead.
1538 */
scsi_eh_bus_device_reset(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)1539 static int scsi_eh_bus_device_reset(struct Scsi_Host *shost,
1540 struct list_head *work_q,
1541 struct list_head *done_q)
1542 {
1543 struct scsi_cmnd *scmd, *bdr_scmd, *next;
1544 struct scsi_device *sdev;
1545 enum scsi_disposition rtn;
1546
1547 shost_for_each_device(sdev, shost) {
1548 if (scsi_host_eh_past_deadline(shost)) {
1549 SCSI_LOG_ERROR_RECOVERY(3,
1550 sdev_printk(KERN_INFO, sdev,
1551 "%s: skip BDR, past eh deadline\n",
1552 current->comm));
1553 scsi_device_put(sdev);
1554 break;
1555 }
1556 bdr_scmd = NULL;
1557 list_for_each_entry(scmd, work_q, eh_entry)
1558 if (scmd->device == sdev) {
1559 bdr_scmd = scmd;
1560 break;
1561 }
1562
1563 if (!bdr_scmd)
1564 continue;
1565
1566 SCSI_LOG_ERROR_RECOVERY(3,
1567 sdev_printk(KERN_INFO, sdev,
1568 "%s: Sending BDR\n", current->comm));
1569 rtn = scsi_try_bus_device_reset(bdr_scmd);
1570 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
1571 if (!scsi_device_online(sdev) ||
1572 rtn == FAST_IO_FAIL ||
1573 !scsi_eh_tur(bdr_scmd)) {
1574 list_for_each_entry_safe(scmd, next,
1575 work_q, eh_entry) {
1576 if (scmd->device == sdev &&
1577 scsi_eh_action(scmd, rtn) != FAILED)
1578 scsi_eh_finish_cmd(scmd,
1579 done_q);
1580 }
1581 }
1582 } else {
1583 SCSI_LOG_ERROR_RECOVERY(3,
1584 sdev_printk(KERN_INFO, sdev,
1585 "%s: BDR failed\n", current->comm));
1586 }
1587 }
1588
1589 return list_empty(work_q);
1590 }
1591
1592 /**
1593 * scsi_eh_target_reset - send target reset if needed
1594 * @shost: scsi host being recovered.
1595 * @work_q: &list_head for pending commands.
1596 * @done_q: &list_head for processed commands.
1597 *
1598 * Notes:
1599 * Try a target reset.
1600 */
scsi_eh_target_reset(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)1601 static int scsi_eh_target_reset(struct Scsi_Host *shost,
1602 struct list_head *work_q,
1603 struct list_head *done_q)
1604 {
1605 LIST_HEAD(tmp_list);
1606 LIST_HEAD(check_list);
1607
1608 list_splice_init(work_q, &tmp_list);
1609
1610 while (!list_empty(&tmp_list)) {
1611 struct scsi_cmnd *next, *scmd;
1612 enum scsi_disposition rtn;
1613 unsigned int id;
1614
1615 if (scsi_host_eh_past_deadline(shost)) {
1616 /* push back on work queue for further processing */
1617 list_splice_init(&check_list, work_q);
1618 list_splice_init(&tmp_list, work_q);
1619 SCSI_LOG_ERROR_RECOVERY(3,
1620 shost_printk(KERN_INFO, shost,
1621 "%s: Skip target reset, past eh deadline\n",
1622 current->comm));
1623 return list_empty(work_q);
1624 }
1625
1626 scmd = list_entry(tmp_list.next, struct scsi_cmnd, eh_entry);
1627 id = scmd_id(scmd);
1628
1629 SCSI_LOG_ERROR_RECOVERY(3,
1630 shost_printk(KERN_INFO, shost,
1631 "%s: Sending target reset to target %d\n",
1632 current->comm, id));
1633 rtn = scsi_try_target_reset(scmd);
1634 if (rtn != SUCCESS && rtn != FAST_IO_FAIL)
1635 SCSI_LOG_ERROR_RECOVERY(3,
1636 shost_printk(KERN_INFO, shost,
1637 "%s: Target reset failed"
1638 " target: %d\n",
1639 current->comm, id));
1640 list_for_each_entry_safe(scmd, next, &tmp_list, eh_entry) {
1641 if (scmd_id(scmd) != id)
1642 continue;
1643
1644 if (rtn == SUCCESS)
1645 list_move_tail(&scmd->eh_entry, &check_list);
1646 else if (rtn == FAST_IO_FAIL)
1647 scsi_eh_finish_cmd(scmd, done_q);
1648 else
1649 /* push back on work queue for further processing */
1650 list_move(&scmd->eh_entry, work_q);
1651 }
1652 }
1653
1654 return scsi_eh_test_devices(&check_list, work_q, done_q, 0);
1655 }
1656
1657 /**
1658 * scsi_eh_bus_reset - send a bus reset
1659 * @shost: &scsi host being recovered.
1660 * @work_q: &list_head for pending commands.
1661 * @done_q: &list_head for processed commands.
1662 */
scsi_eh_bus_reset(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)1663 static int scsi_eh_bus_reset(struct Scsi_Host *shost,
1664 struct list_head *work_q,
1665 struct list_head *done_q)
1666 {
1667 struct scsi_cmnd *scmd, *chan_scmd, *next;
1668 LIST_HEAD(check_list);
1669 unsigned int channel;
1670 enum scsi_disposition rtn;
1671
1672 /*
1673 * we really want to loop over the various channels, and do this on
1674 * a channel by channel basis. we should also check to see if any
1675 * of the failed commands are on soft_reset devices, and if so, skip
1676 * the reset.
1677 */
1678
1679 for (channel = 0; channel <= shost->max_channel; channel++) {
1680 if (scsi_host_eh_past_deadline(shost)) {
1681 list_splice_init(&check_list, work_q);
1682 SCSI_LOG_ERROR_RECOVERY(3,
1683 shost_printk(KERN_INFO, shost,
1684 "%s: skip BRST, past eh deadline\n",
1685 current->comm));
1686 return list_empty(work_q);
1687 }
1688
1689 chan_scmd = NULL;
1690 list_for_each_entry(scmd, work_q, eh_entry) {
1691 if (channel == scmd_channel(scmd)) {
1692 chan_scmd = scmd;
1693 break;
1694 /*
1695 * FIXME add back in some support for
1696 * soft_reset devices.
1697 */
1698 }
1699 }
1700
1701 if (!chan_scmd)
1702 continue;
1703 SCSI_LOG_ERROR_RECOVERY(3,
1704 shost_printk(KERN_INFO, shost,
1705 "%s: Sending BRST chan: %d\n",
1706 current->comm, channel));
1707 rtn = scsi_try_bus_reset(chan_scmd);
1708 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
1709 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1710 if (channel == scmd_channel(scmd)) {
1711 if (rtn == FAST_IO_FAIL)
1712 scsi_eh_finish_cmd(scmd,
1713 done_q);
1714 else
1715 list_move_tail(&scmd->eh_entry,
1716 &check_list);
1717 }
1718 }
1719 } else {
1720 SCSI_LOG_ERROR_RECOVERY(3,
1721 shost_printk(KERN_INFO, shost,
1722 "%s: BRST failed chan: %d\n",
1723 current->comm, channel));
1724 }
1725 }
1726 return scsi_eh_test_devices(&check_list, work_q, done_q, 0);
1727 }
1728
1729 /**
1730 * scsi_eh_host_reset - send a host reset
1731 * @shost: host to be reset.
1732 * @work_q: &list_head for pending commands.
1733 * @done_q: &list_head for processed commands.
1734 */
scsi_eh_host_reset(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)1735 static int scsi_eh_host_reset(struct Scsi_Host *shost,
1736 struct list_head *work_q,
1737 struct list_head *done_q)
1738 {
1739 struct scsi_cmnd *scmd, *next;
1740 LIST_HEAD(check_list);
1741 enum scsi_disposition rtn;
1742
1743 if (!list_empty(work_q)) {
1744 scmd = list_entry(work_q->next,
1745 struct scsi_cmnd, eh_entry);
1746
1747 SCSI_LOG_ERROR_RECOVERY(3,
1748 shost_printk(KERN_INFO, shost,
1749 "%s: Sending HRST\n",
1750 current->comm));
1751
1752 rtn = scsi_try_host_reset(scmd);
1753 if (rtn == SUCCESS) {
1754 list_splice_init(work_q, &check_list);
1755 } else if (rtn == FAST_IO_FAIL) {
1756 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1757 scsi_eh_finish_cmd(scmd, done_q);
1758 }
1759 } else {
1760 SCSI_LOG_ERROR_RECOVERY(3,
1761 shost_printk(KERN_INFO, shost,
1762 "%s: HRST failed\n",
1763 current->comm));
1764 }
1765 }
1766 return scsi_eh_test_devices(&check_list, work_q, done_q, 1);
1767 }
1768
1769 /**
1770 * scsi_eh_offline_sdevs - offline scsi devices that fail to recover
1771 * @work_q: &list_head for pending commands.
1772 * @done_q: &list_head for processed commands.
1773 */
scsi_eh_offline_sdevs(struct list_head * work_q,struct list_head * done_q)1774 static void scsi_eh_offline_sdevs(struct list_head *work_q,
1775 struct list_head *done_q)
1776 {
1777 struct scsi_cmnd *scmd, *next;
1778 struct scsi_device *sdev;
1779
1780 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1781 sdev_printk(KERN_INFO, scmd->device, "Device offlined - "
1782 "not ready after error recovery\n");
1783 sdev = scmd->device;
1784
1785 mutex_lock(&sdev->state_mutex);
1786 scsi_device_set_state(sdev, SDEV_OFFLINE);
1787 mutex_unlock(&sdev->state_mutex);
1788
1789 scsi_eh_finish_cmd(scmd, done_q);
1790 }
1791 return;
1792 }
1793
1794 /**
1795 * scsi_noretry_cmd - determine if command should be failed fast
1796 * @scmd: SCSI cmd to examine.
1797 */
scsi_noretry_cmd(struct scsi_cmnd * scmd)1798 int scsi_noretry_cmd(struct scsi_cmnd *scmd)
1799 {
1800 struct request *req = scsi_cmd_to_rq(scmd);
1801
1802 switch (host_byte(scmd->result)) {
1803 case DID_OK:
1804 break;
1805 case DID_TIME_OUT:
1806 goto check_type;
1807 case DID_BUS_BUSY:
1808 return req->cmd_flags & REQ_FAILFAST_TRANSPORT;
1809 case DID_PARITY:
1810 return req->cmd_flags & REQ_FAILFAST_DEV;
1811 case DID_ERROR:
1812 if (get_status_byte(scmd) == SAM_STAT_RESERVATION_CONFLICT)
1813 return 0;
1814 fallthrough;
1815 case DID_SOFT_ERROR:
1816 return req->cmd_flags & REQ_FAILFAST_DRIVER;
1817 }
1818
1819 if (!scsi_status_is_check_condition(scmd->result))
1820 return 0;
1821
1822 check_type:
1823 /*
1824 * assume caller has checked sense and determined
1825 * the check condition was retryable.
1826 */
1827 if (req->cmd_flags & REQ_FAILFAST_DEV || blk_rq_is_passthrough(req))
1828 return 1;
1829
1830 return 0;
1831 }
1832
1833 /**
1834 * scsi_decide_disposition - Disposition a cmd on return from LLD.
1835 * @scmd: SCSI cmd to examine.
1836 *
1837 * Notes:
1838 * This is *only* called when we are examining the status after sending
1839 * out the actual data command. any commands that are queued for error
1840 * recovery (e.g. test_unit_ready) do *not* come through here.
1841 *
1842 * When this routine returns failed, it means the error handler thread
1843 * is woken. In cases where the error code indicates an error that
1844 * doesn't require the error handler read (i.e. we don't need to
1845 * abort/reset), this function should return SUCCESS.
1846 */
scsi_decide_disposition(struct scsi_cmnd * scmd)1847 enum scsi_disposition scsi_decide_disposition(struct scsi_cmnd *scmd)
1848 {
1849 enum scsi_disposition rtn;
1850
1851 /*
1852 * if the device is offline, then we clearly just pass the result back
1853 * up to the top level.
1854 */
1855 if (!scsi_device_online(scmd->device)) {
1856 SCSI_LOG_ERROR_RECOVERY(5, scmd_printk(KERN_INFO, scmd,
1857 "%s: device offline - report as SUCCESS\n", __func__));
1858 return SUCCESS;
1859 }
1860
1861 /*
1862 * first check the host byte, to see if there is anything in there
1863 * that would indicate what we need to do.
1864 */
1865 switch (host_byte(scmd->result)) {
1866 case DID_PASSTHROUGH:
1867 /*
1868 * no matter what, pass this through to the upper layer.
1869 * nuke this special code so that it looks like we are saying
1870 * did_ok.
1871 */
1872 scmd->result &= 0xff00ffff;
1873 return SUCCESS;
1874 case DID_OK:
1875 /*
1876 * looks good. drop through, and check the next byte.
1877 */
1878 break;
1879 case DID_ABORT:
1880 if (scmd->eh_eflags & SCSI_EH_ABORT_SCHEDULED) {
1881 set_host_byte(scmd, DID_TIME_OUT);
1882 return SUCCESS;
1883 }
1884 fallthrough;
1885 case DID_NO_CONNECT:
1886 case DID_BAD_TARGET:
1887 /*
1888 * note - this means that we just report the status back
1889 * to the top level driver, not that we actually think
1890 * that it indicates SUCCESS.
1891 */
1892 return SUCCESS;
1893 case DID_SOFT_ERROR:
1894 /*
1895 * when the low level driver returns did_soft_error,
1896 * it is responsible for keeping an internal retry counter
1897 * in order to avoid endless loops (db)
1898 */
1899 goto maybe_retry;
1900 case DID_IMM_RETRY:
1901 return NEEDS_RETRY;
1902
1903 case DID_REQUEUE:
1904 return ADD_TO_MLQUEUE;
1905 case DID_TRANSPORT_DISRUPTED:
1906 /*
1907 * LLD/transport was disrupted during processing of the IO.
1908 * The transport class is now blocked/blocking,
1909 * and the transport will decide what to do with the IO
1910 * based on its timers and recovery capablilities if
1911 * there are enough retries.
1912 */
1913 goto maybe_retry;
1914 case DID_TRANSPORT_FAILFAST:
1915 /*
1916 * The transport decided to failfast the IO (most likely
1917 * the fast io fail tmo fired), so send IO directly upwards.
1918 */
1919 return SUCCESS;
1920 case DID_TRANSPORT_MARGINAL:
1921 /*
1922 * caller has decided not to do retries on
1923 * abort success, so send IO directly upwards
1924 */
1925 return SUCCESS;
1926 case DID_ERROR:
1927 if (get_status_byte(scmd) == SAM_STAT_RESERVATION_CONFLICT)
1928 /*
1929 * execute reservation conflict processing code
1930 * lower down
1931 */
1932 break;
1933 fallthrough;
1934 case DID_BUS_BUSY:
1935 case DID_PARITY:
1936 goto maybe_retry;
1937 case DID_TIME_OUT:
1938 /*
1939 * when we scan the bus, we get timeout messages for
1940 * these commands if there is no device available.
1941 * other hosts report did_no_connect for the same thing.
1942 */
1943 if ((scmd->cmnd[0] == TEST_UNIT_READY ||
1944 scmd->cmnd[0] == INQUIRY)) {
1945 return SUCCESS;
1946 } else {
1947 return FAILED;
1948 }
1949 case DID_RESET:
1950 return SUCCESS;
1951 default:
1952 return FAILED;
1953 }
1954
1955 /*
1956 * check the status byte to see if this indicates anything special.
1957 */
1958 switch (get_status_byte(scmd)) {
1959 case SAM_STAT_TASK_SET_FULL:
1960 scsi_handle_queue_full(scmd->device);
1961 /*
1962 * the case of trying to send too many commands to a
1963 * tagged queueing device.
1964 */
1965 fallthrough;
1966 case SAM_STAT_BUSY:
1967 /*
1968 * device can't talk to us at the moment. Should only
1969 * occur (SAM-3) when the task queue is empty, so will cause
1970 * the empty queue handling to trigger a stall in the
1971 * device.
1972 */
1973 return ADD_TO_MLQUEUE;
1974 case SAM_STAT_GOOD:
1975 if (scmd->cmnd[0] == REPORT_LUNS)
1976 scmd->device->sdev_target->expecting_lun_change = 0;
1977 scsi_handle_queue_ramp_up(scmd->device);
1978 fallthrough;
1979 case SAM_STAT_COMMAND_TERMINATED:
1980 return SUCCESS;
1981 case SAM_STAT_TASK_ABORTED:
1982 goto maybe_retry;
1983 case SAM_STAT_CHECK_CONDITION:
1984 rtn = scsi_check_sense(scmd);
1985 if (rtn == NEEDS_RETRY)
1986 goto maybe_retry;
1987 /* if rtn == FAILED, we have no sense information;
1988 * returning FAILED will wake the error handler thread
1989 * to collect the sense and redo the decide
1990 * disposition */
1991 return rtn;
1992 case SAM_STAT_CONDITION_MET:
1993 case SAM_STAT_INTERMEDIATE:
1994 case SAM_STAT_INTERMEDIATE_CONDITION_MET:
1995 case SAM_STAT_ACA_ACTIVE:
1996 /*
1997 * who knows? FIXME(eric)
1998 */
1999 return SUCCESS;
2000
2001 case SAM_STAT_RESERVATION_CONFLICT:
2002 sdev_printk(KERN_INFO, scmd->device,
2003 "reservation conflict\n");
2004 set_host_byte(scmd, DID_NEXUS_FAILURE);
2005 return SUCCESS; /* causes immediate i/o error */
2006 default:
2007 return FAILED;
2008 }
2009 return FAILED;
2010
2011 maybe_retry:
2012
2013 /* we requeue for retry because the error was retryable, and
2014 * the request was not marked fast fail. Note that above,
2015 * even if the request is marked fast fail, we still requeue
2016 * for queue congestion conditions (QUEUE_FULL or BUSY) */
2017 if (scsi_cmd_retry_allowed(scmd) && !scsi_noretry_cmd(scmd)) {
2018 return NEEDS_RETRY;
2019 } else {
2020 /*
2021 * no more retries - report this one back to upper level.
2022 */
2023 return SUCCESS;
2024 }
2025 }
2026
eh_lock_door_done(struct request * req,blk_status_t status)2027 static void eh_lock_door_done(struct request *req, blk_status_t status)
2028 {
2029 blk_put_request(req);
2030 }
2031
2032 /**
2033 * scsi_eh_lock_door - Prevent medium removal for the specified device
2034 * @sdev: SCSI device to prevent medium removal
2035 *
2036 * Locking:
2037 * We must be called from process context.
2038 *
2039 * Notes:
2040 * We queue up an asynchronous "ALLOW MEDIUM REMOVAL" request on the
2041 * head of the devices request queue, and continue.
2042 */
scsi_eh_lock_door(struct scsi_device * sdev)2043 static void scsi_eh_lock_door(struct scsi_device *sdev)
2044 {
2045 struct request *req;
2046 struct scsi_request *rq;
2047
2048 req = blk_get_request(sdev->request_queue, REQ_OP_DRV_IN, 0);
2049 if (IS_ERR(req))
2050 return;
2051 rq = scsi_req(req);
2052
2053 rq->cmd[0] = ALLOW_MEDIUM_REMOVAL;
2054 rq->cmd[1] = 0;
2055 rq->cmd[2] = 0;
2056 rq->cmd[3] = 0;
2057 rq->cmd[4] = SCSI_REMOVAL_PREVENT;
2058 rq->cmd[5] = 0;
2059 rq->cmd_len = COMMAND_SIZE(rq->cmd[0]);
2060
2061 req->rq_flags |= RQF_QUIET;
2062 req->timeout = 10 * HZ;
2063 rq->retries = 5;
2064
2065 blk_execute_rq_nowait(NULL, req, 1, eh_lock_door_done);
2066 }
2067
2068 /**
2069 * scsi_restart_operations - restart io operations to the specified host.
2070 * @shost: Host we are restarting.
2071 *
2072 * Notes:
2073 * When we entered the error handler, we blocked all further i/o to
2074 * this device. we need to 'reverse' this process.
2075 */
scsi_restart_operations(struct Scsi_Host * shost)2076 static void scsi_restart_operations(struct Scsi_Host *shost)
2077 {
2078 struct scsi_device *sdev;
2079 unsigned long flags;
2080
2081 /*
2082 * If the door was locked, we need to insert a door lock request
2083 * onto the head of the SCSI request queue for the device. There
2084 * is no point trying to lock the door of an off-line device.
2085 */
2086 shost_for_each_device(sdev, shost) {
2087 if (scsi_device_online(sdev) && sdev->was_reset && sdev->locked) {
2088 scsi_eh_lock_door(sdev);
2089 sdev->was_reset = 0;
2090 }
2091 }
2092
2093 /*
2094 * next free up anything directly waiting upon the host. this
2095 * will be requests for character device operations, and also for
2096 * ioctls to queued block devices.
2097 */
2098 SCSI_LOG_ERROR_RECOVERY(3,
2099 shost_printk(KERN_INFO, shost, "waking up host to restart\n"));
2100
2101 spin_lock_irqsave(shost->host_lock, flags);
2102 if (scsi_host_set_state(shost, SHOST_RUNNING))
2103 if (scsi_host_set_state(shost, SHOST_CANCEL))
2104 BUG_ON(scsi_host_set_state(shost, SHOST_DEL));
2105 spin_unlock_irqrestore(shost->host_lock, flags);
2106
2107 wake_up(&shost->host_wait);
2108
2109 /*
2110 * finally we need to re-initiate requests that may be pending. we will
2111 * have had everything blocked while error handling is taking place, and
2112 * now that error recovery is done, we will need to ensure that these
2113 * requests are started.
2114 */
2115 scsi_run_host_queues(shost);
2116
2117 /*
2118 * if eh is active and host_eh_scheduled is pending we need to re-run
2119 * recovery. we do this check after scsi_run_host_queues() to allow
2120 * everything pent up since the last eh run a chance to make forward
2121 * progress before we sync again. Either we'll immediately re-run
2122 * recovery or scsi_device_unbusy() will wake us again when these
2123 * pending commands complete.
2124 */
2125 spin_lock_irqsave(shost->host_lock, flags);
2126 if (shost->host_eh_scheduled)
2127 if (scsi_host_set_state(shost, SHOST_RECOVERY))
2128 WARN_ON(scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY));
2129 spin_unlock_irqrestore(shost->host_lock, flags);
2130 }
2131
2132 /**
2133 * scsi_eh_ready_devs - check device ready state and recover if not.
2134 * @shost: host to be recovered.
2135 * @work_q: &list_head for pending commands.
2136 * @done_q: &list_head for processed commands.
2137 */
scsi_eh_ready_devs(struct Scsi_Host * shost,struct list_head * work_q,struct list_head * done_q)2138 void scsi_eh_ready_devs(struct Scsi_Host *shost,
2139 struct list_head *work_q,
2140 struct list_head *done_q)
2141 {
2142 if (!scsi_eh_stu(shost, work_q, done_q))
2143 if (!scsi_eh_bus_device_reset(shost, work_q, done_q))
2144 if (!scsi_eh_target_reset(shost, work_q, done_q))
2145 if (!scsi_eh_bus_reset(shost, work_q, done_q))
2146 if (!scsi_eh_host_reset(shost, work_q, done_q))
2147 scsi_eh_offline_sdevs(work_q,
2148 done_q);
2149 }
2150 EXPORT_SYMBOL_GPL(scsi_eh_ready_devs);
2151
2152 /*
2153 * Returns a negative value if @_a has a lower starting sector than @_b, zero if
2154 * both have the same starting sector and a positive value otherwise.
2155 */
scsi_cmp_sector(void * priv,const struct list_head * _a,const struct list_head * _b)2156 static int scsi_cmp_sector(void *priv, const struct list_head *_a,
2157 const struct list_head *_b)
2158 {
2159 struct scsi_cmnd *a = list_entry(_a, typeof(*a), eh_entry);
2160 struct scsi_cmnd *b = list_entry(_b, typeof(*b), eh_entry);
2161 const sector_t pos_a = blk_rq_pos(scsi_cmd_to_rq(a));
2162 const sector_t pos_b = blk_rq_pos(scsi_cmd_to_rq(b));
2163
2164 if (pos_a < pos_b)
2165 return -1;
2166 if (pos_a > pos_b)
2167 return 1;
2168 return 0;
2169 }
2170
2171 /**
2172 * scsi_eh_flush_done_q - finish processed commands or retry them.
2173 * @done_q: list_head of processed commands.
2174 */
scsi_eh_flush_done_q(struct list_head * done_q)2175 void scsi_eh_flush_done_q(struct list_head *done_q)
2176 {
2177 struct scsi_cmnd *scmd, *next;
2178
2179 /*
2180 * Sort pending SCSI commands in starting sector order. This is
2181 * important if one of the SCSI devices associated with @shost is a
2182 * zoned block device for which zone write locking is disabled.
2183 */
2184 list_sort(NULL, done_q, scsi_cmp_sector);
2185
2186 list_for_each_entry_safe(scmd, next, done_q, eh_entry) {
2187 list_del_init(&scmd->eh_entry);
2188 if (scsi_device_online(scmd->device) &&
2189 !scsi_noretry_cmd(scmd) && scsi_cmd_retry_allowed(scmd) &&
2190 scsi_eh_should_retry_cmd(scmd)) {
2191 SCSI_LOG_ERROR_RECOVERY(3,
2192 scmd_printk(KERN_INFO, scmd,
2193 "%s: flush retry cmd\n",
2194 current->comm));
2195 scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY);
2196 } else {
2197 /*
2198 * If just we got sense for the device (called
2199 * scsi_eh_get_sense), scmd->result is already
2200 * set, do not set DID_TIME_OUT.
2201 */
2202 if (!scmd->result)
2203 scmd->result |= (DID_TIME_OUT << 16);
2204 SCSI_LOG_ERROR_RECOVERY(3,
2205 scmd_printk(KERN_INFO, scmd,
2206 "%s: flush finish cmd\n",
2207 current->comm));
2208 scsi_finish_command(scmd);
2209 }
2210 }
2211 }
2212 EXPORT_SYMBOL(scsi_eh_flush_done_q);
2213
2214 /**
2215 * scsi_unjam_host - Attempt to fix a host which has a cmd that failed.
2216 * @shost: Host to unjam.
2217 *
2218 * Notes:
2219 * When we come in here, we *know* that all commands on the bus have
2220 * either completed, failed or timed out. we also know that no further
2221 * commands are being sent to the host, so things are relatively quiet
2222 * and we have freedom to fiddle with things as we wish.
2223 *
2224 * This is only the *default* implementation. it is possible for
2225 * individual drivers to supply their own version of this function, and
2226 * if the maintainer wishes to do this, it is strongly suggested that
2227 * this function be taken as a template and modified. this function
2228 * was designed to correctly handle problems for about 95% of the
2229 * different cases out there, and it should always provide at least a
2230 * reasonable amount of error recovery.
2231 *
2232 * Any command marked 'failed' or 'timeout' must eventually have
2233 * scsi_finish_cmd() called for it. we do all of the retry stuff
2234 * here, so when we restart the host after we return it should have an
2235 * empty queue.
2236 */
scsi_unjam_host(struct Scsi_Host * shost)2237 static void scsi_unjam_host(struct Scsi_Host *shost)
2238 {
2239 unsigned long flags;
2240 LIST_HEAD(eh_work_q);
2241 LIST_HEAD(eh_done_q);
2242
2243 spin_lock_irqsave(shost->host_lock, flags);
2244 list_splice_init(&shost->eh_cmd_q, &eh_work_q);
2245 spin_unlock_irqrestore(shost->host_lock, flags);
2246
2247 SCSI_LOG_ERROR_RECOVERY(1, scsi_eh_prt_fail_stats(shost, &eh_work_q));
2248
2249 if (!scsi_eh_get_sense(&eh_work_q, &eh_done_q))
2250 scsi_eh_ready_devs(shost, &eh_work_q, &eh_done_q);
2251
2252 spin_lock_irqsave(shost->host_lock, flags);
2253 if (shost->eh_deadline != -1)
2254 shost->last_reset = 0;
2255 spin_unlock_irqrestore(shost->host_lock, flags);
2256 scsi_eh_flush_done_q(&eh_done_q);
2257 }
2258
2259 /**
2260 * scsi_error_handler - SCSI error handler thread
2261 * @data: Host for which we are running.
2262 *
2263 * Notes:
2264 * This is the main error handling loop. This is run as a kernel thread
2265 * for every SCSI host and handles all error handling activity.
2266 */
scsi_error_handler(void * data)2267 int scsi_error_handler(void *data)
2268 {
2269 struct Scsi_Host *shost = data;
2270
2271 /*
2272 * We use TASK_INTERRUPTIBLE so that the thread is not
2273 * counted against the load average as a running process.
2274 * We never actually get interrupted because kthread_run
2275 * disables signal delivery for the created thread.
2276 */
2277 while (true) {
2278 /*
2279 * The sequence in kthread_stop() sets the stop flag first
2280 * then wakes the process. To avoid missed wakeups, the task
2281 * should always be in a non running state before the stop
2282 * flag is checked
2283 */
2284 set_current_state(TASK_INTERRUPTIBLE);
2285 if (kthread_should_stop())
2286 break;
2287
2288 if ((shost->host_failed == 0 && shost->host_eh_scheduled == 0) ||
2289 shost->host_failed != scsi_host_busy(shost)) {
2290 SCSI_LOG_ERROR_RECOVERY(1,
2291 shost_printk(KERN_INFO, shost,
2292 "scsi_eh_%d: sleeping\n",
2293 shost->host_no));
2294 schedule();
2295 continue;
2296 }
2297
2298 __set_current_state(TASK_RUNNING);
2299 SCSI_LOG_ERROR_RECOVERY(1,
2300 shost_printk(KERN_INFO, shost,
2301 "scsi_eh_%d: waking up %d/%d/%d\n",
2302 shost->host_no, shost->host_eh_scheduled,
2303 shost->host_failed,
2304 scsi_host_busy(shost)));
2305
2306 /*
2307 * We have a host that is failing for some reason. Figure out
2308 * what we need to do to get it up and online again (if we can).
2309 * If we fail, we end up taking the thing offline.
2310 */
2311 if (!shost->eh_noresume && scsi_autopm_get_host(shost) != 0) {
2312 SCSI_LOG_ERROR_RECOVERY(1,
2313 shost_printk(KERN_ERR, shost,
2314 "scsi_eh_%d: unable to autoresume\n",
2315 shost->host_no));
2316 continue;
2317 }
2318
2319 if (shost->transportt->eh_strategy_handler)
2320 shost->transportt->eh_strategy_handler(shost);
2321 else
2322 scsi_unjam_host(shost);
2323
2324 /* All scmds have been handled */
2325 shost->host_failed = 0;
2326
2327 /*
2328 * Note - if the above fails completely, the action is to take
2329 * individual devices offline and flush the queue of any
2330 * outstanding requests that may have been pending. When we
2331 * restart, we restart any I/O to any other devices on the bus
2332 * which are still online.
2333 */
2334 scsi_restart_operations(shost);
2335 if (!shost->eh_noresume)
2336 scsi_autopm_put_host(shost);
2337 }
2338 __set_current_state(TASK_RUNNING);
2339
2340 SCSI_LOG_ERROR_RECOVERY(1,
2341 shost_printk(KERN_INFO, shost,
2342 "Error handler scsi_eh_%d exiting\n",
2343 shost->host_no));
2344 shost->ehandler = NULL;
2345 return 0;
2346 }
2347
2348 /*
2349 * Function: scsi_report_bus_reset()
2350 *
2351 * Purpose: Utility function used by low-level drivers to report that
2352 * they have observed a bus reset on the bus being handled.
2353 *
2354 * Arguments: shost - Host in question
2355 * channel - channel on which reset was observed.
2356 *
2357 * Returns: Nothing
2358 *
2359 * Lock status: Host lock must be held.
2360 *
2361 * Notes: This only needs to be called if the reset is one which
2362 * originates from an unknown location. Resets originated
2363 * by the mid-level itself don't need to call this, but there
2364 * should be no harm.
2365 *
2366 * The main purpose of this is to make sure that a CHECK_CONDITION
2367 * is properly treated.
2368 */
scsi_report_bus_reset(struct Scsi_Host * shost,int channel)2369 void scsi_report_bus_reset(struct Scsi_Host *shost, int channel)
2370 {
2371 struct scsi_device *sdev;
2372
2373 __shost_for_each_device(sdev, shost) {
2374 if (channel == sdev_channel(sdev))
2375 __scsi_report_device_reset(sdev, NULL);
2376 }
2377 }
2378 EXPORT_SYMBOL(scsi_report_bus_reset);
2379
2380 /*
2381 * Function: scsi_report_device_reset()
2382 *
2383 * Purpose: Utility function used by low-level drivers to report that
2384 * they have observed a device reset on the device being handled.
2385 *
2386 * Arguments: shost - Host in question
2387 * channel - channel on which reset was observed
2388 * target - target on which reset was observed
2389 *
2390 * Returns: Nothing
2391 *
2392 * Lock status: Host lock must be held
2393 *
2394 * Notes: This only needs to be called if the reset is one which
2395 * originates from an unknown location. Resets originated
2396 * by the mid-level itself don't need to call this, but there
2397 * should be no harm.
2398 *
2399 * The main purpose of this is to make sure that a CHECK_CONDITION
2400 * is properly treated.
2401 */
scsi_report_device_reset(struct Scsi_Host * shost,int channel,int target)2402 void scsi_report_device_reset(struct Scsi_Host *shost, int channel, int target)
2403 {
2404 struct scsi_device *sdev;
2405
2406 __shost_for_each_device(sdev, shost) {
2407 if (channel == sdev_channel(sdev) &&
2408 target == sdev_id(sdev))
2409 __scsi_report_device_reset(sdev, NULL);
2410 }
2411 }
2412 EXPORT_SYMBOL(scsi_report_device_reset);
2413
2414 static void
scsi_reset_provider_done_command(struct scsi_cmnd * scmd)2415 scsi_reset_provider_done_command(struct scsi_cmnd *scmd)
2416 {
2417 }
2418
2419 /**
2420 * scsi_ioctl_reset: explicitly reset a host/bus/target/device
2421 * @dev: scsi_device to operate on
2422 * @arg: reset type (see sg.h)
2423 */
2424 int
scsi_ioctl_reset(struct scsi_device * dev,int __user * arg)2425 scsi_ioctl_reset(struct scsi_device *dev, int __user *arg)
2426 {
2427 struct scsi_cmnd *scmd;
2428 struct Scsi_Host *shost = dev->host;
2429 struct request *rq;
2430 unsigned long flags;
2431 int error = 0, val;
2432 enum scsi_disposition rtn;
2433
2434 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
2435 return -EACCES;
2436
2437 error = get_user(val, arg);
2438 if (error)
2439 return error;
2440
2441 if (scsi_autopm_get_host(shost) < 0)
2442 return -EIO;
2443
2444 error = -EIO;
2445 rq = kzalloc(sizeof(struct request) + sizeof(struct scsi_cmnd) +
2446 shost->hostt->cmd_size, GFP_KERNEL);
2447 if (!rq)
2448 goto out_put_autopm_host;
2449 blk_rq_init(NULL, rq);
2450
2451 scmd = (struct scsi_cmnd *)(rq + 1);
2452 scsi_init_command(dev, scmd);
2453 scmd->cmnd = scsi_req(rq)->cmd;
2454
2455 scmd->scsi_done = scsi_reset_provider_done_command;
2456 scmd->flags |= SCMD_LAST;
2457 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
2458
2459 scmd->cmd_len = 0;
2460
2461 scmd->sc_data_direction = DMA_BIDIRECTIONAL;
2462
2463 spin_lock_irqsave(shost->host_lock, flags);
2464 shost->tmf_in_progress = 1;
2465 spin_unlock_irqrestore(shost->host_lock, flags);
2466
2467 switch (val & ~SG_SCSI_RESET_NO_ESCALATE) {
2468 case SG_SCSI_RESET_NOTHING:
2469 rtn = SUCCESS;
2470 break;
2471 case SG_SCSI_RESET_DEVICE:
2472 rtn = scsi_try_bus_device_reset(scmd);
2473 if (rtn == SUCCESS || (val & SG_SCSI_RESET_NO_ESCALATE))
2474 break;
2475 fallthrough;
2476 case SG_SCSI_RESET_TARGET:
2477 rtn = scsi_try_target_reset(scmd);
2478 if (rtn == SUCCESS || (val & SG_SCSI_RESET_NO_ESCALATE))
2479 break;
2480 fallthrough;
2481 case SG_SCSI_RESET_BUS:
2482 rtn = scsi_try_bus_reset(scmd);
2483 if (rtn == SUCCESS || (val & SG_SCSI_RESET_NO_ESCALATE))
2484 break;
2485 fallthrough;
2486 case SG_SCSI_RESET_HOST:
2487 rtn = scsi_try_host_reset(scmd);
2488 if (rtn == SUCCESS)
2489 break;
2490 fallthrough;
2491 default:
2492 rtn = FAILED;
2493 break;
2494 }
2495
2496 error = (rtn == SUCCESS) ? 0 : -EIO;
2497
2498 spin_lock_irqsave(shost->host_lock, flags);
2499 shost->tmf_in_progress = 0;
2500 spin_unlock_irqrestore(shost->host_lock, flags);
2501
2502 /*
2503 * be sure to wake up anyone who was sleeping or had their queue
2504 * suspended while we performed the TMF.
2505 */
2506 SCSI_LOG_ERROR_RECOVERY(3,
2507 shost_printk(KERN_INFO, shost,
2508 "waking up host to restart after TMF\n"));
2509
2510 wake_up(&shost->host_wait);
2511 scsi_run_host_queues(shost);
2512
2513 kfree(rq);
2514
2515 out_put_autopm_host:
2516 scsi_autopm_put_host(shost);
2517 return error;
2518 }
2519
scsi_command_normalize_sense(const struct scsi_cmnd * cmd,struct scsi_sense_hdr * sshdr)2520 bool scsi_command_normalize_sense(const struct scsi_cmnd *cmd,
2521 struct scsi_sense_hdr *sshdr)
2522 {
2523 return scsi_normalize_sense(cmd->sense_buffer,
2524 SCSI_SENSE_BUFFERSIZE, sshdr);
2525 }
2526 EXPORT_SYMBOL(scsi_command_normalize_sense);
2527
2528 /**
2529 * scsi_get_sense_info_fld - get information field from sense data (either fixed or descriptor format)
2530 * @sense_buffer: byte array of sense data
2531 * @sb_len: number of valid bytes in sense_buffer
2532 * @info_out: pointer to 64 integer where 8 or 4 byte information
2533 * field will be placed if found.
2534 *
2535 * Return value:
2536 * true if information field found, false if not found.
2537 */
scsi_get_sense_info_fld(const u8 * sense_buffer,int sb_len,u64 * info_out)2538 bool scsi_get_sense_info_fld(const u8 *sense_buffer, int sb_len,
2539 u64 *info_out)
2540 {
2541 const u8 * ucp;
2542
2543 if (sb_len < 7)
2544 return false;
2545 switch (sense_buffer[0] & 0x7f) {
2546 case 0x70:
2547 case 0x71:
2548 if (sense_buffer[0] & 0x80) {
2549 *info_out = get_unaligned_be32(&sense_buffer[3]);
2550 return true;
2551 }
2552 return false;
2553 case 0x72:
2554 case 0x73:
2555 ucp = scsi_sense_desc_find(sense_buffer, sb_len,
2556 0 /* info desc */);
2557 if (ucp && (0xa == ucp[1])) {
2558 *info_out = get_unaligned_be64(&ucp[4]);
2559 return true;
2560 }
2561 return false;
2562 default:
2563 return false;
2564 }
2565 }
2566 EXPORT_SYMBOL(scsi_get_sense_info_fld);
2567