scsi_devinfo.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809
  1. #include <linux/blkdev.h>
  2. #include <linux/init.h>
  3. #include <linux/kernel.h>
  4. #include <linux/module.h>
  5. #include <linux/moduleparam.h>
  6. #include <linux/proc_fs.h>
  7. #include <linux/seq_file.h>
  8. #include <scsi/scsi_device.h>
  9. #include <scsi/scsi_devinfo.h>
  10. #include "scsi_priv.h"
  11. /*
  12. * scsi_dev_info_list: structure to hold black/white listed devices.
  13. */
  14. struct scsi_dev_info_list {
  15. struct list_head dev_info_list;
  16. char vendor[8];
  17. char model[16];
  18. unsigned flags;
  19. unsigned compatible; /* for use with scsi_static_device_list entries */
  20. };
  21. struct scsi_dev_info_list_table {
  22. struct list_head node; /* our node for being on the master list */
  23. struct list_head scsi_dev_info_list; /* head of dev info list */
  24. const char *name; /* name of list for /proc (NULL for global) */
  25. int key; /* unique numeric identifier */
  26. };
  27. static const char spaces[] = " "; /* 16 of them */
  28. static unsigned scsi_default_dev_flags;
  29. static LIST_HEAD(scsi_dev_info_list);
  30. static char scsi_dev_flags[256];
  31. /*
  32. * scsi_static_device_list: deprecated list of devices that require
  33. * settings that differ from the default, includes black-listed (broken)
  34. * devices. The entries here are added to the tail of scsi_dev_info_list
  35. * via scsi_dev_info_list_init.
  36. *
  37. * Do not add to this list, use the command line or proc interface to add
  38. * to the scsi_dev_info_list. This table will eventually go away.
  39. */
  40. static struct {
  41. char *vendor;
  42. char *model;
  43. char *revision; /* revision known to be bad, unused */
  44. unsigned flags;
  45. } scsi_static_device_list[] __initdata = {
  46. /*
  47. * The following devices are known not to tolerate a lun != 0 scan
  48. * for one reason or another. Some will respond to all luns,
  49. * others will lock up.
  50. */
  51. {"Aashima", "IMAGERY 2400SP", "1.03", BLIST_NOLUN}, /* locks up */
  52. {"CHINON", "CD-ROM CDS-431", "H42", BLIST_NOLUN}, /* locks up */
  53. {"CHINON", "CD-ROM CDS-535", "Q14", BLIST_NOLUN}, /* locks up */
  54. {"DENON", "DRD-25X", "V", BLIST_NOLUN}, /* locks up */
  55. {"HITACHI", "DK312C", "CM81", BLIST_NOLUN}, /* responds to all lun */
  56. {"HITACHI", "DK314C", "CR21", BLIST_NOLUN}, /* responds to all lun */
  57. {"IBM", "2104-DU3", NULL, BLIST_NOLUN}, /* locks up */
  58. {"IBM", "2104-TU3", NULL, BLIST_NOLUN}, /* locks up */
  59. {"IMS", "CDD521/10", "2.06", BLIST_NOLUN}, /* locks up */
  60. {"MAXTOR", "XT-3280", "PR02", BLIST_NOLUN}, /* locks up */
  61. {"MAXTOR", "XT-4380S", "B3C", BLIST_NOLUN}, /* locks up */
  62. {"MAXTOR", "MXT-1240S", "I1.2", BLIST_NOLUN}, /* locks up */
  63. {"MAXTOR", "XT-4170S", "B5A", BLIST_NOLUN}, /* locks up */
  64. {"MAXTOR", "XT-8760S", "B7B", BLIST_NOLUN}, /* locks up */
  65. {"MEDIAVIS", "RENO CD-ROMX2A", "2.03", BLIST_NOLUN}, /* responds to all lun */
  66. {"MICROTEK", "ScanMakerIII", "2.30", BLIST_NOLUN}, /* responds to all lun */
  67. {"NEC", "CD-ROM DRIVE:841", "1.0", BLIST_NOLUN},/* locks up */
  68. {"PHILIPS", "PCA80SC", "V4-2", BLIST_NOLUN}, /* responds to all lun */
  69. {"RODIME", "RO3000S", "2.33", BLIST_NOLUN}, /* locks up */
  70. {"SUN", "SENA", NULL, BLIST_NOLUN}, /* responds to all luns */
  71. /*
  72. * The following causes a failed REQUEST SENSE on lun 1 for
  73. * aha152x controller, which causes SCSI code to reset bus.
  74. */
  75. {"SANYO", "CRD-250S", "1.20", BLIST_NOLUN},
  76. /*
  77. * The following causes a failed REQUEST SENSE on lun 1 for
  78. * aha152x controller, which causes SCSI code to reset bus.
  79. */
  80. {"SEAGATE", "ST157N", "\004|j", BLIST_NOLUN},
  81. {"SEAGATE", "ST296", "921", BLIST_NOLUN}, /* responds to all lun */
  82. {"SEAGATE", "ST1581", "6538", BLIST_NOLUN}, /* responds to all lun */
  83. {"SONY", "CD-ROM CDU-541", "4.3d", BLIST_NOLUN},
  84. {"SONY", "CD-ROM CDU-55S", "1.0i", BLIST_NOLUN},
  85. {"SONY", "CD-ROM CDU-561", "1.7x", BLIST_NOLUN},
  86. {"SONY", "CD-ROM CDU-8012", NULL, BLIST_NOLUN},
  87. {"SONY", "SDT-5000", "3.17", BLIST_SELECT_NO_ATN},
  88. {"TANDBERG", "TDC 3600", "U07", BLIST_NOLUN}, /* locks up */
  89. {"TEAC", "CD-R55S", "1.0H", BLIST_NOLUN}, /* locks up */
  90. /*
  91. * The following causes a failed REQUEST SENSE on lun 1 for
  92. * seagate controller, which causes SCSI code to reset bus.
  93. */
  94. {"TEAC", "CD-ROM", "1.06", BLIST_NOLUN},
  95. {"TEAC", "MT-2ST/45S2-27", "RV M", BLIST_NOLUN}, /* responds to all lun */
  96. /*
  97. * The following causes a failed REQUEST SENSE on lun 1 for
  98. * seagate controller, which causes SCSI code to reset bus.
  99. */
  100. {"HP", "C1750A", "3226", BLIST_NOLUN}, /* scanjet iic */
  101. {"HP", "C1790A", "", BLIST_NOLUN}, /* scanjet iip */
  102. {"HP", "C2500A", "", BLIST_NOLUN}, /* scanjet iicx */
  103. {"MEDIAVIS", "CDR-H93MV", "1.31", BLIST_NOLUN}, /* locks up */
  104. {"MICROTEK", "ScanMaker II", "5.61", BLIST_NOLUN}, /* responds to all lun */
  105. {"MITSUMI", "CD-R CR-2201CS", "6119", BLIST_NOLUN}, /* locks up */
  106. {"NEC", "D3856", "0009", BLIST_NOLUN},
  107. {"QUANTUM", "LPS525S", "3110", BLIST_NOLUN}, /* locks up */
  108. {"QUANTUM", "PD1225S", "3110", BLIST_NOLUN}, /* locks up */
  109. {"QUANTUM", "FIREBALL ST4.3S", "0F0C", BLIST_NOLUN}, /* locks up */
  110. {"RELISYS", "Scorpio", NULL, BLIST_NOLUN}, /* responds to all lun */
  111. {"SANKYO", "CP525", "6.64", BLIST_NOLUN}, /* causes failed REQ SENSE, extra reset */
  112. {"TEXEL", "CD-ROM", "1.06", BLIST_NOLUN},
  113. {"transtec", "T5008", "0001", BLIST_NOREPORTLUN },
  114. {"YAMAHA", "CDR100", "1.00", BLIST_NOLUN}, /* locks up */
  115. {"YAMAHA", "CDR102", "1.00", BLIST_NOLUN}, /* locks up */
  116. {"YAMAHA", "CRW8424S", "1.0", BLIST_NOLUN}, /* locks up */
  117. {"YAMAHA", "CRW6416S", "1.0c", BLIST_NOLUN}, /* locks up */
  118. {"", "Scanner", "1.80", BLIST_NOLUN}, /* responds to all lun */
  119. /*
  120. * Other types of devices that have special flags.
  121. * Note that all USB devices should have the BLIST_INQUIRY_36 flag.
  122. */
  123. {"3PARdata", "VV", NULL, BLIST_REPORTLUN2},
  124. {"ADAPTEC", "AACRAID", NULL, BLIST_FORCELUN},
  125. {"ADAPTEC", "Adaptec 5400S", NULL, BLIST_FORCELUN},
  126. {"AFT PRO", "-IX CF", "0.0>", BLIST_FORCELUN},
  127. {"BELKIN", "USB 2 HS-CF", "1.95", BLIST_FORCELUN | BLIST_INQUIRY_36},
  128. {"BROWNIE", "1200U3P", NULL, BLIST_NOREPORTLUN},
  129. {"BROWNIE", "1600U3P", NULL, BLIST_NOREPORTLUN},
  130. {"CANON", "IPUBJD", NULL, BLIST_SPARSELUN},
  131. {"CBOX3", "USB Storage-SMC", "300A", BLIST_FORCELUN | BLIST_INQUIRY_36},
  132. {"CMD", "CRA-7280", NULL, BLIST_SPARSELUN}, /* CMD RAID Controller */
  133. {"CNSI", "G7324", NULL, BLIST_SPARSELUN}, /* Chaparral G7324 RAID */
  134. {"CNSi", "G8324", NULL, BLIST_SPARSELUN}, /* Chaparral G8324 RAID */
  135. {"COMPAQ", "ARRAY CONTROLLER", NULL, BLIST_SPARSELUN | BLIST_LARGELUN |
  136. BLIST_MAX_512 | BLIST_REPORTLUN2}, /* Compaq RA4x00 */
  137. {"COMPAQ", "LOGICAL VOLUME", NULL, BLIST_FORCELUN | BLIST_MAX_512}, /* Compaq RA4x00 */
  138. {"COMPAQ", "CR3500", NULL, BLIST_FORCELUN},
  139. {"COMPAQ", "MSA1000", NULL, BLIST_SPARSELUN | BLIST_NOSTARTONADD},
  140. {"COMPAQ", "MSA1000 VOLUME", NULL, BLIST_SPARSELUN | BLIST_NOSTARTONADD},
  141. {"COMPAQ", "HSV110", NULL, BLIST_REPORTLUN2 | BLIST_NOSTARTONADD},
  142. {"DDN", "SAN DataDirector", "*", BLIST_SPARSELUN},
  143. {"DEC", "HSG80", NULL, BLIST_REPORTLUN2 | BLIST_NOSTARTONADD},
  144. {"DELL", "PV660F", NULL, BLIST_SPARSELUN},
  145. {"DELL", "PV660F PSEUDO", NULL, BLIST_SPARSELUN},
  146. {"DELL", "PSEUDO DEVICE .", NULL, BLIST_SPARSELUN}, /* Dell PV 530F */
  147. {"DELL", "PV530F", NULL, BLIST_SPARSELUN},
  148. {"DELL", "PERCRAID", NULL, BLIST_FORCELUN},
  149. {"DGC", "RAID", NULL, BLIST_SPARSELUN}, /* Dell PV 650F, storage on LUN 0 */
  150. {"DGC", "DISK", NULL, BLIST_SPARSELUN}, /* Dell PV 650F, no storage on LUN 0 */
  151. {"EMC", "Invista", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  152. {"EMC", "SYMMETRIX", NULL, BLIST_SPARSELUN | BLIST_LARGELUN | BLIST_FORCELUN},
  153. {"EMULEX", "MD21/S2 ESDI", NULL, BLIST_SINGLELUN},
  154. {"easyRAID", "16P", NULL, BLIST_NOREPORTLUN},
  155. {"easyRAID", "X6P", NULL, BLIST_NOREPORTLUN},
  156. {"easyRAID", "F8", NULL, BLIST_NOREPORTLUN},
  157. {"FSC", "CentricStor", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  158. {"Generic", "USB SD Reader", "1.00", BLIST_FORCELUN | BLIST_INQUIRY_36},
  159. {"Generic", "USB Storage-SMC", "0180", BLIST_FORCELUN | BLIST_INQUIRY_36},
  160. {"Generic", "USB Storage-SMC", "0207", BLIST_FORCELUN | BLIST_INQUIRY_36},
  161. {"HITACHI", "DF400", "*", BLIST_SPARSELUN},
  162. {"HITACHI", "DF500", "*", BLIST_SPARSELUN},
  163. {"HITACHI", "DF600", "*", BLIST_SPARSELUN},
  164. {"HITACHI", "DISK-SUBSYSTEM", "*", BLIST_ATTACH_PQ3 | BLIST_SPARSELUN | BLIST_LARGELUN},
  165. {"HITACHI", "OPEN-E", "*", BLIST_ATTACH_PQ3 | BLIST_SPARSELUN | BLIST_LARGELUN},
  166. {"HITACHI", "OP-C-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  167. {"HITACHI", "3380-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  168. {"HITACHI", "3390-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  169. {"HITACHI", "6586-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  170. {"HITACHI", "6588-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  171. {"HP", "A6189A", NULL, BLIST_SPARSELUN | BLIST_LARGELUN}, /* HP VA7400 */
  172. {"HP", "OPEN-", "*", BLIST_REPORTLUN2}, /* HP XP Arrays */
  173. {"HP", "NetRAID-4M", NULL, BLIST_FORCELUN},
  174. {"HP", "HSV100", NULL, BLIST_REPORTLUN2 | BLIST_NOSTARTONADD},
  175. {"HP", "C1557A", NULL, BLIST_FORCELUN},
  176. {"HP", "C3323-300", "4269", BLIST_NOTQ},
  177. {"HP", "C5713A", NULL, BLIST_NOREPORTLUN},
  178. {"HP", "DF400", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  179. {"HP", "DF500", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  180. {"HP", "DF600", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  181. {"HP", "OP-C-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  182. {"HP", "3380-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  183. {"HP", "3390-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  184. {"HP", "6586-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  185. {"HP", "6588-", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  186. {"IBM", "AuSaV1S2", NULL, BLIST_FORCELUN},
  187. {"IBM", "ProFibre 4000R", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  188. {"IBM", "2105", NULL, BLIST_RETRY_HWERROR},
  189. {"iomega", "jaz 1GB", "J.86", BLIST_NOTQ | BLIST_NOLUN},
  190. {"IOMEGA", "Io20S *F", NULL, BLIST_KEY},
  191. {"INSITE", "Floptical F*8I", NULL, BLIST_KEY},
  192. {"INSITE", "I325VM", NULL, BLIST_KEY},
  193. {"iRiver", "iFP Mass Driver", NULL, BLIST_NOT_LOCKABLE | BLIST_INQUIRY_36},
  194. {"LASOUND", "CDX7405", "3.10", BLIST_MAX5LUN | BLIST_SINGLELUN},
  195. {"MATSHITA", "PD-1", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  196. {"MATSHITA", "DMC-LC5", NULL, BLIST_NOT_LOCKABLE | BLIST_INQUIRY_36},
  197. {"MATSHITA", "DMC-LC40", NULL, BLIST_NOT_LOCKABLE | BLIST_INQUIRY_36},
  198. {"Medion", "Flash XL MMC/SD", "2.6D", BLIST_FORCELUN},
  199. {"MegaRAID", "LD", NULL, BLIST_FORCELUN},
  200. {"MICROP", "4110", NULL, BLIST_NOTQ},
  201. {"MYLEX", "DACARMRB", "*", BLIST_REPORTLUN2},
  202. {"nCipher", "Fastness Crypto", NULL, BLIST_FORCELUN},
  203. {"NAKAMICH", "MJ-4.8S", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  204. {"NAKAMICH", "MJ-5.16S", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  205. {"NEC", "PD-1 ODX654P", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  206. {"NEC", "iStorage", NULL, BLIST_REPORTLUN2},
  207. {"NRC", "MBR-7", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  208. {"NRC", "MBR-7.4", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  209. {"PIONEER", "CD-ROM DRM-600", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  210. {"PIONEER", "CD-ROM DRM-602X", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  211. {"PIONEER", "CD-ROM DRM-604X", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  212. {"PIONEER", "CD-ROM DRM-624X", NULL, BLIST_FORCELUN | BLIST_SINGLELUN},
  213. {"Promise", "", NULL, BLIST_SPARSELUN},
  214. {"QUANTUM", "XP34301", "1071", BLIST_NOTQ},
  215. {"REGAL", "CDC-4X", NULL, BLIST_MAX5LUN | BLIST_SINGLELUN},
  216. {"SanDisk", "ImageMate CF-SD1", NULL, BLIST_FORCELUN},
  217. {"SEAGATE", "ST34555N", "0930", BLIST_NOTQ}, /* Chokes on tagged INQUIRY */
  218. {"SEAGATE", "ST3390N", "9546", BLIST_NOTQ},
  219. {"SGI", "RAID3", "*", BLIST_SPARSELUN},
  220. {"SGI", "RAID5", "*", BLIST_SPARSELUN},
  221. {"SGI", "TP9100", "*", BLIST_REPORTLUN2},
  222. {"SGI", "Universal Xport", "*", BLIST_NO_ULD_ATTACH},
  223. {"IBM", "Universal Xport", "*", BLIST_NO_ULD_ATTACH},
  224. {"SUN", "Universal Xport", "*", BLIST_NO_ULD_ATTACH},
  225. {"DELL", "Universal Xport", "*", BLIST_NO_ULD_ATTACH},
  226. {"SMSC", "USB 2 HS-CF", NULL, BLIST_SPARSELUN | BLIST_INQUIRY_36},
  227. {"SONY", "CD-ROM CDU-8001", NULL, BLIST_BORKEN},
  228. {"SONY", "TSL", NULL, BLIST_FORCELUN}, /* DDS3 & DDS4 autoloaders */
  229. {"ST650211", "CF", NULL, BLIST_RETRY_HWERROR},
  230. {"SUN", "T300", "*", BLIST_SPARSELUN},
  231. {"SUN", "T4", "*", BLIST_SPARSELUN},
  232. {"TEXEL", "CD-ROM", "1.06", BLIST_BORKEN},
  233. {"Tornado-", "F4", "*", BLIST_NOREPORTLUN},
  234. {"TOSHIBA", "CDROM", NULL, BLIST_ISROM},
  235. {"TOSHIBA", "CD-ROM", NULL, BLIST_ISROM},
  236. {"USB2.0", "SMARTMEDIA/XD", NULL, BLIST_FORCELUN | BLIST_INQUIRY_36},
  237. {"WangDAT", "Model 2600", "01.7", BLIST_SELECT_NO_ATN},
  238. {"WangDAT", "Model 3200", "02.2", BLIST_SELECT_NO_ATN},
  239. {"WangDAT", "Model 1300", "02.4", BLIST_SELECT_NO_ATN},
  240. {"WDC WD25", "00JB-00FUA0", NULL, BLIST_NOREPORTLUN},
  241. {"XYRATEX", "RS", "*", BLIST_SPARSELUN | BLIST_LARGELUN},
  242. {"Zzyzx", "RocketStor 500S", NULL, BLIST_SPARSELUN},
  243. {"Zzyzx", "RocketStor 2000", NULL, BLIST_SPARSELUN},
  244. { NULL, NULL, NULL, 0 },
  245. };
  246. static struct scsi_dev_info_list_table *scsi_devinfo_lookup_by_key(int key)
  247. {
  248. struct scsi_dev_info_list_table *devinfo_table;
  249. int found = 0;
  250. list_for_each_entry(devinfo_table, &scsi_dev_info_list, node)
  251. if (devinfo_table->key == key) {
  252. found = 1;
  253. break;
  254. }
  255. if (!found)
  256. return ERR_PTR(-EINVAL);
  257. return devinfo_table;
  258. }
  259. /*
  260. * scsi_strcpy_devinfo: called from scsi_dev_info_list_add to copy into
  261. * devinfo vendor and model strings.
  262. */
  263. static void scsi_strcpy_devinfo(char *name, char *to, size_t to_length,
  264. char *from, int compatible)
  265. {
  266. size_t from_length;
  267. from_length = strlen(from);
  268. strncpy(to, from, min(to_length, from_length));
  269. if (from_length < to_length) {
  270. if (compatible) {
  271. /*
  272. * NUL terminate the string if it is short.
  273. */
  274. to[from_length] = '\0';
  275. } else {
  276. /*
  277. * space pad the string if it is short.
  278. */
  279. strncpy(&to[from_length], spaces,
  280. to_length - from_length);
  281. }
  282. }
  283. if (from_length > to_length)
  284. printk(KERN_WARNING "%s: %s string '%s' is too long\n",
  285. __func__, name, from);
  286. }
  287. /**
  288. * scsi_dev_info_list_add - add one dev_info list entry.
  289. * @compatible: if true, null terminate short strings. Otherwise space pad.
  290. * @vendor: vendor string
  291. * @model: model (product) string
  292. * @strflags: integer string
  293. * @flags: if strflags NULL, use this flag value
  294. *
  295. * Description:
  296. * Create and add one dev_info entry for @vendor, @model, @strflags or
  297. * @flag. If @compatible, add to the tail of the list, do not space
  298. * pad, and set devinfo->compatible. The scsi_static_device_list entries
  299. * are added with @compatible 1 and @clfags NULL.
  300. *
  301. * Returns: 0 OK, -error on failure.
  302. **/
  303. static int scsi_dev_info_list_add(int compatible, char *vendor, char *model,
  304. char *strflags, int flags)
  305. {
  306. return scsi_dev_info_list_add_keyed(compatible, vendor, model,
  307. strflags, flags,
  308. SCSI_DEVINFO_GLOBAL);
  309. }
  310. /**
  311. * scsi_dev_info_list_add_keyed - add one dev_info list entry.
  312. * @compatible: if true, null terminate short strings. Otherwise space pad.
  313. * @vendor: vendor string
  314. * @model: model (product) string
  315. * @strflags: integer string
  316. * @flags: if strflags NULL, use this flag value
  317. * @key: specify list to use
  318. *
  319. * Description:
  320. * Create and add one dev_info entry for @vendor, @model,
  321. * @strflags or @flag in list specified by @key. If @compatible,
  322. * add to the tail of the list, do not space pad, and set
  323. * devinfo->compatible. The scsi_static_device_list entries are
  324. * added with @compatible 1 and @clfags NULL.
  325. *
  326. * Returns: 0 OK, -error on failure.
  327. **/
  328. int scsi_dev_info_list_add_keyed(int compatible, char *vendor, char *model,
  329. char *strflags, int flags, int key)
  330. {
  331. struct scsi_dev_info_list *devinfo;
  332. struct scsi_dev_info_list_table *devinfo_table =
  333. scsi_devinfo_lookup_by_key(key);
  334. if (IS_ERR(devinfo_table))
  335. return PTR_ERR(devinfo_table);
  336. devinfo = kmalloc(sizeof(*devinfo), GFP_KERNEL);
  337. if (!devinfo) {
  338. printk(KERN_ERR "%s: no memory\n", __func__);
  339. return -ENOMEM;
  340. }
  341. scsi_strcpy_devinfo("vendor", devinfo->vendor, sizeof(devinfo->vendor),
  342. vendor, compatible);
  343. scsi_strcpy_devinfo("model", devinfo->model, sizeof(devinfo->model),
  344. model, compatible);
  345. if (strflags)
  346. devinfo->flags = simple_strtoul(strflags, NULL, 0);
  347. else
  348. devinfo->flags = flags;
  349. devinfo->compatible = compatible;
  350. if (compatible)
  351. list_add_tail(&devinfo->dev_info_list,
  352. &devinfo_table->scsi_dev_info_list);
  353. else
  354. list_add(&devinfo->dev_info_list,
  355. &devinfo_table->scsi_dev_info_list);
  356. return 0;
  357. }
  358. EXPORT_SYMBOL(scsi_dev_info_list_add_keyed);
  359. /**
  360. * scsi_dev_info_list_add_str - parse dev_list and add to the scsi_dev_info_list.
  361. * @dev_list: string of device flags to add
  362. *
  363. * Description:
  364. * Parse dev_list, and add entries to the scsi_dev_info_list.
  365. * dev_list is of the form "vendor:product:flag,vendor:product:flag".
  366. * dev_list is modified via strsep. Can be called for command line
  367. * addition, for proc or mabye a sysfs interface.
  368. *
  369. * Returns: 0 if OK, -error on failure.
  370. **/
  371. static int scsi_dev_info_list_add_str(char *dev_list)
  372. {
  373. char *vendor, *model, *strflags, *next;
  374. char *next_check;
  375. int res = 0;
  376. next = dev_list;
  377. if (next && next[0] == '"') {
  378. /*
  379. * Ignore both the leading and trailing quote.
  380. */
  381. next++;
  382. next_check = ",\"";
  383. } else {
  384. next_check = ",";
  385. }
  386. /*
  387. * For the leading and trailing '"' case, the for loop comes
  388. * through the last time with vendor[0] == '\0'.
  389. */
  390. for (vendor = strsep(&next, ":"); vendor && (vendor[0] != '\0')
  391. && (res == 0); vendor = strsep(&next, ":")) {
  392. strflags = NULL;
  393. model = strsep(&next, ":");
  394. if (model)
  395. strflags = strsep(&next, next_check);
  396. if (!model || !strflags) {
  397. printk(KERN_ERR "%s: bad dev info string '%s' '%s'"
  398. " '%s'\n", __func__, vendor, model,
  399. strflags);
  400. res = -EINVAL;
  401. } else
  402. res = scsi_dev_info_list_add(0 /* compatible */, vendor,
  403. model, strflags, 0);
  404. }
  405. return res;
  406. }
  407. /**
  408. * get_device_flags - get device specific flags from the dynamic device list.
  409. * @sdev: &scsi_device to get flags for
  410. * @vendor: vendor name
  411. * @model: model name
  412. *
  413. * Description:
  414. * Search the global scsi_dev_info_list (specified by list zero)
  415. * for an entry matching @vendor and @model, if found, return the
  416. * matching flags value, else return the host or global default
  417. * settings. Called during scan time.
  418. **/
  419. int scsi_get_device_flags(struct scsi_device *sdev,
  420. const unsigned char *vendor,
  421. const unsigned char *model)
  422. {
  423. return scsi_get_device_flags_keyed(sdev, vendor, model,
  424. SCSI_DEVINFO_GLOBAL);
  425. }
  426. /**
  427. * get_device_flags_keyed - get device specific flags from the dynamic device list.
  428. * @sdev: &scsi_device to get flags for
  429. * @vendor: vendor name
  430. * @model: model name
  431. * @key: list to look up
  432. *
  433. * Description:
  434. * Search the scsi_dev_info_list specified by @key for an entry
  435. * matching @vendor and @model, if found, return the matching
  436. * flags value, else return the host or global default settings.
  437. * Called during scan time.
  438. **/
  439. int scsi_get_device_flags_keyed(struct scsi_device *sdev,
  440. const unsigned char *vendor,
  441. const unsigned char *model,
  442. int key)
  443. {
  444. struct scsi_dev_info_list *devinfo;
  445. struct scsi_dev_info_list_table *devinfo_table;
  446. devinfo_table = scsi_devinfo_lookup_by_key(key);
  447. if (IS_ERR(devinfo_table))
  448. return PTR_ERR(devinfo_table);
  449. list_for_each_entry(devinfo, &devinfo_table->scsi_dev_info_list,
  450. dev_info_list) {
  451. if (devinfo->compatible) {
  452. /*
  453. * Behave like the older version of get_device_flags.
  454. */
  455. size_t max;
  456. /*
  457. * XXX why skip leading spaces? If an odd INQUIRY
  458. * value, that should have been part of the
  459. * scsi_static_device_list[] entry, such as " FOO"
  460. * rather than "FOO". Since this code is already
  461. * here, and we don't know what device it is
  462. * trying to work with, leave it as-is.
  463. */
  464. max = 8; /* max length of vendor */
  465. while ((max > 0) && *vendor == ' ') {
  466. max--;
  467. vendor++;
  468. }
  469. /*
  470. * XXX removing the following strlen() would be
  471. * good, using it means that for a an entry not in
  472. * the list, we scan every byte of every vendor
  473. * listed in scsi_static_device_list[], and never match
  474. * a single one (and still have to compare at
  475. * least the first byte of each vendor).
  476. */
  477. if (memcmp(devinfo->vendor, vendor,
  478. min(max, strlen(devinfo->vendor))))
  479. continue;
  480. /*
  481. * Skip spaces again.
  482. */
  483. max = 16; /* max length of model */
  484. while ((max > 0) && *model == ' ') {
  485. max--;
  486. model++;
  487. }
  488. if (memcmp(devinfo->model, model,
  489. min(max, strlen(devinfo->model))))
  490. continue;
  491. return devinfo->flags;
  492. } else {
  493. if (!memcmp(devinfo->vendor, vendor,
  494. sizeof(devinfo->vendor)) &&
  495. !memcmp(devinfo->model, model,
  496. sizeof(devinfo->model)))
  497. return devinfo->flags;
  498. }
  499. }
  500. /* nothing found, return nothing */
  501. if (key != SCSI_DEVINFO_GLOBAL)
  502. return 0;
  503. /* except for the global list, where we have an exception */
  504. if (sdev->sdev_bflags)
  505. return sdev->sdev_bflags;
  506. return scsi_default_dev_flags;
  507. }
  508. EXPORT_SYMBOL(scsi_get_device_flags_keyed);
  509. #ifdef CONFIG_SCSI_PROC_FS
  510. struct double_list {
  511. struct list_head *top;
  512. struct list_head *bottom;
  513. };
  514. static int devinfo_seq_show(struct seq_file *m, void *v)
  515. {
  516. struct double_list *dl = v;
  517. struct scsi_dev_info_list_table *devinfo_table =
  518. list_entry(dl->top, struct scsi_dev_info_list_table, node);
  519. struct scsi_dev_info_list *devinfo =
  520. list_entry(dl->bottom, struct scsi_dev_info_list,
  521. dev_info_list);
  522. if (devinfo_table->scsi_dev_info_list.next == dl->bottom &&
  523. devinfo_table->name)
  524. seq_printf(m, "[%s]:\n", devinfo_table->name);
  525. seq_printf(m, "'%.8s' '%.16s' 0x%x\n",
  526. devinfo->vendor, devinfo->model, devinfo->flags);
  527. return 0;
  528. }
  529. static void *devinfo_seq_start(struct seq_file *m, loff_t *ppos)
  530. {
  531. struct double_list *dl = kmalloc(sizeof(*dl), GFP_KERNEL);
  532. loff_t pos = *ppos;
  533. if (!dl)
  534. return NULL;
  535. list_for_each(dl->top, &scsi_dev_info_list) {
  536. struct scsi_dev_info_list_table *devinfo_table =
  537. list_entry(dl->top, struct scsi_dev_info_list_table,
  538. node);
  539. list_for_each(dl->bottom, &devinfo_table->scsi_dev_info_list)
  540. if (pos-- == 0)
  541. return dl;
  542. }
  543. kfree(dl);
  544. return NULL;
  545. }
  546. static void *devinfo_seq_next(struct seq_file *m, void *v, loff_t *ppos)
  547. {
  548. struct double_list *dl = v;
  549. struct scsi_dev_info_list_table *devinfo_table =
  550. list_entry(dl->top, struct scsi_dev_info_list_table, node);
  551. ++*ppos;
  552. dl->bottom = dl->bottom->next;
  553. while (&devinfo_table->scsi_dev_info_list == dl->bottom) {
  554. dl->top = dl->top->next;
  555. if (dl->top == &scsi_dev_info_list) {
  556. kfree(dl);
  557. return NULL;
  558. }
  559. devinfo_table = list_entry(dl->top,
  560. struct scsi_dev_info_list_table,
  561. node);
  562. dl->bottom = devinfo_table->scsi_dev_info_list.next;
  563. }
  564. return dl;
  565. }
  566. static void devinfo_seq_stop(struct seq_file *m, void *v)
  567. {
  568. kfree(v);
  569. }
  570. static const struct seq_operations scsi_devinfo_seq_ops = {
  571. .start = devinfo_seq_start,
  572. .next = devinfo_seq_next,
  573. .stop = devinfo_seq_stop,
  574. .show = devinfo_seq_show,
  575. };
  576. static int proc_scsi_devinfo_open(struct inode *inode, struct file *file)
  577. {
  578. return seq_open(file, &scsi_devinfo_seq_ops);
  579. }
  580. /*
  581. * proc_scsi_dev_info_write - allow additions to scsi_dev_info_list via /proc.
  582. *
  583. * Description: Adds a black/white list entry for vendor and model with an
  584. * integer value of flag to the scsi device info list.
  585. * To use, echo "vendor:model:flag" > /proc/scsi/device_info
  586. */
  587. static ssize_t proc_scsi_devinfo_write(struct file *file,
  588. const char __user *buf,
  589. size_t length, loff_t *ppos)
  590. {
  591. char *buffer;
  592. ssize_t err = length;
  593. if (!buf || length>PAGE_SIZE)
  594. return -EINVAL;
  595. if (!(buffer = (char *) __get_free_page(GFP_KERNEL)))
  596. return -ENOMEM;
  597. if (copy_from_user(buffer, buf, length)) {
  598. err =-EFAULT;
  599. goto out;
  600. }
  601. if (length < PAGE_SIZE)
  602. buffer[length] = '\0';
  603. else if (buffer[PAGE_SIZE-1]) {
  604. err = -EINVAL;
  605. goto out;
  606. }
  607. scsi_dev_info_list_add_str(buffer);
  608. out:
  609. free_page((unsigned long)buffer);
  610. return err;
  611. }
  612. static const struct file_operations scsi_devinfo_proc_fops = {
  613. .owner = THIS_MODULE,
  614. .open = proc_scsi_devinfo_open,
  615. .read = seq_read,
  616. .write = proc_scsi_devinfo_write,
  617. .llseek = seq_lseek,
  618. .release = seq_release,
  619. };
  620. #endif /* CONFIG_SCSI_PROC_FS */
  621. module_param_string(dev_flags, scsi_dev_flags, sizeof(scsi_dev_flags), 0);
  622. MODULE_PARM_DESC(dev_flags,
  623. "Given scsi_dev_flags=vendor:model:flags[,v:m:f] add black/white"
  624. " list entries for vendor and model with an integer value of flags"
  625. " to the scsi device info list");
  626. module_param_named(default_dev_flags, scsi_default_dev_flags, int, S_IRUGO|S_IWUSR);
  627. MODULE_PARM_DESC(default_dev_flags,
  628. "scsi default device flag integer value");
  629. /**
  630. * scsi_dev_info_list_delete - called from scsi.c:exit_scsi to remove the scsi_dev_info_list.
  631. **/
  632. void scsi_exit_devinfo(void)
  633. {
  634. #ifdef CONFIG_SCSI_PROC_FS
  635. remove_proc_entry("scsi/device_info", NULL);
  636. #endif
  637. scsi_dev_info_remove_list(SCSI_DEVINFO_GLOBAL);
  638. }
  639. /**
  640. * scsi_dev_info_add_list - add a new devinfo list
  641. * @key: key of the list to add
  642. * @name: Name of the list to add (for /proc/scsi/device_info)
  643. *
  644. * Adds the requested list, returns zero on success, -EEXIST if the
  645. * key is already registered to a list, or other error on failure.
  646. */
  647. int scsi_dev_info_add_list(int key, const char *name)
  648. {
  649. struct scsi_dev_info_list_table *devinfo_table =
  650. scsi_devinfo_lookup_by_key(key);
  651. if (!IS_ERR(devinfo_table))
  652. /* list already exists */
  653. return -EEXIST;
  654. devinfo_table = kmalloc(sizeof(*devinfo_table), GFP_KERNEL);
  655. if (!devinfo_table)
  656. return -ENOMEM;
  657. INIT_LIST_HEAD(&devinfo_table->node);
  658. INIT_LIST_HEAD(&devinfo_table->scsi_dev_info_list);
  659. devinfo_table->name = name;
  660. devinfo_table->key = key;
  661. list_add_tail(&devinfo_table->node, &scsi_dev_info_list);
  662. return 0;
  663. }
  664. EXPORT_SYMBOL(scsi_dev_info_add_list);
  665. /**
  666. * scsi_dev_info_remove_list - destroy an added devinfo list
  667. * @key: key of the list to destroy
  668. *
  669. * Iterates over the entire list first, freeing all the values, then
  670. * frees the list itself. Returns 0 on success or -EINVAL if the key
  671. * can't be found.
  672. */
  673. int scsi_dev_info_remove_list(int key)
  674. {
  675. struct list_head *lh, *lh_next;
  676. struct scsi_dev_info_list_table *devinfo_table =
  677. scsi_devinfo_lookup_by_key(key);
  678. if (IS_ERR(devinfo_table))
  679. /* no such list */
  680. return -EINVAL;
  681. /* remove from the master list */
  682. list_del(&devinfo_table->node);
  683. list_for_each_safe(lh, lh_next, &devinfo_table->scsi_dev_info_list) {
  684. struct scsi_dev_info_list *devinfo;
  685. devinfo = list_entry(lh, struct scsi_dev_info_list,
  686. dev_info_list);
  687. kfree(devinfo);
  688. }
  689. kfree(devinfo_table);
  690. return 0;
  691. }
  692. EXPORT_SYMBOL(scsi_dev_info_remove_list);
  693. /**
  694. * scsi_init_devinfo - set up the dynamic device list.
  695. *
  696. * Description:
  697. * Add command line entries from scsi_dev_flags, then add
  698. * scsi_static_device_list entries to the scsi device info list.
  699. */
  700. int __init scsi_init_devinfo(void)
  701. {
  702. #ifdef CONFIG_SCSI_PROC_FS
  703. struct proc_dir_entry *p;
  704. #endif
  705. int error, i;
  706. error = scsi_dev_info_add_list(SCSI_DEVINFO_GLOBAL, NULL);
  707. if (error)
  708. return error;
  709. error = scsi_dev_info_list_add_str(scsi_dev_flags);
  710. if (error)
  711. goto out;
  712. for (i = 0; scsi_static_device_list[i].vendor; i++) {
  713. error = scsi_dev_info_list_add(1 /* compatibile */,
  714. scsi_static_device_list[i].vendor,
  715. scsi_static_device_list[i].model,
  716. NULL,
  717. scsi_static_device_list[i].flags);
  718. if (error)
  719. goto out;
  720. }
  721. #ifdef CONFIG_SCSI_PROC_FS
  722. p = proc_create("scsi/device_info", 0, NULL, &scsi_devinfo_proc_fops);
  723. if (!p) {
  724. error = -ENOMEM;
  725. goto out;
  726. }
  727. #endif /* CONFIG_SCSI_PROC_FS */
  728. out:
  729. if (error)
  730. scsi_exit_devinfo();
  731. return error;
  732. }