target_core_pscsi.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179
  1. /*******************************************************************************
  2. * Filename: target_core_pscsi.c
  3. *
  4. * This file contains the generic target mode <-> Linux SCSI subsystem plugin.
  5. *
  6. * (c) Copyright 2003-2013 Datera, Inc.
  7. *
  8. * Nicholas A. Bellinger <nab@kernel.org>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published by
  12. * the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  23. *
  24. ******************************************************************************/
  25. #include <linux/string.h>
  26. #include <linux/parser.h>
  27. #include <linux/timer.h>
  28. #include <linux/blkdev.h>
  29. #include <linux/blk_types.h>
  30. #include <linux/slab.h>
  31. #include <linux/spinlock.h>
  32. #include <linux/genhd.h>
  33. #include <linux/cdrom.h>
  34. #include <linux/ratelimit.h>
  35. #include <linux/module.h>
  36. #include <asm/unaligned.h>
  37. #include <scsi/scsi.h>
  38. #include <scsi/scsi_device.h>
  39. #include <scsi/scsi_cmnd.h>
  40. #include <scsi/scsi_host.h>
  41. #include <scsi/scsi_tcq.h>
  42. #include <target/target_core_base.h>
  43. #include <target/target_core_backend.h>
  44. #include <target/target_core_backend_configfs.h>
  45. #include "target_core_alua.h"
  46. #include "target_core_pscsi.h"
  47. #define ISPRINT(a) ((a >= ' ') && (a <= '~'))
  48. static inline struct pscsi_dev_virt *PSCSI_DEV(struct se_device *dev)
  49. {
  50. return container_of(dev, struct pscsi_dev_virt, dev);
  51. }
  52. static struct se_subsystem_api pscsi_template;
  53. static sense_reason_t pscsi_execute_cmd(struct se_cmd *cmd);
  54. static void pscsi_req_done(struct request *, int);
  55. /* pscsi_attach_hba():
  56. *
  57. * pscsi_get_sh() used scsi_host_lookup() to locate struct Scsi_Host.
  58. * from the passed SCSI Host ID.
  59. */
  60. static int pscsi_attach_hba(struct se_hba *hba, u32 host_id)
  61. {
  62. struct pscsi_hba_virt *phv;
  63. phv = kzalloc(sizeof(struct pscsi_hba_virt), GFP_KERNEL);
  64. if (!phv) {
  65. pr_err("Unable to allocate struct pscsi_hba_virt\n");
  66. return -ENOMEM;
  67. }
  68. phv->phv_host_id = host_id;
  69. phv->phv_mode = PHV_VIRTUAL_HOST_ID;
  70. hba->hba_ptr = phv;
  71. pr_debug("CORE_HBA[%d] - TCM SCSI HBA Driver %s on"
  72. " Generic Target Core Stack %s\n", hba->hba_id,
  73. PSCSI_VERSION, TARGET_CORE_MOD_VERSION);
  74. pr_debug("CORE_HBA[%d] - Attached SCSI HBA to Generic\n",
  75. hba->hba_id);
  76. return 0;
  77. }
  78. static void pscsi_detach_hba(struct se_hba *hba)
  79. {
  80. struct pscsi_hba_virt *phv = hba->hba_ptr;
  81. struct Scsi_Host *scsi_host = phv->phv_lld_host;
  82. if (scsi_host) {
  83. scsi_host_put(scsi_host);
  84. pr_debug("CORE_HBA[%d] - Detached SCSI HBA: %s from"
  85. " Generic Target Core\n", hba->hba_id,
  86. (scsi_host->hostt->name) ? (scsi_host->hostt->name) :
  87. "Unknown");
  88. } else
  89. pr_debug("CORE_HBA[%d] - Detached Virtual SCSI HBA"
  90. " from Generic Target Core\n", hba->hba_id);
  91. kfree(phv);
  92. hba->hba_ptr = NULL;
  93. }
  94. static int pscsi_pmode_enable_hba(struct se_hba *hba, unsigned long mode_flag)
  95. {
  96. struct pscsi_hba_virt *phv = hba->hba_ptr;
  97. struct Scsi_Host *sh = phv->phv_lld_host;
  98. /*
  99. * Release the struct Scsi_Host
  100. */
  101. if (!mode_flag) {
  102. if (!sh)
  103. return 0;
  104. phv->phv_lld_host = NULL;
  105. phv->phv_mode = PHV_VIRTUAL_HOST_ID;
  106. pr_debug("CORE_HBA[%d] - Disabled pSCSI HBA Passthrough"
  107. " %s\n", hba->hba_id, (sh->hostt->name) ?
  108. (sh->hostt->name) : "Unknown");
  109. scsi_host_put(sh);
  110. return 0;
  111. }
  112. /*
  113. * Otherwise, locate struct Scsi_Host from the original passed
  114. * pSCSI Host ID and enable for phba mode
  115. */
  116. sh = scsi_host_lookup(phv->phv_host_id);
  117. if (!sh) {
  118. pr_err("pSCSI: Unable to locate SCSI Host for"
  119. " phv_host_id: %d\n", phv->phv_host_id);
  120. return -EINVAL;
  121. }
  122. phv->phv_lld_host = sh;
  123. phv->phv_mode = PHV_LLD_SCSI_HOST_NO;
  124. pr_debug("CORE_HBA[%d] - Enabled pSCSI HBA Passthrough %s\n",
  125. hba->hba_id, (sh->hostt->name) ? (sh->hostt->name) : "Unknown");
  126. return 1;
  127. }
  128. static void pscsi_tape_read_blocksize(struct se_device *dev,
  129. struct scsi_device *sdev)
  130. {
  131. unsigned char cdb[MAX_COMMAND_SIZE], *buf;
  132. int ret;
  133. buf = kzalloc(12, GFP_KERNEL);
  134. if (!buf)
  135. return;
  136. memset(cdb, 0, MAX_COMMAND_SIZE);
  137. cdb[0] = MODE_SENSE;
  138. cdb[4] = 0x0c; /* 12 bytes */
  139. ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf, 12, NULL,
  140. HZ, 1, NULL);
  141. if (ret)
  142. goto out_free;
  143. /*
  144. * If MODE_SENSE still returns zero, set the default value to 1024.
  145. */
  146. sdev->sector_size = (buf[9] << 16) | (buf[10] << 8) | (buf[11]);
  147. if (!sdev->sector_size)
  148. sdev->sector_size = 1024;
  149. out_free:
  150. kfree(buf);
  151. }
  152. static void
  153. pscsi_set_inquiry_info(struct scsi_device *sdev, struct t10_wwn *wwn)
  154. {
  155. unsigned char *buf;
  156. if (sdev->inquiry_len < INQUIRY_LEN)
  157. return;
  158. buf = sdev->inquiry;
  159. if (!buf)
  160. return;
  161. /*
  162. * Use sdev->inquiry from drivers/scsi/scsi_scan.c:scsi_alloc_sdev()
  163. */
  164. memcpy(&wwn->vendor[0], &buf[8], sizeof(wwn->vendor));
  165. memcpy(&wwn->model[0], &buf[16], sizeof(wwn->model));
  166. memcpy(&wwn->revision[0], &buf[32], sizeof(wwn->revision));
  167. }
  168. static int
  169. pscsi_get_inquiry_vpd_serial(struct scsi_device *sdev, struct t10_wwn *wwn)
  170. {
  171. unsigned char cdb[MAX_COMMAND_SIZE], *buf;
  172. int ret;
  173. buf = kzalloc(INQUIRY_VPD_SERIAL_LEN, GFP_KERNEL);
  174. if (!buf)
  175. return -ENOMEM;
  176. memset(cdb, 0, MAX_COMMAND_SIZE);
  177. cdb[0] = INQUIRY;
  178. cdb[1] = 0x01; /* Query VPD */
  179. cdb[2] = 0x80; /* Unit Serial Number */
  180. cdb[3] = (INQUIRY_VPD_SERIAL_LEN >> 8) & 0xff;
  181. cdb[4] = (INQUIRY_VPD_SERIAL_LEN & 0xff);
  182. ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
  183. INQUIRY_VPD_SERIAL_LEN, NULL, HZ, 1, NULL);
  184. if (ret)
  185. goto out_free;
  186. snprintf(&wwn->unit_serial[0], INQUIRY_VPD_SERIAL_LEN, "%s", &buf[4]);
  187. wwn->t10_dev->dev_flags |= DF_FIRMWARE_VPD_UNIT_SERIAL;
  188. kfree(buf);
  189. return 0;
  190. out_free:
  191. kfree(buf);
  192. return -EPERM;
  193. }
  194. static void
  195. pscsi_get_inquiry_vpd_device_ident(struct scsi_device *sdev,
  196. struct t10_wwn *wwn)
  197. {
  198. unsigned char cdb[MAX_COMMAND_SIZE], *buf, *page_83;
  199. int ident_len, page_len, off = 4, ret;
  200. struct t10_vpd *vpd;
  201. buf = kzalloc(INQUIRY_VPD_SERIAL_LEN, GFP_KERNEL);
  202. if (!buf)
  203. return;
  204. memset(cdb, 0, MAX_COMMAND_SIZE);
  205. cdb[0] = INQUIRY;
  206. cdb[1] = 0x01; /* Query VPD */
  207. cdb[2] = 0x83; /* Device Identifier */
  208. cdb[3] = (INQUIRY_VPD_DEVICE_IDENTIFIER_LEN >> 8) & 0xff;
  209. cdb[4] = (INQUIRY_VPD_DEVICE_IDENTIFIER_LEN & 0xff);
  210. ret = scsi_execute_req(sdev, cdb, DMA_FROM_DEVICE, buf,
  211. INQUIRY_VPD_DEVICE_IDENTIFIER_LEN,
  212. NULL, HZ, 1, NULL);
  213. if (ret)
  214. goto out;
  215. page_len = (buf[2] << 8) | buf[3];
  216. while (page_len > 0) {
  217. /* Grab a pointer to the Identification descriptor */
  218. page_83 = &buf[off];
  219. ident_len = page_83[3];
  220. if (!ident_len) {
  221. pr_err("page_83[3]: identifier"
  222. " length zero!\n");
  223. break;
  224. }
  225. pr_debug("T10 VPD Identifier Length: %d\n", ident_len);
  226. vpd = kzalloc(sizeof(struct t10_vpd), GFP_KERNEL);
  227. if (!vpd) {
  228. pr_err("Unable to allocate memory for"
  229. " struct t10_vpd\n");
  230. goto out;
  231. }
  232. INIT_LIST_HEAD(&vpd->vpd_list);
  233. transport_set_vpd_proto_id(vpd, page_83);
  234. transport_set_vpd_assoc(vpd, page_83);
  235. if (transport_set_vpd_ident_type(vpd, page_83) < 0) {
  236. off += (ident_len + 4);
  237. page_len -= (ident_len + 4);
  238. kfree(vpd);
  239. continue;
  240. }
  241. if (transport_set_vpd_ident(vpd, page_83) < 0) {
  242. off += (ident_len + 4);
  243. page_len -= (ident_len + 4);
  244. kfree(vpd);
  245. continue;
  246. }
  247. list_add_tail(&vpd->vpd_list, &wwn->t10_vpd_list);
  248. off += (ident_len + 4);
  249. page_len -= (ident_len + 4);
  250. }
  251. out:
  252. kfree(buf);
  253. }
  254. static int pscsi_add_device_to_list(struct se_device *dev,
  255. struct scsi_device *sd)
  256. {
  257. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  258. struct request_queue *q = sd->request_queue;
  259. pdv->pdv_sd = sd;
  260. if (!sd->queue_depth) {
  261. sd->queue_depth = PSCSI_DEFAULT_QUEUEDEPTH;
  262. pr_err("Set broken SCSI Device %d:%d:%llu"
  263. " queue_depth to %d\n", sd->channel, sd->id,
  264. sd->lun, sd->queue_depth);
  265. }
  266. dev->dev_attrib.hw_block_size = sd->sector_size;
  267. dev->dev_attrib.hw_max_sectors =
  268. min_t(int, sd->host->max_sectors, queue_max_hw_sectors(q));
  269. dev->dev_attrib.hw_queue_depth = sd->queue_depth;
  270. /*
  271. * Setup our standard INQUIRY info into se_dev->t10_wwn
  272. */
  273. pscsi_set_inquiry_info(sd, &dev->t10_wwn);
  274. /*
  275. * Locate VPD WWN Information used for various purposes within
  276. * the Storage Engine.
  277. */
  278. if (!pscsi_get_inquiry_vpd_serial(sd, &dev->t10_wwn)) {
  279. /*
  280. * If VPD Unit Serial returned GOOD status, try
  281. * VPD Device Identification page (0x83).
  282. */
  283. pscsi_get_inquiry_vpd_device_ident(sd, &dev->t10_wwn);
  284. }
  285. /*
  286. * For TYPE_TAPE, attempt to determine blocksize with MODE_SENSE.
  287. */
  288. if (sd->type == TYPE_TAPE)
  289. pscsi_tape_read_blocksize(dev, sd);
  290. return 0;
  291. }
  292. static struct se_device *pscsi_alloc_device(struct se_hba *hba,
  293. const char *name)
  294. {
  295. struct pscsi_dev_virt *pdv;
  296. pdv = kzalloc(sizeof(struct pscsi_dev_virt), GFP_KERNEL);
  297. if (!pdv) {
  298. pr_err("Unable to allocate memory for struct pscsi_dev_virt\n");
  299. return NULL;
  300. }
  301. pr_debug("PSCSI: Allocated pdv: %p for %s\n", pdv, name);
  302. return &pdv->dev;
  303. }
  304. /*
  305. * Called with struct Scsi_Host->host_lock called.
  306. */
  307. static int pscsi_create_type_disk(struct se_device *dev, struct scsi_device *sd)
  308. __releases(sh->host_lock)
  309. {
  310. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  311. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  312. struct Scsi_Host *sh = sd->host;
  313. struct block_device *bd;
  314. int ret;
  315. if (scsi_device_get(sd)) {
  316. pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
  317. sh->host_no, sd->channel, sd->id, sd->lun);
  318. spin_unlock_irq(sh->host_lock);
  319. return -EIO;
  320. }
  321. spin_unlock_irq(sh->host_lock);
  322. /*
  323. * Claim exclusive struct block_device access to struct scsi_device
  324. * for TYPE_DISK using supplied udev_path
  325. */
  326. bd = blkdev_get_by_path(dev->udev_path,
  327. FMODE_WRITE|FMODE_READ|FMODE_EXCL, pdv);
  328. if (IS_ERR(bd)) {
  329. pr_err("pSCSI: blkdev_get_by_path() failed\n");
  330. scsi_device_put(sd);
  331. return PTR_ERR(bd);
  332. }
  333. pdv->pdv_bd = bd;
  334. ret = pscsi_add_device_to_list(dev, sd);
  335. if (ret) {
  336. blkdev_put(pdv->pdv_bd, FMODE_WRITE|FMODE_READ|FMODE_EXCL);
  337. scsi_device_put(sd);
  338. return ret;
  339. }
  340. pr_debug("CORE_PSCSI[%d] - Added TYPE_DISK for %d:%d:%d:%llu\n",
  341. phv->phv_host_id, sh->host_no, sd->channel, sd->id, sd->lun);
  342. return 0;
  343. }
  344. /*
  345. * Called with struct Scsi_Host->host_lock called.
  346. */
  347. static int pscsi_create_type_rom(struct se_device *dev, struct scsi_device *sd)
  348. __releases(sh->host_lock)
  349. {
  350. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  351. struct Scsi_Host *sh = sd->host;
  352. int ret;
  353. if (scsi_device_get(sd)) {
  354. pr_err("scsi_device_get() failed for %d:%d:%d:%llu\n",
  355. sh->host_no, sd->channel, sd->id, sd->lun);
  356. spin_unlock_irq(sh->host_lock);
  357. return -EIO;
  358. }
  359. spin_unlock_irq(sh->host_lock);
  360. ret = pscsi_add_device_to_list(dev, sd);
  361. if (ret) {
  362. scsi_device_put(sd);
  363. return ret;
  364. }
  365. pr_debug("CORE_PSCSI[%d] - Added Type: %s for %d:%d:%d:%llu\n",
  366. phv->phv_host_id, scsi_device_type(sd->type), sh->host_no,
  367. sd->channel, sd->id, sd->lun);
  368. return 0;
  369. }
  370. /*
  371. * Called with struct Scsi_Host->host_lock called.
  372. */
  373. static int pscsi_create_type_other(struct se_device *dev,
  374. struct scsi_device *sd)
  375. __releases(sh->host_lock)
  376. {
  377. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  378. struct Scsi_Host *sh = sd->host;
  379. int ret;
  380. spin_unlock_irq(sh->host_lock);
  381. ret = pscsi_add_device_to_list(dev, sd);
  382. if (ret)
  383. return ret;
  384. pr_debug("CORE_PSCSI[%d] - Added Type: %s for %d:%d:%d:%llu\n",
  385. phv->phv_host_id, scsi_device_type(sd->type), sh->host_no,
  386. sd->channel, sd->id, sd->lun);
  387. return 0;
  388. }
  389. static int pscsi_configure_device(struct se_device *dev)
  390. {
  391. struct se_hba *hba = dev->se_hba;
  392. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  393. struct scsi_device *sd;
  394. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  395. struct Scsi_Host *sh = phv->phv_lld_host;
  396. int legacy_mode_enable = 0;
  397. int ret;
  398. if (!(pdv->pdv_flags & PDF_HAS_CHANNEL_ID) ||
  399. !(pdv->pdv_flags & PDF_HAS_TARGET_ID) ||
  400. !(pdv->pdv_flags & PDF_HAS_LUN_ID)) {
  401. pr_err("Missing scsi_channel_id=, scsi_target_id= and"
  402. " scsi_lun_id= parameters\n");
  403. return -EINVAL;
  404. }
  405. /*
  406. * If not running in PHV_LLD_SCSI_HOST_NO mode, locate the
  407. * struct Scsi_Host we will need to bring the TCM/pSCSI object online
  408. */
  409. if (!sh) {
  410. if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
  411. pr_err("pSCSI: Unable to locate struct"
  412. " Scsi_Host for PHV_LLD_SCSI_HOST_NO\n");
  413. return -ENODEV;
  414. }
  415. /*
  416. * For the newer PHV_VIRTUAL_HOST_ID struct scsi_device
  417. * reference, we enforce that udev_path has been set
  418. */
  419. if (!(dev->dev_flags & DF_USING_UDEV_PATH)) {
  420. pr_err("pSCSI: udev_path attribute has not"
  421. " been set before ENABLE=1\n");
  422. return -EINVAL;
  423. }
  424. /*
  425. * If no scsi_host_id= was passed for PHV_VIRTUAL_HOST_ID,
  426. * use the original TCM hba ID to reference Linux/SCSI Host No
  427. * and enable for PHV_LLD_SCSI_HOST_NO mode.
  428. */
  429. if (!(pdv->pdv_flags & PDF_HAS_VIRT_HOST_ID)) {
  430. if (hba->dev_count) {
  431. pr_err("pSCSI: Unable to set hba_mode"
  432. " with active devices\n");
  433. return -EEXIST;
  434. }
  435. if (pscsi_pmode_enable_hba(hba, 1) != 1)
  436. return -ENODEV;
  437. legacy_mode_enable = 1;
  438. hba->hba_flags |= HBA_FLAGS_PSCSI_MODE;
  439. sh = phv->phv_lld_host;
  440. } else {
  441. sh = scsi_host_lookup(pdv->pdv_host_id);
  442. if (!sh) {
  443. pr_err("pSCSI: Unable to locate"
  444. " pdv_host_id: %d\n", pdv->pdv_host_id);
  445. return -EINVAL;
  446. }
  447. pdv->pdv_lld_host = sh;
  448. }
  449. } else {
  450. if (phv->phv_mode == PHV_VIRTUAL_HOST_ID) {
  451. pr_err("pSCSI: PHV_VIRTUAL_HOST_ID set while"
  452. " struct Scsi_Host exists\n");
  453. return -EEXIST;
  454. }
  455. }
  456. spin_lock_irq(sh->host_lock);
  457. list_for_each_entry(sd, &sh->__devices, siblings) {
  458. if ((pdv->pdv_channel_id != sd->channel) ||
  459. (pdv->pdv_target_id != sd->id) ||
  460. (pdv->pdv_lun_id != sd->lun))
  461. continue;
  462. /*
  463. * Functions will release the held struct scsi_host->host_lock
  464. * before calling calling pscsi_add_device_to_list() to register
  465. * struct scsi_device with target_core_mod.
  466. */
  467. switch (sd->type) {
  468. case TYPE_DISK:
  469. ret = pscsi_create_type_disk(dev, sd);
  470. break;
  471. case TYPE_ROM:
  472. ret = pscsi_create_type_rom(dev, sd);
  473. break;
  474. default:
  475. ret = pscsi_create_type_other(dev, sd);
  476. break;
  477. }
  478. if (ret) {
  479. if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
  480. scsi_host_put(sh);
  481. else if (legacy_mode_enable) {
  482. pscsi_pmode_enable_hba(hba, 0);
  483. hba->hba_flags &= ~HBA_FLAGS_PSCSI_MODE;
  484. }
  485. pdv->pdv_sd = NULL;
  486. return ret;
  487. }
  488. return 0;
  489. }
  490. spin_unlock_irq(sh->host_lock);
  491. pr_err("pSCSI: Unable to locate %d:%d:%d:%d\n", sh->host_no,
  492. pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id);
  493. if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
  494. scsi_host_put(sh);
  495. else if (legacy_mode_enable) {
  496. pscsi_pmode_enable_hba(hba, 0);
  497. hba->hba_flags &= ~HBA_FLAGS_PSCSI_MODE;
  498. }
  499. return -ENODEV;
  500. }
  501. static void pscsi_free_device(struct se_device *dev)
  502. {
  503. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  504. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  505. struct scsi_device *sd = pdv->pdv_sd;
  506. if (sd) {
  507. /*
  508. * Release exclusive pSCSI internal struct block_device claim for
  509. * struct scsi_device with TYPE_DISK from pscsi_create_type_disk()
  510. */
  511. if ((sd->type == TYPE_DISK) && pdv->pdv_bd) {
  512. blkdev_put(pdv->pdv_bd,
  513. FMODE_WRITE|FMODE_READ|FMODE_EXCL);
  514. pdv->pdv_bd = NULL;
  515. }
  516. /*
  517. * For HBA mode PHV_LLD_SCSI_HOST_NO, release the reference
  518. * to struct Scsi_Host now.
  519. */
  520. if ((phv->phv_mode == PHV_LLD_SCSI_HOST_NO) &&
  521. (phv->phv_lld_host != NULL))
  522. scsi_host_put(phv->phv_lld_host);
  523. else if (pdv->pdv_lld_host)
  524. scsi_host_put(pdv->pdv_lld_host);
  525. if ((sd->type == TYPE_DISK) || (sd->type == TYPE_ROM))
  526. scsi_device_put(sd);
  527. pdv->pdv_sd = NULL;
  528. }
  529. kfree(pdv);
  530. }
  531. static void pscsi_transport_complete(struct se_cmd *cmd, struct scatterlist *sg,
  532. unsigned char *sense_buffer)
  533. {
  534. struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
  535. struct scsi_device *sd = pdv->pdv_sd;
  536. int result;
  537. struct pscsi_plugin_task *pt = cmd->priv;
  538. unsigned char *cdb;
  539. /*
  540. * Special case for REPORT_LUNs handling where pscsi_plugin_task has
  541. * not been allocated because TCM is handling the emulation directly.
  542. */
  543. if (!pt)
  544. return;
  545. cdb = &pt->pscsi_cdb[0];
  546. result = pt->pscsi_result;
  547. /*
  548. * Hack to make sure that Write-Protect modepage is set if R/O mode is
  549. * forced.
  550. */
  551. if (!cmd->se_deve || !cmd->data_length)
  552. goto after_mode_sense;
  553. if (((cdb[0] == MODE_SENSE) || (cdb[0] == MODE_SENSE_10)) &&
  554. (status_byte(result) << 1) == SAM_STAT_GOOD) {
  555. if (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY) {
  556. unsigned char *buf;
  557. buf = transport_kmap_data_sg(cmd);
  558. if (!buf)
  559. ; /* XXX: TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE */
  560. if (cdb[0] == MODE_SENSE_10) {
  561. if (!(buf[3] & 0x80))
  562. buf[3] |= 0x80;
  563. } else {
  564. if (!(buf[2] & 0x80))
  565. buf[2] |= 0x80;
  566. }
  567. transport_kunmap_data_sg(cmd);
  568. }
  569. }
  570. after_mode_sense:
  571. if (sd->type != TYPE_TAPE || !cmd->data_length)
  572. goto after_mode_select;
  573. /*
  574. * Hack to correctly obtain the initiator requested blocksize for
  575. * TYPE_TAPE. Since this value is dependent upon each tape media,
  576. * struct scsi_device->sector_size will not contain the correct value
  577. * by default, so we go ahead and set it so
  578. * TRANSPORT(dev)->get_blockdev() returns the correct value to the
  579. * storage engine.
  580. */
  581. if (((cdb[0] == MODE_SELECT) || (cdb[0] == MODE_SELECT_10)) &&
  582. (status_byte(result) << 1) == SAM_STAT_GOOD) {
  583. unsigned char *buf;
  584. u16 bdl;
  585. u32 blocksize;
  586. buf = sg_virt(&sg[0]);
  587. if (!buf) {
  588. pr_err("Unable to get buf for scatterlist\n");
  589. goto after_mode_select;
  590. }
  591. if (cdb[0] == MODE_SELECT)
  592. bdl = (buf[3]);
  593. else
  594. bdl = (buf[6] << 8) | (buf[7]);
  595. if (!bdl)
  596. goto after_mode_select;
  597. if (cdb[0] == MODE_SELECT)
  598. blocksize = (buf[9] << 16) | (buf[10] << 8) |
  599. (buf[11]);
  600. else
  601. blocksize = (buf[13] << 16) | (buf[14] << 8) |
  602. (buf[15]);
  603. sd->sector_size = blocksize;
  604. }
  605. after_mode_select:
  606. if (sense_buffer && (status_byte(result) & CHECK_CONDITION)) {
  607. memcpy(sense_buffer, pt->pscsi_sense, TRANSPORT_SENSE_BUFFER);
  608. cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE;
  609. }
  610. }
  611. enum {
  612. Opt_scsi_host_id, Opt_scsi_channel_id, Opt_scsi_target_id,
  613. Opt_scsi_lun_id, Opt_err
  614. };
  615. static match_table_t tokens = {
  616. {Opt_scsi_host_id, "scsi_host_id=%d"},
  617. {Opt_scsi_channel_id, "scsi_channel_id=%d"},
  618. {Opt_scsi_target_id, "scsi_target_id=%d"},
  619. {Opt_scsi_lun_id, "scsi_lun_id=%d"},
  620. {Opt_err, NULL}
  621. };
  622. static ssize_t pscsi_set_configfs_dev_params(struct se_device *dev,
  623. const char *page, ssize_t count)
  624. {
  625. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  626. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  627. char *orig, *ptr, *opts;
  628. substring_t args[MAX_OPT_ARGS];
  629. int ret = 0, arg, token;
  630. opts = kstrdup(page, GFP_KERNEL);
  631. if (!opts)
  632. return -ENOMEM;
  633. orig = opts;
  634. while ((ptr = strsep(&opts, ",\n")) != NULL) {
  635. if (!*ptr)
  636. continue;
  637. token = match_token(ptr, tokens, args);
  638. switch (token) {
  639. case Opt_scsi_host_id:
  640. if (phv->phv_mode == PHV_LLD_SCSI_HOST_NO) {
  641. pr_err("PSCSI[%d]: Unable to accept"
  642. " scsi_host_id while phv_mode =="
  643. " PHV_LLD_SCSI_HOST_NO\n",
  644. phv->phv_host_id);
  645. ret = -EINVAL;
  646. goto out;
  647. }
  648. ret = match_int(args, &arg);
  649. if (ret)
  650. goto out;
  651. pdv->pdv_host_id = arg;
  652. pr_debug("PSCSI[%d]: Referencing SCSI Host ID:"
  653. " %d\n", phv->phv_host_id, pdv->pdv_host_id);
  654. pdv->pdv_flags |= PDF_HAS_VIRT_HOST_ID;
  655. break;
  656. case Opt_scsi_channel_id:
  657. ret = match_int(args, &arg);
  658. if (ret)
  659. goto out;
  660. pdv->pdv_channel_id = arg;
  661. pr_debug("PSCSI[%d]: Referencing SCSI Channel"
  662. " ID: %d\n", phv->phv_host_id,
  663. pdv->pdv_channel_id);
  664. pdv->pdv_flags |= PDF_HAS_CHANNEL_ID;
  665. break;
  666. case Opt_scsi_target_id:
  667. ret = match_int(args, &arg);
  668. if (ret)
  669. goto out;
  670. pdv->pdv_target_id = arg;
  671. pr_debug("PSCSI[%d]: Referencing SCSI Target"
  672. " ID: %d\n", phv->phv_host_id,
  673. pdv->pdv_target_id);
  674. pdv->pdv_flags |= PDF_HAS_TARGET_ID;
  675. break;
  676. case Opt_scsi_lun_id:
  677. ret = match_int(args, &arg);
  678. if (ret)
  679. goto out;
  680. pdv->pdv_lun_id = arg;
  681. pr_debug("PSCSI[%d]: Referencing SCSI LUN ID:"
  682. " %d\n", phv->phv_host_id, pdv->pdv_lun_id);
  683. pdv->pdv_flags |= PDF_HAS_LUN_ID;
  684. break;
  685. default:
  686. break;
  687. }
  688. }
  689. out:
  690. kfree(orig);
  691. return (!ret) ? count : ret;
  692. }
  693. static ssize_t pscsi_show_configfs_dev_params(struct se_device *dev, char *b)
  694. {
  695. struct pscsi_hba_virt *phv = dev->se_hba->hba_ptr;
  696. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  697. struct scsi_device *sd = pdv->pdv_sd;
  698. unsigned char host_id[16];
  699. ssize_t bl;
  700. int i;
  701. if (phv->phv_mode == PHV_VIRTUAL_HOST_ID)
  702. snprintf(host_id, 16, "%d", pdv->pdv_host_id);
  703. else
  704. snprintf(host_id, 16, "PHBA Mode");
  705. bl = sprintf(b, "SCSI Device Bus Location:"
  706. " Channel ID: %d Target ID: %d LUN: %d Host ID: %s\n",
  707. pdv->pdv_channel_id, pdv->pdv_target_id, pdv->pdv_lun_id,
  708. host_id);
  709. if (sd) {
  710. bl += sprintf(b + bl, " ");
  711. bl += sprintf(b + bl, "Vendor: ");
  712. for (i = 0; i < 8; i++) {
  713. if (ISPRINT(sd->vendor[i])) /* printable character? */
  714. bl += sprintf(b + bl, "%c", sd->vendor[i]);
  715. else
  716. bl += sprintf(b + bl, " ");
  717. }
  718. bl += sprintf(b + bl, " Model: ");
  719. for (i = 0; i < 16; i++) {
  720. if (ISPRINT(sd->model[i])) /* printable character ? */
  721. bl += sprintf(b + bl, "%c", sd->model[i]);
  722. else
  723. bl += sprintf(b + bl, " ");
  724. }
  725. bl += sprintf(b + bl, " Rev: ");
  726. for (i = 0; i < 4; i++) {
  727. if (ISPRINT(sd->rev[i])) /* printable character ? */
  728. bl += sprintf(b + bl, "%c", sd->rev[i]);
  729. else
  730. bl += sprintf(b + bl, " ");
  731. }
  732. bl += sprintf(b + bl, "\n");
  733. }
  734. return bl;
  735. }
  736. static void pscsi_bi_endio(struct bio *bio, int error)
  737. {
  738. bio_put(bio);
  739. }
  740. static inline struct bio *pscsi_get_bio(int nr_vecs)
  741. {
  742. struct bio *bio;
  743. /*
  744. * Use bio_malloc() following the comment in for bio -> struct request
  745. * in block/blk-core.c:blk_make_request()
  746. */
  747. bio = bio_kmalloc(GFP_KERNEL, nr_vecs);
  748. if (!bio) {
  749. pr_err("PSCSI: bio_kmalloc() failed\n");
  750. return NULL;
  751. }
  752. bio->bi_end_io = pscsi_bi_endio;
  753. return bio;
  754. }
  755. static sense_reason_t
  756. pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,
  757. enum dma_data_direction data_direction, struct bio **hbio)
  758. {
  759. struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
  760. struct bio *bio = NULL, *tbio = NULL;
  761. struct page *page;
  762. struct scatterlist *sg;
  763. u32 data_len = cmd->data_length, i, len, bytes, off;
  764. int nr_pages = (cmd->data_length + sgl[0].offset +
  765. PAGE_SIZE - 1) >> PAGE_SHIFT;
  766. int nr_vecs = 0, rc;
  767. int rw = (data_direction == DMA_TO_DEVICE);
  768. *hbio = NULL;
  769. pr_debug("PSCSI: nr_pages: %d\n", nr_pages);
  770. for_each_sg(sgl, sg, sgl_nents, i) {
  771. page = sg_page(sg);
  772. off = sg->offset;
  773. len = sg->length;
  774. pr_debug("PSCSI: i: %d page: %p len: %d off: %d\n", i,
  775. page, len, off);
  776. /*
  777. * We only have one page of data in each sg element,
  778. * we can not cross a page boundary.
  779. */
  780. if (off + len > PAGE_SIZE)
  781. goto fail;
  782. if (len > 0 && data_len > 0) {
  783. bytes = min_t(unsigned int, len, PAGE_SIZE - off);
  784. bytes = min(bytes, data_len);
  785. if (!bio) {
  786. nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
  787. nr_pages -= nr_vecs;
  788. /*
  789. * Calls bio_kmalloc() and sets bio->bi_end_io()
  790. */
  791. bio = pscsi_get_bio(nr_vecs);
  792. if (!bio)
  793. goto fail;
  794. if (rw)
  795. bio->bi_rw |= REQ_WRITE;
  796. pr_debug("PSCSI: Allocated bio: %p,"
  797. " dir: %s nr_vecs: %d\n", bio,
  798. (rw) ? "rw" : "r", nr_vecs);
  799. /*
  800. * Set *hbio pointer to handle the case:
  801. * nr_pages > BIO_MAX_PAGES, where additional
  802. * bios need to be added to complete a given
  803. * command.
  804. */
  805. if (!*hbio)
  806. *hbio = tbio = bio;
  807. else
  808. tbio = tbio->bi_next = bio;
  809. }
  810. pr_debug("PSCSI: Calling bio_add_pc_page() i: %d"
  811. " bio: %p page: %p len: %d off: %d\n", i, bio,
  812. page, len, off);
  813. rc = bio_add_pc_page(pdv->pdv_sd->request_queue,
  814. bio, page, bytes, off);
  815. if (rc != bytes)
  816. goto fail;
  817. pr_debug("PSCSI: bio->bi_vcnt: %d nr_vecs: %d\n",
  818. bio->bi_vcnt, nr_vecs);
  819. if (bio->bi_vcnt > nr_vecs) {
  820. pr_debug("PSCSI: Reached bio->bi_vcnt max:"
  821. " %d i: %d bio: %p, allocating another"
  822. " bio\n", bio->bi_vcnt, i, bio);
  823. /*
  824. * Clear the pointer so that another bio will
  825. * be allocated with pscsi_get_bio() above, the
  826. * current bio has already been set *tbio and
  827. * bio->bi_next.
  828. */
  829. bio = NULL;
  830. }
  831. data_len -= bytes;
  832. }
  833. }
  834. return 0;
  835. fail:
  836. while (*hbio) {
  837. bio = *hbio;
  838. *hbio = (*hbio)->bi_next;
  839. bio_endio(bio, 0); /* XXX: should be error */
  840. }
  841. return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  842. }
  843. static sense_reason_t
  844. pscsi_parse_cdb(struct se_cmd *cmd)
  845. {
  846. if (cmd->se_cmd_flags & SCF_BIDI)
  847. return TCM_UNSUPPORTED_SCSI_OPCODE;
  848. return passthrough_parse_cdb(cmd, pscsi_execute_cmd);
  849. }
  850. static sense_reason_t
  851. pscsi_execute_cmd(struct se_cmd *cmd)
  852. {
  853. struct scatterlist *sgl = cmd->t_data_sg;
  854. u32 sgl_nents = cmd->t_data_nents;
  855. enum dma_data_direction data_direction = cmd->data_direction;
  856. struct pscsi_dev_virt *pdv = PSCSI_DEV(cmd->se_dev);
  857. struct pscsi_plugin_task *pt;
  858. struct request *req;
  859. struct bio *hbio;
  860. sense_reason_t ret;
  861. /*
  862. * Dynamically alloc cdb space, since it may be larger than
  863. * TCM_MAX_COMMAND_SIZE
  864. */
  865. pt = kzalloc(sizeof(*pt) + scsi_command_size(cmd->t_task_cdb), GFP_KERNEL);
  866. if (!pt) {
  867. return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  868. }
  869. cmd->priv = pt;
  870. memcpy(pt->pscsi_cdb, cmd->t_task_cdb,
  871. scsi_command_size(cmd->t_task_cdb));
  872. if (!sgl) {
  873. req = blk_get_request(pdv->pdv_sd->request_queue,
  874. (data_direction == DMA_TO_DEVICE),
  875. GFP_KERNEL);
  876. if (IS_ERR(req)) {
  877. pr_err("PSCSI: blk_get_request() failed\n");
  878. ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  879. goto fail;
  880. }
  881. blk_rq_set_block_pc(req);
  882. } else {
  883. BUG_ON(!cmd->data_length);
  884. ret = pscsi_map_sg(cmd, sgl, sgl_nents, data_direction, &hbio);
  885. if (ret)
  886. goto fail;
  887. req = blk_make_request(pdv->pdv_sd->request_queue, hbio,
  888. GFP_KERNEL);
  889. if (IS_ERR(req)) {
  890. pr_err("pSCSI: blk_make_request() failed\n");
  891. ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  892. goto fail_free_bio;
  893. }
  894. }
  895. req->end_io = pscsi_req_done;
  896. req->end_io_data = cmd;
  897. req->cmd_len = scsi_command_size(pt->pscsi_cdb);
  898. req->cmd = &pt->pscsi_cdb[0];
  899. req->sense = &pt->pscsi_sense[0];
  900. req->sense_len = 0;
  901. if (pdv->pdv_sd->type == TYPE_DISK)
  902. req->timeout = PS_TIMEOUT_DISK;
  903. else
  904. req->timeout = PS_TIMEOUT_OTHER;
  905. req->retries = PS_RETRY;
  906. blk_execute_rq_nowait(pdv->pdv_sd->request_queue, NULL, req,
  907. (cmd->sam_task_attr == TCM_HEAD_TAG),
  908. pscsi_req_done);
  909. return 0;
  910. fail_free_bio:
  911. while (hbio) {
  912. struct bio *bio = hbio;
  913. hbio = hbio->bi_next;
  914. bio_endio(bio, 0); /* XXX: should be error */
  915. }
  916. ret = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  917. fail:
  918. kfree(pt);
  919. return ret;
  920. }
  921. /* pscsi_get_device_type():
  922. *
  923. *
  924. */
  925. static u32 pscsi_get_device_type(struct se_device *dev)
  926. {
  927. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  928. struct scsi_device *sd = pdv->pdv_sd;
  929. return (sd) ? sd->type : TYPE_NO_LUN;
  930. }
  931. static sector_t pscsi_get_blocks(struct se_device *dev)
  932. {
  933. struct pscsi_dev_virt *pdv = PSCSI_DEV(dev);
  934. if (pdv->pdv_bd && pdv->pdv_bd->bd_part)
  935. return pdv->pdv_bd->bd_part->nr_sects;
  936. dump_stack();
  937. return 0;
  938. }
  939. static void pscsi_req_done(struct request *req, int uptodate)
  940. {
  941. struct se_cmd *cmd = req->end_io_data;
  942. struct pscsi_plugin_task *pt = cmd->priv;
  943. pt->pscsi_result = req->errors;
  944. pt->pscsi_resid = req->resid_len;
  945. cmd->scsi_status = status_byte(pt->pscsi_result) << 1;
  946. if (cmd->scsi_status) {
  947. pr_debug("PSCSI Status Byte exception at cmd: %p CDB:"
  948. " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
  949. pt->pscsi_result);
  950. }
  951. switch (host_byte(pt->pscsi_result)) {
  952. case DID_OK:
  953. target_complete_cmd(cmd, cmd->scsi_status);
  954. break;
  955. default:
  956. pr_debug("PSCSI Host Byte exception at cmd: %p CDB:"
  957. " 0x%02x Result: 0x%08x\n", cmd, pt->pscsi_cdb[0],
  958. pt->pscsi_result);
  959. target_complete_cmd(cmd, SAM_STAT_CHECK_CONDITION);
  960. break;
  961. }
  962. __blk_put_request(req->q, req);
  963. kfree(pt);
  964. }
  965. DEF_TB_DEV_ATTRIB_RO(pscsi, hw_pi_prot_type);
  966. TB_DEV_ATTR_RO(pscsi, hw_pi_prot_type);
  967. DEF_TB_DEV_ATTRIB_RO(pscsi, hw_block_size);
  968. TB_DEV_ATTR_RO(pscsi, hw_block_size);
  969. DEF_TB_DEV_ATTRIB_RO(pscsi, hw_max_sectors);
  970. TB_DEV_ATTR_RO(pscsi, hw_max_sectors);
  971. DEF_TB_DEV_ATTRIB_RO(pscsi, hw_queue_depth);
  972. TB_DEV_ATTR_RO(pscsi, hw_queue_depth);
  973. static struct configfs_attribute *pscsi_backend_dev_attrs[] = {
  974. &pscsi_dev_attrib_hw_pi_prot_type.attr,
  975. &pscsi_dev_attrib_hw_block_size.attr,
  976. &pscsi_dev_attrib_hw_max_sectors.attr,
  977. &pscsi_dev_attrib_hw_queue_depth.attr,
  978. NULL,
  979. };
  980. static struct se_subsystem_api pscsi_template = {
  981. .name = "pscsi",
  982. .owner = THIS_MODULE,
  983. .transport_type = TRANSPORT_PLUGIN_PHBA_PDEV,
  984. .attach_hba = pscsi_attach_hba,
  985. .detach_hba = pscsi_detach_hba,
  986. .pmode_enable_hba = pscsi_pmode_enable_hba,
  987. .alloc_device = pscsi_alloc_device,
  988. .configure_device = pscsi_configure_device,
  989. .free_device = pscsi_free_device,
  990. .transport_complete = pscsi_transport_complete,
  991. .parse_cdb = pscsi_parse_cdb,
  992. .set_configfs_dev_params = pscsi_set_configfs_dev_params,
  993. .show_configfs_dev_params = pscsi_show_configfs_dev_params,
  994. .get_device_type = pscsi_get_device_type,
  995. .get_blocks = pscsi_get_blocks,
  996. };
  997. static int __init pscsi_module_init(void)
  998. {
  999. struct target_backend_cits *tbc = &pscsi_template.tb_cits;
  1000. target_core_setup_sub_cits(&pscsi_template);
  1001. tbc->tb_dev_attrib_cit.ct_attrs = pscsi_backend_dev_attrs;
  1002. return transport_subsystem_register(&pscsi_template);
  1003. }
  1004. static void __exit pscsi_module_exit(void)
  1005. {
  1006. transport_subsystem_release(&pscsi_template);
  1007. }
  1008. MODULE_DESCRIPTION("TCM PSCSI subsystem plugin");
  1009. MODULE_AUTHOR("nab@Linux-iSCSI.org");
  1010. MODULE_LICENSE("GPL");
  1011. module_init(pscsi_module_init);
  1012. module_exit(pscsi_module_exit);