blob: 633c2395a92a2c918cfd068d541f99063f9470f2 [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
Jesper Juhl0bf8c862011-03-21 20:47:31 +01006 * Leonard Zubkoff and David Miller at Linux Expo,
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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
Jesper Juhl0bf8c862011-03-21 20:47:31 +010013 * minor cleanups.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * 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 Bottomley3ed7a4702005-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 Bottomley3ed7a4702005-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;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100132 struct Scsi_Host *host = scmd->device->host;
James Bottomley6c5f8ce2007-03-16 17:44:41 -0500133
Kei Tokunagabf816232010-04-01 20:41:40 +0900134 trace_scsi_dispatch_cmd_timeout(scmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 scsi_log_completion(scmd, TIMEOUT_ERROR);
136
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100137 if (host->transportt->eh_timed_out)
138 rtn = host->transportt->eh_timed_out(scmd);
139 else if (host->hostt->eh_timed_out)
140 rtn = host->hostt->eh_timed_out(scmd);
James Bottomley6c5f8ce2007-03-16 17:44:41 -0500141
Christoph Hellwigfa990782008-11-05 15:03:15 +0100142 if (unlikely(rtn == BLK_EH_NOT_HANDLED &&
143 !scsi_eh_scmd_add(scmd, SCSI_EH_CANCEL_CMD))) {
James Bottomley939647e2005-09-18 15:05:20 -0500144 scmd->result |= DID_TIME_OUT << 16;
Christoph Hellwigfa990782008-11-05 15:03:15 +0100145 rtn = BLK_EH_HANDLED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
Jens Axboe242f9dc2008-09-14 05:55:09 -0700147
Christoph Hellwigfa990782008-11-05 15:03:15 +0100148 return rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151/**
152 * scsi_block_when_processing_errors - Prevent cmds from being queued.
153 * @sdev: Device on which we are performing recovery.
154 *
155 * Description:
156 * We block until the host is out of error recovery, and then check to
157 * see whether the host or the device is offline.
158 *
159 * Return value:
160 * 0 when dev was taken offline by error recovery. 1 OK to proceed.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162int scsi_block_when_processing_errors(struct scsi_device *sdev)
163{
164 int online;
165
James Bottomley939647e2005-09-18 15:05:20 -0500166 wait_event(sdev->host->host_wait, !scsi_host_in_recovery(sdev->host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 online = scsi_device_online(sdev);
169
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700170 SCSI_LOG_ERROR_RECOVERY(5, printk("%s: rtn: %d\n", __func__,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 online));
172
173 return online;
174}
175EXPORT_SYMBOL(scsi_block_when_processing_errors);
176
177#ifdef CONFIG_SCSI_LOGGING
178/**
179 * scsi_eh_prt_fail_stats - Log info on failures.
180 * @shost: scsi host being recovered.
181 * @work_q: Queue of scsi cmds to process.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800182 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183static inline void scsi_eh_prt_fail_stats(struct Scsi_Host *shost,
184 struct list_head *work_q)
185{
186 struct scsi_cmnd *scmd;
187 struct scsi_device *sdev;
188 int total_failures = 0;
189 int cmd_failed = 0;
190 int cmd_cancel = 0;
191 int devices_failed = 0;
192
193 shost_for_each_device(sdev, shost) {
194 list_for_each_entry(scmd, work_q, eh_entry) {
195 if (scmd->device == sdev) {
196 ++total_failures;
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200197 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 ++cmd_cancel;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100199 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 ++cmd_failed;
201 }
202 }
203
204 if (cmd_cancel || cmd_failed) {
205 SCSI_LOG_ERROR_RECOVERY(3,
James Bottomley9ccfc752005-10-02 11:45:08 -0500206 sdev_printk(KERN_INFO, sdev,
207 "%s: cmds failed: %d, cancel: %d\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700208 __func__, cmd_failed,
James Bottomley9ccfc752005-10-02 11:45:08 -0500209 cmd_cancel));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 cmd_cancel = 0;
211 cmd_failed = 0;
212 ++devices_failed;
213 }
214 }
215
216 SCSI_LOG_ERROR_RECOVERY(2, printk("Total of %d commands on %d"
217 " devices require eh work\n",
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100218 total_failures, devices_failed));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219}
220#endif
221
222/**
223 * scsi_check_sense - Examine scsi cmd sense
224 * @scmd: Cmd to have sense checked.
225 *
226 * Return value:
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100227 * SUCCESS or FAILED or NEEDS_RETRY or TARGET_ERROR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 *
229 * Notes:
230 * When a deferred error is detected the current command has
231 * not been executed and needs retrying.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800232 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233static int scsi_check_sense(struct scsi_cmnd *scmd)
234{
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700235 struct scsi_device *sdev = scmd->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct scsi_sense_hdr sshdr;
237
238 if (! scsi_command_normalize_sense(scmd, &sshdr))
239 return FAILED; /* no valid sense data */
240
241 if (scsi_sense_is_deferred(&sshdr))
242 return NEEDS_RETRY;
243
Chandra Seetharamana6a8d9f2008-05-01 14:49:46 -0700244 if (sdev->scsi_dh_data && sdev->scsi_dh_data->scsi_dh &&
245 sdev->scsi_dh_data->scsi_dh->check_sense) {
246 int rc;
247
248 rc = sdev->scsi_dh_data->scsi_dh->check_sense(sdev, &sshdr);
249 if (rc != SCSI_RETURN_NOT_HANDLED)
250 return rc;
251 /* handler does not care. Drop down to default handling */
252 }
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 /*
255 * Previous logic looked for FILEMARK, EOM or ILI which are
256 * mainly associated with tapes and returned SUCCESS.
257 */
258 if (sshdr.response_code == 0x70) {
259 /* fixed format */
260 if (scmd->sense_buffer[2] & 0xe0)
261 return SUCCESS;
262 } else {
263 /*
264 * descriptor format: look for "stream commands sense data
265 * descriptor" (see SSC-3). Assume single sense data
266 * descriptor. Ignore ILI from SBC-2 READ LONG and WRITE LONG.
267 */
268 if ((sshdr.additional_length > 3) &&
269 (scmd->sense_buffer[8] == 0x4) &&
270 (scmd->sense_buffer[11] & 0xe0))
271 return SUCCESS;
272 }
273
274 switch (sshdr.sense_key) {
275 case NO_SENSE:
276 return SUCCESS;
277 case RECOVERED_ERROR:
278 return /* soft_error */ SUCCESS;
279
280 case ABORTED_COMMAND:
Martin K. Petersen511e44f2008-07-17 04:28:33 -0400281 if (sshdr.asc == 0x10) /* DIF */
282 return SUCCESS;
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return NEEDS_RETRY;
285 case NOT_READY:
286 case UNIT_ATTENTION:
287 /*
288 * if we are expecting a cc/ua because of a bus reset that we
289 * performed, treat this just as a retry. otherwise this is
290 * information that we should pass up to the upper-level driver
291 * so that we can deal with it there.
292 */
293 if (scmd->device->expecting_cc_ua) {
294 scmd->device->expecting_cc_ua = 0;
295 return NEEDS_RETRY;
296 }
297 /*
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100298 * if the device is in the process of becoming ready, we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * should retry.
300 */
301 if ((sshdr.asc == 0x04) && (sshdr.ascq == 0x01))
302 return NEEDS_RETRY;
303 /*
304 * if the device is not started, we need to wake
305 * the error handler to start the motor
306 */
307 if (scmd->device->allow_restart &&
308 (sshdr.asc == 0x04) && (sshdr.ascq == 0x02))
309 return FAILED;
James Bottomley77a42292010-05-04 16:51:40 -0400310
Mike Christie6e499492010-04-25 07:03:57 -0500311 if (sshdr.asc == 0x3f && sshdr.ascq == 0x0e)
312 scmd_printk(KERN_WARNING, scmd,
313 "Warning! Received an indication that the "
314 "LUN assignments on this target have "
315 "changed. The Linux SCSI layer does not "
316 "automatically remap LUN assignments.\n");
317 else if (sshdr.asc == 0x3f)
318 scmd_printk(KERN_WARNING, scmd,
319 "Warning! Received an indication that the "
320 "operating parameters on this target have "
321 "changed. The Linux SCSI layer does not "
322 "automatically adjust these parameters.\n");
323
Christoph Hellwig02e031c2010-11-10 14:54:09 +0100324 /*
325 * Pass the UA upwards for a determination in the completion
326 * functions.
327 */
328 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100330 /* these are not supported */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 case COPY_ABORTED:
332 case VOLUME_OVERFLOW:
333 case MISCOMPARE:
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100334 case BLANK_CHECK:
335 case DATA_PROTECT:
336 return TARGET_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 case MEDIUM_ERROR:
Luben Tuikovfd1b4942006-11-29 19:45:23 -0800339 if (sshdr.asc == 0x11 || /* UNRECOVERED READ ERR */
340 sshdr.asc == 0x13 || /* AMNF DATA FIELD */
341 sshdr.asc == 0x14) { /* RECORD NOT FOUND */
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100342 return TARGET_ERROR;
Luben Tuikovfd1b4942006-11-29 19:45:23 -0800343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 return NEEDS_RETRY;
345
346 case HARDWARE_ERROR:
347 if (scmd->device->retry_hwerror)
Mike Andersonbb0003c2008-08-12 12:11:58 -0700348 return ADD_TO_MLQUEUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 else
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100350 return TARGET_ERROR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 case ILLEGAL_REQUEST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 default:
354 return SUCCESS;
355 }
356}
357
Vasu Dev4a840672009-10-22 15:46:33 -0700358static void scsi_handle_queue_ramp_up(struct scsi_device *sdev)
359{
360 struct scsi_host_template *sht = sdev->host->hostt;
361 struct scsi_device *tmp_sdev;
362
363 if (!sht->change_queue_depth ||
364 sdev->queue_depth >= sdev->max_queue_depth)
365 return;
366
367 if (time_before(jiffies,
368 sdev->last_queue_ramp_up + sdev->queue_ramp_up_period))
369 return;
370
371 if (time_before(jiffies,
372 sdev->last_queue_full_time + sdev->queue_ramp_up_period))
373 return;
374
375 /*
376 * Walk all devices of a target and do
377 * ramp up on them.
378 */
379 shost_for_each_device(tmp_sdev, sdev->host) {
380 if (tmp_sdev->channel != sdev->channel ||
381 tmp_sdev->id != sdev->id ||
382 tmp_sdev->queue_depth == sdev->max_queue_depth)
383 continue;
384 /*
385 * call back into LLD to increase queue_depth by one
386 * with ramp up reason code.
387 */
388 sht->change_queue_depth(tmp_sdev, tmp_sdev->queue_depth + 1,
389 SCSI_QDEPTH_RAMP_UP);
390 sdev->last_queue_ramp_up = jiffies;
391 }
392}
393
Mike Christie42a6a912009-10-15 17:46:44 -0700394static void scsi_handle_queue_full(struct scsi_device *sdev)
395{
396 struct scsi_host_template *sht = sdev->host->hostt;
397 struct scsi_device *tmp_sdev;
398
399 if (!sht->change_queue_depth)
400 return;
401
402 shost_for_each_device(tmp_sdev, sdev->host) {
403 if (tmp_sdev->channel != sdev->channel ||
404 tmp_sdev->id != sdev->id)
405 continue;
406 /*
407 * We do not know the number of commands that were at
408 * the device when we got the queue full so we start
409 * from the highest possible value and work our way down.
410 */
411 sht->change_queue_depth(tmp_sdev, tmp_sdev->queue_depth - 1,
412 SCSI_QDEPTH_QFULL);
413 }
414}
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/**
417 * scsi_eh_completed_normally - Disposition a eh cmd on return from LLD.
418 * @scmd: SCSI cmd to examine.
419 *
420 * Notes:
421 * This is *only* called when we are examining the status of commands
422 * queued during error recovery. the main difference here is that we
423 * don't allow for the possibility of retries here, and we are a lot
424 * more restrictive about what we consider acceptable.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426static int scsi_eh_completed_normally(struct scsi_cmnd *scmd)
427{
428 /*
429 * first check the host byte, to see if there is anything in there
430 * that would indicate what we need to do.
431 */
432 if (host_byte(scmd->result) == DID_RESET) {
433 /*
434 * rats. we are already in the error handler, so we now
435 * get to try and figure out what to do next. if the sense
436 * is valid, we have a pretty good idea of what to do.
437 * if not, we mark it as FAILED.
438 */
439 return scsi_check_sense(scmd);
440 }
441 if (host_byte(scmd->result) != DID_OK)
442 return FAILED;
443
444 /*
445 * next, check the message byte.
446 */
447 if (msg_byte(scmd->result) != COMMAND_COMPLETE)
448 return FAILED;
449
450 /*
451 * now, check the status byte to see if this indicates
452 * anything special.
453 */
454 switch (status_byte(scmd->result)) {
455 case GOOD:
Vasu Dev4a840672009-10-22 15:46:33 -0700456 scsi_handle_queue_ramp_up(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 case COMMAND_TERMINATED:
458 return SUCCESS;
459 case CHECK_CONDITION:
460 return scsi_check_sense(scmd);
461 case CONDITION_GOOD:
462 case INTERMEDIATE_GOOD:
463 case INTERMEDIATE_C_GOOD:
464 /*
465 * who knows? FIXME(eric)
466 */
467 return SUCCESS;
Michael Reed5f91bb02009-08-10 11:59:28 -0500468 case RESERVATION_CONFLICT:
James Bottomley67110df2010-08-06 15:17:24 -0500469 if (scmd->cmnd[0] == TEST_UNIT_READY)
470 /* it is a success, we probed the device and
471 * found it */
472 return SUCCESS;
473 /* otherwise, we failed to send the command */
474 return FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 case QUEUE_FULL:
Mike Christie42a6a912009-10-15 17:46:44 -0700476 scsi_handle_queue_full(scmd->device);
477 /* fall through */
478 case BUSY:
Hannes Reinecke3eb3a922010-07-29 10:10:16 +0200479 return NEEDS_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 default:
481 return FAILED;
482 }
483 return FAILED;
484}
485
486/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * scsi_eh_done - Completion function for error handling.
488 * @scmd: Cmd that is done.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static void scsi_eh_done(struct scsi_cmnd *scmd)
491{
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100492 struct completion *eh_action;
Michael Reed85631672005-12-07 21:46:27 -0600493
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100494 SCSI_LOG_ERROR_RECOVERY(3,
495 printk("%s scmd: %p result: %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700496 __func__, scmd, scmd->result));
Michael Reed85631672005-12-07 21:46:27 -0600497
498 eh_action = scmd->device->host->eh_action;
499 if (eh_action)
500 complete(eh_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503/**
Brian King292148f2007-01-30 17:51:17 -0600504 * scsi_try_host_reset - ask host adapter to reset itself
505 * @scmd: SCSI cmd to send hsot reset.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800506 */
Brian King292148f2007-01-30 17:51:17 -0600507static int scsi_try_host_reset(struct scsi_cmnd *scmd)
508{
509 unsigned long flags;
510 int rtn;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100511 struct Scsi_Host *host = scmd->device->host;
512 struct scsi_host_template *hostt = host->hostt;
Brian King292148f2007-01-30 17:51:17 -0600513
514 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Host RST\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700515 __func__));
Brian King292148f2007-01-30 17:51:17 -0600516
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100517 if (!hostt->eh_host_reset_handler)
Brian King292148f2007-01-30 17:51:17 -0600518 return FAILED;
519
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100520 rtn = hostt->eh_host_reset_handler(scmd);
Brian King292148f2007-01-30 17:51:17 -0600521
522 if (rtn == SUCCESS) {
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100523 if (!hostt->skip_settle_delay)
Brian King292148f2007-01-30 17:51:17 -0600524 ssleep(HOST_RESET_SETTLE_TIME);
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100525 spin_lock_irqsave(host->host_lock, flags);
526 scsi_report_bus_reset(host, scmd_channel(scmd));
527 spin_unlock_irqrestore(host->host_lock, flags);
Brian King292148f2007-01-30 17:51:17 -0600528 }
529
530 return rtn;
531}
532
533/**
534 * scsi_try_bus_reset - ask host to perform a bus reset
535 * @scmd: SCSI cmd to send bus reset.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800536 */
Brian King292148f2007-01-30 17:51:17 -0600537static int scsi_try_bus_reset(struct scsi_cmnd *scmd)
538{
539 unsigned long flags;
540 int rtn;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100541 struct Scsi_Host *host = scmd->device->host;
542 struct scsi_host_template *hostt = host->hostt;
Brian King292148f2007-01-30 17:51:17 -0600543
544 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Bus RST\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700545 __func__));
Brian King292148f2007-01-30 17:51:17 -0600546
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100547 if (!hostt->eh_bus_reset_handler)
Brian King292148f2007-01-30 17:51:17 -0600548 return FAILED;
549
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100550 rtn = hostt->eh_bus_reset_handler(scmd);
Brian King292148f2007-01-30 17:51:17 -0600551
552 if (rtn == SUCCESS) {
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100553 if (!hostt->skip_settle_delay)
Brian King292148f2007-01-30 17:51:17 -0600554 ssleep(BUS_RESET_SETTLE_TIME);
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100555 spin_lock_irqsave(host->host_lock, flags);
556 scsi_report_bus_reset(host, scmd_channel(scmd));
557 spin_unlock_irqrestore(host->host_lock, flags);
Brian King292148f2007-01-30 17:51:17 -0600558 }
559
560 return rtn;
561}
562
Mike Christie30bd7df2008-02-29 18:25:19 -0600563static void __scsi_report_device_reset(struct scsi_device *sdev, void *data)
564{
565 sdev->was_reset = 1;
566 sdev->expecting_cc_ua = 1;
567}
568
569/**
570 * scsi_try_target_reset - Ask host to perform a target reset
571 * @scmd: SCSI cmd used to send a target reset
572 *
573 * Notes:
574 * There is no timeout for this operation. if this operation is
575 * unreliable for a given host, then the host itself needs to put a
576 * timer on it, and set the host back to a consistent state prior to
577 * returning.
578 */
579static int scsi_try_target_reset(struct scsi_cmnd *scmd)
580{
581 unsigned long flags;
582 int rtn;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100583 struct Scsi_Host *host = scmd->device->host;
584 struct scsi_host_template *hostt = host->hostt;
Mike Christie30bd7df2008-02-29 18:25:19 -0600585
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100586 if (!hostt->eh_target_reset_handler)
Mike Christie30bd7df2008-02-29 18:25:19 -0600587 return FAILED;
588
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100589 rtn = hostt->eh_target_reset_handler(scmd);
Mike Christie30bd7df2008-02-29 18:25:19 -0600590 if (rtn == SUCCESS) {
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100591 spin_lock_irqsave(host->host_lock, flags);
Mike Christie30bd7df2008-02-29 18:25:19 -0600592 __starget_for_each_device(scsi_target(scmd->device), NULL,
593 __scsi_report_device_reset);
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100594 spin_unlock_irqrestore(host->host_lock, flags);
Mike Christie30bd7df2008-02-29 18:25:19 -0600595 }
596
597 return rtn;
598}
599
Brian King292148f2007-01-30 17:51:17 -0600600/**
601 * scsi_try_bus_device_reset - Ask host to perform a BDR on a dev
602 * @scmd: SCSI cmd used to send BDR
603 *
604 * Notes:
605 * There is no timeout for this operation. if this operation is
606 * unreliable for a given host, then the host itself needs to put a
607 * timer on it, and set the host back to a consistent state prior to
608 * returning.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800609 */
Brian King292148f2007-01-30 17:51:17 -0600610static int scsi_try_bus_device_reset(struct scsi_cmnd *scmd)
611{
612 int rtn;
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100613 struct scsi_host_template *hostt = scmd->device->host->hostt;
Brian King292148f2007-01-30 17:51:17 -0600614
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100615 if (!hostt->eh_device_reset_handler)
Brian King292148f2007-01-30 17:51:17 -0600616 return FAILED;
617
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100618 rtn = hostt->eh_device_reset_handler(scmd);
Mike Christie30bd7df2008-02-29 18:25:19 -0600619 if (rtn == SUCCESS)
620 __scsi_report_device_reset(scmd->device, NULL);
Brian King292148f2007-01-30 17:51:17 -0600621 return rtn;
622}
623
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100624static int scsi_try_to_abort_cmd(struct scsi_host_template *hostt, struct scsi_cmnd *scmd)
Brian King292148f2007-01-30 17:51:17 -0600625{
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100626 if (!hostt->eh_abort_handler)
Brian King292148f2007-01-30 17:51:17 -0600627 return FAILED;
628
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100629 return hostt->eh_abort_handler(scmd);
Brian King292148f2007-01-30 17:51:17 -0600630}
631
Brian King292148f2007-01-30 17:51:17 -0600632static void scsi_abort_eh_cmnd(struct scsi_cmnd *scmd)
633{
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100634 if (scsi_try_to_abort_cmd(scmd->device->host->hostt, scmd) != SUCCESS)
Brian King292148f2007-01-30 17:51:17 -0600635 if (scsi_try_bus_device_reset(scmd) != SUCCESS)
Mike Christie30bd7df2008-02-29 18:25:19 -0600636 if (scsi_try_target_reset(scmd) != SUCCESS)
637 if (scsi_try_bus_reset(scmd) != SUCCESS)
638 scsi_try_host_reset(scmd);
Brian King292148f2007-01-30 17:51:17 -0600639}
640
641/**
Boaz Harroshe1c23462007-10-08 16:36:45 +0200642 * scsi_eh_prep_cmnd - Save a scsi command info as part of error recory
Christoph Hellwig2dc611d2006-11-04 20:04:21 +0100643 * @scmd: SCSI command structure to hijack
Boaz Harroshe1c23462007-10-08 16:36:45 +0200644 * @ses: structure to save restore information
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200645 * @cmnd: CDB to send. Can be NULL if no new cmnd is needed
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300646 * @cmnd_size: size in bytes of @cmnd (must be <= BLK_MAX_CDB)
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200647 * @sense_bytes: size of sense data to copy. or 0 (if != 0 @cmnd is ignored)
Christoph Hellwig2dc611d2006-11-04 20:04:21 +0100648 *
Boaz Harroshe1c23462007-10-08 16:36:45 +0200649 * This function is used to save a scsi command information before re-execution
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200650 * as part of the error recovery process. If @sense_bytes is 0 the command
651 * sent must be one that does not transfer any data. If @sense_bytes != 0
652 * @cmnd is ignored and this functions sets up a REQUEST_SENSE command
653 * and cmnd buffers to read @sense_bytes into @scmd->sense_buffer.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800654 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200655void scsi_eh_prep_cmnd(struct scsi_cmnd *scmd, struct scsi_eh_save *ses,
656 unsigned char *cmnd, int cmnd_size, unsigned sense_bytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
f59114b2005-04-17 15:00:23 -0500658 struct scsi_device *sdev = scmd->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Christoph Hellwig631c2282006-07-08 20:42:15 +0200660 /*
661 * We need saved copies of a number of fields - this is because
662 * error handling may need to overwrite these with different values
663 * to run different commands, and once error handling is complete,
664 * we will need to restore these values prior to running the actual
665 * command.
666 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200667 ses->cmd_len = scmd->cmd_len;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300668 ses->cmnd = scmd->cmnd;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200669 ses->data_direction = scmd->sc_data_direction;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200670 ses->sdb = scmd->sdb;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200671 ses->next_rq = scmd->request->next_rq;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200672 ses->result = scmd->result;
Alan Stern12265702008-07-21 10:25:52 -0400673 ses->underflow = scmd->underflow;
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400674 ses->prot_op = scmd->prot_op;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200675
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400676 scmd->prot_op = SCSI_PROT_NORMAL;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300677 scmd->cmnd = ses->eh_cmnd;
678 memset(scmd->cmnd, 0, BLK_MAX_CDB);
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200679 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200680 scmd->request->next_rq = NULL;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200681
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200682 if (sense_bytes) {
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200683 scmd->sdb.length = min_t(unsigned, SCSI_SENSE_BUFFERSIZE,
684 sense_bytes);
Boaz Harroshe1c23462007-10-08 16:36:45 +0200685 sg_init_one(&ses->sense_sgl, scmd->sense_buffer,
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200686 scmd->sdb.length);
687 scmd->sdb.table.sgl = &ses->sense_sgl;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200688 scmd->sc_data_direction = DMA_FROM_DEVICE;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200689 scmd->sdb.table.nents = 1;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200690 scmd->cmnd[0] = REQUEST_SENSE;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200691 scmd->cmnd[4] = scmd->sdb.length;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200692 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
Christoph Hellwig631c2282006-07-08 20:42:15 +0200693 } else {
Christoph Hellwig631c2282006-07-08 20:42:15 +0200694 scmd->sc_data_direction = DMA_NONE;
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200695 if (cmnd) {
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300696 BUG_ON(cmnd_size > BLK_MAX_CDB);
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200697 memcpy(scmd->cmnd, cmnd, cmnd_size);
698 scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
699 }
Christoph Hellwig631c2282006-07-08 20:42:15 +0200700 }
701
702 scmd->underflow = 0;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200703
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200704 if (sdev->scsi_level <= SCSI_2 && sdev->scsi_level != SCSI_UNKNOWN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 scmd->cmnd[1] = (scmd->cmnd[1] & 0x1f) |
f59114b2005-04-17 15:00:23 -0500706 (sdev->lun << 5 & 0xe0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Christoph Hellwig631c2282006-07-08 20:42:15 +0200708 /*
709 * Zero the sense buffer. The scsi spec mandates that any
710 * untransferred sense data should be interpreted as being zero.
711 */
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +0900712 memset(scmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
Boaz Harroshe1c23462007-10-08 16:36:45 +0200713}
714EXPORT_SYMBOL(scsi_eh_prep_cmnd);
Christoph Hellwig631c2282006-07-08 20:42:15 +0200715
Boaz Harroshe1c23462007-10-08 16:36:45 +0200716/**
717 * scsi_eh_restore_cmnd - Restore a scsi command info as part of error recory
718 * @scmd: SCSI command structure to restore
Bartlomiej Zolnierkiewicz477e6082009-04-27 20:54:22 +0200719 * @ses: saved information from a coresponding call to scsi_eh_prep_cmnd
Boaz Harroshe1c23462007-10-08 16:36:45 +0200720 *
Bartlomiej Zolnierkiewicz477e6082009-04-27 20:54:22 +0200721 * Undo any damage done by above scsi_eh_prep_cmnd().
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800722 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200723void scsi_eh_restore_cmnd(struct scsi_cmnd* scmd, struct scsi_eh_save *ses)
724{
725 /*
726 * Restore original data
727 */
728 scmd->cmd_len = ses->cmd_len;
Boaz Harrosh64a87b22008-04-30 11:19:47 +0300729 scmd->cmnd = ses->cmnd;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200730 scmd->sc_data_direction = ses->data_direction;
Boaz Harrosh30b0c372007-12-13 13:47:40 +0200731 scmd->sdb = ses->sdb;
Boaz Harrosh6f9a35e2007-12-13 13:50:53 +0200732 scmd->request->next_rq = ses->next_rq;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200733 scmd->result = ses->result;
Alan Stern12265702008-07-21 10:25:52 -0400734 scmd->underflow = ses->underflow;
Martin K. Petersendb007fc2008-07-17 04:28:31 -0400735 scmd->prot_op = ses->prot_op;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200736}
737EXPORT_SYMBOL(scsi_eh_restore_cmnd);
738
739/**
740 * scsi_send_eh_cmnd - submit a scsi command as part of error recory
741 * @scmd: SCSI command structure to hijack
742 * @cmnd: CDB to send
743 * @cmnd_size: size in bytes of @cmnd
744 * @timeout: timeout for this request
745 * @sense_bytes: size of sense data to copy or 0
746 *
747 * This function is used to send a scsi command down to a target device
748 * as part of the error recovery process. See also scsi_eh_prep_cmnd() above.
749 *
750 * Return value:
751 * SUCCESS or FAILED or NEEDS_RETRY
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800752 */
Boaz Harroshe1c23462007-10-08 16:36:45 +0200753static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
754 int cmnd_size, int timeout, unsigned sense_bytes)
755{
756 struct scsi_device *sdev = scmd->device;
757 struct Scsi_Host *shost = sdev->host;
758 DECLARE_COMPLETION_ONSTACK(done);
759 unsigned long timeleft;
Boaz Harroshe1c23462007-10-08 16:36:45 +0200760 struct scsi_eh_save ses;
761 int rtn;
762
763 scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100764 shost->eh_action = &done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 scsi_log_send(scmd);
Jeff Garzikf2812332010-11-16 02:10:29 -0500767 scmd->scsi_done = scsi_eh_done;
768 shost->hostt->queuecommand(shost, scmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100770 timeleft = wait_for_completion_timeout(&done, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
f59114b2005-04-17 15:00:23 -0500772 shost->eh_action = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100774 scsi_log_completion(scmd, SUCCESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100776 SCSI_LOG_ERROR_RECOVERY(3,
777 printk("%s: scmd: %p, timeleft: %ld\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700778 __func__, scmd, timeleft));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /*
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100781 * If there is time left scsi_eh_done got called, and we will
782 * examine the actual status codes to see whether the command
783 * actually did complete normally, else tell the host to forget
784 * about this command.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 */
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100786 if (timeleft) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 rtn = scsi_eh_completed_normally(scmd);
788 SCSI_LOG_ERROR_RECOVERY(3,
789 printk("%s: scsi_eh_completed_normally %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700790 __func__, rtn));
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 switch (rtn) {
793 case SUCCESS:
794 case NEEDS_RETRY:
795 case FAILED:
Hannes Reinecke63583cc2011-01-18 10:13:11 +0100796 case TARGET_ERROR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 break;
Hannes Reinecke6e883b02009-09-17 17:00:26 +0200798 case ADD_TO_MLQUEUE:
799 rtn = NEEDS_RETRY;
800 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 default:
802 rtn = FAILED;
803 break;
804 }
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100805 } else {
Brian King292148f2007-01-30 17:51:17 -0600806 scsi_abort_eh_cmnd(scmd);
Christoph Hellwig7dfdc9a2005-10-31 18:49:52 +0100807 rtn = FAILED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Boaz Harroshe1c23462007-10-08 16:36:45 +0200810 scsi_eh_restore_cmnd(scmd, &ses);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return rtn;
812}
813
814/**
815 * scsi_request_sense - Request sense data from a particular target.
816 * @scmd: SCSI cmd for request sense.
817 *
818 * Notes:
819 * Some hosts automatically obtain this information, others require
820 * that we obtain it on our own. This function will *not* return until
821 * the command either times out, or it completes.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800822 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823static int scsi_request_sense(struct scsi_cmnd *scmd)
824{
Boaz Harrosh55db6c12007-10-08 16:35:19 +0200825 return scsi_send_eh_cmnd(scmd, NULL, 0, SENSE_TIMEOUT, ~0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826}
827
828/**
829 * scsi_eh_finish_cmd - Handle a cmd that eh is finished with.
830 * @scmd: Original SCSI cmd that eh has finished.
831 * @done_q: Queue for processed commands.
832 *
833 * Notes:
834 * We don't want to use the normal command completion while we are are
835 * still handling errors - it may cause other commands to be queued,
Rob Landleyeb448202007-11-03 13:30:39 -0500836 * and that would disturb what we are doing. Thus we really want to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * keep a list of pending commands for final completion, and once we
838 * are ready to leave error handling we handle completion for real.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800839 */
Tejun Heo041c5fc2006-01-23 13:09:36 +0900840void scsi_eh_finish_cmd(struct scsi_cmnd *scmd, struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841{
842 scmd->device->host->host_failed--;
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200843 scmd->eh_eflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 list_move_tail(&scmd->eh_entry, done_q);
845}
Tejun Heo041c5fc2006-01-23 13:09:36 +0900846EXPORT_SYMBOL(scsi_eh_finish_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848/**
849 * scsi_eh_get_sense - Get device sense data.
850 * @work_q: Queue of commands to process.
Rob Landleyeb448202007-11-03 13:30:39 -0500851 * @done_q: Queue of processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 *
853 * Description:
854 * See if we need to request sense information. if so, then get it
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100855 * now, so we have a better idea of what to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 *
857 * Notes:
858 * This has the unfortunate side effect that if a shost adapter does
Rob Landleyeb448202007-11-03 13:30:39 -0500859 * not automatically request sense information, we end up shutting
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 * it down before we request it.
861 *
862 * All drivers should request sense information internally these days,
863 * so for now all I have to say is tough noogies if you end up in here.
864 *
865 * XXX: Long term this code should go away, but that needs an audit of
866 * all LLDDs first.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800867 */
Darrick J. Wongdca84e42007-01-26 14:08:49 -0800868int scsi_eh_get_sense(struct list_head *work_q,
869 struct list_head *done_q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200871 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 int rtn;
873
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200874 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200875 if ((scmd->eh_eflags & SCSI_EH_CANCEL_CMD) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 SCSI_SENSE_VALID(scmd))
877 continue;
878
Jeff Garzik3bf743e2005-10-24 18:04:06 -0400879 SCSI_LOG_ERROR_RECOVERY(2, scmd_printk(KERN_INFO, scmd,
880 "%s: requesting sense\n",
881 current->comm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 rtn = scsi_request_sense(scmd);
883 if (rtn != SUCCESS)
884 continue;
885
886 SCSI_LOG_ERROR_RECOVERY(3, printk("sense requested for %p"
887 " result %x\n", scmd,
888 scmd->result));
889 SCSI_LOG_ERROR_RECOVERY(3, scsi_print_sense("bh", scmd));
890
891 rtn = scsi_decide_disposition(scmd);
892
893 /*
894 * if the result was normal, then just pass it along to the
895 * upper level.
896 */
897 if (rtn == SUCCESS)
898 /* we don't want this command reissued, just
899 * finished with the sense data, so set
900 * retries to the max allowed to ensure it
901 * won't get reissued */
902 scmd->retries = scmd->allowed;
903 else if (rtn != NEEDS_RETRY)
904 continue;
905
906 scsi_eh_finish_cmd(scmd, done_q);
907 }
908
909 return list_empty(work_q);
910}
Darrick J. Wongdca84e42007-01-26 14:08:49 -0800911EXPORT_SYMBOL_GPL(scsi_eh_get_sense);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 * scsi_eh_tur - Send TUR to device.
Rob Landleyeb448202007-11-03 13:30:39 -0500915 * @scmd: &scsi_cmnd to send TUR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 *
917 * Return value:
918 * 0 - Device is ready. 1 - Device NOT ready.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800919 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920static int scsi_eh_tur(struct scsi_cmnd *scmd)
921{
922 static unsigned char tur_command[6] = {TEST_UNIT_READY, 0, 0, 0, 0, 0};
923 int retry_cnt = 1, rtn;
924
925retry_tur:
Mike Christie0db99e32006-08-26 03:00:22 -0400926 rtn = scsi_send_eh_cmnd(scmd, tur_command, 6, SENSE_TIMEOUT, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd %p rtn %x\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -0700929 __func__, scmd, rtn));
Christoph Hellwig631c2282006-07-08 20:42:15 +0200930
931 switch (rtn) {
932 case NEEDS_RETRY:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (retry_cnt--)
934 goto retry_tur;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200935 /*FALLTHRU*/
936 case SUCCESS:
Alan Sterne47373e2005-03-30 15:05:45 -0500937 return 0;
Christoph Hellwig631c2282006-07-08 20:42:15 +0200938 default:
939 return 1;
Alan Sterne47373e2005-03-30 15:05:45 -0500940 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943/**
Rob Landleyeb448202007-11-03 13:30:39 -0500944 * scsi_eh_abort_cmds - abort pending commands.
945 * @work_q: &list_head for pending commands.
946 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 *
948 * Decription:
949 * Try and see whether or not it makes sense to try and abort the
Rob Landleyeb448202007-11-03 13:30:39 -0500950 * running command. This only works out to be the case if we have one
951 * command that has timed out. If the command simply failed, it makes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 * no sense to try and abort the command, since as far as the shost
953 * adapter is concerned, it isn't running.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800954 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955static int scsi_eh_abort_cmds(struct list_head *work_q,
956 struct list_head *done_q)
957{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200958 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 int rtn;
960
Christoph Hellwig937abeaa2005-06-19 13:43:56 +0200961 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200962 if (!(scmd->eh_eflags & SCSI_EH_CANCEL_CMD))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 continue;
964 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting cmd:"
965 "0x%p\n", current->comm,
966 scmd));
Jesper Juhl0bf8c862011-03-21 20:47:31 +0100967 rtn = scsi_try_to_abort_cmd(scmd->device->host->hostt, scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +0100968 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig3111b0d2005-06-19 13:43:26 +0200969 scmd->eh_eflags &= ~SCSI_EH_CANCEL_CMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +0100971 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 !scsi_eh_tur(scmd)) {
973 scsi_eh_finish_cmd(scmd, done_q);
974 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 } else
976 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting"
977 " cmd failed:"
978 "0x%p\n",
979 current->comm,
980 scmd));
981 }
982
983 return list_empty(work_q);
984}
985
986/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 * scsi_eh_try_stu - Send START_UNIT to device.
Rob Landleyeb448202007-11-03 13:30:39 -0500988 * @scmd: &scsi_cmnd to send START_UNIT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 *
990 * Return value:
991 * 0 - Device is ready. 1 - Device NOT ready.
Randy Dunlapdc8875e2007-11-15 15:42:30 -0800992 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993static int scsi_eh_try_stu(struct scsi_cmnd *scmd)
994{
995 static unsigned char stu_command[6] = {START_STOP, 0, 0, 0, 1, 0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Christoph Hellwig631c2282006-07-08 20:42:15 +0200997 if (scmd->device->allow_restart) {
Brian Kinged773e62007-03-29 15:25:52 -0500998 int i, rtn = NEEDS_RETRY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Brian Kinged773e62007-03-29 15:25:52 -05001000 for (i = 0; rtn == NEEDS_RETRY && i < 2; i++)
James Bottomley9728c082008-11-30 10:32:26 -06001001 rtn = scsi_send_eh_cmnd(scmd, stu_command, 6, scmd->device->request_queue->rq_timeout, 0);
Brian Kinged773e62007-03-29 15:25:52 -05001002
Christoph Hellwig631c2282006-07-08 20:42:15 +02001003 if (rtn == SUCCESS)
1004 return 0;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 return 1;
1008}
1009
1010 /**
1011 * scsi_eh_stu - send START_UNIT if needed
Rob Landleyeb448202007-11-03 13:30:39 -05001012 * @shost: &scsi host being recovered.
1013 * @work_q: &list_head for pending commands.
1014 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 *
1016 * Notes:
1017 * If commands are failing due to not ready, initializing command required,
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001018 * try revalidating the device, which will end up sending a start unit.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020static int scsi_eh_stu(struct Scsi_Host *shost,
1021 struct list_head *work_q,
1022 struct list_head *done_q)
1023{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001024 struct scsi_cmnd *scmd, *stu_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 struct scsi_device *sdev;
1026
1027 shost_for_each_device(sdev, shost) {
1028 stu_scmd = NULL;
1029 list_for_each_entry(scmd, work_q, eh_entry)
1030 if (scmd->device == sdev && SCSI_SENSE_VALID(scmd) &&
1031 scsi_check_sense(scmd) == FAILED ) {
1032 stu_scmd = scmd;
1033 break;
1034 }
1035
1036 if (!stu_scmd)
1037 continue;
1038
1039 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending START_UNIT to sdev:"
1040 " 0x%p\n", current->comm, sdev));
1041
1042 if (!scsi_eh_try_stu(stu_scmd)) {
1043 if (!scsi_device_online(sdev) ||
1044 !scsi_eh_tur(stu_scmd)) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001045 list_for_each_entry_safe(scmd, next,
1046 work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (scmd->device == sdev)
1048 scsi_eh_finish_cmd(scmd, done_q);
1049 }
1050 }
1051 } else {
1052 SCSI_LOG_ERROR_RECOVERY(3,
1053 printk("%s: START_UNIT failed to sdev:"
1054 " 0x%p\n", current->comm, sdev));
1055 }
1056 }
1057
1058 return list_empty(work_q);
1059}
1060
1061
1062/**
1063 * scsi_eh_bus_device_reset - send bdr if needed
1064 * @shost: scsi host being recovered.
Rob Landleyeb448202007-11-03 13:30:39 -05001065 * @work_q: &list_head for pending commands.
1066 * @done_q: &list_head for processed commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 *
1068 * Notes:
Rob Landleyeb448202007-11-03 13:30:39 -05001069 * Try a bus device reset. Still, look to see whether we have multiple
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * devices that are jammed or not - if we have multiple devices, it
1071 * makes no sense to try bus_device_reset - we really would need to try
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001072 * a bus_reset instead.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001073 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074static int scsi_eh_bus_device_reset(struct Scsi_Host *shost,
1075 struct list_head *work_q,
1076 struct list_head *done_q)
1077{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001078 struct scsi_cmnd *scmd, *bdr_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct scsi_device *sdev;
1080 int rtn;
1081
1082 shost_for_each_device(sdev, shost) {
1083 bdr_scmd = NULL;
1084 list_for_each_entry(scmd, work_q, eh_entry)
1085 if (scmd->device == sdev) {
1086 bdr_scmd = scmd;
1087 break;
1088 }
1089
1090 if (!bdr_scmd)
1091 continue;
1092
1093 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BDR sdev:"
1094 " 0x%p\n", current->comm,
1095 sdev));
1096 rtn = scsi_try_bus_device_reset(bdr_scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001097 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (!scsi_device_online(sdev) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001099 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 !scsi_eh_tur(bdr_scmd)) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001101 list_for_each_entry_safe(scmd, next,
1102 work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (scmd->device == sdev)
1104 scsi_eh_finish_cmd(scmd,
1105 done_q);
1106 }
1107 }
1108 } else {
1109 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BDR"
1110 " failed sdev:"
1111 "0x%p\n",
1112 current->comm,
1113 sdev));
1114 }
1115 }
1116
1117 return list_empty(work_q);
1118}
1119
1120/**
Mike Christie30bd7df2008-02-29 18:25:19 -06001121 * scsi_eh_target_reset - send target reset if needed
1122 * @shost: scsi host being recovered.
1123 * @work_q: &list_head for pending commands.
1124 * @done_q: &list_head for processed commands.
1125 *
1126 * Notes:
1127 * Try a target reset.
1128 */
1129static int scsi_eh_target_reset(struct Scsi_Host *shost,
1130 struct list_head *work_q,
1131 struct list_head *done_q)
1132{
James Bottomley98db5192010-10-25 15:53:41 -05001133 LIST_HEAD(tmp_list);
Mike Christie30bd7df2008-02-29 18:25:19 -06001134
James Bottomley98db5192010-10-25 15:53:41 -05001135 list_splice_init(work_q, &tmp_list);
1136
1137 while (!list_empty(&tmp_list)) {
1138 struct scsi_cmnd *next, *scmd;
1139 int rtn;
1140 unsigned int id;
1141
1142 scmd = list_entry(tmp_list.next, struct scsi_cmnd, eh_entry);
1143 id = scmd_id(scmd);
Mike Christie30bd7df2008-02-29 18:25:19 -06001144
1145 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending target reset "
1146 "to target %d\n",
1147 current->comm, id));
James Bottomley98db5192010-10-25 15:53:41 -05001148 rtn = scsi_try_target_reset(scmd);
1149 if (rtn != SUCCESS && rtn != FAST_IO_FAIL)
Mike Christie30bd7df2008-02-29 18:25:19 -06001150 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Target reset"
1151 " failed target: "
1152 "%d\n",
1153 current->comm, id));
James Bottomley98db5192010-10-25 15:53:41 -05001154 list_for_each_entry_safe(scmd, next, &tmp_list, eh_entry) {
1155 if (scmd_id(scmd) != id)
1156 continue;
1157
1158 if ((rtn == SUCCESS || rtn == FAST_IO_FAIL)
1159 && (!scsi_device_online(scmd->device) ||
1160 rtn == FAST_IO_FAIL || !scsi_eh_tur(scmd)))
1161 scsi_eh_finish_cmd(scmd, done_q);
1162 else
1163 /* push back on work queue for further processing */
1164 list_move(&scmd->eh_entry, work_q);
1165 }
1166 }
Mike Christie30bd7df2008-02-29 18:25:19 -06001167
1168 return list_empty(work_q);
1169}
1170
1171/**
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001172 * scsi_eh_bus_reset - send a bus reset
Rob Landleyeb448202007-11-03 13:30:39 -05001173 * @shost: &scsi host being recovered.
1174 * @work_q: &list_head for pending commands.
1175 * @done_q: &list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001176 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177static int scsi_eh_bus_reset(struct Scsi_Host *shost,
1178 struct list_head *work_q,
1179 struct list_head *done_q)
1180{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001181 struct scsi_cmnd *scmd, *chan_scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 unsigned int channel;
1183 int rtn;
1184
1185 /*
1186 * we really want to loop over the various channels, and do this on
1187 * a channel by channel basis. we should also check to see if any
1188 * of the failed commands are on soft_reset devices, and if so, skip
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001189 * the reset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 */
1191
1192 for (channel = 0; channel <= shost->max_channel; channel++) {
1193 chan_scmd = NULL;
1194 list_for_each_entry(scmd, work_q, eh_entry) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001195 if (channel == scmd_channel(scmd)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 chan_scmd = scmd;
1197 break;
1198 /*
1199 * FIXME add back in some support for
1200 * soft_reset devices.
1201 */
1202 }
1203 }
1204
1205 if (!chan_scmd)
1206 continue;
1207 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BRST chan:"
1208 " %d\n", current->comm,
1209 channel));
1210 rtn = scsi_try_bus_reset(chan_scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001211 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001212 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001213 if (channel == scmd_channel(scmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001215 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 !scsi_eh_tur(scmd))
1217 scsi_eh_finish_cmd(scmd,
1218 done_q);
1219 }
1220 } else {
1221 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BRST"
1222 " failed chan: %d\n",
1223 current->comm,
1224 channel));
1225 }
1226 }
1227 return list_empty(work_q);
1228}
1229
1230/**
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001231 * scsi_eh_host_reset - send a host reset
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 * @work_q: list_head for processed commands.
1233 * @done_q: list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001234 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235static int scsi_eh_host_reset(struct list_head *work_q,
1236 struct list_head *done_q)
1237{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001238 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 int rtn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 if (!list_empty(work_q)) {
1242 scmd = list_entry(work_q->next,
1243 struct scsi_cmnd, eh_entry);
1244
1245 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending HRST\n"
1246 , current->comm));
1247
1248 rtn = scsi_try_host_reset(scmd);
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001249 if (rtn == SUCCESS || rtn == FAST_IO_FAIL) {
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001250 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (!scsi_device_online(scmd->device) ||
Christof Schmitt2f2eb582010-03-24 16:50:30 +01001252 rtn == FAST_IO_FAIL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 (!scsi_eh_try_stu(scmd) && !scsi_eh_tur(scmd)) ||
1254 !scsi_eh_tur(scmd))
1255 scsi_eh_finish_cmd(scmd, done_q);
1256 }
1257 } else {
1258 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: HRST"
1259 " failed\n",
1260 current->comm));
1261 }
1262 }
1263 return list_empty(work_q);
1264}
1265
1266/**
1267 * scsi_eh_offline_sdevs - offline scsi devices that fail to recover
1268 * @work_q: list_head for processed commands.
1269 * @done_q: list_head for processed commands.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001270 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271static void scsi_eh_offline_sdevs(struct list_head *work_q,
1272 struct list_head *done_q)
1273{
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001274 struct scsi_cmnd *scmd, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Christoph Hellwig937abeaa2005-06-19 13:43:56 +02001276 list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
Matthew Wilcox31765d72007-08-17 11:02:10 -06001277 sdev_printk(KERN_INFO, scmd->device, "Device offlined - "
1278 "not ready after error recovery\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 scsi_device_set_state(scmd->device, SDEV_OFFLINE);
Christoph Hellwig3111b0d2005-06-19 13:43:26 +02001280 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 /*
1282 * FIXME: Handle lost cmds.
1283 */
1284 }
1285 scsi_eh_finish_cmd(scmd, done_q);
1286 }
1287 return;
1288}
1289
1290/**
Mike Christie4a274462008-08-19 18:45:31 -05001291 * scsi_noretry_cmd - determinte if command should be failed fast
1292 * @scmd: SCSI cmd to examine.
1293 */
1294int scsi_noretry_cmd(struct scsi_cmnd *scmd)
1295{
1296 switch (host_byte(scmd->result)) {
1297 case DID_OK:
1298 break;
1299 case DID_BUS_BUSY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001300 return (scmd->request->cmd_flags & REQ_FAILFAST_TRANSPORT);
Mike Christie4a274462008-08-19 18:45:31 -05001301 case DID_PARITY:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001302 return (scmd->request->cmd_flags & REQ_FAILFAST_DEV);
Mike Christie4a274462008-08-19 18:45:31 -05001303 case DID_ERROR:
1304 if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
1305 status_byte(scmd->result) == RESERVATION_CONFLICT)
1306 return 0;
1307 /* fall through */
1308 case DID_SOFT_ERROR:
Christoph Hellwig33659eb2010-08-07 18:17:56 +02001309 return (scmd->request->cmd_flags & REQ_FAILFAST_DRIVER);
Mike Christie4a274462008-08-19 18:45:31 -05001310 }
1311
1312 switch (status_byte(scmd->result)) {
1313 case CHECK_CONDITION:
1314 /*
1315 * assume caller has checked sense and determinted
1316 * the check condition was retryable.
1317 */
FUJITA Tomonorie96f6ab2010-07-09 09:38:26 +09001318 if (scmd->request->cmd_flags & REQ_FAILFAST_DEV ||
1319 scmd->request->cmd_type == REQ_TYPE_BLOCK_PC)
1320 return 1;
Mike Christie4a274462008-08-19 18:45:31 -05001321 }
1322
1323 return 0;
1324}
1325
1326/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 * scsi_decide_disposition - Disposition a cmd on return from LLD.
1328 * @scmd: SCSI cmd to examine.
1329 *
1330 * Notes:
1331 * This is *only* called when we are examining the status after sending
1332 * out the actual data command. any commands that are queued for error
1333 * recovery (e.g. test_unit_ready) do *not* come through here.
1334 *
1335 * When this routine returns failed, it means the error handler thread
1336 * is woken. In cases where the error code indicates an error that
1337 * doesn't require the error handler read (i.e. we don't need to
1338 * abort/reset), this function should return SUCCESS.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001339 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340int scsi_decide_disposition(struct scsi_cmnd *scmd)
1341{
1342 int rtn;
1343
1344 /*
1345 * if the device is offline, then we clearly just pass the result back
1346 * up to the top level.
1347 */
1348 if (!scsi_device_online(scmd->device)) {
1349 SCSI_LOG_ERROR_RECOVERY(5, printk("%s: device offline - report"
1350 " as SUCCESS\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001351 __func__));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return SUCCESS;
1353 }
1354
1355 /*
1356 * first check the host byte, to see if there is anything in there
1357 * that would indicate what we need to do.
1358 */
1359 switch (host_byte(scmd->result)) {
1360 case DID_PASSTHROUGH:
1361 /*
1362 * no matter what, pass this through to the upper layer.
1363 * nuke this special code so that it looks like we are saying
1364 * did_ok.
1365 */
1366 scmd->result &= 0xff00ffff;
1367 return SUCCESS;
1368 case DID_OK:
1369 /*
1370 * looks good. drop through, and check the next byte.
1371 */
1372 break;
1373 case DID_NO_CONNECT:
1374 case DID_BAD_TARGET:
1375 case DID_ABORT:
1376 /*
1377 * note - this means that we just report the status back
1378 * to the top level driver, not that we actually think
1379 * that it indicates SUCCESS.
1380 */
1381 return SUCCESS;
1382 /*
1383 * when the low level driver returns did_soft_error,
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001384 * it is responsible for keeping an internal retry counter
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 * in order to avoid endless loops (db)
1386 *
1387 * actually this is a bug in this function here. we should
1388 * be mindful of the maximum number of retries specified
1389 * and not get stuck in a loop.
1390 */
1391 case DID_SOFT_ERROR:
1392 goto maybe_retry;
1393 case DID_IMM_RETRY:
1394 return NEEDS_RETRY;
1395
bf341912005-04-12 17:49:09 -05001396 case DID_REQUEUE:
1397 return ADD_TO_MLQUEUE;
Mike Christiea4dfaa62008-08-19 18:45:25 -05001398 case DID_TRANSPORT_DISRUPTED:
1399 /*
1400 * LLD/transport was disrupted during processing of the IO.
1401 * The transport class is now blocked/blocking,
1402 * and the transport will decide what to do with the IO
Mike Christie939c2282008-11-04 19:47:19 -06001403 * based on its timers and recovery capablilities if
1404 * there are enough retries.
Mike Christiea4dfaa62008-08-19 18:45:25 -05001405 */
Mike Christie939c2282008-11-04 19:47:19 -06001406 goto maybe_retry;
Mike Christiea4dfaa62008-08-19 18:45:25 -05001407 case DID_TRANSPORT_FAILFAST:
1408 /*
1409 * The transport decided to failfast the IO (most likely
1410 * the fast io fail tmo fired), so send IO directly upwards.
1411 */
1412 return SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 case DID_ERROR:
1414 if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
1415 status_byte(scmd->result) == RESERVATION_CONFLICT)
1416 /*
1417 * execute reservation conflict processing code
1418 * lower down
1419 */
1420 break;
1421 /* fallthrough */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 case DID_BUS_BUSY:
1423 case DID_PARITY:
1424 goto maybe_retry;
1425 case DID_TIME_OUT:
1426 /*
1427 * when we scan the bus, we get timeout messages for
1428 * these commands if there is no device available.
1429 * other hosts report did_no_connect for the same thing.
1430 */
1431 if ((scmd->cmnd[0] == TEST_UNIT_READY ||
1432 scmd->cmnd[0] == INQUIRY)) {
1433 return SUCCESS;
1434 } else {
1435 return FAILED;
1436 }
1437 case DID_RESET:
1438 return SUCCESS;
1439 default:
1440 return FAILED;
1441 }
1442
1443 /*
1444 * next, check the message byte.
1445 */
1446 if (msg_byte(scmd->result) != COMMAND_COMPLETE)
1447 return FAILED;
1448
1449 /*
1450 * check the status byte to see if this indicates anything special.
1451 */
1452 switch (status_byte(scmd->result)) {
1453 case QUEUE_FULL:
Mike Christie42a6a912009-10-15 17:46:44 -07001454 scsi_handle_queue_full(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /*
1456 * the case of trying to send too many commands to a
1457 * tagged queueing device.
1458 */
1459 case BUSY:
1460 /*
1461 * device can't talk to us at the moment. Should only
1462 * occur (SAM-3) when the task queue is empty, so will cause
1463 * the empty queue handling to trigger a stall in the
1464 * device.
1465 */
1466 return ADD_TO_MLQUEUE;
1467 case GOOD:
Vasu Dev4a840672009-10-22 15:46:33 -07001468 scsi_handle_queue_ramp_up(scmd->device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 case COMMAND_TERMINATED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return SUCCESS;
Vladislav Bolkhovitina9b589d2008-11-06 13:57:52 +03001471 case TASK_ABORTED:
1472 goto maybe_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 case CHECK_CONDITION:
1474 rtn = scsi_check_sense(scmd);
1475 if (rtn == NEEDS_RETRY)
1476 goto maybe_retry;
Hannes Reinecke63583cc2011-01-18 10:13:11 +01001477 else if (rtn == TARGET_ERROR) {
1478 /*
1479 * Need to modify host byte to signal a
1480 * permanent target failure
1481 */
1482 scmd->result |= (DID_TARGET_FAILURE << 16);
1483 rtn = SUCCESS;
1484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 /* if rtn == FAILED, we have no sense information;
1486 * returning FAILED will wake the error handler thread
1487 * to collect the sense and redo the decide
1488 * disposition */
1489 return rtn;
1490 case CONDITION_GOOD:
1491 case INTERMEDIATE_GOOD:
1492 case INTERMEDIATE_C_GOOD:
1493 case ACA_ACTIVE:
1494 /*
1495 * who knows? FIXME(eric)
1496 */
1497 return SUCCESS;
1498
1499 case RESERVATION_CONFLICT:
James Bottomley9ccfc752005-10-02 11:45:08 -05001500 sdev_printk(KERN_INFO, scmd->device,
1501 "reservation conflict\n");
Hannes Reinecke63583cc2011-01-18 10:13:11 +01001502 scmd->result |= (DID_NEXUS_FAILURE << 16);
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 Bottomley3ed7a4702005-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 Bottomley3ed7a4702005-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 Bottomley3ed7a4702005-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 Bottomley3ed7a4702005-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 */
Alan Sternbc4f2402010-06-17 10:41:42 -04001754 if (scsi_autopm_get_host(shost) != 0) {
1755 SCSI_LOG_ERROR_RECOVERY(1,
1756 printk(KERN_ERR "Error handler scsi_eh_%d "
1757 "unable to autoresume\n",
1758 shost->host_no));
1759 continue;
1760 }
1761
Christoph Hellwig9227c332006-04-01 19:21:04 +02001762 if (shost->transportt->eh_strategy_handler)
1763 shost->transportt->eh_strategy_handler(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 else
1765 scsi_unjam_host(shost);
1766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /*
1768 * Note - if the above fails completely, the action is to take
1769 * individual devices offline and flush the queue of any
1770 * outstanding requests that may have been pending. When we
1771 * restart, we restart any I/O to any other devices on the bus
1772 * which are still online.
1773 */
1774 scsi_restart_operations(shost);
Alan Sternbc4f2402010-06-17 10:41:42 -04001775 scsi_autopm_put_host(shost);
James Bottomley3ed7a4702005-09-19 09:50:04 -05001776 set_current_state(TASK_INTERRUPTIBLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
Steven Rostedt461a0ff2005-10-19 08:22:13 -04001778 __set_current_state(TASK_RUNNING);
1779
Christoph Hellwigad42eb12005-10-29 01:01:55 +02001780 SCSI_LOG_ERROR_RECOVERY(1,
1781 printk("Error handler scsi_eh_%d exiting\n", shost->host_no));
James Bottomley3ed7a4702005-09-19 09:50:04 -05001782 shost->ehandler = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return 0;
1784}
1785
1786/*
1787 * Function: scsi_report_bus_reset()
1788 *
1789 * Purpose: Utility function used by low-level drivers to report that
1790 * they have observed a bus reset on the bus being handled.
1791 *
1792 * Arguments: shost - Host in question
1793 * channel - channel on which reset was observed.
1794 *
1795 * Returns: Nothing
1796 *
1797 * Lock status: Host lock must be held.
1798 *
1799 * Notes: This only needs to be called if the reset is one which
1800 * originates from an unknown location. Resets originated
1801 * by the mid-level itself don't need to call this, but there
1802 * should be no harm.
1803 *
1804 * The main purpose of this is to make sure that a CHECK_CONDITION
1805 * is properly treated.
1806 */
1807void scsi_report_bus_reset(struct Scsi_Host *shost, int channel)
1808{
1809 struct scsi_device *sdev;
1810
1811 __shost_for_each_device(sdev, shost) {
Mike Christie30bd7df2008-02-29 18:25:19 -06001812 if (channel == sdev_channel(sdev))
1813 __scsi_report_device_reset(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815}
1816EXPORT_SYMBOL(scsi_report_bus_reset);
1817
1818/*
1819 * Function: scsi_report_device_reset()
1820 *
1821 * Purpose: Utility function used by low-level drivers to report that
1822 * they have observed a device reset on the device being handled.
1823 *
1824 * Arguments: shost - Host in question
1825 * channel - channel on which reset was observed
1826 * target - target on which reset was observed
1827 *
1828 * Returns: Nothing
1829 *
1830 * Lock status: Host lock must be held
1831 *
1832 * Notes: This only needs to be called if the reset is one which
1833 * originates from an unknown location. Resets originated
1834 * by the mid-level itself don't need to call this, but there
1835 * should be no harm.
1836 *
1837 * The main purpose of this is to make sure that a CHECK_CONDITION
1838 * is properly treated.
1839 */
1840void scsi_report_device_reset(struct Scsi_Host *shost, int channel, int target)
1841{
1842 struct scsi_device *sdev;
1843
1844 __shost_for_each_device(sdev, shost) {
Jeff Garzik422c0d62005-10-24 18:05:09 -04001845 if (channel == sdev_channel(sdev) &&
Mike Christie30bd7df2008-02-29 18:25:19 -06001846 target == sdev_id(sdev))
1847 __scsi_report_device_reset(sdev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849}
1850EXPORT_SYMBOL(scsi_report_device_reset);
1851
1852static void
1853scsi_reset_provider_done_command(struct scsi_cmnd *scmd)
1854{
1855}
1856
1857/*
1858 * Function: scsi_reset_provider
1859 *
1860 * Purpose: Send requested reset to a bus or device at any phase.
1861 *
1862 * Arguments: device - device to send reset to
1863 * flag - reset type (see scsi.h)
1864 *
1865 * Returns: SUCCESS/FAILURE.
1866 *
1867 * Notes: This is used by the SCSI Generic driver to provide
1868 * Bus/Device reset capability.
1869 */
1870int
1871scsi_reset_provider(struct scsi_device *dev, int flag)
1872{
Alan Sternbc4f2402010-06-17 10:41:42 -04001873 struct scsi_cmnd *scmd;
James Smartd7a1bb02006-03-08 14:50:12 -05001874 struct Scsi_Host *shost = dev->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 struct request req;
James Smartd7a1bb02006-03-08 14:50:12 -05001876 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 int rtn;
1878
Alan Sternbc4f2402010-06-17 10:41:42 -04001879 if (scsi_autopm_get_host(shost) < 0)
1880 return FAILED;
1881
1882 scmd = scsi_get_command(dev, GFP_KERNEL);
FUJITA Tomonori4f54eec2008-04-29 09:54:37 +02001883 blk_rq_init(NULL, &req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 scmd->request = &req;
Christoph Hellwigb4edcbc2005-06-19 13:40:52 +02001885
Boaz Harrosh64a87b22008-04-30 11:19:47 +03001886 scmd->cmnd = req.cmd;
1887
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 scmd->scsi_done = scsi_reset_provider_done_command;
Boaz Harrosh30b0c372007-12-13 13:47:40 +02001889 memset(&scmd->sdb, 0, sizeof(scmd->sdb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 scmd->cmd_len = 0;
1892
1893 scmd->sc_data_direction = DMA_BIDIRECTIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
James Smartd7a1bb02006-03-08 14:50:12 -05001895 spin_lock_irqsave(shost->host_lock, flags);
1896 shost->tmf_in_progress = 1;
1897 spin_unlock_irqrestore(shost->host_lock, flags);
1898
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 switch (flag) {
1900 case SCSI_TRY_RESET_DEVICE:
1901 rtn = scsi_try_bus_device_reset(scmd);
1902 if (rtn == SUCCESS)
1903 break;
1904 /* FALLTHROUGH */
Mike Christie30bd7df2008-02-29 18:25:19 -06001905 case SCSI_TRY_RESET_TARGET:
1906 rtn = scsi_try_target_reset(scmd);
1907 if (rtn == SUCCESS)
1908 break;
1909 /* FALLTHROUGH */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 case SCSI_TRY_RESET_BUS:
1911 rtn = scsi_try_bus_reset(scmd);
1912 if (rtn == SUCCESS)
1913 break;
1914 /* FALLTHROUGH */
1915 case SCSI_TRY_RESET_HOST:
1916 rtn = scsi_try_host_reset(scmd);
1917 break;
1918 default:
1919 rtn = FAILED;
1920 }
1921
James Smartd7a1bb02006-03-08 14:50:12 -05001922 spin_lock_irqsave(shost->host_lock, flags);
1923 shost->tmf_in_progress = 0;
1924 spin_unlock_irqrestore(shost->host_lock, flags);
1925
1926 /*
1927 * be sure to wake up anyone who was sleeping or had their queue
1928 * suspended while we performed the TMF.
1929 */
1930 SCSI_LOG_ERROR_RECOVERY(3,
1931 printk("%s: waking up host to restart after TMF\n",
Harvey Harrisoncadbd4a2008-07-03 23:47:27 -07001932 __func__));
James Smartd7a1bb02006-03-08 14:50:12 -05001933
1934 wake_up(&shost->host_wait);
1935
1936 scsi_run_host_queues(shost);
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 scsi_next_command(scmd);
Alan Sternbc4f2402010-06-17 10:41:42 -04001939 scsi_autopm_put_host(shost);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 return rtn;
1941}
1942EXPORT_SYMBOL(scsi_reset_provider);
1943
1944/**
1945 * scsi_normalize_sense - normalize main elements from either fixed or
1946 * descriptor sense data format into a common format.
1947 *
1948 * @sense_buffer: byte array containing sense data returned by device
1949 * @sb_len: number of valid bytes in sense_buffer
1950 * @sshdr: pointer to instance of structure that common
1951 * elements are written to.
1952 *
1953 * Notes:
1954 * The "main elements" from sense data are: response_code, sense_key,
1955 * asc, ascq and additional_length (only for descriptor format).
1956 *
1957 * Typically this function can be called after a device has
1958 * responded to a SCSI command with the CHECK_CONDITION status.
1959 *
1960 * Return value:
1961 * 1 if valid sense data information found, else 0;
Randy Dunlapdc8875e2007-11-15 15:42:30 -08001962 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963int scsi_normalize_sense(const u8 *sense_buffer, int sb_len,
1964 struct scsi_sense_hdr *sshdr)
1965{
James Bottomley33aa6872005-08-28 11:31:14 -05001966 if (!sense_buffer || !sb_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return 0;
1968
1969 memset(sshdr, 0, sizeof(struct scsi_sense_hdr));
1970
1971 sshdr->response_code = (sense_buffer[0] & 0x7f);
James Bottomley33aa6872005-08-28 11:31:14 -05001972
1973 if (!scsi_sense_valid(sshdr))
1974 return 0;
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (sshdr->response_code >= 0x72) {
1977 /*
1978 * descriptor format
1979 */
1980 if (sb_len > 1)
1981 sshdr->sense_key = (sense_buffer[1] & 0xf);
1982 if (sb_len > 2)
1983 sshdr->asc = sense_buffer[2];
1984 if (sb_len > 3)
1985 sshdr->ascq = sense_buffer[3];
1986 if (sb_len > 7)
1987 sshdr->additional_length = sense_buffer[7];
1988 } else {
Jesper Juhl0bf8c862011-03-21 20:47:31 +01001989 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 * fixed format
1991 */
1992 if (sb_len > 2)
1993 sshdr->sense_key = (sense_buffer[2] & 0xf);
1994 if (sb_len > 7) {
1995 sb_len = (sb_len < (sense_buffer[7] + 8)) ?
1996 sb_len : (sense_buffer[7] + 8);
1997 if (sb_len > 12)
1998 sshdr->asc = sense_buffer[12];
1999 if (sb_len > 13)
2000 sshdr->ascq = sense_buffer[13];
2001 }
2002 }
2003
2004 return 1;
2005}
2006EXPORT_SYMBOL(scsi_normalize_sense);
2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008int scsi_command_normalize_sense(struct scsi_cmnd *cmd,
2009 struct scsi_sense_hdr *sshdr)
2010{
2011 return scsi_normalize_sense(cmd->sense_buffer,
FUJITA Tomonorib80ca4f2008-01-13 15:46:13 +09002012 SCSI_SENSE_BUFFERSIZE, sshdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014EXPORT_SYMBOL(scsi_command_normalize_sense);
2015
2016/**
Rob Landleyeb448202007-11-03 13:30:39 -05002017 * scsi_sense_desc_find - search for a given descriptor type in descriptor sense data format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 * @sense_buffer: byte array of descriptor format sense data
2019 * @sb_len: number of valid bytes in sense_buffer
2020 * @desc_type: value of descriptor type to find
2021 * (e.g. 0 -> information)
2022 *
2023 * Notes:
2024 * only valid when sense data is in descriptor format
2025 *
2026 * Return value:
2027 * pointer to start of (first) descriptor if found else NULL
Randy Dunlapdc8875e2007-11-15 15:42:30 -08002028 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029const u8 * scsi_sense_desc_find(const u8 * sense_buffer, int sb_len,
2030 int desc_type)
2031{
2032 int add_sen_len, add_len, desc_len, k;
2033 const u8 * descp;
2034
2035 if ((sb_len < 8) || (0 == (add_sen_len = sense_buffer[7])))
2036 return NULL;
2037 if ((sense_buffer[0] < 0x72) || (sense_buffer[0] > 0x73))
2038 return NULL;
2039 add_sen_len = (add_sen_len < (sb_len - 8)) ?
2040 add_sen_len : (sb_len - 8);
2041 descp = &sense_buffer[8];
2042 for (desc_len = 0, k = 0; k < add_sen_len; k += desc_len) {
2043 descp += desc_len;
2044 add_len = (k < (add_sen_len - 1)) ? descp[1]: -1;
2045 desc_len = add_len + 2;
2046 if (descp[0] == desc_type)
2047 return descp;
2048 if (add_len < 0) // short descriptor ??
2049 break;
2050 }
2051 return NULL;
2052}
2053EXPORT_SYMBOL(scsi_sense_desc_find);
2054
2055/**
Rob Landleyeb448202007-11-03 13:30:39 -05002056 * scsi_get_sense_info_fld - get information field from sense data (either fixed or descriptor format)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 * @sense_buffer: byte array of sense data
2058 * @sb_len: number of valid bytes in sense_buffer
2059 * @info_out: pointer to 64 integer where 8 or 4 byte information
2060 * field will be placed if found.
2061 *
2062 * Return value:
2063 * 1 if information field found, 0 if not found.
Randy Dunlapdc8875e2007-11-15 15:42:30 -08002064 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065int scsi_get_sense_info_fld(const u8 * sense_buffer, int sb_len,
2066 u64 * info_out)
2067{
2068 int j;
2069 const u8 * ucp;
2070 u64 ull;
2071
2072 if (sb_len < 7)
2073 return 0;
2074 switch (sense_buffer[0] & 0x7f) {
2075 case 0x70:
2076 case 0x71:
2077 if (sense_buffer[0] & 0x80) {
2078 *info_out = (sense_buffer[3] << 24) +
2079 (sense_buffer[4] << 16) +
2080 (sense_buffer[5] << 8) + sense_buffer[6];
2081 return 1;
2082 } else
2083 return 0;
2084 case 0x72:
2085 case 0x73:
2086 ucp = scsi_sense_desc_find(sense_buffer, sb_len,
2087 0 /* info desc */);
2088 if (ucp && (0xa == ucp[1])) {
2089 ull = 0;
2090 for (j = 0; j < 8; ++j) {
2091 if (j > 0)
2092 ull <<= 8;
2093 ull |= ucp[4 + j];
2094 }
2095 *info_out = ull;
2096 return 1;
2097 } else
2098 return 0;
2099 default:
2100 return 0;
2101 }
2102}
2103EXPORT_SYMBOL(scsi_get_sense_info_fld);
FUJITA Tomonori3bc6a262008-03-25 09:26:49 +09002104
2105/**
2106 * scsi_build_sense_buffer - build sense data in a buffer
2107 * @desc: Sense format (non zero == descriptor format,
2108 * 0 == fixed format)
2109 * @buf: Where to build sense data
2110 * @key: Sense key
2111 * @asc: Additional sense code
2112 * @ascq: Additional sense code qualifier
2113 *
2114 **/
2115void scsi_build_sense_buffer(int desc, u8 *buf, u8 key, u8 asc, u8 ascq)
2116{
2117 if (desc) {
2118 buf[0] = 0x72; /* descriptor, current */
2119 buf[1] = key;
2120 buf[2] = asc;
2121 buf[3] = ascq;
2122 buf[7] = 0;
2123 } else {
2124 buf[0] = 0x70; /* fixed, current */
2125 buf[2] = key;
2126 buf[7] = 0xa;
2127 buf[12] = asc;
2128 buf[13] = ascq;
2129 }
2130}
2131EXPORT_SYMBOL(scsi_build_sense_buffer);