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