scsi_error.c 50 KB

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