scsi_devinfo.c 29 KB

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