[SCSI] switch EH thread startup to the kthread API
[safe/jmp/linux-2.6] / drivers / scsi / scsi_error.c
1 /*
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>
19 #include <linux/timer.h>
20 #include <linux/string.h>
21 #include <linux/slab.h>
22 #include <linux/kernel.h>
23 #include <linux/kthread.h>
24 #include <linux/interrupt.h>
25 #include <linux/blkdev.h>
26 #include <linux/delay.h>
27
28 #include <scsi/scsi.h>
29 #include <scsi/scsi_dbg.h>
30 #include <scsi/scsi_device.h>
31 #include <scsi/scsi_eh.h>
32 #include <scsi/scsi_host.h>
33 #include <scsi/scsi_ioctl.h>
34 #include <scsi/scsi_request.h>
35
36 #include "scsi_priv.h"
37 #include "scsi_logging.h"
38
39 #define SENSE_TIMEOUT           (10*HZ)
40 #define START_UNIT_TIMEOUT      (30*HZ)
41
42 /*
43  * These should *probably* be handled by the host itself.
44  * Since it is allowed to sleep, it probably should.
45  */
46 #define BUS_RESET_SETTLE_TIME   (10)
47 #define HOST_RESET_SETTLE_TIME  (10)
48
49 /* called with shost->host_lock held */
50 void scsi_eh_wakeup(struct Scsi_Host *shost)
51 {
52         if (shost->host_busy == shost->host_failed) {
53                 up(shost->eh_wait);
54                 SCSI_LOG_ERROR_RECOVERY(5,
55                                 printk("Waking error handler thread\n"));
56         }
57 }
58
59 /**
60  * scsi_eh_scmd_add - add scsi cmd to error handling.
61  * @scmd:       scmd to run eh on.
62  * @eh_flag:    optional SCSI_EH flag.
63  *
64  * Return value:
65  *      0 on failure.
66  **/
67 int scsi_eh_scmd_add(struct scsi_cmnd *scmd, int eh_flag)
68 {
69         struct Scsi_Host *shost = scmd->device->host;
70         unsigned long flags;
71
72         if (shost->eh_wait == NULL)
73                 return 0;
74
75         spin_lock_irqsave(shost->host_lock, flags);
76
77         scmd->eh_eflags |= eh_flag;
78         list_add_tail(&scmd->eh_entry, &shost->eh_cmd_q);
79         scsi_host_set_state(shost, SHOST_RECOVERY);
80         shost->host_failed++;
81         scsi_eh_wakeup(shost);
82         spin_unlock_irqrestore(shost->host_lock, flags);
83         return 1;
84 }
85
86 /**
87  * scsi_add_timer - Start timeout timer for a single scsi command.
88  * @scmd:       scsi command that is about to start running.
89  * @timeout:    amount of time to allow this command to run.
90  * @complete:   timeout function to call if timer isn't canceled.
91  *
92  * Notes:
93  *    This should be turned into an inline function.  Each scsi command
94  *    has its own timer, and as it is added to the queue, we set up the
95  *    timer.  When the command completes, we cancel the timer.
96  **/
97 void scsi_add_timer(struct scsi_cmnd *scmd, int timeout,
98                     void (*complete)(struct scsi_cmnd *))
99 {
100
101         /*
102          * If the clock was already running for this command, then
103          * first delete the timer.  The timer handling code gets rather
104          * confused if we don't do this.
105          */
106         if (scmd->eh_timeout.function)
107                 del_timer(&scmd->eh_timeout);
108
109         scmd->eh_timeout.data = (unsigned long)scmd;
110         scmd->eh_timeout.expires = jiffies + timeout;
111         scmd->eh_timeout.function = (void (*)(unsigned long)) complete;
112
113         SCSI_LOG_ERROR_RECOVERY(5, printk("%s: scmd: %p, time:"
114                                           " %d, (%p)\n", __FUNCTION__,
115                                           scmd, timeout, complete));
116
117         add_timer(&scmd->eh_timeout);
118 }
119 EXPORT_SYMBOL(scsi_add_timer);
120
121 /**
122  * scsi_delete_timer - Delete/cancel timer for a given function.
123  * @scmd:       Cmd that we are canceling timer for
124  *
125  * Notes:
126  *     This should be turned into an inline function.
127  *
128  * Return value:
129  *     1 if we were able to detach the timer.  0 if we blew it, and the
130  *     timer function has already started to run.
131  **/
132 int scsi_delete_timer(struct scsi_cmnd *scmd)
133 {
134         int rtn;
135
136         rtn = del_timer(&scmd->eh_timeout);
137
138         SCSI_LOG_ERROR_RECOVERY(5, printk("%s: scmd: %p,"
139                                          " rtn: %d\n", __FUNCTION__,
140                                          scmd, rtn));
141
142         scmd->eh_timeout.data = (unsigned long)NULL;
143         scmd->eh_timeout.function = NULL;
144
145         return rtn;
146 }
147 EXPORT_SYMBOL(scsi_delete_timer);
148
149 /**
150  * scsi_times_out - Timeout function for normal scsi commands.
151  * @scmd:       Cmd that is timing out.
152  *
153  * Notes:
154  *     We do not need to lock this.  There is the potential for a race
155  *     only in that the normal completion handling might run, but if the
156  *     normal completion function determines that the timer has already
157  *     fired, then it mustn't do anything.
158  **/
159 void scsi_times_out(struct scsi_cmnd *scmd)
160 {
161         scsi_log_completion(scmd, TIMEOUT_ERROR);
162
163         if (scmd->device->host->hostt->eh_timed_out)
164                 switch (scmd->device->host->hostt->eh_timed_out(scmd)) {
165                 case EH_HANDLED:
166                         __scsi_done(scmd);
167                         return;
168                 case EH_RESET_TIMER:
169                         /* This allows a single retry even of a command
170                          * with allowed == 0 */
171                         if (scmd->retries++ > scmd->allowed)
172                                 break;
173                         scsi_add_timer(scmd, scmd->timeout_per_command,
174                                        scsi_times_out);
175                         return;
176                 case EH_NOT_HANDLED:
177                         break;
178                 }
179
180         if (unlikely(!scsi_eh_scmd_add(scmd, SCSI_EH_CANCEL_CMD))) {
181                 panic("Error handler thread not present at %p %p %s %d",
182                       scmd, scmd->device->host, __FILE__, __LINE__);
183         }
184 }
185
186 /**
187  * scsi_block_when_processing_errors - Prevent cmds from being queued.
188  * @sdev:       Device on which we are performing recovery.
189  *
190  * Description:
191  *     We block until the host is out of error recovery, and then check to
192  *     see whether the host or the device is offline.
193  *
194  * Return value:
195  *     0 when dev was taken offline by error recovery. 1 OK to proceed.
196  **/
197 int scsi_block_when_processing_errors(struct scsi_device *sdev)
198 {
199         int online;
200
201         wait_event(sdev->host->host_wait, (sdev->host->shost_state !=
202                                            SHOST_RECOVERY));
203
204         online = scsi_device_online(sdev);
205
206         SCSI_LOG_ERROR_RECOVERY(5, printk("%s: rtn: %d\n", __FUNCTION__,
207                                           online));
208
209         return online;
210 }
211 EXPORT_SYMBOL(scsi_block_when_processing_errors);
212
213 #ifdef CONFIG_SCSI_LOGGING
214 /**
215  * scsi_eh_prt_fail_stats - Log info on failures.
216  * @shost:      scsi host being recovered.
217  * @work_q:     Queue of scsi cmds to process.
218  **/
219 static inline void scsi_eh_prt_fail_stats(struct Scsi_Host *shost,
220                                           struct list_head *work_q)
221 {
222         struct scsi_cmnd *scmd;
223         struct scsi_device *sdev;
224         int total_failures = 0;
225         int cmd_failed = 0;
226         int cmd_cancel = 0;
227         int devices_failed = 0;
228
229         shost_for_each_device(sdev, shost) {
230                 list_for_each_entry(scmd, work_q, eh_entry) {
231                         if (scmd->device == sdev) {
232                                 ++total_failures;
233                                 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD)
234                                         ++cmd_cancel;
235                                 else 
236                                         ++cmd_failed;
237                         }
238                 }
239
240                 if (cmd_cancel || cmd_failed) {
241                         SCSI_LOG_ERROR_RECOVERY(3,
242                                 printk("%s: %d:%d:%d:%d cmds failed: %d,"
243                                        " cancel: %d\n",
244                                        __FUNCTION__, shost->host_no,
245                                        sdev->channel, sdev->id, sdev->lun,
246                                        cmd_failed, cmd_cancel));
247                         cmd_cancel = 0;
248                         cmd_failed = 0;
249                         ++devices_failed;
250                 }
251         }
252
253         SCSI_LOG_ERROR_RECOVERY(2, printk("Total of %d commands on %d"
254                                           " devices require eh work\n",
255                                   total_failures, devices_failed));
256 }
257 #endif
258
259 /**
260  * scsi_check_sense - Examine scsi cmd sense
261  * @scmd:       Cmd to have sense checked.
262  *
263  * Return value:
264  *      SUCCESS or FAILED or NEEDS_RETRY
265  *
266  * Notes:
267  *      When a deferred error is detected the current command has
268  *      not been executed and needs retrying.
269  **/
270 static int scsi_check_sense(struct scsi_cmnd *scmd)
271 {
272         struct scsi_sense_hdr sshdr;
273
274         if (! scsi_command_normalize_sense(scmd, &sshdr))
275                 return FAILED;  /* no valid sense data */
276
277         if (scsi_sense_is_deferred(&sshdr))
278                 return NEEDS_RETRY;
279
280         /*
281          * Previous logic looked for FILEMARK, EOM or ILI which are
282          * mainly associated with tapes and returned SUCCESS.
283          */
284         if (sshdr.response_code == 0x70) {
285                 /* fixed format */
286                 if (scmd->sense_buffer[2] & 0xe0)
287                         return SUCCESS;
288         } else {
289                 /*
290                  * descriptor format: look for "stream commands sense data
291                  * descriptor" (see SSC-3). Assume single sense data
292                  * descriptor. Ignore ILI from SBC-2 READ LONG and WRITE LONG.
293                  */
294                 if ((sshdr.additional_length > 3) &&
295                     (scmd->sense_buffer[8] == 0x4) &&
296                     (scmd->sense_buffer[11] & 0xe0))
297                         return SUCCESS;
298         }
299
300         switch (sshdr.sense_key) {
301         case NO_SENSE:
302                 return SUCCESS;
303         case RECOVERED_ERROR:
304                 return /* soft_error */ SUCCESS;
305
306         case ABORTED_COMMAND:
307                 return NEEDS_RETRY;
308         case NOT_READY:
309         case UNIT_ATTENTION:
310                 /*
311                  * if we are expecting a cc/ua because of a bus reset that we
312                  * performed, treat this just as a retry.  otherwise this is
313                  * information that we should pass up to the upper-level driver
314                  * so that we can deal with it there.
315                  */
316                 if (scmd->device->expecting_cc_ua) {
317                         scmd->device->expecting_cc_ua = 0;
318                         return NEEDS_RETRY;
319                 }
320                 /*
321                  * if the device is in the process of becoming ready, we 
322                  * should retry.
323                  */
324                 if ((sshdr.asc == 0x04) && (sshdr.ascq == 0x01))
325                         return NEEDS_RETRY;
326                 /*
327                  * if the device is not started, we need to wake
328                  * the error handler to start the motor
329                  */
330                 if (scmd->device->allow_restart &&
331                     (sshdr.asc == 0x04) && (sshdr.ascq == 0x02))
332                         return FAILED;
333                 return SUCCESS;
334
335                 /* these three are not supported */
336         case COPY_ABORTED:
337         case VOLUME_OVERFLOW:
338         case MISCOMPARE:
339                 return SUCCESS;
340
341         case MEDIUM_ERROR:
342                 return NEEDS_RETRY;
343
344         case HARDWARE_ERROR:
345                 if (scmd->device->retry_hwerror)
346                         return NEEDS_RETRY;
347                 else
348                         return SUCCESS;
349
350         case ILLEGAL_REQUEST:
351         case BLANK_CHECK:
352         case DATA_PROTECT:
353         default:
354                 return SUCCESS;
355         }
356 }
357
358 /**
359  * scsi_eh_completed_normally - Disposition a eh cmd on return from LLD.
360  * @scmd:       SCSI cmd to examine.
361  *
362  * Notes:
363  *    This is *only* called when we are examining the status of commands
364  *    queued during error recovery.  the main difference here is that we
365  *    don't allow for the possibility of retries here, and we are a lot
366  *    more restrictive about what we consider acceptable.
367  **/
368 static int scsi_eh_completed_normally(struct scsi_cmnd *scmd)
369 {
370         /*
371          * first check the host byte, to see if there is anything in there
372          * that would indicate what we need to do.
373          */
374         if (host_byte(scmd->result) == DID_RESET) {
375                 /*
376                  * rats.  we are already in the error handler, so we now
377                  * get to try and figure out what to do next.  if the sense
378                  * is valid, we have a pretty good idea of what to do.
379                  * if not, we mark it as FAILED.
380                  */
381                 return scsi_check_sense(scmd);
382         }
383         if (host_byte(scmd->result) != DID_OK)
384                 return FAILED;
385
386         /*
387          * next, check the message byte.
388          */
389         if (msg_byte(scmd->result) != COMMAND_COMPLETE)
390                 return FAILED;
391
392         /*
393          * now, check the status byte to see if this indicates
394          * anything special.
395          */
396         switch (status_byte(scmd->result)) {
397         case GOOD:
398         case COMMAND_TERMINATED:
399                 return SUCCESS;
400         case CHECK_CONDITION:
401                 return scsi_check_sense(scmd);
402         case CONDITION_GOOD:
403         case INTERMEDIATE_GOOD:
404         case INTERMEDIATE_C_GOOD:
405                 /*
406                  * who knows?  FIXME(eric)
407                  */
408                 return SUCCESS;
409         case BUSY:
410         case QUEUE_FULL:
411         case RESERVATION_CONFLICT:
412         default:
413                 return FAILED;
414         }
415         return FAILED;
416 }
417
418 /**
419  * scsi_eh_times_out - timeout function for error handling.
420  * @scmd:       Cmd that is timing out.
421  *
422  * Notes:
423  *    During error handling, the kernel thread will be sleeping waiting
424  *    for some action to complete on the device.  our only job is to
425  *    record that it timed out, and to wake up the thread.
426  **/
427 static void scsi_eh_times_out(struct scsi_cmnd *scmd)
428 {
429         scmd->eh_eflags |= SCSI_EH_REC_TIMEOUT;
430         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd:%p\n", __FUNCTION__,
431                                           scmd));
432
433         up(scmd->device->host->eh_action);
434 }
435
436 /**
437  * scsi_eh_done - Completion function for error handling.
438  * @scmd:       Cmd that is done.
439  **/
440 static void scsi_eh_done(struct scsi_cmnd *scmd)
441 {
442         /*
443          * if the timeout handler is already running, then just set the
444          * flag which says we finished late, and return.  we have no
445          * way of stopping the timeout handler from running, so we must
446          * always defer to it.
447          */
448         if (del_timer(&scmd->eh_timeout)) {
449                 scmd->request->rq_status = RQ_SCSI_DONE;
450
451                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s scmd: %p result: %x\n",
452                                            __FUNCTION__, scmd, scmd->result));
453
454                 up(scmd->device->host->eh_action);
455         }
456 }
457
458 /**
459  * scsi_send_eh_cmnd  - send a cmd to a device as part of error recovery.
460  * @scmd:       SCSI Cmd to send.
461  * @timeout:    Timeout for cmd.
462  *
463  * Notes:
464  *    The initialization of the structures is quite a bit different in
465  *    this case, and furthermore, there is a different completion handler
466  *    vs scsi_dispatch_cmd.
467  * Return value:
468  *    SUCCESS or FAILED or NEEDS_RETRY
469  **/
470 static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, int timeout)
471 {
472         struct scsi_device *sdev = scmd->device;
473         struct Scsi_Host *shost = sdev->host;
474         DECLARE_MUTEX_LOCKED(sem);
475         unsigned long flags;
476         int rtn = SUCCESS;
477
478         /*
479          * we will use a queued command if possible, otherwise we will
480          * emulate the queuing and calling of completion function ourselves.
481          */
482         if (sdev->scsi_level <= SCSI_2)
483                 scmd->cmnd[1] = (scmd->cmnd[1] & 0x1f) |
484                         (sdev->lun << 5 & 0xe0);
485
486         scsi_add_timer(scmd, timeout, scsi_eh_times_out);
487
488         /*
489          * set up the semaphore so we wait for the command to complete.
490          */
491         shost->eh_action = &sem;
492         scmd->request->rq_status = RQ_SCSI_BUSY;
493
494         spin_lock_irqsave(shost->host_lock, flags);
495         scsi_log_send(scmd);
496         shost->hostt->queuecommand(scmd, scsi_eh_done);
497         spin_unlock_irqrestore(shost->host_lock, flags);
498
499         down(&sem);
500         scsi_log_completion(scmd, SUCCESS);
501
502         shost->eh_action = NULL;
503
504         /*
505          * see if timeout.  if so, tell the host to forget about it.
506          * in other words, we don't want a callback any more.
507          */
508         if (scmd->eh_eflags & SCSI_EH_REC_TIMEOUT) {
509                 scmd->eh_eflags &= ~SCSI_EH_REC_TIMEOUT;
510
511                 /*
512                  * as far as the low level driver is
513                  * concerned, this command is still active, so
514                  * we must give the low level driver a chance
515                  * to abort it. (db) 
516                  *
517                  * FIXME(eric) - we are not tracking whether we could
518                  * abort a timed out command or not.  not sure how
519                  * we should treat them differently anyways.
520                  */
521                 if (shost->hostt->eh_abort_handler)
522                         shost->hostt->eh_abort_handler(scmd);
523                         
524                 scmd->request->rq_status = RQ_SCSI_DONE;
525                 rtn = FAILED;
526         }
527
528         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd: %p, rtn:%x\n",
529                                           __FUNCTION__, scmd, rtn));
530
531         /*
532          * now examine the actual status codes to see whether the command
533          * actually did complete normally.
534          */
535         if (rtn == SUCCESS) {
536                 rtn = scsi_eh_completed_normally(scmd);
537                 SCSI_LOG_ERROR_RECOVERY(3,
538                         printk("%s: scsi_eh_completed_normally %x\n",
539                                __FUNCTION__, rtn));
540                 switch (rtn) {
541                 case SUCCESS:
542                 case NEEDS_RETRY:
543                 case FAILED:
544                         break;
545                 default:
546                         rtn = FAILED;
547                         break;
548                 }
549         }
550
551         return rtn;
552 }
553
554 /**
555  * scsi_request_sense - Request sense data from a particular target.
556  * @scmd:       SCSI cmd for request sense.
557  *
558  * Notes:
559  *    Some hosts automatically obtain this information, others require
560  *    that we obtain it on our own. This function will *not* return until
561  *    the command either times out, or it completes.
562  **/
563 static int scsi_request_sense(struct scsi_cmnd *scmd)
564 {
565         static unsigned char generic_sense[6] =
566         {REQUEST_SENSE, 0, 0, 0, 252, 0};
567         unsigned char *scsi_result;
568         int saved_result;
569         int rtn;
570
571         memcpy(scmd->cmnd, generic_sense, sizeof(generic_sense));
572
573         scsi_result = kmalloc(252, GFP_ATOMIC | ((scmd->device->host->hostt->unchecked_isa_dma) ? __GFP_DMA : 0));
574
575
576         if (unlikely(!scsi_result)) {
577                 printk(KERN_ERR "%s: cannot allocate scsi_result.\n",
578                        __FUNCTION__);
579                 return FAILED;
580         }
581
582         /*
583          * zero the sense buffer.  some host adapters automatically always
584          * request sense, so it is not a good idea that
585          * scmd->request_buffer and scmd->sense_buffer point to the same
586          * address (db).  0 is not a valid sense code. 
587          */
588         memset(scmd->sense_buffer, 0, sizeof(scmd->sense_buffer));
589         memset(scsi_result, 0, 252);
590
591         saved_result = scmd->result;
592         scmd->request_buffer = scsi_result;
593         scmd->request_bufflen = 252;
594         scmd->use_sg = 0;
595         scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
596         scmd->sc_data_direction = DMA_FROM_DEVICE;
597         scmd->underflow = 0;
598
599         rtn = scsi_send_eh_cmnd(scmd, SENSE_TIMEOUT);
600
601         /* last chance to have valid sense data */
602         if(!SCSI_SENSE_VALID(scmd)) {
603                 memcpy(scmd->sense_buffer, scmd->request_buffer,
604                        sizeof(scmd->sense_buffer));
605         }
606
607         kfree(scsi_result);
608
609         /*
610          * when we eventually call scsi_finish, we really wish to complete
611          * the original request, so let's restore the original data. (db)
612          */
613         scsi_setup_cmd_retry(scmd);
614         scmd->result = saved_result;
615         return rtn;
616 }
617
618 /**
619  * scsi_eh_finish_cmd - Handle a cmd that eh is finished with.
620  * @scmd:       Original SCSI cmd that eh has finished.
621  * @done_q:     Queue for processed commands.
622  *
623  * Notes:
624  *    We don't want to use the normal command completion while we are are
625  *    still handling errors - it may cause other commands to be queued,
626  *    and that would disturb what we are doing.  thus we really want to
627  *    keep a list of pending commands for final completion, and once we
628  *    are ready to leave error handling we handle completion for real.
629  **/
630 static void scsi_eh_finish_cmd(struct scsi_cmnd *scmd,
631                                struct list_head *done_q)
632 {
633         scmd->device->host->host_failed--;
634         scmd->eh_eflags = 0;
635
636         /*
637          * set this back so that the upper level can correctly free up
638          * things.
639          */
640         scsi_setup_cmd_retry(scmd);
641         list_move_tail(&scmd->eh_entry, done_q);
642 }
643
644 /**
645  * scsi_eh_get_sense - Get device sense data.
646  * @work_q:     Queue of commands to process.
647  * @done_q:     Queue of proccessed commands..
648  *
649  * Description:
650  *    See if we need to request sense information.  if so, then get it
651  *    now, so we have a better idea of what to do.  
652  *
653  * Notes:
654  *    This has the unfortunate side effect that if a shost adapter does
655  *    not automatically request sense information, that we end up shutting
656  *    it down before we request it.
657  *
658  *    All drivers should request sense information internally these days,
659  *    so for now all I have to say is tough noogies if you end up in here.
660  *
661  *    XXX: Long term this code should go away, but that needs an audit of
662  *         all LLDDs first.
663  **/
664 static int scsi_eh_get_sense(struct list_head *work_q,
665                              struct list_head *done_q)
666 {
667         struct scsi_cmnd *scmd, *next;
668         int rtn;
669
670         list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
671                 if ((scmd->eh_eflags & SCSI_EH_CANCEL_CMD) ||
672                     SCSI_SENSE_VALID(scmd))
673                         continue;
674
675                 SCSI_LOG_ERROR_RECOVERY(2, printk("%s: requesting sense"
676                                                   " for id: %d\n",
677                                                   current->comm,
678                                                   scmd->device->id));
679                 rtn = scsi_request_sense(scmd);
680                 if (rtn != SUCCESS)
681                         continue;
682
683                 SCSI_LOG_ERROR_RECOVERY(3, printk("sense requested for %p"
684                                                   " result %x\n", scmd,
685                                                   scmd->result));
686                 SCSI_LOG_ERROR_RECOVERY(3, scsi_print_sense("bh", scmd));
687
688                 rtn = scsi_decide_disposition(scmd);
689
690                 /*
691                  * if the result was normal, then just pass it along to the
692                  * upper level.
693                  */
694                 if (rtn == SUCCESS)
695                         /* we don't want this command reissued, just
696                          * finished with the sense data, so set
697                          * retries to the max allowed to ensure it
698                          * won't get reissued */
699                         scmd->retries = scmd->allowed;
700                 else if (rtn != NEEDS_RETRY)
701                         continue;
702
703                 scsi_eh_finish_cmd(scmd, done_q);
704         }
705
706         return list_empty(work_q);
707 }
708
709 /**
710  * scsi_try_to_abort_cmd - Ask host to abort a running command.
711  * @scmd:       SCSI cmd to abort from Lower Level.
712  *
713  * Notes:
714  *    This function will not return until the user's completion function
715  *    has been called.  there is no timeout on this operation.  if the
716  *    author of the low-level driver wishes this operation to be timed,
717  *    they can provide this facility themselves.  helper functions in
718  *    scsi_error.c can be supplied to make this easier to do.
719  **/
720 static int scsi_try_to_abort_cmd(struct scsi_cmnd *scmd)
721 {
722         if (!scmd->device->host->hostt->eh_abort_handler)
723                 return FAILED;
724
725         /*
726          * scsi_done was called just after the command timed out and before
727          * we had a chance to process it. (db)
728          */
729         if (scmd->serial_number == 0)
730                 return SUCCESS;
731         return scmd->device->host->hostt->eh_abort_handler(scmd);
732 }
733
734 /**
735  * scsi_eh_tur - Send TUR to device.
736  * @scmd:       Scsi cmd to send TUR
737  *
738  * Return value:
739  *    0 - Device is ready. 1 - Device NOT ready.
740  **/
741 static int scsi_eh_tur(struct scsi_cmnd *scmd)
742 {
743         static unsigned char tur_command[6] = {TEST_UNIT_READY, 0, 0, 0, 0, 0};
744         int retry_cnt = 1, rtn;
745         int saved_result;
746
747 retry_tur:
748         memcpy(scmd->cmnd, tur_command, sizeof(tur_command));
749
750         /*
751          * zero the sense buffer.  the scsi spec mandates that any
752          * untransferred sense data should be interpreted as being zero.
753          */
754         memset(scmd->sense_buffer, 0, sizeof(scmd->sense_buffer));
755
756         saved_result = scmd->result;
757         scmd->request_buffer = NULL;
758         scmd->request_bufflen = 0;
759         scmd->use_sg = 0;
760         scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
761         scmd->underflow = 0;
762         scmd->sc_data_direction = DMA_NONE;
763
764         rtn = scsi_send_eh_cmnd(scmd, SENSE_TIMEOUT);
765
766         /*
767          * when we eventually call scsi_finish, we really wish to complete
768          * the original request, so let's restore the original data. (db)
769          */
770         scsi_setup_cmd_retry(scmd);
771         scmd->result = saved_result;
772
773         /*
774          * hey, we are done.  let's look to see what happened.
775          */
776         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd %p rtn %x\n",
777                 __FUNCTION__, scmd, rtn));
778         if (rtn == SUCCESS)
779                 return 0;
780         else if (rtn == NEEDS_RETRY) {
781                 if (retry_cnt--)
782                         goto retry_tur;
783                 return 0;
784         }
785         return 1;
786 }
787
788 /**
789  * scsi_eh_abort_cmds - abort canceled commands.
790  * @shost:      scsi host being recovered.
791  * @eh_done_q:  list_head for processed commands.
792  *
793  * Decription:
794  *    Try and see whether or not it makes sense to try and abort the
795  *    running command.  this only works out to be the case if we have one
796  *    command that has timed out.  if the command simply failed, it makes
797  *    no sense to try and abort the command, since as far as the shost
798  *    adapter is concerned, it isn't running.
799  **/
800 static int scsi_eh_abort_cmds(struct list_head *work_q,
801                               struct list_head *done_q)
802 {
803         struct scsi_cmnd *scmd, *next;
804         int rtn;
805
806         list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
807                 if (!(scmd->eh_eflags & SCSI_EH_CANCEL_CMD))
808                         continue;
809                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting cmd:"
810                                                   "0x%p\n", current->comm,
811                                                   scmd));
812                 rtn = scsi_try_to_abort_cmd(scmd);
813                 if (rtn == SUCCESS) {
814                         scmd->eh_eflags &= ~SCSI_EH_CANCEL_CMD;
815                         if (!scsi_device_online(scmd->device) ||
816                             !scsi_eh_tur(scmd)) {
817                                 scsi_eh_finish_cmd(scmd, done_q);
818                         }
819                                 
820                 } else
821                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: aborting"
822                                                           " cmd failed:"
823                                                           "0x%p\n",
824                                                           current->comm,
825                                                           scmd));
826         }
827
828         return list_empty(work_q);
829 }
830
831 /**
832  * scsi_try_bus_device_reset - Ask host to perform a BDR on a dev
833  * @scmd:       SCSI cmd used to send BDR       
834  *
835  * Notes:
836  *    There is no timeout for this operation.  if this operation is
837  *    unreliable for a given host, then the host itself needs to put a
838  *    timer on it, and set the host back to a consistent state prior to
839  *    returning.
840  **/
841 static int scsi_try_bus_device_reset(struct scsi_cmnd *scmd)
842 {
843         int rtn;
844
845         if (!scmd->device->host->hostt->eh_device_reset_handler)
846                 return FAILED;
847
848         rtn = scmd->device->host->hostt->eh_device_reset_handler(scmd);
849         if (rtn == SUCCESS) {
850                 scmd->device->was_reset = 1;
851                 scmd->device->expecting_cc_ua = 1;
852         }
853
854         return rtn;
855 }
856
857 /**
858  * scsi_eh_try_stu - Send START_UNIT to device.
859  * @scmd:       Scsi cmd to send START_UNIT
860  *
861  * Return value:
862  *    0 - Device is ready. 1 - Device NOT ready.
863  **/
864 static int scsi_eh_try_stu(struct scsi_cmnd *scmd)
865 {
866         static unsigned char stu_command[6] = {START_STOP, 0, 0, 0, 1, 0};
867         int rtn;
868         int saved_result;
869
870         if (!scmd->device->allow_restart)
871                 return 1;
872
873         memcpy(scmd->cmnd, stu_command, sizeof(stu_command));
874
875         /*
876          * zero the sense buffer.  the scsi spec mandates that any
877          * untransferred sense data should be interpreted as being zero.
878          */
879         memset(scmd->sense_buffer, 0, sizeof(scmd->sense_buffer));
880
881         saved_result = scmd->result;
882         scmd->request_buffer = NULL;
883         scmd->request_bufflen = 0;
884         scmd->use_sg = 0;
885         scmd->cmd_len = COMMAND_SIZE(scmd->cmnd[0]);
886         scmd->underflow = 0;
887         scmd->sc_data_direction = DMA_NONE;
888
889         rtn = scsi_send_eh_cmnd(scmd, START_UNIT_TIMEOUT);
890
891         /*
892          * when we eventually call scsi_finish, we really wish to complete
893          * the original request, so let's restore the original data. (db)
894          */
895         scsi_setup_cmd_retry(scmd);
896         scmd->result = saved_result;
897
898         /*
899          * hey, we are done.  let's look to see what happened.
900          */
901         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: scmd %p rtn %x\n",
902                 __FUNCTION__, scmd, rtn));
903         if (rtn == SUCCESS)
904                 return 0;
905         return 1;
906 }
907
908  /**
909  * scsi_eh_stu - send START_UNIT if needed
910  * @shost:      scsi host being recovered.
911  * @eh_done_q:  list_head for processed commands.
912  *
913  * Notes:
914  *    If commands are failing due to not ready, initializing command required,
915  *      try revalidating the device, which will end up sending a start unit. 
916  **/
917 static int scsi_eh_stu(struct Scsi_Host *shost,
918                               struct list_head *work_q,
919                               struct list_head *done_q)
920 {
921         struct scsi_cmnd *scmd, *stu_scmd, *next;
922         struct scsi_device *sdev;
923
924         shost_for_each_device(sdev, shost) {
925                 stu_scmd = NULL;
926                 list_for_each_entry(scmd, work_q, eh_entry)
927                         if (scmd->device == sdev && SCSI_SENSE_VALID(scmd) &&
928                             scsi_check_sense(scmd) == FAILED ) {
929                                 stu_scmd = scmd;
930                                 break;
931                         }
932
933                 if (!stu_scmd)
934                         continue;
935
936                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending START_UNIT to sdev:"
937                                                   " 0x%p\n", current->comm, sdev));
938
939                 if (!scsi_eh_try_stu(stu_scmd)) {
940                         if (!scsi_device_online(sdev) ||
941                             !scsi_eh_tur(stu_scmd)) {
942                                 list_for_each_entry_safe(scmd, next,
943                                                           work_q, eh_entry) {
944                                         if (scmd->device == sdev)
945                                                 scsi_eh_finish_cmd(scmd, done_q);
946                                 }
947                         }
948                 } else {
949                         SCSI_LOG_ERROR_RECOVERY(3,
950                                                 printk("%s: START_UNIT failed to sdev:"
951                                                        " 0x%p\n", current->comm, sdev));
952                 }
953         }
954
955         return list_empty(work_q);
956 }
957
958
959 /**
960  * scsi_eh_bus_device_reset - send bdr if needed
961  * @shost:      scsi host being recovered.
962  * @eh_done_q:  list_head for processed commands.
963  *
964  * Notes:
965  *    Try a bus device reset.  still, look to see whether we have multiple
966  *    devices that are jammed or not - if we have multiple devices, it
967  *    makes no sense to try bus_device_reset - we really would need to try
968  *    a bus_reset instead. 
969  **/
970 static int scsi_eh_bus_device_reset(struct Scsi_Host *shost,
971                                     struct list_head *work_q,
972                                     struct list_head *done_q)
973 {
974         struct scsi_cmnd *scmd, *bdr_scmd, *next;
975         struct scsi_device *sdev;
976         int rtn;
977
978         shost_for_each_device(sdev, shost) {
979                 bdr_scmd = NULL;
980                 list_for_each_entry(scmd, work_q, eh_entry)
981                         if (scmd->device == sdev) {
982                                 bdr_scmd = scmd;
983                                 break;
984                         }
985
986                 if (!bdr_scmd)
987                         continue;
988
989                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BDR sdev:"
990                                                   " 0x%p\n", current->comm,
991                                                   sdev));
992                 rtn = scsi_try_bus_device_reset(bdr_scmd);
993                 if (rtn == SUCCESS) {
994                         if (!scsi_device_online(sdev) ||
995                             !scsi_eh_tur(bdr_scmd)) {
996                                 list_for_each_entry_safe(scmd, next,
997                                                          work_q, eh_entry) {
998                                         if (scmd->device == sdev)
999                                                 scsi_eh_finish_cmd(scmd,
1000                                                                    done_q);
1001                                 }
1002                         }
1003                 } else {
1004                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BDR"
1005                                                           " failed sdev:"
1006                                                           "0x%p\n",
1007                                                           current->comm,
1008                                                            sdev));
1009                 }
1010         }
1011
1012         return list_empty(work_q);
1013 }
1014
1015 /**
1016  * scsi_try_bus_reset - ask host to perform a bus reset
1017  * @scmd:       SCSI cmd to send bus reset.
1018  **/
1019 static int scsi_try_bus_reset(struct scsi_cmnd *scmd)
1020 {
1021         unsigned long flags;
1022         int rtn;
1023
1024         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Bus RST\n",
1025                                           __FUNCTION__));
1026
1027         if (!scmd->device->host->hostt->eh_bus_reset_handler)
1028                 return FAILED;
1029
1030         rtn = scmd->device->host->hostt->eh_bus_reset_handler(scmd);
1031
1032         if (rtn == SUCCESS) {
1033                 if (!scmd->device->host->hostt->skip_settle_delay)
1034                         ssleep(BUS_RESET_SETTLE_TIME);
1035                 spin_lock_irqsave(scmd->device->host->host_lock, flags);
1036                 scsi_report_bus_reset(scmd->device->host, scmd->device->channel);
1037                 spin_unlock_irqrestore(scmd->device->host->host_lock, flags);
1038         }
1039
1040         return rtn;
1041 }
1042
1043 /**
1044  * scsi_try_host_reset - ask host adapter to reset itself
1045  * @scmd:       SCSI cmd to send hsot reset.
1046  **/
1047 static int scsi_try_host_reset(struct scsi_cmnd *scmd)
1048 {
1049         unsigned long flags;
1050         int rtn;
1051
1052         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Snd Host RST\n",
1053                                           __FUNCTION__));
1054
1055         if (!scmd->device->host->hostt->eh_host_reset_handler)
1056                 return FAILED;
1057
1058         rtn = scmd->device->host->hostt->eh_host_reset_handler(scmd);
1059
1060         if (rtn == SUCCESS) {
1061                 if (!scmd->device->host->hostt->skip_settle_delay)
1062                         ssleep(HOST_RESET_SETTLE_TIME);
1063                 spin_lock_irqsave(scmd->device->host->host_lock, flags);
1064                 scsi_report_bus_reset(scmd->device->host, scmd->device->channel);
1065                 spin_unlock_irqrestore(scmd->device->host->host_lock, flags);
1066         }
1067
1068         return rtn;
1069 }
1070
1071 /**
1072  * scsi_eh_bus_reset - send a bus reset 
1073  * @shost:      scsi host being recovered.
1074  * @eh_done_q:  list_head for processed commands.
1075  **/
1076 static int scsi_eh_bus_reset(struct Scsi_Host *shost,
1077                              struct list_head *work_q,
1078                              struct list_head *done_q)
1079 {
1080         struct scsi_cmnd *scmd, *chan_scmd, *next;
1081         unsigned int channel;
1082         int rtn;
1083
1084         /*
1085          * we really want to loop over the various channels, and do this on
1086          * a channel by channel basis.  we should also check to see if any
1087          * of the failed commands are on soft_reset devices, and if so, skip
1088          * the reset.  
1089          */
1090
1091         for (channel = 0; channel <= shost->max_channel; channel++) {
1092                 chan_scmd = NULL;
1093                 list_for_each_entry(scmd, work_q, eh_entry) {
1094                         if (channel == scmd->device->channel) {
1095                                 chan_scmd = scmd;
1096                                 break;
1097                                 /*
1098                                  * FIXME add back in some support for
1099                                  * soft_reset devices.
1100                                  */
1101                         }
1102                 }
1103
1104                 if (!chan_scmd)
1105                         continue;
1106                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending BRST chan:"
1107                                                   " %d\n", current->comm,
1108                                                   channel));
1109                 rtn = scsi_try_bus_reset(chan_scmd);
1110                 if (rtn == SUCCESS) {
1111                         list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1112                                 if (channel == scmd->device->channel)
1113                                         if (!scsi_device_online(scmd->device) ||
1114                                             !scsi_eh_tur(scmd))
1115                                                 scsi_eh_finish_cmd(scmd,
1116                                                                    done_q);
1117                         }
1118                 } else {
1119                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: BRST"
1120                                                           " failed chan: %d\n",
1121                                                           current->comm,
1122                                                           channel));
1123                 }
1124         }
1125         return list_empty(work_q);
1126 }
1127
1128 /**
1129  * scsi_eh_host_reset - send a host reset 
1130  * @work_q:     list_head for processed commands.
1131  * @done_q:     list_head for processed commands.
1132  **/
1133 static int scsi_eh_host_reset(struct list_head *work_q,
1134                               struct list_head *done_q)
1135 {
1136         struct scsi_cmnd *scmd, *next;
1137         int rtn;
1138
1139         if (!list_empty(work_q)) {
1140                 scmd = list_entry(work_q->next,
1141                                   struct scsi_cmnd, eh_entry);
1142
1143                 SCSI_LOG_ERROR_RECOVERY(3, printk("%s: Sending HRST\n"
1144                                                   , current->comm));
1145
1146                 rtn = scsi_try_host_reset(scmd);
1147                 if (rtn == SUCCESS) {
1148                         list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1149                                 if (!scsi_device_online(scmd->device) ||
1150                                     (!scsi_eh_try_stu(scmd) && !scsi_eh_tur(scmd)) ||
1151                                     !scsi_eh_tur(scmd))
1152                                         scsi_eh_finish_cmd(scmd, done_q);
1153                         }
1154                 } else {
1155                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: HRST"
1156                                                           " failed\n",
1157                                                           current->comm));
1158                 }
1159         }
1160         return list_empty(work_q);
1161 }
1162
1163 /**
1164  * scsi_eh_offline_sdevs - offline scsi devices that fail to recover
1165  * @work_q:     list_head for processed commands.
1166  * @done_q:     list_head for processed commands.
1167  *
1168  **/
1169 static void scsi_eh_offline_sdevs(struct list_head *work_q,
1170                                   struct list_head *done_q)
1171 {
1172         struct scsi_cmnd *scmd, *next;
1173
1174         list_for_each_entry_safe(scmd, next, work_q, eh_entry) {
1175                 printk(KERN_INFO "scsi: Device offlined - not"
1176                                 " ready after error recovery: host"
1177                                 " %d channel %d id %d lun %d\n",
1178                                 scmd->device->host->host_no,
1179                                 scmd->device->channel,
1180                                 scmd->device->id,
1181                                 scmd->device->lun);
1182                 scsi_device_set_state(scmd->device, SDEV_OFFLINE);
1183                 if (scmd->eh_eflags & SCSI_EH_CANCEL_CMD) {
1184                         /*
1185                          * FIXME: Handle lost cmds.
1186                          */
1187                 }
1188                 scsi_eh_finish_cmd(scmd, done_q);
1189         }
1190         return;
1191 }
1192
1193 /**
1194  * scsi_decide_disposition - Disposition a cmd on return from LLD.
1195  * @scmd:       SCSI cmd to examine.
1196  *
1197  * Notes:
1198  *    This is *only* called when we are examining the status after sending
1199  *    out the actual data command.  any commands that are queued for error
1200  *    recovery (e.g. test_unit_ready) do *not* come through here.
1201  *
1202  *    When this routine returns failed, it means the error handler thread
1203  *    is woken.  In cases where the error code indicates an error that
1204  *    doesn't require the error handler read (i.e. we don't need to
1205  *    abort/reset), this function should return SUCCESS.
1206  **/
1207 int scsi_decide_disposition(struct scsi_cmnd *scmd)
1208 {
1209         int rtn;
1210
1211         /*
1212          * if the device is offline, then we clearly just pass the result back
1213          * up to the top level.
1214          */
1215         if (!scsi_device_online(scmd->device)) {
1216                 SCSI_LOG_ERROR_RECOVERY(5, printk("%s: device offline - report"
1217                                                   " as SUCCESS\n",
1218                                                   __FUNCTION__));
1219                 return SUCCESS;
1220         }
1221
1222         /*
1223          * first check the host byte, to see if there is anything in there
1224          * that would indicate what we need to do.
1225          */
1226         switch (host_byte(scmd->result)) {
1227         case DID_PASSTHROUGH:
1228                 /*
1229                  * no matter what, pass this through to the upper layer.
1230                  * nuke this special code so that it looks like we are saying
1231                  * did_ok.
1232                  */
1233                 scmd->result &= 0xff00ffff;
1234                 return SUCCESS;
1235         case DID_OK:
1236                 /*
1237                  * looks good.  drop through, and check the next byte.
1238                  */
1239                 break;
1240         case DID_NO_CONNECT:
1241         case DID_BAD_TARGET:
1242         case DID_ABORT:
1243                 /*
1244                  * note - this means that we just report the status back
1245                  * to the top level driver, not that we actually think
1246                  * that it indicates SUCCESS.
1247                  */
1248                 return SUCCESS;
1249                 /*
1250                  * when the low level driver returns did_soft_error,
1251                  * it is responsible for keeping an internal retry counter 
1252                  * in order to avoid endless loops (db)
1253                  *
1254                  * actually this is a bug in this function here.  we should
1255                  * be mindful of the maximum number of retries specified
1256                  * and not get stuck in a loop.
1257                  */
1258         case DID_SOFT_ERROR:
1259                 goto maybe_retry;
1260         case DID_IMM_RETRY:
1261                 return NEEDS_RETRY;
1262
1263         case DID_REQUEUE:
1264                 return ADD_TO_MLQUEUE;
1265
1266         case DID_ERROR:
1267                 if (msg_byte(scmd->result) == COMMAND_COMPLETE &&
1268                     status_byte(scmd->result) == RESERVATION_CONFLICT)
1269                         /*
1270                          * execute reservation conflict processing code
1271                          * lower down
1272                          */
1273                         break;
1274                 /* fallthrough */
1275
1276         case DID_BUS_BUSY:
1277         case DID_PARITY:
1278                 goto maybe_retry;
1279         case DID_TIME_OUT:
1280                 /*
1281                  * when we scan the bus, we get timeout messages for
1282                  * these commands if there is no device available.
1283                  * other hosts report did_no_connect for the same thing.
1284                  */
1285                 if ((scmd->cmnd[0] == TEST_UNIT_READY ||
1286                      scmd->cmnd[0] == INQUIRY)) {
1287                         return SUCCESS;
1288                 } else {
1289                         return FAILED;
1290                 }
1291         case DID_RESET:
1292                 return SUCCESS;
1293         default:
1294                 return FAILED;
1295         }
1296
1297         /*
1298          * next, check the message byte.
1299          */
1300         if (msg_byte(scmd->result) != COMMAND_COMPLETE)
1301                 return FAILED;
1302
1303         /*
1304          * check the status byte to see if this indicates anything special.
1305          */
1306         switch (status_byte(scmd->result)) {
1307         case QUEUE_FULL:
1308                 /*
1309                  * the case of trying to send too many commands to a
1310                  * tagged queueing device.
1311                  */
1312         case BUSY:
1313                 /*
1314                  * device can't talk to us at the moment.  Should only
1315                  * occur (SAM-3) when the task queue is empty, so will cause
1316                  * the empty queue handling to trigger a stall in the
1317                  * device.
1318                  */
1319                 return ADD_TO_MLQUEUE;
1320         case GOOD:
1321         case COMMAND_TERMINATED:
1322         case TASK_ABORTED:
1323                 return SUCCESS;
1324         case CHECK_CONDITION:
1325                 rtn = scsi_check_sense(scmd);
1326                 if (rtn == NEEDS_RETRY)
1327                         goto maybe_retry;
1328                 /* if rtn == FAILED, we have no sense information;
1329                  * returning FAILED will wake the error handler thread
1330                  * to collect the sense and redo the decide
1331                  * disposition */
1332                 return rtn;
1333         case CONDITION_GOOD:
1334         case INTERMEDIATE_GOOD:
1335         case INTERMEDIATE_C_GOOD:
1336         case ACA_ACTIVE:
1337                 /*
1338                  * who knows?  FIXME(eric)
1339                  */
1340                 return SUCCESS;
1341
1342         case RESERVATION_CONFLICT:
1343                 printk(KERN_INFO "scsi: reservation conflict: host"
1344                                 " %d channel %d id %d lun %d\n",
1345                        scmd->device->host->host_no, scmd->device->channel,
1346                        scmd->device->id, scmd->device->lun);
1347                 return SUCCESS; /* causes immediate i/o error */
1348         default:
1349                 return FAILED;
1350         }
1351         return FAILED;
1352
1353       maybe_retry:
1354
1355         /* we requeue for retry because the error was retryable, and
1356          * the request was not marked fast fail.  Note that above,
1357          * even if the request is marked fast fail, we still requeue
1358          * for queue congestion conditions (QUEUE_FULL or BUSY) */
1359         if ((++scmd->retries) < scmd->allowed 
1360             && !blk_noretry_request(scmd->request)) {
1361                 return NEEDS_RETRY;
1362         } else {
1363                 /*
1364                  * no more retries - report this one back to upper level.
1365                  */
1366                 return SUCCESS;
1367         }
1368 }
1369
1370 /**
1371  * scsi_eh_lock_done - done function for eh door lock request
1372  * @scmd:       SCSI command block for the door lock request
1373  *
1374  * Notes:
1375  *      We completed the asynchronous door lock request, and it has either
1376  *      locked the door or failed.  We must free the command structures
1377  *      associated with this request.
1378  **/
1379 static void scsi_eh_lock_done(struct scsi_cmnd *scmd)
1380 {
1381         struct scsi_request *sreq = scmd->sc_request;
1382
1383         scsi_release_request(sreq);
1384 }
1385
1386
1387 /**
1388  * scsi_eh_lock_door - Prevent medium removal for the specified device
1389  * @sdev:       SCSI device to prevent medium removal
1390  *
1391  * Locking:
1392  *      We must be called from process context; scsi_allocate_request()
1393  *      may sleep.
1394  *
1395  * Notes:
1396  *      We queue up an asynchronous "ALLOW MEDIUM REMOVAL" request on the
1397  *      head of the devices request queue, and continue.
1398  *
1399  * Bugs:
1400  *      scsi_allocate_request() may sleep waiting for existing requests to
1401  *      be processed.  However, since we haven't kicked off any request
1402  *      processing for this host, this may deadlock.
1403  *
1404  *      If scsi_allocate_request() fails for what ever reason, we
1405  *      completely forget to lock the door.
1406  **/
1407 static void scsi_eh_lock_door(struct scsi_device *sdev)
1408 {
1409         struct scsi_request *sreq = scsi_allocate_request(sdev, GFP_KERNEL);
1410
1411         if (unlikely(!sreq)) {
1412                 printk(KERN_ERR "%s: request allocate failed,"
1413                        "prevent media removal cmd not sent\n", __FUNCTION__);
1414                 return;
1415         }
1416
1417         sreq->sr_cmnd[0] = ALLOW_MEDIUM_REMOVAL;
1418         sreq->sr_cmnd[1] = 0;
1419         sreq->sr_cmnd[2] = 0;
1420         sreq->sr_cmnd[3] = 0;
1421         sreq->sr_cmnd[4] = SCSI_REMOVAL_PREVENT;
1422         sreq->sr_cmnd[5] = 0;
1423         sreq->sr_data_direction = DMA_NONE;
1424         sreq->sr_bufflen = 0;
1425         sreq->sr_buffer = NULL;
1426         sreq->sr_allowed = 5;
1427         sreq->sr_done = scsi_eh_lock_done;
1428         sreq->sr_timeout_per_command = 10 * HZ;
1429         sreq->sr_cmd_len = COMMAND_SIZE(sreq->sr_cmnd[0]);
1430
1431         scsi_insert_special_req(sreq, 1);
1432 }
1433
1434
1435 /**
1436  * scsi_restart_operations - restart io operations to the specified host.
1437  * @shost:      Host we are restarting.
1438  *
1439  * Notes:
1440  *    When we entered the error handler, we blocked all further i/o to
1441  *    this device.  we need to 'reverse' this process.
1442  **/
1443 static void scsi_restart_operations(struct Scsi_Host *shost)
1444 {
1445         struct scsi_device *sdev;
1446
1447         /*
1448          * If the door was locked, we need to insert a door lock request
1449          * onto the head of the SCSI request queue for the device.  There
1450          * is no point trying to lock the door of an off-line device.
1451          */
1452         shost_for_each_device(sdev, shost) {
1453                 if (scsi_device_online(sdev) && sdev->locked)
1454                         scsi_eh_lock_door(sdev);
1455         }
1456
1457         /*
1458          * next free up anything directly waiting upon the host.  this
1459          * will be requests for character device operations, and also for
1460          * ioctls to queued block devices.
1461          */
1462         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: waking up host to restart\n",
1463                                           __FUNCTION__));
1464
1465         scsi_host_set_state(shost, SHOST_RUNNING);
1466
1467         wake_up(&shost->host_wait);
1468
1469         /*
1470          * finally we need to re-initiate requests that may be pending.  we will
1471          * have had everything blocked while error handling is taking place, and
1472          * now that error recovery is done, we will need to ensure that these
1473          * requests are started.
1474          */
1475         scsi_run_host_queues(shost);
1476 }
1477
1478 /**
1479  * scsi_eh_ready_devs - check device ready state and recover if not.
1480  * @shost:      host to be recovered.
1481  * @eh_done_q:  list_head for processed commands.
1482  *
1483  **/
1484 static void scsi_eh_ready_devs(struct Scsi_Host *shost,
1485                                struct list_head *work_q,
1486                                struct list_head *done_q)
1487 {
1488         if (!scsi_eh_stu(shost, work_q, done_q))
1489                 if (!scsi_eh_bus_device_reset(shost, work_q, done_q))
1490                         if (!scsi_eh_bus_reset(shost, work_q, done_q))
1491                                 if (!scsi_eh_host_reset(work_q, done_q))
1492                                         scsi_eh_offline_sdevs(work_q, done_q);
1493 }
1494
1495 /**
1496  * scsi_eh_flush_done_q - finish processed commands or retry them.
1497  * @done_q:     list_head of processed commands.
1498  *
1499  **/
1500 static void scsi_eh_flush_done_q(struct list_head *done_q)
1501 {
1502         struct scsi_cmnd *scmd, *next;
1503
1504         list_for_each_entry_safe(scmd, next, done_q, eh_entry) {
1505                 list_del_init(&scmd->eh_entry);
1506                 if (scsi_device_online(scmd->device) &&
1507                     !blk_noretry_request(scmd->request) &&
1508                     (++scmd->retries < scmd->allowed)) {
1509                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush"
1510                                                           " retry cmd: %p\n",
1511                                                           current->comm,
1512                                                           scmd));
1513                                 scsi_queue_insert(scmd, SCSI_MLQUEUE_EH_RETRY);
1514                 } else {
1515                         /*
1516                          * If just we got sense for the device (called
1517                          * scsi_eh_get_sense), scmd->result is already
1518                          * set, do not set DRIVER_TIMEOUT.
1519                          */
1520                         if (!scmd->result)
1521                                 scmd->result |= (DRIVER_TIMEOUT << 24);
1522                         SCSI_LOG_ERROR_RECOVERY(3, printk("%s: flush finish"
1523                                                         " cmd: %p\n",
1524                                                         current->comm, scmd));
1525                         scsi_finish_command(scmd);
1526                 }
1527         }
1528 }
1529
1530 /**
1531  * scsi_unjam_host - Attempt to fix a host which has a cmd that failed.
1532  * @shost:      Host to unjam.
1533  *
1534  * Notes:
1535  *    When we come in here, we *know* that all commands on the bus have
1536  *    either completed, failed or timed out.  we also know that no further
1537  *    commands are being sent to the host, so things are relatively quiet
1538  *    and we have freedom to fiddle with things as we wish.
1539  *
1540  *    This is only the *default* implementation.  it is possible for
1541  *    individual drivers to supply their own version of this function, and
1542  *    if the maintainer wishes to do this, it is strongly suggested that
1543  *    this function be taken as a template and modified.  this function
1544  *    was designed to correctly handle problems for about 95% of the
1545  *    different cases out there, and it should always provide at least a
1546  *    reasonable amount of error recovery.
1547  *
1548  *    Any command marked 'failed' or 'timeout' must eventually have
1549  *    scsi_finish_cmd() called for it.  we do all of the retry stuff
1550  *    here, so when we restart the host after we return it should have an
1551  *    empty queue.
1552  **/
1553 static void scsi_unjam_host(struct Scsi_Host *shost)
1554 {
1555         unsigned long flags;
1556         LIST_HEAD(eh_work_q);
1557         LIST_HEAD(eh_done_q);
1558
1559         spin_lock_irqsave(shost->host_lock, flags);
1560         list_splice_init(&shost->eh_cmd_q, &eh_work_q);
1561         spin_unlock_irqrestore(shost->host_lock, flags);
1562
1563         SCSI_LOG_ERROR_RECOVERY(1, scsi_eh_prt_fail_stats(shost, &eh_work_q));
1564
1565         if (!scsi_eh_get_sense(&eh_work_q, &eh_done_q))
1566                 if (!scsi_eh_abort_cmds(&eh_work_q, &eh_done_q))
1567                         scsi_eh_ready_devs(shost, &eh_work_q, &eh_done_q);
1568
1569         scsi_eh_flush_done_q(&eh_done_q);
1570 }
1571
1572 /**
1573  * scsi_error_handler - Handle errors/timeouts of SCSI cmds.
1574  * @data:       Host for which we are running.
1575  *
1576  * Notes:
1577  *    This is always run in the context of a kernel thread.  The idea is
1578  *    that we start this thing up when the kernel starts up (one per host
1579  *    that we detect), and it immediately goes to sleep and waits for some
1580  *    event (i.e. failure).  When this takes place, we have the job of
1581  *    trying to unjam the bus and restarting things.
1582  **/
1583 int scsi_error_handler(void *data)
1584 {
1585         struct Scsi_Host *shost = (struct Scsi_Host *) data;
1586         int rtn;
1587         DECLARE_MUTEX_LOCKED(sem);
1588
1589         current->flags |= PF_NOFREEZE;
1590         shost->eh_wait = &sem;
1591
1592         /*
1593          * Wake up the thread that created us.
1594          */
1595         SCSI_LOG_ERROR_RECOVERY(3, printk("Wake up parent of"
1596                                           " scsi_eh_%d\n",shost->host_no));
1597
1598         while (1) {
1599                 /*
1600                  * If we get a signal, it means we are supposed to go
1601                  * away and die.  This typically happens if the user is
1602                  * trying to unload a module.
1603                  */
1604                 SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler"
1605                                                   " scsi_eh_%d"
1606                                                   " sleeping\n",shost->host_no));
1607
1608                 /*
1609                  * Note - we always use down_interruptible with the semaphore
1610                  * even if the module was loaded as part of the kernel.  The
1611                  * reason is that down() will cause this thread to be counted
1612                  * in the load average as a running process, and down
1613                  * interruptible doesn't.  Given that we need to allow this
1614                  * thread to die if the driver was loaded as a module, using
1615                  * semaphores isn't unreasonable.
1616                  */
1617                 down_interruptible(&sem);
1618                 if (kthread_should_stop())
1619                         break;
1620
1621                 SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler"
1622                                                   " scsi_eh_%d waking"
1623                                                   " up\n",shost->host_no));
1624
1625                 shost->eh_active = 1;
1626
1627                 /*
1628                  * We have a host that is failing for some reason.  Figure out
1629                  * what we need to do to get it up and online again (if we can).
1630                  * If we fail, we end up taking the thing offline.
1631                  */
1632                 if (shost->hostt->eh_strategy_handler) 
1633                         rtn = shost->hostt->eh_strategy_handler(shost);
1634                 else
1635                         scsi_unjam_host(shost);
1636
1637                 shost->eh_active = 0;
1638
1639                 /*
1640                  * Note - if the above fails completely, the action is to take
1641                  * individual devices offline and flush the queue of any
1642                  * outstanding requests that may have been pending.  When we
1643                  * restart, we restart any I/O to any other devices on the bus
1644                  * which are still online.
1645                  */
1646                 scsi_restart_operations(shost);
1647
1648         }
1649
1650         SCSI_LOG_ERROR_RECOVERY(1, printk("Error handler scsi_eh_%d"
1651                                           " exiting\n",shost->host_no));
1652
1653         /*
1654          * Make sure that nobody tries to wake us up again.
1655          */
1656         shost->eh_wait = NULL;
1657         return 0;
1658 }
1659
1660 /*
1661  * Function:    scsi_report_bus_reset()
1662  *
1663  * Purpose:     Utility function used by low-level drivers to report that
1664  *              they have observed a bus reset on the bus being handled.
1665  *
1666  * Arguments:   shost       - Host in question
1667  *              channel     - channel on which reset was observed.
1668  *
1669  * Returns:     Nothing
1670  *
1671  * Lock status: Host lock must be held.
1672  *
1673  * Notes:       This only needs to be called if the reset is one which
1674  *              originates from an unknown location.  Resets originated
1675  *              by the mid-level itself don't need to call this, but there
1676  *              should be no harm.
1677  *
1678  *              The main purpose of this is to make sure that a CHECK_CONDITION
1679  *              is properly treated.
1680  */
1681 void scsi_report_bus_reset(struct Scsi_Host *shost, int channel)
1682 {
1683         struct scsi_device *sdev;
1684
1685         __shost_for_each_device(sdev, shost) {
1686                 if (channel == sdev->channel) {
1687                         sdev->was_reset = 1;
1688                         sdev->expecting_cc_ua = 1;
1689                 }
1690         }
1691 }
1692 EXPORT_SYMBOL(scsi_report_bus_reset);
1693
1694 /*
1695  * Function:    scsi_report_device_reset()
1696  *
1697  * Purpose:     Utility function used by low-level drivers to report that
1698  *              they have observed a device reset on the device being handled.
1699  *
1700  * Arguments:   shost       - Host in question
1701  *              channel     - channel on which reset was observed
1702  *              target      - target on which reset was observed
1703  *
1704  * Returns:     Nothing
1705  *
1706  * Lock status: Host lock must be held
1707  *
1708  * Notes:       This only needs to be called if the reset is one which
1709  *              originates from an unknown location.  Resets originated
1710  *              by the mid-level itself don't need to call this, but there
1711  *              should be no harm.
1712  *
1713  *              The main purpose of this is to make sure that a CHECK_CONDITION
1714  *              is properly treated.
1715  */
1716 void scsi_report_device_reset(struct Scsi_Host *shost, int channel, int target)
1717 {
1718         struct scsi_device *sdev;
1719
1720         __shost_for_each_device(sdev, shost) {
1721                 if (channel == sdev->channel &&
1722                     target == sdev->id) {
1723                         sdev->was_reset = 1;
1724                         sdev->expecting_cc_ua = 1;
1725                 }
1726         }
1727 }
1728 EXPORT_SYMBOL(scsi_report_device_reset);
1729
1730 static void
1731 scsi_reset_provider_done_command(struct scsi_cmnd *scmd)
1732 {
1733 }
1734
1735 /*
1736  * Function:    scsi_reset_provider
1737  *
1738  * Purpose:     Send requested reset to a bus or device at any phase.
1739  *
1740  * Arguments:   device  - device to send reset to
1741  *              flag - reset type (see scsi.h)
1742  *
1743  * Returns:     SUCCESS/FAILURE.
1744  *
1745  * Notes:       This is used by the SCSI Generic driver to provide
1746  *              Bus/Device reset capability.
1747  */
1748 int
1749 scsi_reset_provider(struct scsi_device *dev, int flag)
1750 {
1751         struct scsi_cmnd *scmd = scsi_get_command(dev, GFP_KERNEL);
1752         struct request req;
1753         int rtn;
1754
1755         scmd->request = &req;
1756         memset(&scmd->eh_timeout, 0, sizeof(scmd->eh_timeout));
1757         scmd->request->rq_status        = RQ_SCSI_BUSY;
1758
1759         memset(&scmd->cmnd, '\0', sizeof(scmd->cmnd));
1760     
1761         scmd->scsi_done         = scsi_reset_provider_done_command;
1762         scmd->done                      = NULL;
1763         scmd->buffer                    = NULL;
1764         scmd->bufflen                   = 0;
1765         scmd->request_buffer            = NULL;
1766         scmd->request_bufflen           = 0;
1767
1768         scmd->cmd_len                   = 0;
1769
1770         scmd->sc_data_direction         = DMA_BIDIRECTIONAL;
1771         scmd->sc_request                = NULL;
1772         scmd->sc_magic                  = SCSI_CMND_MAGIC;
1773
1774         init_timer(&scmd->eh_timeout);
1775
1776         /*
1777          * Sometimes the command can get back into the timer chain,
1778          * so use the pid as an identifier.
1779          */
1780         scmd->pid                       = 0;
1781
1782         switch (flag) {
1783         case SCSI_TRY_RESET_DEVICE:
1784                 rtn = scsi_try_bus_device_reset(scmd);
1785                 if (rtn == SUCCESS)
1786                         break;
1787                 /* FALLTHROUGH */
1788         case SCSI_TRY_RESET_BUS:
1789                 rtn = scsi_try_bus_reset(scmd);
1790                 if (rtn == SUCCESS)
1791                         break;
1792                 /* FALLTHROUGH */
1793         case SCSI_TRY_RESET_HOST:
1794                 rtn = scsi_try_host_reset(scmd);
1795                 break;
1796         default:
1797                 rtn = FAILED;
1798         }
1799
1800         scsi_next_command(scmd);
1801         return rtn;
1802 }
1803 EXPORT_SYMBOL(scsi_reset_provider);
1804
1805 /**
1806  * scsi_normalize_sense - normalize main elements from either fixed or
1807  *                      descriptor sense data format into a common format.
1808  *
1809  * @sense_buffer:       byte array containing sense data returned by device
1810  * @sb_len:             number of valid bytes in sense_buffer
1811  * @sshdr:              pointer to instance of structure that common
1812  *                      elements are written to.
1813  *
1814  * Notes:
1815  *      The "main elements" from sense data are: response_code, sense_key,
1816  *      asc, ascq and additional_length (only for descriptor format).
1817  *
1818  *      Typically this function can be called after a device has
1819  *      responded to a SCSI command with the CHECK_CONDITION status.
1820  *
1821  * Return value:
1822  *      1 if valid sense data information found, else 0;
1823  **/
1824 int scsi_normalize_sense(const u8 *sense_buffer, int sb_len,
1825                          struct scsi_sense_hdr *sshdr)
1826 {
1827         if (!sense_buffer || !sb_len || (sense_buffer[0] & 0x70) != 0x70)
1828                 return 0;
1829
1830         memset(sshdr, 0, sizeof(struct scsi_sense_hdr));
1831
1832         sshdr->response_code = (sense_buffer[0] & 0x7f);
1833         if (sshdr->response_code >= 0x72) {
1834                 /*
1835                  * descriptor format
1836                  */
1837                 if (sb_len > 1)
1838                         sshdr->sense_key = (sense_buffer[1] & 0xf);
1839                 if (sb_len > 2)
1840                         sshdr->asc = sense_buffer[2];
1841                 if (sb_len > 3)
1842                         sshdr->ascq = sense_buffer[3];
1843                 if (sb_len > 7)
1844                         sshdr->additional_length = sense_buffer[7];
1845         } else {
1846                 /* 
1847                  * fixed format
1848                  */
1849                 if (sb_len > 2)
1850                         sshdr->sense_key = (sense_buffer[2] & 0xf);
1851                 if (sb_len > 7) {
1852                         sb_len = (sb_len < (sense_buffer[7] + 8)) ?
1853                                          sb_len : (sense_buffer[7] + 8);
1854                         if (sb_len > 12)
1855                                 sshdr->asc = sense_buffer[12];
1856                         if (sb_len > 13)
1857                                 sshdr->ascq = sense_buffer[13];
1858                 }
1859         }
1860
1861         return 1;
1862 }
1863 EXPORT_SYMBOL(scsi_normalize_sense);
1864
1865 int scsi_request_normalize_sense(struct scsi_request *sreq,
1866                                  struct scsi_sense_hdr *sshdr)
1867 {
1868         return scsi_normalize_sense(sreq->sr_sense_buffer,
1869                         sizeof(sreq->sr_sense_buffer), sshdr);
1870 }
1871 EXPORT_SYMBOL(scsi_request_normalize_sense);
1872
1873 int scsi_command_normalize_sense(struct scsi_cmnd *cmd,
1874                                  struct scsi_sense_hdr *sshdr)
1875 {
1876         return scsi_normalize_sense(cmd->sense_buffer,
1877                         sizeof(cmd->sense_buffer), sshdr);
1878 }
1879 EXPORT_SYMBOL(scsi_command_normalize_sense);
1880
1881 /**
1882  * scsi_sense_desc_find - search for a given descriptor type in
1883  *                      descriptor sense data format.
1884  *
1885  * @sense_buffer:       byte array of descriptor format sense data
1886  * @sb_len:             number of valid bytes in sense_buffer
1887  * @desc_type:          value of descriptor type to find
1888  *                      (e.g. 0 -> information)
1889  *
1890  * Notes:
1891  *      only valid when sense data is in descriptor format
1892  *
1893  * Return value:
1894  *      pointer to start of (first) descriptor if found else NULL
1895  **/
1896 const u8 * scsi_sense_desc_find(const u8 * sense_buffer, int sb_len,
1897                                 int desc_type)
1898 {
1899         int add_sen_len, add_len, desc_len, k;
1900         const u8 * descp;
1901
1902         if ((sb_len < 8) || (0 == (add_sen_len = sense_buffer[7])))
1903                 return NULL;
1904         if ((sense_buffer[0] < 0x72) || (sense_buffer[0] > 0x73))
1905                 return NULL;
1906         add_sen_len = (add_sen_len < (sb_len - 8)) ?
1907                         add_sen_len : (sb_len - 8);
1908         descp = &sense_buffer[8];
1909         for (desc_len = 0, k = 0; k < add_sen_len; k += desc_len) {
1910                 descp += desc_len;
1911                 add_len = (k < (add_sen_len - 1)) ? descp[1]: -1;
1912                 desc_len = add_len + 2;
1913                 if (descp[0] == desc_type)
1914                         return descp;
1915                 if (add_len < 0) // short descriptor ??
1916                         break;
1917         }
1918         return NULL;
1919 }
1920 EXPORT_SYMBOL(scsi_sense_desc_find);
1921
1922 /**
1923  * scsi_get_sense_info_fld - attempts to get information field from
1924  *                      sense data (either fixed or descriptor format)
1925  *
1926  * @sense_buffer:       byte array of sense data
1927  * @sb_len:             number of valid bytes in sense_buffer
1928  * @info_out:           pointer to 64 integer where 8 or 4 byte information
1929  *                      field will be placed if found.
1930  *
1931  * Return value:
1932  *      1 if information field found, 0 if not found.
1933  **/
1934 int scsi_get_sense_info_fld(const u8 * sense_buffer, int sb_len,
1935                             u64 * info_out)
1936 {
1937         int j;
1938         const u8 * ucp;
1939         u64 ull;
1940
1941         if (sb_len < 7)
1942                 return 0;
1943         switch (sense_buffer[0] & 0x7f) {
1944         case 0x70:
1945         case 0x71:
1946                 if (sense_buffer[0] & 0x80) {
1947                         *info_out = (sense_buffer[3] << 24) +
1948                                     (sense_buffer[4] << 16) +
1949                                     (sense_buffer[5] << 8) + sense_buffer[6];
1950                         return 1;
1951                 } else
1952                         return 0;
1953         case 0x72:
1954         case 0x73:
1955                 ucp = scsi_sense_desc_find(sense_buffer, sb_len,
1956                                            0 /* info desc */);
1957                 if (ucp && (0xa == ucp[1])) {
1958                         ull = 0;
1959                         for (j = 0; j < 8; ++j) {
1960                                 if (j > 0)
1961                                         ull <<= 8;
1962                                 ull |= ucp[4 + j];
1963                         }
1964                         *info_out = ull;
1965                         return 1;
1966                 } else
1967                         return 0;
1968         default:
1969                 return 0;
1970         }
1971 }
1972 EXPORT_SYMBOL(scsi_get_sense_info_fld);