scsi_error.c 53 KB

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