blob: 2768bf6ffe59e0e799036b7101bea5923e993c7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scsi_error.c Copyright (C) 1997 Eric Youngdale
3 *
4 * SCSI error/timeout handling
5 * Initial versions: Eric Youngdale. Based upon conversations with
6 * Leonard Zubkoff and David Miller at Linux Expo,
7 * ideas originating from all over the place.
8 *
9 * Restructured scsi_unjam_host and associated functions.
10 * September 04, 2002 Mike Anderson (andmike@us.ibm.com)
11 *
12 * Forward port of Russell King's (rmk@arm.linux.org.uk) changes and
13 * minor cleanups.
14 * September 30, 2002 Mike Anderson (andmike@us.ibm.com)
15 */
16
17#include <linux/module.h>
18#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/timer.h>
21#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
Rafael J. Wysocki83144182007-07-17 04:03:35 -070023#include <linux/freezer.h>
Christoph Hellwigc5478de2005-09-06 14:04:26 +020024#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/interrupt.h>
26#include <linux/blkdev.h>
27#include <linux/delay.h>
28
29#include <scsi/scsi.h>
Christoph Hellwigbeb40482006-06-10 18:01:03 +020030#include <scsi/scsi_cmnd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <scsi/scsi_dbg.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_eh.h>
James Smartc829c392006-03-13 08:28:57 -050034#include <scsi/scsi_transport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <scsi/scsi_host.h>
36#include <scsi/scsi_ioctl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38#include "scsi_priv.h"
39#include "scsi_logging.h"
Adrian Bunk79ee8302007-08-10 14:50:42 -070040#include "scsi_transport_api.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Kei Tokunagabf816232010-04-01 20:41:40 +090042#include <trace/events/scsi.h>
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define SENSE_TIMEOUT (10*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/*
47 * These should *probably* be handled by the host itself.
48 * Since it is allowed to sleep, it probably should.
49 */
50#define BUS_RESET_SETTLE_TIME (10)
51#define HOST_RESET_SETTLE_TIME (10)
52
53/* called with shost->host_lock held */
54void scsi_eh_wakeup(struct Scsi_Host *shost)
55{
56 if (shost->host_busy == shost->host_failed) {
Kei Tokunagabf816232010-04-01 20:41:40 +090057 trace_scsi_eh_wakeup(shost);
James Bottomley3ed7a472005-09-19 09:50:04 -050058 wake_up_process(shost->ehandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 SCSI_LOG_ERROR_RECOVERY(5,
60 printk("Waking error handler thread\n"));
61 }
62}
Tejun Heof8bbfc22006-05-19 21:07:05 +090063
64/**
65 * scsi_schedule_eh - schedule EH for SCSI host
66 * @shost: SCSI host to invoke error handling on.
67 *
68 * Schedule SCSI EH without scmd.
Randy Dunlapdc8875e2007-11-15 15:42:30 -080069 */
Tejun Heof8bbfc22006-05-19 21:07:05 +090070void scsi_schedule_eh(struct Scsi_Host *shost)
71{
72 unsigned long flags;
73
74 spin_lock_irqsave(shost->host_lock, flags);
75
76 if (scsi_host_set_state(shost, SHOST_RECOVERY) == 0 ||
77 scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY) == 0) {
78 shost->host_eh_scheduled++;
79 scsi_eh_wakeup(shost);
80 }
81
82 spin_unlock_irqrestore(shost->host_lock, flags);
83}
84EXPORT_SYMBOL_GPL(scsi_schedule_eh);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86/**
87 * scsi_eh_scmd_add - add scsi cmd to error handling.
88 * @scmd: scmd to run eh on.
89 * @eh_flag: optional SCSI_EH flag.
90 *
91 * Return value:
92 * 0 on failure.
Randy Dunlapdc8875e2007-11-15 15:42:30 -080093 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070094int scsi_eh_scmd_add(struct scsi_cmnd *scmd, int eh_flag)
95{
96 struct Scsi_Host *shost = scmd->device->host;
97 unsigned long flags;
James Bottomley939647e2005-09-18 15:05:20 -050098 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
James Bottomley3ed7a472005-09-19 09:50:04 -0500100 if (!shost->ehandler)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
102
103 spin_lock_irqsave(shost->host_lock, flags);
James Bottomley939647e2005-09-18 15:05:20 -0500104 if (scsi_host_set_state(shost, SHOST_RECOVERY))
105 if (scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY))
106 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
James Bottomley939647e2005-09-18 15:05:20 -0500108 ret = 1;
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200109 scmd->eh_eflags |= eh_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 list_add_tail(&scmd->eh_entry, &shost->eh_cmd_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 shost->host_failed++;
112 scsi_eh_wakeup(shost);
James Bottomley939647e2005-09-18 15:05:20 -0500113 out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 spin_unlock_irqrestore(shost->host_lock, flags);
James Bottomley939647e2005-09-18 15:05:20 -0500115 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * scsi_times_out - Timeout function for normal scsi commands.
Jens Axboe242f9dc2008-09-14 05:55:09 -0700120 * @req: request that is timing out.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 *
122 * Notes:
123 * We do not need to lock this. There is the potential for a race
124 * only in that the normal completion handling might run, but if the
125 * normal completion function determines that the timer has already
126 * fired, then it mustn't do anything.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800127 */
Jens Axboe242f9dc2008-09-14 05:55:09 -0700128enum blk_eh_timer_return scsi_times_out(struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Jens Axboe242f9dc2008-09-14 05:55:09 -0700130 struct scsi_cmnd *scmd = req->special;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700131 enum blk_eh_timer_return rtn = BLK_EH_NOT_HANDLED;
James Bottomley6c5f8ce2007-03-16 17:44:41 -0500132
Kei Tokunagabf816232010-04-01 20:41:40 +0900133 trace_scsi_dispatch_cmd_timeout(scmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 scsi_log_completion(scmd, TIMEOUT_ERROR);
135
James Smartc829c392006-03-13 08:28:57 -0500136 if (scmd->device->host->transportt->eh_timed_out)
Christoph Hellwigfa990782008-11-05 15:03:15 +0100137 rtn = scmd->device->host->transportt->eh_timed_out(scmd);
James Bottomley6c5f8ce2007-03-16 17:44:41 -0500138 else if (scmd->device->host->hostt->eh_timed_out)
Christoph Hellwigfa990782008-11-05 15:03:15 +0100139 rtn = scmd->device->host->hostt->eh_timed_out(scmd);
James Bottomley6c5f8ce2007-03-16 17:44:41 -0500140
Christoph Hellwigfa990782008-11-05 15:03:15 +0100141 if (unlikely(rtn == BLK_EH_NOT_HANDLED &&
142 !scsi_eh_scmd_add(scmd, SCSI_EH_CANCEL_CMD))) {
James Bottomley939647e2005-09-18 15:05:20 -0500143 scmd->result |= DID_TIME_OUT << 16;
Christoph Hellwigfa990782008-11-05 15:03:15 +0100144 rtn = BLK_EH_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
Jens Axboe242f9dc2008-09-14 05:55:09 -0700146
Christoph Hellwigfa990782008-11-05 15:03:15 +0100147 return rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148}
149
150/**
151 * scsi_block_when_processing_errors - Prevent cmds from being queued.
152 * @sdev: Device on which we are performing recovery.
153 *
154 * Description:
155 * We block until the host is out of error recovery, and then check to
156 * see whether the host or the device is offline.
157 *
158 * Return value:
159 * 0 when dev was taken offline by error recovery. 1 OK to proceed.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800160 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161int scsi_block_when_processing_errors(struct scsi_device *sdev)
162{
163 int online;
164
James Bottomley939647e2005-09-18 15:05:20 -0500165 wait_event(sdev->host->host_wait, !scsi_host_in_recovery(sdev->host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
167 online = scsi_device_online(sdev);
168
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700169 SCSI_LOG_ERROR_RECOVERY(5, printk("%s: rtn: %d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 online));
171
172 return online;
173}
174EXPORT_SYMBOL(scsi_block_when_processing_errors);
175
176#ifdef CONFIG_SCSI_LOGGING
177/**
178 * scsi_eh_prt_fail_stats - Log info on failures.
179 * @shost: scsi host being recovered.
180 * @work_q: Queue of scsi cmds to process.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static inline void scsi_eh_prt_fail_stats(struct Scsi_Host *shost,
183 struct list_head *work_q)
184{
185 struct scsi_cmnd *scmd;
186 struct scsi_device *sdev;
187 int total_failures = 0;
188 int cmd_failed = 0;
189 int cmd_cancel = 0;
190 int devices_failed = 0;
191
192 shost_for_each_device(sdev, shost) {
193 list_for_each_entry(scmd, work_q, eh_entry) {
194 if (scmd->device == sdev) {
195 ++total_failures;
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200196 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 ++cmd_cancel;
198 else
199 ++cmd_failed;
200 }
201 }
202
203 if (cmd_cancel || cmd_failed) {
204 SCSI_LOG_ERROR_RECOVERY(3,
James Bottomley9ccfc752005-10-02 11:45:08 -0500205 sdev_printk(KERN_INFO, sdev,
206 "%s: cmds failed: %d, cancel: %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700207 __func__, cmd_failed,
James Bottomley9ccfc752005-10-02 11:45:08 -0500208 cmd_cancel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 cmd_cancel = 0;
210 cmd_failed = 0;
211 ++devices_failed;
212 }
213 }
214
215 SCSI_LOG_ERROR_RECOVERY(2, printk("Total of %d commands on %d"
216 " devices require eh work\n",
217 total_failures, devices_failed));
218}
219#endif
220
221/**
222 * scsi_check_sense - Examine scsi cmd sense
223 * @scmd: Cmd to have sense checked.
224 *
225 * Return value:
226 * SUCCESS or FAILED or NEEDS_RETRY
227 *
228 * Notes:
229 * When a deferred error is detected the current command has
230 * not been executed and needs retrying.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800231 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static int scsi_check_sense(struct scsi_cmnd *scmd)
233{
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700234 struct scsi_device *sdev = scmd->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct scsi_sense_hdr sshdr;
236
237 if (! scsi_command_normalize_sense(scmd, &sshdr))
238 return FAILED; /* no valid sense data */
239
240 if (scsi_sense_is_deferred(&sshdr))
241 return NEEDS_RETRY;
242
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700243 if (sdev->scsi_dh_data && sdev->scsi_dh_data->scsi_dh &&
244 sdev->scsi_dh_data->scsi_dh->check_sense) {
245 int rc;
246
247 rc = sdev->scsi_dh_data->scsi_dh->check_sense(sdev, &sshdr);
248 if (rc != SCSI_RETURN_NOT_HANDLED)
249 return rc;
250 /* handler does not care. Drop down to default handling */
251 }
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 /*
254 * Previous logic looked for FILEMARK, EOM or ILI which are
255 * mainly associated with tapes and returned SUCCESS.
256 */
257 if (sshdr.response_code == 0x70) {
258 /* fixed format */
259 if (scmd->sense_buffer[2] & 0xe0)
260 return SUCCESS;
261 } else {
262 /*
263 * descriptor format: look for "stream commands sense data
264 * descriptor" (see SSC-3). Assume single sense data
265 * descriptor. Ignore ILI from SBC-2 READ LONG and WRITE LONG.
266 */
267 if ((sshdr.additional_length > 3) &&
268 (scmd->sense_buffer[8] == 0x4) &&
269 (scmd->sense_buffer[11] & 0xe0))
270 return SUCCESS;
271 }
272
273 switch (sshdr.sense_key) {
274 case NO_SENSE:
275 return SUCCESS;
276 case RECOVERED_ERROR:
277 return /* soft_error */ SUCCESS;
278
279 case ABORTED_COMMAND:
Martin K. Petersen511e44f2008-07-17 04:28:33 -0400280 if (sshdr.asc == 0x10) /* DIF */
281 return SUCCESS;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return NEEDS_RETRY;
284 case NOT_READY:
285 case UNIT_ATTENTION:
286 /*
287 * if we are expecting a cc/ua because of a bus reset that we
288 * performed, treat this just as a retry. otherwise this is
289 * information that we should pass up to the upper-level driver
290 * so that we can deal with it there.
291 */
292 if (scmd->device->expecting_cc_ua) {
293 scmd->device->expecting_cc_ua = 0;
294 return NEEDS_RETRY;
295 }
296 /*
297 * if the device is in the process of becoming ready, we
298 * should retry.
299 */
300 if ((sshdr.asc == 0x04) && (sshdr.ascq == 0x01))
301 return NEEDS_RETRY;
302 /*
303 * if the device is not started, we need to wake
304 * the error handler to start the motor
305 */
306 if (scmd->device->allow_restart &&
307 (sshdr.asc == 0x04) && (sshdr.ascq == 0x02))
308 return FAILED;
James Bottomley77a42292010-05-04 16:51:40 -0400309
FUJITA Tomonorie96f6ab2010-07-09 09:38:26 +0900310 return NEEDS_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 /* these three are not supported */
312 case COPY_ABORTED:
313 case VOLUME_OVERFLOW:
314 case MISCOMPARE:
315 return SUCCESS;
316
317 case MEDIUM_ERROR:
Luben Tuikovfd1b4942006-11-29 19:45:23 -0800318 if (sshdr.asc == 0x11 || /* UNRECOVERED READ ERR */
319 sshdr.asc == 0x13 || /* AMNF DATA FIELD */
320 sshdr.asc == 0x14) { /* RECORD NOT FOUND */
321 return SUCCESS;
322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 return NEEDS_RETRY;
324
325 case HARDWARE_ERROR:
326 if (scmd->device->retry_hwerror)
Mike Andersonbb0003c2008-08-12 12:11:58 -0700327 return ADD_TO_MLQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 else
329 return SUCCESS;
330
331 case ILLEGAL_REQUEST:
332 case BLANK_CHECK:
333 case DATA_PROTECT:
334 default:
335 return SUCCESS;
336 }
337}
338
Vasu Dev4a840672009-10-22 15:46:33 -0700339static void scsi_handle_queue_ramp_up(struct scsi_device *sdev)
340{
341 struct scsi_host_template *sht = sdev->host->hostt;
342 struct scsi_device *tmp_sdev;
343
344 if (!sht->change_queue_depth ||
345 sdev->queue_depth >= sdev->max_queue_depth)
346 return;
347
348 if (time_before(jiffies,
349 sdev->last_queue_ramp_up + sdev->queue_ramp_up_period))
350 return;
351
352 if (time_before(jiffies,
353 sdev->last_queue_full_time + sdev->queue_ramp_up_period))
354 return;
355
356 /*
357 * Walk all devices of a target and do
358 * ramp up on them.
359 */
360 shost_for_each_device(tmp_sdev, sdev->host) {
361 if (tmp_sdev->channel != sdev->channel ||
362 tmp_sdev->id != sdev->id ||
363 tmp_sdev->queue_depth == sdev->max_queue_depth)
364 continue;
365 /*
366 * call back into LLD to increase queue_depth by one
367 * with ramp up reason code.
368 */
369 sht->change_queue_depth(tmp_sdev, tmp_sdev->queue_depth + 1,
370 SCSI_QDEPTH_RAMP_UP);
371 sdev->last_queue_ramp_up = jiffies;
372 }
373}
374
Mike Christie42a6a912009-10-15 17:46:44 -0700375static void scsi_handle_queue_full(struct scsi_device *sdev)
376{
377 struct scsi_host_template *sht = sdev->host->hostt;
378 struct scsi_device *tmp_sdev;
379
380 if (!sht->change_queue_depth)
381 return;
382
383 shost_for_each_device(tmp_sdev, sdev->host) {
384 if (tmp_sdev->channel != sdev->channel ||
385 tmp_sdev->id != sdev->id)
386 continue;
387 /*
388 * We do not know the number of commands that were at
389 * the device when we got the queue full so we start
390 * from the highest possible value and work our way down.
391 */
392 sht->change_queue_depth(tmp_sdev, tmp_sdev->queue_depth - 1,
393 SCSI_QDEPTH_QFULL);
394 }
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397/**
398 * scsi_eh_completed_normally - Disposition a eh cmd on return from LLD.
399 * @scmd: SCSI cmd to examine.
400 *
401 * Notes:
402 * This is *only* called when we are examining the status of commands
403 * queued during error recovery. the main difference here is that we
404 * don't allow for the possibility of retries here, and we are a lot
405 * more restrictive about what we consider acceptable.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800406 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407static int scsi_eh_completed_normally(struct scsi_cmnd *scmd)
408{
409 /*
410 * first check the host byte, to see if there is anything in there
411 * that would indicate what we need to do.
412 */
413 if (host_byte(scmd->result) == DID_RESET) {
414 /*
415 * rats. we are already in the error handler, so we now
416 * get to try and figure out what to do next. if the sense
417 * is valid, we have a pretty good idea of what to do.
418 * if not, we mark it as FAILED.
419 */
420 return scsi_check_sense(scmd);
421 }
422 if (host_byte(scmd->result) != DID_OK)
423 return FAILED;
424
425 /*
426 * next, check the message byte.
427 */
428 if (msg_byte(scmd->result) != COMMAND_COMPLETE)
429 return FAILED;
430
431 /*
432 * now, check the status byte to see if this indicates
433 * anything special.
434 */
435 switch (status_byte(scmd->result)) {
436 case GOOD:
Vasu Dev4a840672009-10-22 15:46:33 -0700437 scsi_handle_queue_ramp_up(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 case COMMAND_TERMINATED:
439 return SUCCESS;
440 case CHECK_CONDITION:
441 return scsi_check_sense(scmd);
442 case CONDITION_GOOD:
443 case INTERMEDIATE_GOOD:
444 case INTERMEDIATE_C_GOOD:
445 /*
446 * who knows? FIXME(eric)
447 */
448 return SUCCESS;
Michael Reed5f91bb02009-08-10 11:59:28 -0500449 case RESERVATION_CONFLICT:
450 /*
451 * let issuer deal with this, it could be just fine
452 */
453 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 case QUEUE_FULL:
Mike Christie42a6a912009-10-15 17:46:44 -0700455 scsi_handle_queue_full(scmd->device);
456 /* fall through */
457 case BUSY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 default:
459 return FAILED;
460 }
461 return FAILED;
462}
463
464/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 * scsi_eh_done - Completion function for error handling.
466 * @scmd: Cmd that is done.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800467 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468static void scsi_eh_done(struct scsi_cmnd *scmd)
469{
Michael Reed85631672005-12-07 21:46:27 -0600470 struct completion *eh_action;
471
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100472 SCSI_LOG_ERROR_RECOVERY(3,
473 printk("%s scmd: %p result: %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700474 __func__, scmd, scmd->result));
Michael Reed85631672005-12-07 21:46:27 -0600475
476 eh_action = scmd->device->host->eh_action;
477 if (eh_action)
478 complete(eh_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481/**
Brian King292148f2007-01-30 17:51:17 -0600482 * scsi_try_host_reset - ask host adapter to reset itself
483 * @scmd: SCSI cmd to send hsot reset.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800484 */
Brian King292148f2007-01-30 17:51:17 -0600485static int scsi_try_host_reset(struct scsi_cmnd *scmd)
486{
487 unsigned long flags;
488 int rtn;
489
490 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Host RST\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700491 __func__));
Brian King292148f2007-01-30 17:51:17 -0600492
493 if (!scmd->device->host->hostt->eh_host_reset_handler)
494 return FAILED;
495
496 rtn = scmd->device->host->hostt->eh_host_reset_handler(scmd);
497
498 if (rtn == SUCCESS) {
499 if (!scmd->device->host->hostt->skip_settle_delay)
500 ssleep(HOST_RESET_SETTLE_TIME);
501 spin_lock_irqsave(scmd->device->host->host_lock, flags);
502 scsi_report_bus_reset(scmd->device->host,
503 scmd_channel(scmd));
504 spin_unlock_irqrestore(scmd->device->host->host_lock, flags);
505 }
506
507 return rtn;
508}
509
510/**
511 * scsi_try_bus_reset - ask host to perform a bus reset
512 * @scmd: SCSI cmd to send bus reset.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800513 */
Brian King292148f2007-01-30 17:51:17 -0600514static int scsi_try_bus_reset(struct scsi_cmnd *scmd)
515{
516 unsigned long flags;
517 int rtn;
518
519 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Bus RST\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700520 __func__));
Brian King292148f2007-01-30 17:51:17 -0600521
522 if (!scmd->device->host->hostt->eh_bus_reset_handler)
523 return FAILED;
524
525 rtn = scmd->device->host->hostt->eh_bus_reset_handler(scmd);
526
527 if (rtn == SUCCESS) {
528 if (!scmd->device->host->hostt->skip_settle_delay)
529 ssleep(BUS_RESET_SETTLE_TIME);
530 spin_lock_irqsave(scmd->device->host->host_lock, flags);
531 scsi_report_bus_reset(scmd->device->host,
532 scmd_channel(scmd));
533 spin_unlock_irqrestore(scmd->device->host->host_lock, flags);
534 }
535
536 return rtn;
537}
538
Mike Christie30bd7df2008-02-29 18:25:19 -0600539static void __scsi_report_device_reset(struct scsi_device *sdev, void *data)
540{
541 sdev->was_reset = 1;
542 sdev->expecting_cc_ua = 1;
543}
544
545/**
546 * scsi_try_target_reset - Ask host to perform a target reset
547 * @scmd: SCSI cmd used to send a target reset
548 *
549 * Notes:
550 * There is no timeout for this operation. if this operation is
551 * unreliable for a given host, then the host itself needs to put a
552 * timer on it, and set the host back to a consistent state prior to
553 * returning.
554 */
555static int scsi_try_target_reset(struct scsi_cmnd *scmd)
556{
557 unsigned long flags;
558 int rtn;
559
560 if (!scmd->device->host->hostt->eh_target_reset_handler)
561 return FAILED;
562
563 rtn = scmd->device->host->hostt->eh_target_reset_handler(scmd);
564 if (rtn == SUCCESS) {
565 spin_lock_irqsave(scmd->device->host->host_lock, flags);
566 __starget_for_each_device(scsi_target(scmd->device), NULL,
567 __scsi_report_device_reset);
568 spin_unlock_irqrestore(scmd->device->host->host_lock, flags);
569 }
570
571 return rtn;
572}
573
Brian King292148f2007-01-30 17:51:17 -0600574/**
575 * scsi_try_bus_device_reset - Ask host to perform a BDR on a dev
576 * @scmd: SCSI cmd used to send BDR
577 *
578 * Notes:
579 * There is no timeout for this operation. if this operation is
580 * unreliable for a given host, then the host itself needs to put a
581 * timer on it, and set the host back to a consistent state prior to
582 * returning.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800583 */
Brian King292148f2007-01-30 17:51:17 -0600584static int scsi_try_bus_device_reset(struct scsi_cmnd *scmd)
585{
586 int rtn;
587
588 if (!scmd->device->host->hostt->eh_device_reset_handler)
589 return FAILED;
590
591 rtn = scmd->device->host->hostt->eh_device_reset_handler(scmd);
Mike Christie30bd7df2008-02-29 18:25:19 -0600592 if (rtn == SUCCESS)
593 __scsi_report_device_reset(scmd->device, NULL);
Brian King292148f2007-01-30 17:51:17 -0600594 return rtn;
595}
596
597static int __scsi_try_to_abort_cmd(struct scsi_cmnd *scmd)
598{
599 if (!scmd->device->host->hostt->eh_abort_handler)
600 return FAILED;
601
602 return scmd->device->host->hostt->eh_abort_handler(scmd);
603}
604
605/**
606 * scsi_try_to_abort_cmd - Ask host to abort a running command.
607 * @scmd: SCSI cmd to abort from Lower Level.
608 *
609 * Notes:
610 * This function will not return until the user's completion function
611 * has been called. there is no timeout on this operation. if the
612 * author of the low-level driver wishes this operation to be timed,
613 * they can provide this facility themselves. helper functions in
614 * scsi_error.c can be supplied to make this easier to do.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800615 */
Brian King292148f2007-01-30 17:51:17 -0600616static int scsi_try_to_abort_cmd(struct scsi_cmnd *scmd)
617{
618 /*
619 * scsi_done was called just after the command timed out and before
620 * we had a chance to process it. (db)
621 */
622 if (scmd->serial_number == 0)
623 return SUCCESS;
624 return __scsi_try_to_abort_cmd(scmd);
625}
626
627static void scsi_abort_eh_cmnd(struct scsi_cmnd *scmd)
628{
629 if (__scsi_try_to_abort_cmd(scmd) != SUCCESS)
630 if (scsi_try_bus_device_reset(scmd) != SUCCESS)
Mike Christie30bd7df2008-02-29 18:25:19 -0600631 if (scsi_try_target_reset(scmd) != SUCCESS)
632 if (scsi_try_bus_reset(scmd) != SUCCESS)
633 scsi_try_host_reset(scmd);
Brian King292148f2007-01-30 17:51:17 -0600634}
635
636/**
Boaz Harroshe1c23462007-10-08 16:36:45 +0200637 * scsi_eh_prep_cmnd - Save a scsi command info as part of error recory
Christoph Hellwig2dc611d2006-11-04 20:04:21 +0100638 * @scmd: SCSI command structure to hijack
Boaz Harroshe1c23462007-10-08 16:36:45 +0200639 * @ses: structure to save restore information
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200640 * @cmnd: CDB to send. Can be NULL if no new cmnd is needed
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300641 * @cmnd_size: size in bytes of @cmnd (must be <= BLK_MAX_CDB)
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200642 * @sense_bytes: size of sense data to copy. or 0 (if != 0 @cmnd is ignored)
Christoph Hellwig2dc611d2006-11-04 20:04:21 +0100643 *
Boaz Harroshe1c23462007-10-08 16:36:45 +0200644 * This function is used to save a scsi command information before re-execution
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200645 * as part of the error recovery process. If @sense_bytes is 0 the command
646 * sent must be one that does not transfer any data. If @sense_bytes != 0
647 * @cmnd is ignored and this functions sets up a REQUEST_SENSE command
648 * and cmnd buffers to read @sense_bytes into @scmd->sense_buffer.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800649 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200650void scsi_eh_prep_cmnd(struct scsi_cmnd *scmd, struct scsi_eh_save *ses,
651 unsigned char *cmnd, int cmnd_size, unsigned sense_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
f59114b2005-04-17 15:00:23 -0500653 struct scsi_device *sdev = scmd->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Christoph Hellwig631c2282006-07-08 20:42:15 +0200655 /*
656 * We need saved copies of a number of fields - this is because
657 * error handling may need to overwrite these with different values
658 * to run different commands, and once error handling is complete,
659 * we will need to restore these values prior to running the actual
660 * command.
661 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200662 ses->cmd_len = scmd->cmd_len;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300663 ses->cmnd = scmd->cmnd;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200664 ses->data_direction = scmd->sc_data_direction;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200665 ses->sdb = scmd->sdb;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200666 ses->next_rq = scmd->request->next_rq;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200667 ses->result = scmd->result;
Alan Stern12265702008-07-21 10:25:52 -0400668 ses->underflow = scmd->underflow;
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400669 ses->prot_op = scmd->prot_op;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200670
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400671 scmd->prot_op = SCSI_PROT_NORMAL;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300672 scmd->cmnd = ses->eh_cmnd;
673 memset(scmd->cmnd, 0, BLK_MAX_CDB);
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200674 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200675 scmd->request->next_rq = NULL;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200676
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200677 if (sense_bytes) {
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200678 scmd->sdb.length = min_t(unsigned, SCSI_SENSE_BUFFERSIZE,
679 sense_bytes);
Boaz Harroshe1c23462007-10-08 16:36:45 +0200680 sg_init_one(&ses->sense_sgl, scmd->sense_buffer,
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200681 scmd->sdb.length);
682 scmd->sdb.table.sgl = &ses->sense_sgl;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200683 scmd->sc_data_direction = DMA_FROM_DEVICE;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200684 scmd->sdb.table.nents = 1;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200685 scmd->cmnd[0] = REQUEST_SENSE;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200686 scmd->cmnd[4] = scmd->sdb.length;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200687 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
Christoph Hellwig631c2282006-07-08 20:42:15 +0200688 } else {
Christoph Hellwig631c2282006-07-08 20:42:15 +0200689 scmd->sc_data_direction = DMA_NONE;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200690 if (cmnd) {
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300691 BUG_ON(cmnd_size > BLK_MAX_CDB);
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200692 memcpy(scmd->cmnd, cmnd, cmnd_size);
693 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
694 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200695 }
696
697 scmd->underflow = 0;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200698
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200699 if (sdev->scsi_level <= SCSI_2 && sdev->scsi_level != SCSI_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 scmd->cmnd[1] = (scmd->cmnd[1] & 0x1f) |
f59114b2005-04-17 15:00:23 -0500701 (sdev->lun << 5 & 0xe0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Christoph Hellwig631c2282006-07-08 20:42:15 +0200703 /*
704 * Zero the sense buffer. The scsi spec mandates that any
705 * untransferred sense data should be interpreted as being zero.
706 */
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900707 memset(scmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Boaz Harroshe1c23462007-10-08 16:36:45 +0200708}
709EXPORT_SYMBOL(scsi_eh_prep_cmnd);
Christoph Hellwig631c2282006-07-08 20:42:15 +0200710
Boaz Harroshe1c23462007-10-08 16:36:45 +0200711/**
712 * scsi_eh_restore_cmnd - Restore a scsi command info as part of error recory
713 * @scmd: SCSI command structure to restore
Bartlomiej Zolnierkiewicz477e6082009-04-27 20:54:22 +0200714 * @ses: saved information from a coresponding call to scsi_eh_prep_cmnd
Boaz Harroshe1c23462007-10-08 16:36:45 +0200715 *
Bartlomiej Zolnierkiewicz477e6082009-04-27 20:54:22 +0200716 * Undo any damage done by above scsi_eh_prep_cmnd().
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800717 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200718void scsi_eh_restore_cmnd(struct scsi_cmnd* scmd, struct scsi_eh_save *ses)
719{
720 /*
721 * Restore original data
722 */
723 scmd->cmd_len = ses->cmd_len;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300724 scmd->cmnd = ses->cmnd;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200725 scmd->sc_data_direction = ses->data_direction;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200726 scmd->sdb = ses->sdb;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200727 scmd->request->next_rq = ses->next_rq;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200728 scmd->result = ses->result;
Alan Stern12265702008-07-21 10:25:52 -0400729 scmd->underflow = ses->underflow;
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400730 scmd->prot_op = ses->prot_op;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200731}
732EXPORT_SYMBOL(scsi_eh_restore_cmnd);
733
734/**
735 * scsi_send_eh_cmnd - submit a scsi command as part of error recory
736 * @scmd: SCSI command structure to hijack
737 * @cmnd: CDB to send
738 * @cmnd_size: size in bytes of @cmnd
739 * @timeout: timeout for this request
740 * @sense_bytes: size of sense data to copy or 0
741 *
742 * This function is used to send a scsi command down to a target device
743 * as part of the error recovery process. See also scsi_eh_prep_cmnd() above.
744 *
745 * Return value:
746 * SUCCESS or FAILED or NEEDS_RETRY
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800747 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200748static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
749 int cmnd_size, int timeout, unsigned sense_bytes)
750{
751 struct scsi_device *sdev = scmd->device;
752 struct Scsi_Host *shost = sdev->host;
753 DECLARE_COMPLETION_ONSTACK(done);
754 unsigned long timeleft;
755 unsigned long flags;
756 struct scsi_eh_save ses;
757 int rtn;
758
759 scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100760 shost->eh_action = &done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
f59114b2005-04-17 15:00:23 -0500762 spin_lock_irqsave(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 scsi_log_send(scmd);
f59114b2005-04-17 15:00:23 -0500764 shost->hostt->queuecommand(scmd, scsi_eh_done);
765 spin_unlock_irqrestore(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100767 timeleft = wait_for_completion_timeout(&done, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
f59114b2005-04-17 15:00:23 -0500769 shost->eh_action = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100771 scsi_log_completion(scmd, SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100773 SCSI_LOG_ERROR_RECOVERY(3,
774 printk("%s: scmd: %p, timeleft: %ld\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700775 __func__, scmd, timeleft));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 /*
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100778 * If there is time left scsi_eh_done got called, and we will
779 * examine the actual status codes to see whether the command
780 * actually did complete normally, else tell the host to forget
781 * about this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 */
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100783 if (timeleft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 rtn = scsi_eh_completed_normally(scmd);
785 SCSI_LOG_ERROR_RECOVERY(3,
786 printk("%s: scsi_eh_completed_normally %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700787 __func__, rtn));
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 switch (rtn) {
790 case SUCCESS:
791 case NEEDS_RETRY:
792 case FAILED:
793 break;
Hannes Reinecke6e883b02009-09-17 17:00:26 +0200794 case ADD_TO_MLQUEUE:
795 rtn = NEEDS_RETRY;
796 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 default:
798 rtn = FAILED;
799 break;
800 }
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100801 } else {
Brian King292148f2007-01-30 17:51:17 -0600802 scsi_abort_eh_cmnd(scmd);
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100803 rtn = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
Boaz Harroshe1c23462007-10-08 16:36:45 +0200806 scsi_eh_restore_cmnd(scmd, &ses);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return rtn;
808}
809
810/**
811 * scsi_request_sense - Request sense data from a particular target.
812 * @scmd: SCSI cmd for request sense.
813 *
814 * Notes:
815 * Some hosts automatically obtain this information, others require
816 * that we obtain it on our own. This function will *not* return until
817 * the command either times out, or it completes.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800818 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819static int scsi_request_sense(struct scsi_cmnd *scmd)
820{
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200821 return scsi_send_eh_cmnd(scmd, NULL, 0, SENSE_TIMEOUT, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822}
823
824/**
825 * scsi_eh_finish_cmd - Handle a cmd that eh is finished with.
826 * @scmd: Original SCSI cmd that eh has finished.
827 * @done_q: Queue for processed commands.
828 *
829 * Notes:
830 * We don't want to use the normal command completion while we are are
831 * still handling errors - it may cause other commands to be queued,
Rob Landleyeb448202007-11-03 13:30:39 -0500832 * and that would disturb what we are doing. Thus we really want to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 * keep a list of pending commands for final completion, and once we
834 * are ready to leave error handling we handle completion for real.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800835 */
Tejun Heo041c5fc2006-01-23 13:09:36 +0900836void scsi_eh_finish_cmd(struct scsi_cmnd *scmd, struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 scmd->device->host->host_failed--;
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200839 scmd->eh_eflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 list_move_tail(&scmd->eh_entry, done_q);
841}
Tejun Heo041c5fc2006-01-23 13:09:36 +0900842EXPORT_SYMBOL(scsi_eh_finish_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
844/**
845 * scsi_eh_get_sense - Get device sense data.
846 * @work_q: Queue of commands to process.
Rob Landleyeb448202007-11-03 13:30:39 -0500847 * @done_q: Queue of processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 *
849 * Description:
850 * See if we need to request sense information. if so, then get it
851 * now, so we have a better idea of what to do.
852 *
853 * Notes:
854 * This has the unfortunate side effect that if a shost adapter does
Rob Landleyeb448202007-11-03 13:30:39 -0500855 * not automatically request sense information, we end up shutting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 * it down before we request it.
857 *
858 * All drivers should request sense information internally these days,
859 * so for now all I have to say is tough noogies if you end up in here.
860 *
861 * XXX: Long term this code should go away, but that needs an audit of
862 * all LLDDs first.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800863 */
Darrick J. Wongdca84e42007-01-26 14:08:49 -0800864int scsi_eh_get_sense(struct list_head *work_q,
865 struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200867 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 int rtn;
869
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200870 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200871 if ((scmd->eh_eflags & SCSI_EH_CANCEL_CMD) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 SCSI_SENSE_VALID(scmd))
873 continue;
874
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400875 SCSI_LOG_ERROR_RECOVERY(2, scmd_printk(KERN_INFO, scmd,
876 "%s: requesting sense\n",
877 current->comm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 rtn = scsi_request_sense(scmd);
879 if (rtn != SUCCESS)
880 continue;
881
882 SCSI_LOG_ERROR_RECOVERY(3, printk("sense requested for %p"
883 " result %x\n", scmd,
884 scmd->result));
885 SCSI_LOG_ERROR_RECOVERY(3, scsi_print_sense("bh", scmd));
886
887 rtn = scsi_decide_disposition(scmd);
888
889 /*
890 * if the result was normal, then just pass it along to the
891 * upper level.
892 */
893 if (rtn == SUCCESS)
894 /* we don't want this command reissued, just
895 * finished with the sense data, so set
896 * retries to the max allowed to ensure it
897 * won't get reissued */
898 scmd->retries = scmd->allowed;
899 else if (rtn != NEEDS_RETRY)
900 continue;
901
902 scsi_eh_finish_cmd(scmd, done_q);
903 }
904
905 return list_empty(work_q);
906}
Darrick J. Wongdca84e42007-01-26 14:08:49 -0800907EXPORT_SYMBOL_GPL(scsi_eh_get_sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * scsi_eh_tur - Send TUR to device.
Rob Landleyeb448202007-11-03 13:30:39 -0500911 * @scmd: &scsi_cmnd to send TUR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 *
913 * Return value:
914 * 0 - Device is ready. 1 - Device NOT ready.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800915 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916static int scsi_eh_tur(struct scsi_cmnd *scmd)
917{
918 static unsigned char tur_command[6] = {TEST_UNIT_READY, 0, 0, 0, 0, 0};
919 int retry_cnt = 1, rtn;
920
921retry_tur:
Mike Christie0db99e32006-08-26 03:00:22 -0400922 rtn = scsi_send_eh_cmnd(scmd, tur_command, 6, SENSE_TIMEOUT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd %p rtn %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700925 __func__, scmd, rtn));
Christoph Hellwig631c2282006-07-08 20:42:15 +0200926
927 switch (rtn) {
928 case NEEDS_RETRY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 if (retry_cnt--)
930 goto retry_tur;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200931 /*FALLTHRU*/
932 case SUCCESS:
Alan Sterne47373e2005-03-30 15:05:45 -0500933 return 0;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200934 default:
935 return 1;
Alan Sterne47373e2005-03-30 15:05:45 -0500936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
939/**
Rob Landleyeb448202007-11-03 13:30:39 -0500940 * scsi_eh_abort_cmds - abort pending commands.
941 * @work_q: &list_head for pending commands.
942 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 *
944 * Decription:
945 * Try and see whether or not it makes sense to try and abort the
Rob Landleyeb448202007-11-03 13:30:39 -0500946 * running command. This only works out to be the case if we have one
947 * command that has timed out. If the command simply failed, it makes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 * no sense to try and abort the command, since as far as the shost
949 * adapter is concerned, it isn't running.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800950 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static int scsi_eh_abort_cmds(struct list_head *work_q,
952 struct list_head *done_q)
953{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200954 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 int rtn;
956
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200957 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200958 if (!(scmd->eh_eflags & SCSI_EH_CANCEL_CMD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 continue;
960 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting cmd:"
961 "0x%p\n", current->comm,
962 scmd));
963 rtn = scsi_try_to_abort_cmd(scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +0100964 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200965 scmd->eh_eflags &= ~SCSI_EH_CANCEL_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +0100967 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 !scsi_eh_tur(scmd)) {
969 scsi_eh_finish_cmd(scmd, done_q);
970 }
971
972 } else
973 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting"
974 " cmd failed:"
975 "0x%p\n",
976 current->comm,
977 scmd));
978 }
979
980 return list_empty(work_q);
981}
982
983/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 * scsi_eh_try_stu - Send START_UNIT to device.
Rob Landleyeb448202007-11-03 13:30:39 -0500985 * @scmd: &scsi_cmnd to send START_UNIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 *
987 * Return value:
988 * 0 - Device is ready. 1 - Device NOT ready.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800989 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990static int scsi_eh_try_stu(struct scsi_cmnd *scmd)
991{
992 static unsigned char stu_command[6] = {START_STOP, 0, 0, 0, 1, 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Christoph Hellwig631c2282006-07-08 20:42:15 +0200994 if (scmd->device->allow_restart) {
Brian Kinged773e62007-03-29 15:25:52 -0500995 int i, rtn = NEEDS_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Brian Kinged773e62007-03-29 15:25:52 -0500997 for (i = 0; rtn == NEEDS_RETRY && i < 2; i++)
James Bottomley9728c082008-11-30 10:32:26 -0600998 rtn = scsi_send_eh_cmnd(scmd, stu_command, 6, scmd->device->request_queue->rq_timeout, 0);
Brian Kinged773e62007-03-29 15:25:52 -0500999
Christoph Hellwig631c2282006-07-08 20:42:15 +02001000 if (rtn == SUCCESS)
1001 return 0;
1002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return 1;
1005}
1006
1007 /**
1008 * scsi_eh_stu - send START_UNIT if needed
Rob Landleyeb448202007-11-03 13:30:39 -05001009 * @shost: &scsi host being recovered.
1010 * @work_q: &list_head for pending commands.
1011 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 *
1013 * Notes:
1014 * If commands are failing due to not ready, initializing command required,
1015 * try revalidating the device, which will end up sending a start unit.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001016 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017static int scsi_eh_stu(struct Scsi_Host *shost,
1018 struct list_head *work_q,
1019 struct list_head *done_q)
1020{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001021 struct scsi_cmnd *scmd, *stu_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 struct scsi_device *sdev;
1023
1024 shost_for_each_device(sdev, shost) {
1025 stu_scmd = NULL;
1026 list_for_each_entry(scmd, work_q, eh_entry)
1027 if (scmd->device == sdev && SCSI_SENSE_VALID(scmd) &&
1028 scsi_check_sense(scmd) == FAILED ) {
1029 stu_scmd = scmd;
1030 break;
1031 }
1032
1033 if (!stu_scmd)
1034 continue;
1035
1036 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending START_UNIT to sdev:"
1037 " 0x%p\n", current->comm, sdev));
1038
1039 if (!scsi_eh_try_stu(stu_scmd)) {
1040 if (!scsi_device_online(sdev) ||
1041 !scsi_eh_tur(stu_scmd)) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001042 list_for_each_entry_safe(scmd, next,
1043 work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (scmd->device == sdev)
1045 scsi_eh_finish_cmd(scmd, done_q);
1046 }
1047 }
1048 } else {
1049 SCSI_LOG_ERROR_RECOVERY(3,
1050 printk("%s: START_UNIT failed to sdev:"
1051 " 0x%p\n", current->comm, sdev));
1052 }
1053 }
1054
1055 return list_empty(work_q);
1056}
1057
1058
1059/**
1060 * scsi_eh_bus_device_reset - send bdr if needed
1061 * @shost: scsi host being recovered.
Rob Landleyeb448202007-11-03 13:30:39 -05001062 * @work_q: &list_head for pending commands.
1063 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 *
1065 * Notes:
Rob Landleyeb448202007-11-03 13:30:39 -05001066 * Try a bus device reset. Still, look to see whether we have multiple
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 * devices that are jammed or not - if we have multiple devices, it
1068 * makes no sense to try bus_device_reset - we really would need to try
1069 * a bus_reset instead.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001070 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071static int scsi_eh_bus_device_reset(struct Scsi_Host *shost,
1072 struct list_head *work_q,
1073 struct list_head *done_q)
1074{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001075 struct scsi_cmnd *scmd, *bdr_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 struct scsi_device *sdev;
1077 int rtn;
1078
1079 shost_for_each_device(sdev, shost) {
1080 bdr_scmd = NULL;
1081 list_for_each_entry(scmd, work_q, eh_entry)
1082 if (scmd->device == sdev) {
1083 bdr_scmd = scmd;
1084 break;
1085 }
1086
1087 if (!bdr_scmd)
1088 continue;
1089
1090 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BDR sdev:"
1091 " 0x%p\n", current->comm,
1092 sdev));
1093 rtn = scsi_try_bus_device_reset(bdr_scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001094 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!scsi_device_online(sdev) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001096 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 !scsi_eh_tur(bdr_scmd)) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001098 list_for_each_entry_safe(scmd, next,
1099 work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 if (scmd->device == sdev)
1101 scsi_eh_finish_cmd(scmd,
1102 done_q);
1103 }
1104 }
1105 } else {
1106 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BDR"
1107 " failed sdev:"
1108 "0x%p\n",
1109 current->comm,
1110 sdev));
1111 }
1112 }
1113
1114 return list_empty(work_q);
1115}
1116
1117/**
Mike Christie30bd7df2008-02-29 18:25:19 -06001118 * scsi_eh_target_reset - send target reset if needed
1119 * @shost: scsi host being recovered.
1120 * @work_q: &list_head for pending commands.
1121 * @done_q: &list_head for processed commands.
1122 *
1123 * Notes:
1124 * Try a target reset.
1125 */
1126static int scsi_eh_target_reset(struct Scsi_Host *shost,
1127 struct list_head *work_q,
1128 struct list_head *done_q)
1129{
1130 struct scsi_cmnd *scmd, *tgtr_scmd, *next;
James Bottomleyc82dc882008-09-12 16:46:51 -05001131 unsigned int id = 0;
Mike Christie30bd7df2008-02-29 18:25:19 -06001132 int rtn;
1133
James Bottomleyc82dc882008-09-12 16:46:51 -05001134 do {
Mike Christie30bd7df2008-02-29 18:25:19 -06001135 tgtr_scmd = NULL;
1136 list_for_each_entry(scmd, work_q, eh_entry) {
1137 if (id == scmd_id(scmd)) {
1138 tgtr_scmd = scmd;
1139 break;
1140 }
1141 }
James Bottomleyc82dc882008-09-12 16:46:51 -05001142 if (!tgtr_scmd) {
1143 /* not one exactly equal; find the next highest */
1144 list_for_each_entry(scmd, work_q, eh_entry) {
1145 if (scmd_id(scmd) > id &&
1146 (!tgtr_scmd ||
1147 scmd_id(tgtr_scmd) > scmd_id(scmd)))
1148 tgtr_scmd = scmd;
1149 }
1150 }
Mike Christie30bd7df2008-02-29 18:25:19 -06001151 if (!tgtr_scmd)
James Bottomleyc82dc882008-09-12 16:46:51 -05001152 /* no more commands, that's it */
1153 break;
Mike Christie30bd7df2008-02-29 18:25:19 -06001154
1155 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending target reset "
1156 "to target %d\n",
1157 current->comm, id));
1158 rtn = scsi_try_target_reset(tgtr_scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001159 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Mike Christie30bd7df2008-02-29 18:25:19 -06001160 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1161 if (id == scmd_id(scmd))
1162 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001163 rtn == FAST_IO_FAIL ||
Mike Christie30bd7df2008-02-29 18:25:19 -06001164 !scsi_eh_tur(tgtr_scmd))
1165 scsi_eh_finish_cmd(scmd,
1166 done_q);
1167 }
1168 } else
1169 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Target reset"
1170 " failed target: "
1171 "%d\n",
1172 current->comm, id));
James Bottomleyc82dc882008-09-12 16:46:51 -05001173 id++;
1174 } while(id != 0);
Mike Christie30bd7df2008-02-29 18:25:19 -06001175
1176 return list_empty(work_q);
1177}
1178
1179/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 * scsi_eh_bus_reset - send a bus reset
Rob Landleyeb448202007-11-03 13:30:39 -05001181 * @shost: &scsi host being recovered.
1182 * @work_q: &list_head for pending commands.
1183 * @done_q: &list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185static int scsi_eh_bus_reset(struct Scsi_Host *shost,
1186 struct list_head *work_q,
1187 struct list_head *done_q)
1188{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001189 struct scsi_cmnd *scmd, *chan_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 unsigned int channel;
1191 int rtn;
1192
1193 /*
1194 * we really want to loop over the various channels, and do this on
1195 * a channel by channel basis. we should also check to see if any
1196 * of the failed commands are on soft_reset devices, and if so, skip
1197 * the reset.
1198 */
1199
1200 for (channel = 0; channel <= shost->max_channel; channel++) {
1201 chan_scmd = NULL;
1202 list_for_each_entry(scmd, work_q, eh_entry) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001203 if (channel == scmd_channel(scmd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 chan_scmd = scmd;
1205 break;
1206 /*
1207 * FIXME add back in some support for
1208 * soft_reset devices.
1209 */
1210 }
1211 }
1212
1213 if (!chan_scmd)
1214 continue;
1215 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BRST chan:"
1216 " %d\n", current->comm,
1217 channel));
1218 rtn = scsi_try_bus_reset(chan_scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001219 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001220 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001221 if (channel == scmd_channel(scmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001223 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 !scsi_eh_tur(scmd))
1225 scsi_eh_finish_cmd(scmd,
1226 done_q);
1227 }
1228 } else {
1229 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BRST"
1230 " failed chan: %d\n",
1231 current->comm,
1232 channel));
1233 }
1234 }
1235 return list_empty(work_q);
1236}
1237
1238/**
1239 * scsi_eh_host_reset - send a host reset
1240 * @work_q: list_head for processed commands.
1241 * @done_q: list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001242 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243static int scsi_eh_host_reset(struct list_head *work_q,
1244 struct list_head *done_q)
1245{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001246 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 int rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if (!list_empty(work_q)) {
1250 scmd = list_entry(work_q->next,
1251 struct scsi_cmnd, eh_entry);
1252
1253 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending HRST\n"
1254 , current->comm));
1255
1256 rtn = scsi_try_host_reset(scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001257 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001258 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001260 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 (!scsi_eh_try_stu(scmd) && !scsi_eh_tur(scmd)) ||
1262 !scsi_eh_tur(scmd))
1263 scsi_eh_finish_cmd(scmd, done_q);
1264 }
1265 } else {
1266 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: HRST"
1267 " failed\n",
1268 current->comm));
1269 }
1270 }
1271 return list_empty(work_q);
1272}
1273
1274/**
1275 * scsi_eh_offline_sdevs - offline scsi devices that fail to recover
1276 * @work_q: list_head for processed commands.
1277 * @done_q: list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279static void scsi_eh_offline_sdevs(struct list_head *work_q,
1280 struct list_head *done_q)
1281{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001282 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001284 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Matthew Wilcox31765d72007-08-17 11:02:10 -06001285 sdev_printk(KERN_INFO, scmd->device, "Device offlined - "
1286 "not ready after error recovery\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 scsi_device_set_state(scmd->device, SDEV_OFFLINE);
Christoph Hellwig3111b0d2005-06-19 13:43:26 +02001288 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /*
1290 * FIXME: Handle lost cmds.
1291 */
1292 }
1293 scsi_eh_finish_cmd(scmd, done_q);
1294 }
1295 return;
1296}
1297
1298/**
Mike Christie4a274462008-08-19 18:45:31 -05001299 * scsi_noretry_cmd - determinte if command should be failed fast
1300 * @scmd: SCSI cmd to examine.
1301 */
1302int scsi_noretry_cmd(struct scsi_cmnd *scmd)
1303{
1304 switch (host_byte(scmd->result)) {
1305 case DID_OK:
1306 break;
1307 case DID_BUS_BUSY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001308 return (scmd->request->cmd_flags & REQ_FAILFAST_TRANSPORT);
Mike Christie4a274462008-08-19 18:45:31 -05001309 case DID_PARITY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001310 return (scmd->request->cmd_flags & REQ_FAILFAST_DEV);
Mike Christie4a274462008-08-19 18:45:31 -05001311 case DID_ERROR:
1312 if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
1313 status_byte(scmd->result) == RESERVATION_CONFLICT)
1314 return 0;
1315 /* fall through */
1316 case DID_SOFT_ERROR:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001317 return (scmd->request->cmd_flags & REQ_FAILFAST_DRIVER);
Mike Christie4a274462008-08-19 18:45:31 -05001318 }
1319
1320 switch (status_byte(scmd->result)) {
1321 case CHECK_CONDITION:
1322 /*
1323 * assume caller has checked sense and determinted
1324 * the check condition was retryable.
1325 */
FUJITA Tomonorie96f6ab2010-07-09 09:38:26 +09001326 if (scmd->request->cmd_flags & REQ_FAILFAST_DEV ||
1327 scmd->request->cmd_type == REQ_TYPE_BLOCK_PC)
1328 return 1;
Mike Christie4a274462008-08-19 18:45:31 -05001329 }
1330
1331 return 0;
1332}
1333
1334/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 * scsi_decide_disposition - Disposition a cmd on return from LLD.
1336 * @scmd: SCSI cmd to examine.
1337 *
1338 * Notes:
1339 * This is *only* called when we are examining the status after sending
1340 * out the actual data command. any commands that are queued for error
1341 * recovery (e.g. test_unit_ready) do *not* come through here.
1342 *
1343 * When this routine returns failed, it means the error handler thread
1344 * is woken. In cases where the error code indicates an error that
1345 * doesn't require the error handler read (i.e. we don't need to
1346 * abort/reset), this function should return SUCCESS.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001347 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348int scsi_decide_disposition(struct scsi_cmnd *scmd)
1349{
1350 int rtn;
1351
1352 /*
1353 * if the device is offline, then we clearly just pass the result back
1354 * up to the top level.
1355 */
1356 if (!scsi_device_online(scmd->device)) {
1357 SCSI_LOG_ERROR_RECOVERY(5, printk("%s: device offline - report"
1358 " as SUCCESS\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001359 __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return SUCCESS;
1361 }
1362
1363 /*
1364 * first check the host byte, to see if there is anything in there
1365 * that would indicate what we need to do.
1366 */
1367 switch (host_byte(scmd->result)) {
1368 case DID_PASSTHROUGH:
1369 /*
1370 * no matter what, pass this through to the upper layer.
1371 * nuke this special code so that it looks like we are saying
1372 * did_ok.
1373 */
1374 scmd->result &= 0xff00ffff;
1375 return SUCCESS;
1376 case DID_OK:
1377 /*
1378 * looks good. drop through, and check the next byte.
1379 */
1380 break;
1381 case DID_NO_CONNECT:
1382 case DID_BAD_TARGET:
1383 case DID_ABORT:
1384 /*
1385 * note - this means that we just report the status back
1386 * to the top level driver, not that we actually think
1387 * that it indicates SUCCESS.
1388 */
1389 return SUCCESS;
1390 /*
1391 * when the low level driver returns did_soft_error,
1392 * it is responsible for keeping an internal retry counter
1393 * in order to avoid endless loops (db)
1394 *
1395 * actually this is a bug in this function here. we should
1396 * be mindful of the maximum number of retries specified
1397 * and not get stuck in a loop.
1398 */
1399 case DID_SOFT_ERROR:
1400 goto maybe_retry;
1401 case DID_IMM_RETRY:
1402 return NEEDS_RETRY;
1403
bf341912005-04-12 17:49:09 -05001404 case DID_REQUEUE:
1405 return ADD_TO_MLQUEUE;
Mike Christiea4dfaa62008-08-19 18:45:25 -05001406 case DID_TRANSPORT_DISRUPTED:
1407 /*
1408 * LLD/transport was disrupted during processing of the IO.
1409 * The transport class is now blocked/blocking,
1410 * and the transport will decide what to do with the IO
Mike Christie939c2282008-11-04 19:47:19 -06001411 * based on its timers and recovery capablilities if
1412 * there are enough retries.
Mike Christiea4dfaa62008-08-19 18:45:25 -05001413 */
Mike Christie939c2282008-11-04 19:47:19 -06001414 goto maybe_retry;
Mike Christiea4dfaa62008-08-19 18:45:25 -05001415 case DID_TRANSPORT_FAILFAST:
1416 /*
1417 * The transport decided to failfast the IO (most likely
1418 * the fast io fail tmo fired), so send IO directly upwards.
1419 */
1420 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 case DID_ERROR:
1422 if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
1423 status_byte(scmd->result) == RESERVATION_CONFLICT)
1424 /*
1425 * execute reservation conflict processing code
1426 * lower down
1427 */
1428 break;
1429 /* fallthrough */
1430
1431 case DID_BUS_BUSY:
1432 case DID_PARITY:
1433 goto maybe_retry;
1434 case DID_TIME_OUT:
1435 /*
1436 * when we scan the bus, we get timeout messages for
1437 * these commands if there is no device available.
1438 * other hosts report did_no_connect for the same thing.
1439 */
1440 if ((scmd->cmnd[0] == TEST_UNIT_READY ||
1441 scmd->cmnd[0] == INQUIRY)) {
1442 return SUCCESS;
1443 } else {
1444 return FAILED;
1445 }
1446 case DID_RESET:
1447 return SUCCESS;
1448 default:
1449 return FAILED;
1450 }
1451
1452 /*
1453 * next, check the message byte.
1454 */
1455 if (msg_byte(scmd->result) != COMMAND_COMPLETE)
1456 return FAILED;
1457
1458 /*
1459 * check the status byte to see if this indicates anything special.
1460 */
1461 switch (status_byte(scmd->result)) {
1462 case QUEUE_FULL:
Mike Christie42a6a912009-10-15 17:46:44 -07001463 scsi_handle_queue_full(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /*
1465 * the case of trying to send too many commands to a
1466 * tagged queueing device.
1467 */
1468 case BUSY:
1469 /*
1470 * device can't talk to us at the moment. Should only
1471 * occur (SAM-3) when the task queue is empty, so will cause
1472 * the empty queue handling to trigger a stall in the
1473 * device.
1474 */
1475 return ADD_TO_MLQUEUE;
1476 case GOOD:
Vasu Dev4a840672009-10-22 15:46:33 -07001477 scsi_handle_queue_ramp_up(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 case COMMAND_TERMINATED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 return SUCCESS;
Vladislav Bolkhovitina9b589d2008-11-06 13:57:52 +03001480 case TASK_ABORTED:
1481 goto maybe_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 case CHECK_CONDITION:
1483 rtn = scsi_check_sense(scmd);
1484 if (rtn == NEEDS_RETRY)
1485 goto maybe_retry;
1486 /* if rtn == FAILED, we have no sense information;
1487 * returning FAILED will wake the error handler thread
1488 * to collect the sense and redo the decide
1489 * disposition */
1490 return rtn;
1491 case CONDITION_GOOD:
1492 case INTERMEDIATE_GOOD:
1493 case INTERMEDIATE_C_GOOD:
1494 case ACA_ACTIVE:
1495 /*
1496 * who knows? FIXME(eric)
1497 */
1498 return SUCCESS;
1499
1500 case RESERVATION_CONFLICT:
James Bottomley9ccfc752005-10-02 11:45:08 -05001501 sdev_printk(KERN_INFO, scmd->device,
1502 "reservation conflict\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return SUCCESS; /* causes immediate i/o error */
1504 default:
1505 return FAILED;
1506 }
1507 return FAILED;
1508
1509 maybe_retry:
1510
1511 /* we requeue for retry because the error was retryable, and
1512 * the request was not marked fast fail. Note that above,
1513 * even if the request is marked fast fail, we still requeue
1514 * for queue congestion conditions (QUEUE_FULL or BUSY) */
Brian King8884efa2006-02-24 17:10:04 -06001515 if ((++scmd->retries) <= scmd->allowed
Mike Christie4a274462008-08-19 18:45:31 -05001516 && !scsi_noretry_cmd(scmd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return NEEDS_RETRY;
1518 } else {
1519 /*
1520 * no more retries - report this one back to upper level.
1521 */
1522 return SUCCESS;
1523 }
1524}
1525
FUJITA Tomonorif0787272008-12-14 01:23:45 +09001526static void eh_lock_door_done(struct request *req, int uptodate)
1527{
1528 __blk_put_request(req->q, req);
1529}
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 * scsi_eh_lock_door - Prevent medium removal for the specified device
1533 * @sdev: SCSI device to prevent medium removal
1534 *
1535 * Locking:
James Bottomley91bc31f2009-05-17 09:30:48 -05001536 * We must be called from process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
1538 * Notes:
1539 * We queue up an asynchronous "ALLOW MEDIUM REMOVAL" request on the
1540 * head of the devices request queue, and continue.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542static void scsi_eh_lock_door(struct scsi_device *sdev)
1543{
FUJITA Tomonorif0787272008-12-14 01:23:45 +09001544 struct request *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
James Bottomley91bc31f2009-05-17 09:30:48 -05001546 /*
1547 * blk_get_request with GFP_KERNEL (__GFP_WAIT) sleeps until a
1548 * request becomes available
1549 */
FUJITA Tomonorif0787272008-12-14 01:23:45 +09001550 req = blk_get_request(sdev->request_queue, READ, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
FUJITA Tomonorif0787272008-12-14 01:23:45 +09001552 req->cmd[0] = ALLOW_MEDIUM_REMOVAL;
1553 req->cmd[1] = 0;
1554 req->cmd[2] = 0;
1555 req->cmd[3] = 0;
1556 req->cmd[4] = SCSI_REMOVAL_PREVENT;
1557 req->cmd[5] = 0;
1558
1559 req->cmd_len = COMMAND_SIZE(req->cmd[0]);
1560
1561 req->cmd_type = REQ_TYPE_BLOCK_PC;
1562 req->cmd_flags |= REQ_QUIET;
1563 req->timeout = 10 * HZ;
1564 req->retries = 5;
1565
1566 blk_execute_rq_nowait(req->q, NULL, req, 1, eh_lock_door_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567}
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569/**
1570 * scsi_restart_operations - restart io operations to the specified host.
1571 * @shost: Host we are restarting.
1572 *
1573 * Notes:
1574 * When we entered the error handler, we blocked all further i/o to
1575 * this device. we need to 'reverse' this process.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001576 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577static void scsi_restart_operations(struct Scsi_Host *shost)
1578{
1579 struct scsi_device *sdev;
James Bottomley939647e2005-09-18 15:05:20 -05001580 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 /*
1583 * If the door was locked, we need to insert a door lock request
1584 * onto the head of the SCSI request queue for the device. There
1585 * is no point trying to lock the door of an off-line device.
1586 */
1587 shost_for_each_device(sdev, shost) {
1588 if (scsi_device_online(sdev) && sdev->locked)
1589 scsi_eh_lock_door(sdev);
1590 }
1591
1592 /*
1593 * next free up anything directly waiting upon the host. this
1594 * will be requests for character device operations, and also for
1595 * ioctls to queued block devices.
1596 */
1597 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: waking up host to restart\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001598 __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
James Bottomley939647e2005-09-18 15:05:20 -05001600 spin_lock_irqsave(shost->host_lock, flags);
1601 if (scsi_host_set_state(shost, SHOST_RUNNING))
1602 if (scsi_host_set_state(shost, SHOST_CANCEL))
1603 BUG_ON(scsi_host_set_state(shost, SHOST_DEL));
1604 spin_unlock_irqrestore(shost->host_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 wake_up(&shost->host_wait);
1607
1608 /*
1609 * finally we need to re-initiate requests that may be pending. we will
1610 * have had everything blocked while error handling is taking place, and
1611 * now that error recovery is done, we will need to ensure that these
1612 * requests are started.
1613 */
1614 scsi_run_host_queues(shost);
1615}
1616
1617/**
1618 * scsi_eh_ready_devs - check device ready state and recover if not.
1619 * @shost: host to be recovered.
Rob Landleyeb448202007-11-03 13:30:39 -05001620 * @work_q: &list_head for pending commands.
1621 * @done_q: &list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001622 */
Darrick J. Wongdca84e42007-01-26 14:08:49 -08001623void scsi_eh_ready_devs(struct Scsi_Host *shost,
1624 struct list_head *work_q,
1625 struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
1627 if (!scsi_eh_stu(shost, work_q, done_q))
1628 if (!scsi_eh_bus_device_reset(shost, work_q, done_q))
Mike Christie30bd7df2008-02-29 18:25:19 -06001629 if (!scsi_eh_target_reset(shost, work_q, done_q))
1630 if (!scsi_eh_bus_reset(shost, work_q, done_q))
1631 if (!scsi_eh_host_reset(work_q, done_q))
1632 scsi_eh_offline_sdevs(work_q,
1633 done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
Darrick J. Wongdca84e42007-01-26 14:08:49 -08001635EXPORT_SYMBOL_GPL(scsi_eh_ready_devs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637/**
1638 * scsi_eh_flush_done_q - finish processed commands or retry them.
1639 * @done_q: list_head of processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001640 */
Tejun Heo041c5fc2006-01-23 13:09:36 +09001641void scsi_eh_flush_done_q(struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001643 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001645 list_for_each_entry_safe(scmd, next, done_q, eh_entry) {
1646 list_del_init(&scmd->eh_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 if (scsi_device_online(scmd->device) &&
Mike Christie4a274462008-08-19 18:45:31 -05001648 !scsi_noretry_cmd(scmd) &&
Brian King8884efa2006-02-24 17:10:04 -06001649 (++scmd->retries <= scmd->allowed)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush"
1651 " retry cmd: %p\n",
1652 current->comm,
1653 scmd));
1654 scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY);
1655 } else {
Patrick Mansfield 793698c2005-05-16 17:42:15 -07001656 /*
1657 * If just we got sense for the device (called
1658 * scsi_eh_get_sense), scmd->result is already
1659 * set, do not set DRIVER_TIMEOUT.
1660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (!scmd->result)
1662 scmd->result |= (DRIVER_TIMEOUT << 24);
1663 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush finish"
1664 " cmd: %p\n",
1665 current->comm, scmd));
1666 scsi_finish_command(scmd);
1667 }
1668 }
1669}
Tejun Heo041c5fc2006-01-23 13:09:36 +09001670EXPORT_SYMBOL(scsi_eh_flush_done_q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672/**
1673 * scsi_unjam_host - Attempt to fix a host which has a cmd that failed.
1674 * @shost: Host to unjam.
1675 *
1676 * Notes:
1677 * When we come in here, we *know* that all commands on the bus have
1678 * either completed, failed or timed out. we also know that no further
1679 * commands are being sent to the host, so things are relatively quiet
1680 * and we have freedom to fiddle with things as we wish.
1681 *
1682 * This is only the *default* implementation. it is possible for
1683 * individual drivers to supply their own version of this function, and
1684 * if the maintainer wishes to do this, it is strongly suggested that
1685 * this function be taken as a template and modified. this function
1686 * was designed to correctly handle problems for about 95% of the
1687 * different cases out there, and it should always provide at least a
1688 * reasonable amount of error recovery.
1689 *
1690 * Any command marked 'failed' or 'timeout' must eventually have
1691 * scsi_finish_cmd() called for it. we do all of the retry stuff
1692 * here, so when we restart the host after we return it should have an
1693 * empty queue.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001694 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695static void scsi_unjam_host(struct Scsi_Host *shost)
1696{
1697 unsigned long flags;
1698 LIST_HEAD(eh_work_q);
1699 LIST_HEAD(eh_done_q);
1700
1701 spin_lock_irqsave(shost->host_lock, flags);
1702 list_splice_init(&shost->eh_cmd_q, &eh_work_q);
1703 spin_unlock_irqrestore(shost->host_lock, flags);
1704
1705 SCSI_LOG_ERROR_RECOVERY(1, scsi_eh_prt_fail_stats(shost, &eh_work_q));
1706
1707 if (!scsi_eh_get_sense(&eh_work_q, &eh_done_q))
1708 if (!scsi_eh_abort_cmds(&eh_work_q, &eh_done_q))
1709 scsi_eh_ready_devs(shost, &eh_work_q, &eh_done_q);
1710
1711 scsi_eh_flush_done_q(&eh_done_q);
1712}
1713
1714/**
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001715 * scsi_error_handler - SCSI error handler thread
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 * @data: Host for which we are running.
1717 *
1718 * Notes:
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001719 * This is the main error handling loop. This is run as a kernel thread
1720 * for every SCSI host and handles all error handling activity.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001721 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722int scsi_error_handler(void *data)
1723{
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001724 struct Scsi_Host *shost = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /*
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001727 * We use TASK_INTERRUPTIBLE so that the thread is not
1728 * counted against the load average as a running process.
1729 * We never actually get interrupted because kthread_run
Frederik Schwarzerc03264a2008-12-23 00:54:00 +01001730 * disables signal delivery for the created thread.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 */
James Bottomley3ed7a472005-09-19 09:50:04 -05001732 set_current_state(TASK_INTERRUPTIBLE);
1733 while (!kthread_should_stop()) {
Tejun Heoee7863b2006-05-15 20:57:20 +09001734 if ((shost->host_failed == 0 && shost->host_eh_scheduled == 0) ||
James Bottomley3ed7a472005-09-19 09:50:04 -05001735 shost->host_failed != shost->host_busy) {
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001736 SCSI_LOG_ERROR_RECOVERY(1,
1737 printk("Error handler scsi_eh_%d sleeping\n",
1738 shost->host_no));
James Bottomley3ed7a472005-09-19 09:50:04 -05001739 schedule();
1740 set_current_state(TASK_INTERRUPTIBLE);
1741 continue;
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
James Bottomley3ed7a472005-09-19 09:50:04 -05001744 __set_current_state(TASK_RUNNING);
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001745 SCSI_LOG_ERROR_RECOVERY(1,
1746 printk("Error handler scsi_eh_%d waking up\n",
1747 shost->host_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /*
1750 * We have a host that is failing for some reason. Figure out
1751 * what we need to do to get it up and online again (if we can).
1752 * If we fail, we end up taking the thing offline.
1753 */
Christoph Hellwig9227c332006-04-01 19:21:04 +02001754 if (shost->transportt->eh_strategy_handler)
1755 shost->transportt->eh_strategy_handler(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 else
1757 scsi_unjam_host(shost);
1758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 /*
1760 * Note - if the above fails completely, the action is to take
1761 * individual devices offline and flush the queue of any
1762 * outstanding requests that may have been pending. When we
1763 * restart, we restart any I/O to any other devices on the bus
1764 * which are still online.
1765 */
1766 scsi_restart_operations(shost);
James Bottomley3ed7a472005-09-19 09:50:04 -05001767 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
Steven Rostedt461a0ff2005-10-19 08:22:13 -04001769 __set_current_state(TASK_RUNNING);
1770
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001771 SCSI_LOG_ERROR_RECOVERY(1,
1772 printk("Error handler scsi_eh_%d exiting\n", shost->host_no));
James Bottomley3ed7a472005-09-19 09:50:04 -05001773 shost->ehandler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return 0;
1775}
1776
1777/*
1778 * Function: scsi_report_bus_reset()
1779 *
1780 * Purpose: Utility function used by low-level drivers to report that
1781 * they have observed a bus reset on the bus being handled.
1782 *
1783 * Arguments: shost - Host in question
1784 * channel - channel on which reset was observed.
1785 *
1786 * Returns: Nothing
1787 *
1788 * Lock status: Host lock must be held.
1789 *
1790 * Notes: This only needs to be called if the reset is one which
1791 * originates from an unknown location. Resets originated
1792 * by the mid-level itself don't need to call this, but there
1793 * should be no harm.
1794 *
1795 * The main purpose of this is to make sure that a CHECK_CONDITION
1796 * is properly treated.
1797 */
1798void scsi_report_bus_reset(struct Scsi_Host *shost, int channel)
1799{
1800 struct scsi_device *sdev;
1801
1802 __shost_for_each_device(sdev, shost) {
Mike Christie30bd7df2008-02-29 18:25:19 -06001803 if (channel == sdev_channel(sdev))
1804 __scsi_report_device_reset(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806}
1807EXPORT_SYMBOL(scsi_report_bus_reset);
1808
1809/*
1810 * Function: scsi_report_device_reset()
1811 *
1812 * Purpose: Utility function used by low-level drivers to report that
1813 * they have observed a device reset on the device being handled.
1814 *
1815 * Arguments: shost - Host in question
1816 * channel - channel on which reset was observed
1817 * target - target on which reset was observed
1818 *
1819 * Returns: Nothing
1820 *
1821 * Lock status: Host lock must be held
1822 *
1823 * Notes: This only needs to be called if the reset is one which
1824 * originates from an unknown location. Resets originated
1825 * by the mid-level itself don't need to call this, but there
1826 * should be no harm.
1827 *
1828 * The main purpose of this is to make sure that a CHECK_CONDITION
1829 * is properly treated.
1830 */
1831void scsi_report_device_reset(struct Scsi_Host *shost, int channel, int target)
1832{
1833 struct scsi_device *sdev;
1834
1835 __shost_for_each_device(sdev, shost) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001836 if (channel == sdev_channel(sdev) &&
Mike Christie30bd7df2008-02-29 18:25:19 -06001837 target == sdev_id(sdev))
1838 __scsi_report_device_reset(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
1840}
1841EXPORT_SYMBOL(scsi_report_device_reset);
1842
1843static void
1844scsi_reset_provider_done_command(struct scsi_cmnd *scmd)
1845{
1846}
1847
1848/*
1849 * Function: scsi_reset_provider
1850 *
1851 * Purpose: Send requested reset to a bus or device at any phase.
1852 *
1853 * Arguments: device - device to send reset to
1854 * flag - reset type (see scsi.h)
1855 *
1856 * Returns: SUCCESS/FAILURE.
1857 *
1858 * Notes: This is used by the SCSI Generic driver to provide
1859 * Bus/Device reset capability.
1860 */
1861int
1862scsi_reset_provider(struct scsi_device *dev, int flag)
1863{
1864 struct scsi_cmnd *scmd = scsi_get_command(dev, GFP_KERNEL);
James Smartd7a1bb02006-03-08 14:50:12 -05001865 struct Scsi_Host *shost = dev->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 struct request req;
James Smartd7a1bb02006-03-08 14:50:12 -05001867 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 int rtn;
1869
FUJITA Tomonori4f54eec2008-04-29 09:54:37 +02001870 blk_rq_init(NULL, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 scmd->request = &req;
Christoph Hellwigb4edcbc2005-06-19 13:40:52 +02001872
Boaz Harrosh64a87b22008-04-30 11:19:47 +03001873 scmd->cmnd = req.cmd;
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 scmd->scsi_done = scsi_reset_provider_done_command;
Boaz Harrosh30b0c372007-12-13 13:47:40 +02001876 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 scmd->cmd_len = 0;
1879
1880 scmd->sc_data_direction = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
James Smartd7a1bb02006-03-08 14:50:12 -05001882 spin_lock_irqsave(shost->host_lock, flags);
1883 shost->tmf_in_progress = 1;
1884 spin_unlock_irqrestore(shost->host_lock, flags);
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 switch (flag) {
1887 case SCSI_TRY_RESET_DEVICE:
1888 rtn = scsi_try_bus_device_reset(scmd);
1889 if (rtn == SUCCESS)
1890 break;
1891 /* FALLTHROUGH */
Mike Christie30bd7df2008-02-29 18:25:19 -06001892 case SCSI_TRY_RESET_TARGET:
1893 rtn = scsi_try_target_reset(scmd);
1894 if (rtn == SUCCESS)
1895 break;
1896 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 case SCSI_TRY_RESET_BUS:
1898 rtn = scsi_try_bus_reset(scmd);
1899 if (rtn == SUCCESS)
1900 break;
1901 /* FALLTHROUGH */
1902 case SCSI_TRY_RESET_HOST:
1903 rtn = scsi_try_host_reset(scmd);
1904 break;
1905 default:
1906 rtn = FAILED;
1907 }
1908
James Smartd7a1bb02006-03-08 14:50:12 -05001909 spin_lock_irqsave(shost->host_lock, flags);
1910 shost->tmf_in_progress = 0;
1911 spin_unlock_irqrestore(shost->host_lock, flags);
1912
1913 /*
1914 * be sure to wake up anyone who was sleeping or had their queue
1915 * suspended while we performed the TMF.
1916 */
1917 SCSI_LOG_ERROR_RECOVERY(3,
1918 printk("%s: waking up host to restart after TMF\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001919 __func__));
James Smartd7a1bb02006-03-08 14:50:12 -05001920
1921 wake_up(&shost->host_wait);
1922
1923 scsi_run_host_queues(shost);
1924
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 scsi_next_command(scmd);
1926 return rtn;
1927}
1928EXPORT_SYMBOL(scsi_reset_provider);
1929
1930/**
1931 * scsi_normalize_sense - normalize main elements from either fixed or
1932 * descriptor sense data format into a common format.
1933 *
1934 * @sense_buffer: byte array containing sense data returned by device
1935 * @sb_len: number of valid bytes in sense_buffer
1936 * @sshdr: pointer to instance of structure that common
1937 * elements are written to.
1938 *
1939 * Notes:
1940 * The "main elements" from sense data are: response_code, sense_key,
1941 * asc, ascq and additional_length (only for descriptor format).
1942 *
1943 * Typically this function can be called after a device has
1944 * responded to a SCSI command with the CHECK_CONDITION status.
1945 *
1946 * Return value:
1947 * 1 if valid sense data information found, else 0;
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001948 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949int scsi_normalize_sense(const u8 *sense_buffer, int sb_len,
1950 struct scsi_sense_hdr *sshdr)
1951{
James Bottomley33aa6872005-08-28 11:31:14 -05001952 if (!sense_buffer || !sb_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return 0;
1954
1955 memset(sshdr, 0, sizeof(struct scsi_sense_hdr));
1956
1957 sshdr->response_code = (sense_buffer[0] & 0x7f);
James Bottomley33aa6872005-08-28 11:31:14 -05001958
1959 if (!scsi_sense_valid(sshdr))
1960 return 0;
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 if (sshdr->response_code >= 0x72) {
1963 /*
1964 * descriptor format
1965 */
1966 if (sb_len > 1)
1967 sshdr->sense_key = (sense_buffer[1] & 0xf);
1968 if (sb_len > 2)
1969 sshdr->asc = sense_buffer[2];
1970 if (sb_len > 3)
1971 sshdr->ascq = sense_buffer[3];
1972 if (sb_len > 7)
1973 sshdr->additional_length = sense_buffer[7];
1974 } else {
1975 /*
1976 * fixed format
1977 */
1978 if (sb_len > 2)
1979 sshdr->sense_key = (sense_buffer[2] & 0xf);
1980 if (sb_len > 7) {
1981 sb_len = (sb_len < (sense_buffer[7] + 8)) ?
1982 sb_len : (sense_buffer[7] + 8);
1983 if (sb_len > 12)
1984 sshdr->asc = sense_buffer[12];
1985 if (sb_len > 13)
1986 sshdr->ascq = sense_buffer[13];
1987 }
1988 }
1989
1990 return 1;
1991}
1992EXPORT_SYMBOL(scsi_normalize_sense);
1993
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994int scsi_command_normalize_sense(struct scsi_cmnd *cmd,
1995 struct scsi_sense_hdr *sshdr)
1996{
1997 return scsi_normalize_sense(cmd->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09001998 SCSI_SENSE_BUFFERSIZE, sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999}
2000EXPORT_SYMBOL(scsi_command_normalize_sense);
2001
2002/**
Rob Landleyeb448202007-11-03 13:30:39 -05002003 * scsi_sense_desc_find - search for a given descriptor type in descriptor sense data format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 * @sense_buffer: byte array of descriptor format sense data
2005 * @sb_len: number of valid bytes in sense_buffer
2006 * @desc_type: value of descriptor type to find
2007 * (e.g. 0 -> information)
2008 *
2009 * Notes:
2010 * only valid when sense data is in descriptor format
2011 *
2012 * Return value:
2013 * pointer to start of (first) descriptor if found else NULL
Randy Dunlapdc8875e2007-11-15 15:42:30 -08002014 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015const u8 * scsi_sense_desc_find(const u8 * sense_buffer, int sb_len,
2016 int desc_type)
2017{
2018 int add_sen_len, add_len, desc_len, k;
2019 const u8 * descp;
2020
2021 if ((sb_len < 8) || (0 == (add_sen_len = sense_buffer[7])))
2022 return NULL;
2023 if ((sense_buffer[0] < 0x72) || (sense_buffer[0] > 0x73))
2024 return NULL;
2025 add_sen_len = (add_sen_len < (sb_len - 8)) ?
2026 add_sen_len : (sb_len - 8);
2027 descp = &sense_buffer[8];
2028 for (desc_len = 0, k = 0; k < add_sen_len; k += desc_len) {
2029 descp += desc_len;
2030 add_len = (k < (add_sen_len - 1)) ? descp[1]: -1;
2031 desc_len = add_len + 2;
2032 if (descp[0] == desc_type)
2033 return descp;
2034 if (add_len < 0) // short descriptor ??
2035 break;
2036 }
2037 return NULL;
2038}
2039EXPORT_SYMBOL(scsi_sense_desc_find);
2040
2041/**
Rob Landleyeb448202007-11-03 13:30:39 -05002042 * scsi_get_sense_info_fld - get information field from sense data (either fixed or descriptor format)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 * @sense_buffer: byte array of sense data
2044 * @sb_len: number of valid bytes in sense_buffer
2045 * @info_out: pointer to 64 integer where 8 or 4 byte information
2046 * field will be placed if found.
2047 *
2048 * Return value:
2049 * 1 if information field found, 0 if not found.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08002050 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051int scsi_get_sense_info_fld(const u8 * sense_buffer, int sb_len,
2052 u64 * info_out)
2053{
2054 int j;
2055 const u8 * ucp;
2056 u64 ull;
2057
2058 if (sb_len < 7)
2059 return 0;
2060 switch (sense_buffer[0] & 0x7f) {
2061 case 0x70:
2062 case 0x71:
2063 if (sense_buffer[0] & 0x80) {
2064 *info_out = (sense_buffer[3] << 24) +
2065 (sense_buffer[4] << 16) +
2066 (sense_buffer[5] << 8) + sense_buffer[6];
2067 return 1;
2068 } else
2069 return 0;
2070 case 0x72:
2071 case 0x73:
2072 ucp = scsi_sense_desc_find(sense_buffer, sb_len,
2073 0 /* info desc */);
2074 if (ucp && (0xa == ucp[1])) {
2075 ull = 0;
2076 for (j = 0; j < 8; ++j) {
2077 if (j > 0)
2078 ull <<= 8;
2079 ull |= ucp[4 + j];
2080 }
2081 *info_out = ull;
2082 return 1;
2083 } else
2084 return 0;
2085 default:
2086 return 0;
2087 }
2088}
2089EXPORT_SYMBOL(scsi_get_sense_info_fld);
FUJITA Tomonori3bc6a262008-03-25 09:26:49 +09002090
2091/**
2092 * scsi_build_sense_buffer - build sense data in a buffer
2093 * @desc: Sense format (non zero == descriptor format,
2094 * 0 == fixed format)
2095 * @buf: Where to build sense data
2096 * @key: Sense key
2097 * @asc: Additional sense code
2098 * @ascq: Additional sense code qualifier
2099 *
2100 **/
2101void scsi_build_sense_buffer(int desc, u8 *buf, u8 key, u8 asc, u8 ascq)
2102{
2103 if (desc) {
2104 buf[0] = 0x72; /* descriptor, current */
2105 buf[1] = key;
2106 buf[2] = asc;
2107 buf[3] = ascq;
2108 buf[7] = 0;
2109 } else {
2110 buf[0] = 0x70; /* fixed, current */
2111 buf[2] = key;
2112 buf[7] = 0xa;
2113 buf[12] = asc;
2114 buf[13] = ascq;
2115 }
2116}
2117EXPORT_SYMBOL(scsi_build_sense_buffer);