blob: 88fb3d1b0ad596b841cfc68b415ac300b346438f [file] [log] [blame]
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001/*******************************************************************************
2 *
3 * This file contains the Linux/SCSI LLD virtual SCSI initiator driver
4 * for emulated SAS initiator ports
5 *
6 * © Copyright 2011 RisingTide Systems LLC.
7 *
8 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
9 *
10 * Author: Nicholas A. Bellinger <nab@risingtidesystems.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 ****************************************************************************/
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/types.h>
28#include <linux/configfs.h>
29#include <scsi/scsi.h>
30#include <scsi/scsi_tcq.h>
31#include <scsi/scsi_host.h>
32#include <scsi/scsi_device.h>
33#include <scsi/scsi_cmnd.h>
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070034
35#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050036#include <target/target_core_fabric.h>
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070037#include <target/target_core_fabric_configfs.h>
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070038#include <target/target_core_configfs.h>
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070039
40#include "tcm_loop.h"
41
42#define to_tcm_loop_hba(hba) container_of(hba, struct tcm_loop_hba, dev)
43
44/* Local pointer to allocated TCM configfs fabric module */
45static struct target_fabric_configfs *tcm_loop_fabric_configfs;
46
Christoph Hellwigafe2cb72012-02-02 17:04:41 -050047static struct workqueue_struct *tcm_loop_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070048static struct kmem_cache *tcm_loop_cmd_cache;
49
50static int tcm_loop_hba_no_cnt;
51
Christoph Hellwig167864542012-02-02 17:04:42 -050052static int tcm_loop_queue_status(struct se_cmd *se_cmd);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070053
54/*
55 * Called from struct target_core_fabric_ops->check_stop_free()
56 */
Nicholas Bellinger88dd9e22011-11-02 03:33:16 -070057static int tcm_loop_check_stop_free(struct se_cmd *se_cmd)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070058{
59 /*
60 * Do not release struct se_cmd's containing a valid TMR
61 * pointer. These will be released directly in tcm_loop_device_reset()
62 * with transport_generic_free_cmd().
63 */
Andy Groverc8e31f22012-01-19 13:39:17 -080064 if (se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Nicholas Bellinger88dd9e22011-11-02 03:33:16 -070065 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070066 /*
67 * Release the struct se_cmd, which will make a callback to release
68 * struct tcm_loop_cmd * in tcm_loop_deallocate_core_cmd()
69 */
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +020070 transport_generic_free_cmd(se_cmd, 0);
Nicholas Bellinger88dd9e22011-11-02 03:33:16 -070071 return 1;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070072}
73
Christoph Hellwig35462972011-05-31 23:56:57 -040074static void tcm_loop_release_cmd(struct se_cmd *se_cmd)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070075{
76 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
77 struct tcm_loop_cmd, tl_se_cmd);
78
79 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
80}
81
82static int tcm_loop_proc_info(struct Scsi_Host *host, char *buffer,
83 char **start, off_t offset,
84 int length, int inout)
85{
86 return sprintf(buffer, "tcm_loop_proc_info()\n");
87}
88
89static int tcm_loop_driver_probe(struct device *);
90static int tcm_loop_driver_remove(struct device *);
91
92static int pseudo_lld_bus_match(struct device *dev,
93 struct device_driver *dev_driver)
94{
95 return 1;
96}
97
98static struct bus_type tcm_loop_lld_bus = {
99 .name = "tcm_loop_bus",
100 .match = pseudo_lld_bus_match,
101 .probe = tcm_loop_driver_probe,
102 .remove = tcm_loop_driver_remove,
103};
104
105static struct device_driver tcm_loop_driverfs = {
106 .name = "tcm_loop",
107 .bus = &tcm_loop_lld_bus,
108};
109/*
110 * Used with root_device_register() in tcm_loop_alloc_core_bus() below
111 */
112struct device *tcm_loop_primary;
113
114/*
115 * Copied from drivers/scsi/libfc/fc_fcp.c:fc_change_queue_depth() and
116 * drivers/scsi/libiscsi.c:iscsi_change_queue_depth()
117 */
118static int tcm_loop_change_queue_depth(
119 struct scsi_device *sdev,
120 int depth,
121 int reason)
122{
123 switch (reason) {
124 case SCSI_QDEPTH_DEFAULT:
125 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
126 break;
127 case SCSI_QDEPTH_QFULL:
128 scsi_track_queue_full(sdev, depth);
129 break;
130 case SCSI_QDEPTH_RAMP_UP:
131 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
132 break;
133 default:
134 return -EOPNOTSUPP;
135 }
136 return sdev->queue_depth;
137}
138
139/*
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500140 * Locate the SAM Task Attr from struct scsi_cmnd *
141 */
142static int tcm_loop_sam_attr(struct scsi_cmnd *sc)
143{
144 if (sc->device->tagged_supported) {
145 switch (sc->tag) {
146 case HEAD_OF_QUEUE_TAG:
147 return MSG_HEAD_TAG;
148 case ORDERED_QUEUE_TAG:
149 return MSG_ORDERED_TAG;
150 default:
151 break;
152 }
153 }
154
155 return MSG_SIMPLE_TAG;
156}
157
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500158static void tcm_loop_submission_work(struct work_struct *work)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700159{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500160 struct tcm_loop_cmd *tl_cmd =
161 container_of(work, struct tcm_loop_cmd, work);
162 struct se_cmd *se_cmd = &tl_cmd->tl_se_cmd;
163 struct scsi_cmnd *sc = tl_cmd->sc;
164 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700165 struct tcm_loop_hba *tl_hba;
166 struct tcm_loop_tpg *tl_tpg;
Christoph Hellwig167864542012-02-02 17:04:42 -0500167 struct scatterlist *sgl_bidi = NULL;
168 u32 sgl_bidi_count = 0;
169 int ret;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500170
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700171 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
172 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500173
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700174 /*
175 * Ensure that this tl_tpg reference from the incoming sc->device->id
176 * has already been configured via tcm_loop_make_naa_tpg().
177 */
178 if (!tl_tpg->tl_hba) {
179 set_host_byte(sc, DID_NO_CONNECT);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500180 goto out_done;
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700181 }
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500182
183 tl_nexus = tl_hba->tl_nexus;
184 if (!tl_nexus) {
185 scmd_printk(KERN_ERR, sc, "TCM_Loop I_T Nexus"
186 " does not exist\n");
187 set_host_byte(sc, DID_ERROR);
188 goto out_done;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700189 }
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500190
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500191 transport_init_se_cmd(se_cmd, tl_tpg->tl_se_tpg.se_tpg_tfo,
192 tl_nexus->se_sess,
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500193 scsi_bufflen(sc), sc->sc_data_direction,
194 tcm_loop_sam_attr(sc), &tl_cmd->tl_sense_buf[0]);
195
Christoph Hellwig167864542012-02-02 17:04:42 -0500196 if (scsi_bidi_cmnd(sc)) {
197 struct scsi_data_buffer *sdb = scsi_in(sc);
198
199 sgl_bidi = sdb->table.sgl;
200 sgl_bidi_count = sdb->table.nents;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500201 se_cmd->se_cmd_flags |= SCF_BIDI;
202
Christoph Hellwig167864542012-02-02 17:04:42 -0500203 }
204
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500205 if (transport_lookup_cmd_lun(se_cmd, tl_cmd->sc->device->lun) < 0) {
206 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
207 set_host_byte(sc, DID_NO_CONNECT);
208 goto out_done;
209 }
210
Christoph Hellwig167864542012-02-02 17:04:42 -0500211 /*
212 * Because some userspace code via scsi-generic do not memset their
213 * associated read buffers, go ahead and do that here for type
214 * SCF_SCSI_CONTROL_SG_IO_CDB. Also note that this is currently
215 * guaranteed to be a single SGL for SCF_SCSI_CONTROL_SG_IO_CDB
216 * by target core in transport_generic_allocate_tasks() ->
217 * transport_generic_cmd_sequencer().
218 */
219 if (se_cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB &&
220 se_cmd->data_direction == DMA_FROM_DEVICE) {
221 struct scatterlist *sg = scsi_sglist(sc);
222 unsigned char *buf = kmap(sg_page(sg)) + sg->offset;
223
224 if (buf != NULL) {
225 memset(buf, 0, sg->length);
226 kunmap(sg_page(sg));
227 }
228 }
229
230 ret = transport_generic_allocate_tasks(se_cmd, sc->cmnd);
231 if (ret == -ENOMEM) {
232 transport_send_check_condition_and_sense(se_cmd,
233 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE, 0);
234 transport_generic_free_cmd(se_cmd, 0);
235 return;
236 }
237 if (ret == -EINVAL) {
238 if (se_cmd->se_cmd_flags & SCF_SCSI_RESERVATION_CONFLICT)
239 tcm_loop_queue_status(se_cmd);
240 else
241 transport_send_check_condition_and_sense(se_cmd,
242 se_cmd->scsi_sense_reason, 0);
243 transport_generic_free_cmd(se_cmd, 0);
244 return;
245 }
246
247 ret = transport_generic_map_mem_to_cmd(se_cmd, scsi_sglist(sc),
248 scsi_sg_count(sc), sgl_bidi, sgl_bidi_count);
249 if (ret) {
250 transport_send_check_condition_and_sense(se_cmd,
251 se_cmd->scsi_sense_reason, 0);
252 transport_generic_free_cmd(se_cmd, 0);
253 return;
254 }
255 transport_handle_cdb_direct(se_cmd);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500256 return;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500257
258out_done:
259 sc->scsi_done(sc);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500260 return;
261}
262
263/*
264 * ->queuecommand can be and usually is called from interrupt context, so
265 * defer the actual submission to a workqueue.
266 */
267static int tcm_loop_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *sc)
268{
269 struct tcm_loop_cmd *tl_cmd;
270
271 pr_debug("tcm_loop_queuecommand() %d:%d:%d:%d got CDB: 0x%02x"
272 " scsi_buf_len: %u\n", sc->device->host->host_no,
273 sc->device->id, sc->device->channel, sc->device->lun,
274 sc->cmnd[0], scsi_bufflen(sc));
275
276 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_ATOMIC);
277 if (!tl_cmd) {
278 pr_err("Unable to allocate struct tcm_loop_cmd\n");
279 set_host_byte(sc, DID_ERROR);
280 sc->scsi_done(sc);
281 return 0;
282 }
283
284 tl_cmd->sc = sc;
285 INIT_WORK(&tl_cmd->work, tcm_loop_submission_work);
286 queue_work(tcm_loop_workqueue, &tl_cmd->work);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500287 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700288}
289
290/*
291 * Called from SCSI EH process context to issue a LUN_RESET TMR
292 * to struct scsi_device
293 */
294static int tcm_loop_device_reset(struct scsi_cmnd *sc)
295{
296 struct se_cmd *se_cmd = NULL;
297 struct se_portal_group *se_tpg;
298 struct se_session *se_sess;
299 struct tcm_loop_cmd *tl_cmd = NULL;
300 struct tcm_loop_hba *tl_hba;
301 struct tcm_loop_nexus *tl_nexus;
302 struct tcm_loop_tmr *tl_tmr = NULL;
303 struct tcm_loop_tpg *tl_tpg;
Andy Groverc8e31f22012-01-19 13:39:17 -0800304 int ret = FAILED, rc;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700305 /*
306 * Locate the tcm_loop_hba_t pointer
307 */
308 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
309 /*
310 * Locate the tl_nexus and se_sess pointers
311 */
312 tl_nexus = tl_hba->tl_nexus;
313 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700314 pr_err("Unable to perform device reset without"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700315 " active I_T Nexus\n");
316 return FAILED;
317 }
318 se_sess = tl_nexus->se_sess;
319 /*
320 * Locate the tl_tpg and se_tpg pointers from TargetID in sc->device->id
321 */
322 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
323 se_tpg = &tl_tpg->tl_se_tpg;
324
325 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_KERNEL);
326 if (!tl_cmd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700327 pr_err("Unable to allocate memory for tl_cmd\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700328 return FAILED;
329 }
330
331 tl_tmr = kzalloc(sizeof(struct tcm_loop_tmr), GFP_KERNEL);
332 if (!tl_tmr) {
Andy Grover6708bb22011-06-08 10:36:43 -0700333 pr_err("Unable to allocate memory for tl_tmr\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700334 goto release;
335 }
336 init_waitqueue_head(&tl_tmr->tl_tmr_wait);
337
338 se_cmd = &tl_cmd->tl_se_cmd;
339 /*
340 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
341 */
342 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess, 0,
Nicholas Bellinger61db1802011-05-19 20:19:14 -0700343 DMA_NONE, MSG_SIMPLE_TAG,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700344 &tl_cmd->tl_sense_buf[0]);
Andy Groverc8e31f22012-01-19 13:39:17 -0800345
346 rc = core_tmr_alloc_req(se_cmd, tl_tmr, TMR_LUN_RESET, GFP_KERNEL);
347 if (rc < 0)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700348 goto release;
349 /*
350 * Locate the underlying TCM struct se_lun from sc->device->lun
351 */
Andy Grover5951146d2011-07-19 10:26:37 +0000352 if (transport_lookup_tmr_lun(se_cmd, sc->device->lun) < 0)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700353 goto release;
354 /*
355 * Queue the TMR to TCM Core and sleep waiting for tcm_loop_queue_tm_rsp()
356 * to wake us up.
357 */
358 transport_generic_handle_tmr(se_cmd);
359 wait_event(tl_tmr->tl_tmr_wait, atomic_read(&tl_tmr->tmr_complete));
360 /*
361 * The TMR LUN_RESET has completed, check the response status and
362 * then release allocations.
363 */
364 ret = (se_cmd->se_tmr_req->response == TMR_FUNCTION_COMPLETE) ?
365 SUCCESS : FAILED;
366release:
367 if (se_cmd)
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +0200368 transport_generic_free_cmd(se_cmd, 1);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700369 else
370 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
371 kfree(tl_tmr);
372 return ret;
373}
374
375static int tcm_loop_slave_alloc(struct scsi_device *sd)
376{
377 set_bit(QUEUE_FLAG_BIDI, &sd->request_queue->queue_flags);
378 return 0;
379}
380
381static int tcm_loop_slave_configure(struct scsi_device *sd)
382{
383 return 0;
384}
385
386static struct scsi_host_template tcm_loop_driver_template = {
387 .proc_info = tcm_loop_proc_info,
388 .proc_name = "tcm_loopback",
389 .name = "TCM_Loopback",
390 .queuecommand = tcm_loop_queuecommand,
391 .change_queue_depth = tcm_loop_change_queue_depth,
392 .eh_device_reset_handler = tcm_loop_device_reset,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500393 .can_queue = 1024,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700394 .this_id = -1,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500395 .sg_tablesize = 256,
396 .cmd_per_lun = 1024,
397 .max_sectors = 0xFFFF,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700398 .use_clustering = DISABLE_CLUSTERING,
399 .slave_alloc = tcm_loop_slave_alloc,
400 .slave_configure = tcm_loop_slave_configure,
401 .module = THIS_MODULE,
402};
403
404static int tcm_loop_driver_probe(struct device *dev)
405{
406 struct tcm_loop_hba *tl_hba;
407 struct Scsi_Host *sh;
408 int error;
409
410 tl_hba = to_tcm_loop_hba(dev);
411
412 sh = scsi_host_alloc(&tcm_loop_driver_template,
413 sizeof(struct tcm_loop_hba));
414 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700415 pr_err("Unable to allocate struct scsi_host\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700416 return -ENODEV;
417 }
418 tl_hba->sh = sh;
419
420 /*
421 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
422 */
423 *((struct tcm_loop_hba **)sh->hostdata) = tl_hba;
424 /*
425 * Setup single ID, Channel and LUN for now..
426 */
427 sh->max_id = 2;
428 sh->max_lun = 0;
429 sh->max_channel = 0;
430 sh->max_cmd_len = TL_SCSI_MAX_CMD_LEN;
431
432 error = scsi_add_host(sh, &tl_hba->dev);
433 if (error) {
Andy Grover6708bb22011-06-08 10:36:43 -0700434 pr_err("%s: scsi_add_host failed\n", __func__);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700435 scsi_host_put(sh);
436 return -ENODEV;
437 }
438 return 0;
439}
440
441static int tcm_loop_driver_remove(struct device *dev)
442{
443 struct tcm_loop_hba *tl_hba;
444 struct Scsi_Host *sh;
445
446 tl_hba = to_tcm_loop_hba(dev);
447 sh = tl_hba->sh;
448
449 scsi_remove_host(sh);
450 scsi_host_put(sh);
451 return 0;
452}
453
454static void tcm_loop_release_adapter(struct device *dev)
455{
456 struct tcm_loop_hba *tl_hba = to_tcm_loop_hba(dev);
457
458 kfree(tl_hba);
459}
460
461/*
462 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
463 */
464static int tcm_loop_setup_hba_bus(struct tcm_loop_hba *tl_hba, int tcm_loop_host_id)
465{
466 int ret;
467
468 tl_hba->dev.bus = &tcm_loop_lld_bus;
469 tl_hba->dev.parent = tcm_loop_primary;
470 tl_hba->dev.release = &tcm_loop_release_adapter;
471 dev_set_name(&tl_hba->dev, "tcm_loop_adapter_%d", tcm_loop_host_id);
472
473 ret = device_register(&tl_hba->dev);
474 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700475 pr_err("device_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700476 " tl_hba->dev: %d\n", ret);
477 return -ENODEV;
478 }
479
480 return 0;
481}
482
483/*
484 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
485 * tcm_loop SCSI bus.
486 */
487static int tcm_loop_alloc_core_bus(void)
488{
489 int ret;
490
491 tcm_loop_primary = root_device_register("tcm_loop_0");
492 if (IS_ERR(tcm_loop_primary)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700493 pr_err("Unable to allocate tcm_loop_primary\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700494 return PTR_ERR(tcm_loop_primary);
495 }
496
497 ret = bus_register(&tcm_loop_lld_bus);
498 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700499 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700500 goto dev_unreg;
501 }
502
503 ret = driver_register(&tcm_loop_driverfs);
504 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700505 pr_err("driver_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700506 "tcm_loop_driverfs\n");
507 goto bus_unreg;
508 }
509
Andy Grover6708bb22011-06-08 10:36:43 -0700510 pr_debug("Initialized TCM Loop Core Bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700511 return ret;
512
513bus_unreg:
514 bus_unregister(&tcm_loop_lld_bus);
515dev_unreg:
516 root_device_unregister(tcm_loop_primary);
517 return ret;
518}
519
520static void tcm_loop_release_core_bus(void)
521{
522 driver_unregister(&tcm_loop_driverfs);
523 bus_unregister(&tcm_loop_lld_bus);
524 root_device_unregister(tcm_loop_primary);
525
Andy Grover6708bb22011-06-08 10:36:43 -0700526 pr_debug("Releasing TCM Loop Core BUS\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700527}
528
529static char *tcm_loop_get_fabric_name(void)
530{
531 return "loopback";
532}
533
534static u8 tcm_loop_get_fabric_proto_ident(struct se_portal_group *se_tpg)
535{
Jörn Engel8359cf42011-11-24 02:05:51 +0100536 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700537 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
538 /*
539 * tl_proto_id is set at tcm_loop_configfs.c:tcm_loop_make_scsi_hba()
540 * time based on the protocol dependent prefix of the passed configfs group.
541 *
542 * Based upon tl_proto_id, TCM_Loop emulates the requested fabric
543 * ProtocolID using target_core_fabric_lib.c symbols.
544 */
545 switch (tl_hba->tl_proto_id) {
546 case SCSI_PROTOCOL_SAS:
547 return sas_get_fabric_proto_ident(se_tpg);
548 case SCSI_PROTOCOL_FCP:
549 return fc_get_fabric_proto_ident(se_tpg);
550 case SCSI_PROTOCOL_ISCSI:
551 return iscsi_get_fabric_proto_ident(se_tpg);
552 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700553 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700554 " SAS emulation\n", tl_hba->tl_proto_id);
555 break;
556 }
557
558 return sas_get_fabric_proto_ident(se_tpg);
559}
560
561static char *tcm_loop_get_endpoint_wwn(struct se_portal_group *se_tpg)
562{
Jörn Engel8359cf42011-11-24 02:05:51 +0100563 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700564 /*
565 * Return the passed NAA identifier for the SAS Target Port
566 */
567 return &tl_tpg->tl_hba->tl_wwn_address[0];
568}
569
570static u16 tcm_loop_get_tag(struct se_portal_group *se_tpg)
571{
Jörn Engel8359cf42011-11-24 02:05:51 +0100572 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700573 /*
574 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
575 * to represent the SCSI Target Port.
576 */
577 return tl_tpg->tl_tpgt;
578}
579
580static u32 tcm_loop_get_default_depth(struct se_portal_group *se_tpg)
581{
582 return 1;
583}
584
585static u32 tcm_loop_get_pr_transport_id(
586 struct se_portal_group *se_tpg,
587 struct se_node_acl *se_nacl,
588 struct t10_pr_registration *pr_reg,
589 int *format_code,
590 unsigned char *buf)
591{
Jörn Engel8359cf42011-11-24 02:05:51 +0100592 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700593 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
594
595 switch (tl_hba->tl_proto_id) {
596 case SCSI_PROTOCOL_SAS:
597 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
598 format_code, buf);
599 case SCSI_PROTOCOL_FCP:
600 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
601 format_code, buf);
602 case SCSI_PROTOCOL_ISCSI:
603 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
604 format_code, buf);
605 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700606 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700607 " SAS emulation\n", tl_hba->tl_proto_id);
608 break;
609 }
610
611 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
612 format_code, buf);
613}
614
615static u32 tcm_loop_get_pr_transport_id_len(
616 struct se_portal_group *se_tpg,
617 struct se_node_acl *se_nacl,
618 struct t10_pr_registration *pr_reg,
619 int *format_code)
620{
Jörn Engel8359cf42011-11-24 02:05:51 +0100621 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700622 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
623
624 switch (tl_hba->tl_proto_id) {
625 case SCSI_PROTOCOL_SAS:
626 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
627 format_code);
628 case SCSI_PROTOCOL_FCP:
629 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
630 format_code);
631 case SCSI_PROTOCOL_ISCSI:
632 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
633 format_code);
634 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700635 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700636 " SAS emulation\n", tl_hba->tl_proto_id);
637 break;
638 }
639
640 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
641 format_code);
642}
643
644/*
645 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
646 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
647 */
648static char *tcm_loop_parse_pr_out_transport_id(
649 struct se_portal_group *se_tpg,
650 const char *buf,
651 u32 *out_tid_len,
652 char **port_nexus_ptr)
653{
Jörn Engel8359cf42011-11-24 02:05:51 +0100654 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700655 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
656
657 switch (tl_hba->tl_proto_id) {
658 case SCSI_PROTOCOL_SAS:
659 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
660 port_nexus_ptr);
661 case SCSI_PROTOCOL_FCP:
662 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
663 port_nexus_ptr);
664 case SCSI_PROTOCOL_ISCSI:
665 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
666 port_nexus_ptr);
667 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700668 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700669 " SAS emulation\n", tl_hba->tl_proto_id);
670 break;
671 }
672
673 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
674 port_nexus_ptr);
675}
676
677/*
678 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
679 * based upon the incoming fabric dependent SCSI Initiator Port
680 */
681static int tcm_loop_check_demo_mode(struct se_portal_group *se_tpg)
682{
683 return 1;
684}
685
686static int tcm_loop_check_demo_mode_cache(struct se_portal_group *se_tpg)
687{
688 return 0;
689}
690
691/*
692 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
693 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
694 */
695static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group *se_tpg)
696{
697 return 0;
698}
699
700/*
701 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
702 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
703 * It has been added here as a nop for target_fabric_tf_ops_check()
704 */
705static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group *se_tpg)
706{
707 return 0;
708}
709
710static struct se_node_acl *tcm_loop_tpg_alloc_fabric_acl(
711 struct se_portal_group *se_tpg)
712{
713 struct tcm_loop_nacl *tl_nacl;
714
715 tl_nacl = kzalloc(sizeof(struct tcm_loop_nacl), GFP_KERNEL);
716 if (!tl_nacl) {
Andy Grover6708bb22011-06-08 10:36:43 -0700717 pr_err("Unable to allocate struct tcm_loop_nacl\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700718 return NULL;
719 }
720
721 return &tl_nacl->se_node_acl;
722}
723
724static void tcm_loop_tpg_release_fabric_acl(
725 struct se_portal_group *se_tpg,
726 struct se_node_acl *se_nacl)
727{
728 struct tcm_loop_nacl *tl_nacl = container_of(se_nacl,
729 struct tcm_loop_nacl, se_node_acl);
730
731 kfree(tl_nacl);
732}
733
734static u32 tcm_loop_get_inst_index(struct se_portal_group *se_tpg)
735{
736 return 1;
737}
738
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700739static int tcm_loop_is_state_remove(struct se_cmd *se_cmd)
740{
741 /*
742 * Assume struct scsi_cmnd is not in remove state..
743 */
744 return 0;
745}
746
747static int tcm_loop_sess_logged_in(struct se_session *se_sess)
748{
749 /*
750 * Assume that TL Nexus is always active
751 */
752 return 1;
753}
754
755static u32 tcm_loop_sess_get_index(struct se_session *se_sess)
756{
757 return 1;
758}
759
760static void tcm_loop_set_default_node_attributes(struct se_node_acl *se_acl)
761{
762 return;
763}
764
765static u32 tcm_loop_get_task_tag(struct se_cmd *se_cmd)
766{
767 return 1;
768}
769
770static int tcm_loop_get_cmd_state(struct se_cmd *se_cmd)
771{
772 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
773 struct tcm_loop_cmd, tl_se_cmd);
774
775 return tl_cmd->sc_cmd_state;
776}
777
778static int tcm_loop_shutdown_session(struct se_session *se_sess)
779{
780 return 0;
781}
782
783static void tcm_loop_close_session(struct se_session *se_sess)
784{
785 return;
786};
787
788static void tcm_loop_stop_session(
789 struct se_session *se_sess,
790 int sess_sleep,
791 int conn_sleep)
792{
793 return;
794}
795
796static void tcm_loop_fall_back_to_erl0(struct se_session *se_sess)
797{
798 return;
799}
800
801static int tcm_loop_write_pending(struct se_cmd *se_cmd)
802{
803 /*
804 * Since Linux/SCSI has already sent down a struct scsi_cmnd
805 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
806 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
807 * format with transport_generic_map_mem_to_cmd().
808 *
809 * We now tell TCM to add this WRITE CDB directly into the TCM storage
810 * object execution queue.
811 */
812 transport_generic_process_write(se_cmd);
813 return 0;
814}
815
816static int tcm_loop_write_pending_status(struct se_cmd *se_cmd)
817{
818 return 0;
819}
820
821static int tcm_loop_queue_data_in(struct se_cmd *se_cmd)
822{
823 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
824 struct tcm_loop_cmd, tl_se_cmd);
825 struct scsi_cmnd *sc = tl_cmd->sc;
826
Andy Grover6708bb22011-06-08 10:36:43 -0700827 pr_debug("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700828 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
829
830 sc->result = SAM_STAT_GOOD;
831 set_host_byte(sc, DID_OK);
832 sc->scsi_done(sc);
833 return 0;
834}
835
836static int tcm_loop_queue_status(struct se_cmd *se_cmd)
837{
838 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
839 struct tcm_loop_cmd, tl_se_cmd);
840 struct scsi_cmnd *sc = tl_cmd->sc;
841
Andy Grover6708bb22011-06-08 10:36:43 -0700842 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700843 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
844
845 if (se_cmd->sense_buffer &&
846 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
847 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
848
Andy Grover5951146d2011-07-19 10:26:37 +0000849 memcpy(sc->sense_buffer, se_cmd->sense_buffer,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700850 SCSI_SENSE_BUFFERSIZE);
851 sc->result = SAM_STAT_CHECK_CONDITION;
852 set_driver_byte(sc, DRIVER_SENSE);
853 } else
854 sc->result = se_cmd->scsi_status;
855
856 set_host_byte(sc, DID_OK);
857 sc->scsi_done(sc);
858 return 0;
859}
860
861static int tcm_loop_queue_tm_rsp(struct se_cmd *se_cmd)
862{
863 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
864 struct tcm_loop_tmr *tl_tmr = se_tmr->fabric_tmr_ptr;
865 /*
866 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
867 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
868 */
869 atomic_set(&tl_tmr->tmr_complete, 1);
870 wake_up(&tl_tmr->tl_tmr_wait);
871 return 0;
872}
873
874static u16 tcm_loop_set_fabric_sense_len(struct se_cmd *se_cmd, u32 sense_length)
875{
876 return 0;
877}
878
879static u16 tcm_loop_get_fabric_sense_len(void)
880{
881 return 0;
882}
883
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700884static char *tcm_loop_dump_proto_id(struct tcm_loop_hba *tl_hba)
885{
886 switch (tl_hba->tl_proto_id) {
887 case SCSI_PROTOCOL_SAS:
888 return "SAS";
889 case SCSI_PROTOCOL_FCP:
890 return "FCP";
891 case SCSI_PROTOCOL_ISCSI:
892 return "iSCSI";
893 default:
894 break;
895 }
896
897 return "Unknown";
898}
899
900/* Start items for tcm_loop_port_cit */
901
902static int tcm_loop_port_link(
903 struct se_portal_group *se_tpg,
904 struct se_lun *lun)
905{
906 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
907 struct tcm_loop_tpg, tl_se_tpg);
908 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
909
910 atomic_inc(&tl_tpg->tl_tpg_port_count);
911 smp_mb__after_atomic_inc();
912 /*
913 * Add Linux/SCSI struct scsi_device by HCTL
914 */
915 scsi_add_device(tl_hba->sh, 0, tl_tpg->tl_tpgt, lun->unpacked_lun);
916
Andy Grover6708bb22011-06-08 10:36:43 -0700917 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700918 return 0;
919}
920
921static void tcm_loop_port_unlink(
922 struct se_portal_group *se_tpg,
923 struct se_lun *se_lun)
924{
925 struct scsi_device *sd;
926 struct tcm_loop_hba *tl_hba;
927 struct tcm_loop_tpg *tl_tpg;
928
929 tl_tpg = container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
930 tl_hba = tl_tpg->tl_hba;
931
932 sd = scsi_device_lookup(tl_hba->sh, 0, tl_tpg->tl_tpgt,
933 se_lun->unpacked_lun);
934 if (!sd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700935 pr_err("Unable to locate struct scsi_device for %d:%d:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700936 "%d\n", 0, tl_tpg->tl_tpgt, se_lun->unpacked_lun);
937 return;
938 }
939 /*
940 * Remove Linux/SCSI struct scsi_device by HCTL
941 */
942 scsi_remove_device(sd);
943 scsi_device_put(sd);
944
945 atomic_dec(&tl_tpg->tl_tpg_port_count);
946 smp_mb__after_atomic_dec();
947
Andy Grover6708bb22011-06-08 10:36:43 -0700948 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700949}
950
951/* End items for tcm_loop_port_cit */
952
953/* Start items for tcm_loop_nexus_cit */
954
955static int tcm_loop_make_nexus(
956 struct tcm_loop_tpg *tl_tpg,
957 const char *name)
958{
959 struct se_portal_group *se_tpg;
960 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
961 struct tcm_loop_nexus *tl_nexus;
Dan Carpenter552523d2011-06-15 09:41:33 -0700962 int ret = -ENOMEM;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700963
964 if (tl_tpg->tl_hba->tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700965 pr_debug("tl_tpg->tl_hba->tl_nexus already exists\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700966 return -EEXIST;
967 }
968 se_tpg = &tl_tpg->tl_se_tpg;
969
970 tl_nexus = kzalloc(sizeof(struct tcm_loop_nexus), GFP_KERNEL);
971 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700972 pr_err("Unable to allocate struct tcm_loop_nexus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700973 return -ENOMEM;
974 }
975 /*
976 * Initialize the struct se_session pointer
977 */
978 tl_nexus->se_sess = transport_init_session();
Dan Carpenter552523d2011-06-15 09:41:33 -0700979 if (IS_ERR(tl_nexus->se_sess)) {
980 ret = PTR_ERR(tl_nexus->se_sess);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700981 goto out;
Dan Carpenter552523d2011-06-15 09:41:33 -0700982 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700983 /*
984 * Since we are running in 'demo mode' this call with generate a
985 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
986 * Initiator port name of the passed configfs group 'name'.
987 */
988 tl_nexus->se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
989 se_tpg, (unsigned char *)name);
990 if (!tl_nexus->se_sess->se_node_acl) {
991 transport_free_session(tl_nexus->se_sess);
992 goto out;
993 }
994 /*
995 * Now, register the SAS I_T Nexus as active with the call to
996 * transport_register_session()
997 */
998 __transport_register_session(se_tpg, tl_nexus->se_sess->se_node_acl,
Andy Grover5951146d2011-07-19 10:26:37 +0000999 tl_nexus->se_sess, tl_nexus);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001000 tl_tpg->tl_hba->tl_nexus = tl_nexus;
Andy Grover6708bb22011-06-08 10:36:43 -07001001 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001002 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1003 name);
1004 return 0;
1005
1006out:
1007 kfree(tl_nexus);
Dan Carpenter552523d2011-06-15 09:41:33 -07001008 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001009}
1010
1011static int tcm_loop_drop_nexus(
1012 struct tcm_loop_tpg *tpg)
1013{
1014 struct se_session *se_sess;
1015 struct tcm_loop_nexus *tl_nexus;
1016 struct tcm_loop_hba *tl_hba = tpg->tl_hba;
1017
1018 tl_nexus = tpg->tl_hba->tl_nexus;
1019 if (!tl_nexus)
1020 return -ENODEV;
1021
1022 se_sess = tl_nexus->se_sess;
1023 if (!se_sess)
1024 return -ENODEV;
1025
1026 if (atomic_read(&tpg->tl_tpg_port_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001027 pr_err("Unable to remove TCM_Loop I_T Nexus with"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001028 " active TPG port count: %d\n",
1029 atomic_read(&tpg->tl_tpg_port_count));
1030 return -EPERM;
1031 }
1032
Andy Grover6708bb22011-06-08 10:36:43 -07001033 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001034 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1035 tl_nexus->se_sess->se_node_acl->initiatorname);
1036 /*
1037 * Release the SCSI I_T Nexus to the emulated SAS Target Port
1038 */
1039 transport_deregister_session(tl_nexus->se_sess);
1040 tpg->tl_hba->tl_nexus = NULL;
1041 kfree(tl_nexus);
1042 return 0;
1043}
1044
1045/* End items for tcm_loop_nexus_cit */
1046
1047static ssize_t tcm_loop_tpg_show_nexus(
1048 struct se_portal_group *se_tpg,
1049 char *page)
1050{
1051 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1052 struct tcm_loop_tpg, tl_se_tpg);
1053 struct tcm_loop_nexus *tl_nexus;
1054 ssize_t ret;
1055
1056 tl_nexus = tl_tpg->tl_hba->tl_nexus;
1057 if (!tl_nexus)
1058 return -ENODEV;
1059
1060 ret = snprintf(page, PAGE_SIZE, "%s\n",
1061 tl_nexus->se_sess->se_node_acl->initiatorname);
1062
1063 return ret;
1064}
1065
1066static ssize_t tcm_loop_tpg_store_nexus(
1067 struct se_portal_group *se_tpg,
1068 const char *page,
1069 size_t count)
1070{
1071 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1072 struct tcm_loop_tpg, tl_se_tpg);
1073 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
1074 unsigned char i_port[TL_WWN_ADDR_LEN], *ptr, *port_ptr;
1075 int ret;
1076 /*
1077 * Shutdown the active I_T nexus if 'NULL' is passed..
1078 */
1079 if (!strncmp(page, "NULL", 4)) {
1080 ret = tcm_loop_drop_nexus(tl_tpg);
1081 return (!ret) ? count : ret;
1082 }
1083 /*
1084 * Otherwise make sure the passed virtual Initiator port WWN matches
1085 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1086 * tcm_loop_make_nexus()
1087 */
Dan Carpenter60d645a2011-06-15 10:03:05 -07001088 if (strlen(page) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001089 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001090 " max: %d\n", page, TL_WWN_ADDR_LEN);
1091 return -EINVAL;
1092 }
1093 snprintf(&i_port[0], TL_WWN_ADDR_LEN, "%s", page);
1094
1095 ptr = strstr(i_port, "naa.");
1096 if (ptr) {
1097 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_SAS) {
Andy Grover6708bb22011-06-08 10:36:43 -07001098 pr_err("Passed SAS Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001099 " match target port protoid: %s\n", i_port,
1100 tcm_loop_dump_proto_id(tl_hba));
1101 return -EINVAL;
1102 }
1103 port_ptr = &i_port[0];
1104 goto check_newline;
1105 }
1106 ptr = strstr(i_port, "fc.");
1107 if (ptr) {
1108 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_FCP) {
Andy Grover6708bb22011-06-08 10:36:43 -07001109 pr_err("Passed FCP Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001110 " match target port protoid: %s\n", i_port,
1111 tcm_loop_dump_proto_id(tl_hba));
1112 return -EINVAL;
1113 }
1114 port_ptr = &i_port[3]; /* Skip over "fc." */
1115 goto check_newline;
1116 }
1117 ptr = strstr(i_port, "iqn.");
1118 if (ptr) {
1119 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_ISCSI) {
Andy Grover6708bb22011-06-08 10:36:43 -07001120 pr_err("Passed iSCSI Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001121 " match target port protoid: %s\n", i_port,
1122 tcm_loop_dump_proto_id(tl_hba));
1123 return -EINVAL;
1124 }
1125 port_ptr = &i_port[0];
1126 goto check_newline;
1127 }
Andy Grover6708bb22011-06-08 10:36:43 -07001128 pr_err("Unable to locate prefix for emulated Initiator Port:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001129 " %s\n", i_port);
1130 return -EINVAL;
1131 /*
1132 * Clear any trailing newline for the NAA WWN
1133 */
1134check_newline:
1135 if (i_port[strlen(i_port)-1] == '\n')
1136 i_port[strlen(i_port)-1] = '\0';
1137
1138 ret = tcm_loop_make_nexus(tl_tpg, port_ptr);
1139 if (ret < 0)
1140 return ret;
1141
1142 return count;
1143}
1144
1145TF_TPG_BASE_ATTR(tcm_loop, nexus, S_IRUGO | S_IWUSR);
1146
1147static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
1148 &tcm_loop_tpg_nexus.attr,
1149 NULL,
1150};
1151
1152/* Start items for tcm_loop_naa_cit */
1153
1154struct se_portal_group *tcm_loop_make_naa_tpg(
1155 struct se_wwn *wwn,
1156 struct config_group *group,
1157 const char *name)
1158{
1159 struct tcm_loop_hba *tl_hba = container_of(wwn,
1160 struct tcm_loop_hba, tl_hba_wwn);
1161 struct tcm_loop_tpg *tl_tpg;
1162 char *tpgt_str, *end_ptr;
1163 int ret;
1164 unsigned short int tpgt;
1165
1166 tpgt_str = strstr(name, "tpgt_");
1167 if (!tpgt_str) {
Andy Grover6708bb22011-06-08 10:36:43 -07001168 pr_err("Unable to locate \"tpgt_#\" directory"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001169 " group\n");
1170 return ERR_PTR(-EINVAL);
1171 }
1172 tpgt_str += 5; /* Skip ahead of "tpgt_" */
1173 tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
1174
Dan Carpenter12f09cc2011-04-02 14:32:47 -07001175 if (tpgt >= TL_TPGS_PER_HBA) {
Andy Grover6708bb22011-06-08 10:36:43 -07001176 pr_err("Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001177 " %u\n", tpgt, TL_TPGS_PER_HBA);
1178 return ERR_PTR(-EINVAL);
1179 }
1180 tl_tpg = &tl_hba->tl_hba_tpgs[tpgt];
1181 tl_tpg->tl_hba = tl_hba;
1182 tl_tpg->tl_tpgt = tpgt;
1183 /*
1184 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1185 */
1186 ret = core_tpg_register(&tcm_loop_fabric_configfs->tf_ops,
Andy Grover5951146d2011-07-19 10:26:37 +00001187 wwn, &tl_tpg->tl_se_tpg, tl_tpg,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001188 TRANSPORT_TPG_TYPE_NORMAL);
1189 if (ret < 0)
1190 return ERR_PTR(-ENOMEM);
1191
Andy Grover6708bb22011-06-08 10:36:43 -07001192 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001193 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1194 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1195
1196 return &tl_tpg->tl_se_tpg;
1197}
1198
1199void tcm_loop_drop_naa_tpg(
1200 struct se_portal_group *se_tpg)
1201{
1202 struct se_wwn *wwn = se_tpg->se_tpg_wwn;
1203 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1204 struct tcm_loop_tpg, tl_se_tpg);
1205 struct tcm_loop_hba *tl_hba;
1206 unsigned short tpgt;
1207
1208 tl_hba = tl_tpg->tl_hba;
1209 tpgt = tl_tpg->tl_tpgt;
1210 /*
1211 * Release the I_T Nexus for the Virtual SAS link if present
1212 */
1213 tcm_loop_drop_nexus(tl_tpg);
1214 /*
1215 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1216 */
1217 core_tpg_deregister(se_tpg);
1218
Nicholas Bellinger0a020432011-10-10 19:44:05 -07001219 tl_tpg->tl_hba = NULL;
1220 tl_tpg->tl_tpgt = 0;
1221
Andy Grover6708bb22011-06-08 10:36:43 -07001222 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001223 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1224 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1225}
1226
1227/* End items for tcm_loop_naa_cit */
1228
1229/* Start items for tcm_loop_cit */
1230
1231struct se_wwn *tcm_loop_make_scsi_hba(
1232 struct target_fabric_configfs *tf,
1233 struct config_group *group,
1234 const char *name)
1235{
1236 struct tcm_loop_hba *tl_hba;
1237 struct Scsi_Host *sh;
1238 char *ptr;
1239 int ret, off = 0;
1240
1241 tl_hba = kzalloc(sizeof(struct tcm_loop_hba), GFP_KERNEL);
1242 if (!tl_hba) {
Andy Grover6708bb22011-06-08 10:36:43 -07001243 pr_err("Unable to allocate struct tcm_loop_hba\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001244 return ERR_PTR(-ENOMEM);
1245 }
1246 /*
1247 * Determine the emulated Protocol Identifier and Target Port Name
1248 * based on the incoming configfs directory name.
1249 */
1250 ptr = strstr(name, "naa.");
1251 if (ptr) {
1252 tl_hba->tl_proto_id = SCSI_PROTOCOL_SAS;
1253 goto check_len;
1254 }
1255 ptr = strstr(name, "fc.");
1256 if (ptr) {
1257 tl_hba->tl_proto_id = SCSI_PROTOCOL_FCP;
1258 off = 3; /* Skip over "fc." */
1259 goto check_len;
1260 }
1261 ptr = strstr(name, "iqn.");
Jesper Juhla57b5d32011-06-28 00:30:17 +02001262 if (!ptr) {
Andy Grover6708bb22011-06-08 10:36:43 -07001263 pr_err("Unable to locate prefix for emulated Target "
Jesper Juhla57b5d32011-06-28 00:30:17 +02001264 "Port: %s\n", name);
1265 ret = -EINVAL;
1266 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001267 }
Jesper Juhla57b5d32011-06-28 00:30:17 +02001268 tl_hba->tl_proto_id = SCSI_PROTOCOL_ISCSI;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001269
1270check_len:
Dan Carpenter60d645a2011-06-15 10:03:05 -07001271 if (strlen(name) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001272 pr_err("Emulated NAA %s Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001273 " max: %d\n", name, tcm_loop_dump_proto_id(tl_hba),
1274 TL_WWN_ADDR_LEN);
Jesper Juhla57b5d32011-06-28 00:30:17 +02001275 ret = -EINVAL;
1276 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001277 }
1278 snprintf(&tl_hba->tl_wwn_address[0], TL_WWN_ADDR_LEN, "%s", &name[off]);
1279
1280 /*
1281 * Call device_register(tl_hba->dev) to register the emulated
1282 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1283 * device_register() callbacks in tcm_loop_driver_probe()
1284 */
1285 ret = tcm_loop_setup_hba_bus(tl_hba, tcm_loop_hba_no_cnt);
1286 if (ret)
1287 goto out;
1288
1289 sh = tl_hba->sh;
1290 tcm_loop_hba_no_cnt++;
Andy Grover6708bb22011-06-08 10:36:43 -07001291 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001292 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1293 tcm_loop_dump_proto_id(tl_hba), name, sh->host_no);
1294
1295 return &tl_hba->tl_hba_wwn;
1296out:
1297 kfree(tl_hba);
1298 return ERR_PTR(ret);
1299}
1300
1301void tcm_loop_drop_scsi_hba(
1302 struct se_wwn *wwn)
1303{
1304 struct tcm_loop_hba *tl_hba = container_of(wwn,
1305 struct tcm_loop_hba, tl_hba_wwn);
Nicholas Bellinger6297b072011-11-12 09:29:51 -08001306
1307 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1308 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1309 tl_hba->tl_wwn_address, tl_hba->sh->host_no);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001310 /*
1311 * Call device_unregister() on the original tl_hba->dev.
1312 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1313 * release *tl_hba;
1314 */
1315 device_unregister(&tl_hba->dev);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001316}
1317
1318/* Start items for tcm_loop_cit */
1319static ssize_t tcm_loop_wwn_show_attr_version(
1320 struct target_fabric_configfs *tf,
1321 char *page)
1322{
1323 return sprintf(page, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION);
1324}
1325
1326TF_WWN_ATTR_RO(tcm_loop, version);
1327
1328static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
1329 &tcm_loop_wwn_version.attr,
1330 NULL,
1331};
1332
1333/* End items for tcm_loop_cit */
1334
1335static int tcm_loop_register_configfs(void)
1336{
1337 struct target_fabric_configfs *fabric;
1338 struct config_group *tf_cg;
1339 int ret;
1340 /*
1341 * Set the TCM Loop HBA counter to zero
1342 */
1343 tcm_loop_hba_no_cnt = 0;
1344 /*
1345 * Register the top level struct config_item_type with TCM core
1346 */
1347 fabric = target_fabric_configfs_init(THIS_MODULE, "loopback");
Andy Grovere3d6f902011-07-19 08:55:10 +00001348 if (IS_ERR(fabric)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001349 pr_err("tcm_loop_register_configfs() failed!\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001350 return PTR_ERR(fabric);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001351 }
1352 /*
1353 * Setup the fabric API of function pointers used by target_core_mod
1354 */
1355 fabric->tf_ops.get_fabric_name = &tcm_loop_get_fabric_name;
1356 fabric->tf_ops.get_fabric_proto_ident = &tcm_loop_get_fabric_proto_ident;
1357 fabric->tf_ops.tpg_get_wwn = &tcm_loop_get_endpoint_wwn;
1358 fabric->tf_ops.tpg_get_tag = &tcm_loop_get_tag;
1359 fabric->tf_ops.tpg_get_default_depth = &tcm_loop_get_default_depth;
1360 fabric->tf_ops.tpg_get_pr_transport_id = &tcm_loop_get_pr_transport_id;
1361 fabric->tf_ops.tpg_get_pr_transport_id_len =
1362 &tcm_loop_get_pr_transport_id_len;
1363 fabric->tf_ops.tpg_parse_pr_out_transport_id =
1364 &tcm_loop_parse_pr_out_transport_id;
1365 fabric->tf_ops.tpg_check_demo_mode = &tcm_loop_check_demo_mode;
1366 fabric->tf_ops.tpg_check_demo_mode_cache =
1367 &tcm_loop_check_demo_mode_cache;
1368 fabric->tf_ops.tpg_check_demo_mode_write_protect =
1369 &tcm_loop_check_demo_mode_write_protect;
1370 fabric->tf_ops.tpg_check_prod_mode_write_protect =
1371 &tcm_loop_check_prod_mode_write_protect;
1372 /*
1373 * The TCM loopback fabric module runs in demo-mode to a local
1374 * virtual SCSI device, so fabric dependent initator ACLs are
1375 * not required.
1376 */
1377 fabric->tf_ops.tpg_alloc_fabric_acl = &tcm_loop_tpg_alloc_fabric_acl;
1378 fabric->tf_ops.tpg_release_fabric_acl =
1379 &tcm_loop_tpg_release_fabric_acl;
1380 fabric->tf_ops.tpg_get_inst_index = &tcm_loop_get_inst_index;
1381 /*
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001382 * Used for setting up remaining TCM resources in process context
1383 */
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001384 fabric->tf_ops.check_stop_free = &tcm_loop_check_stop_free;
Christoph Hellwig35462972011-05-31 23:56:57 -04001385 fabric->tf_ops.release_cmd = &tcm_loop_release_cmd;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001386 fabric->tf_ops.shutdown_session = &tcm_loop_shutdown_session;
1387 fabric->tf_ops.close_session = &tcm_loop_close_session;
1388 fabric->tf_ops.stop_session = &tcm_loop_stop_session;
1389 fabric->tf_ops.fall_back_to_erl0 = &tcm_loop_fall_back_to_erl0;
1390 fabric->tf_ops.sess_logged_in = &tcm_loop_sess_logged_in;
1391 fabric->tf_ops.sess_get_index = &tcm_loop_sess_get_index;
1392 fabric->tf_ops.sess_get_initiator_sid = NULL;
1393 fabric->tf_ops.write_pending = &tcm_loop_write_pending;
1394 fabric->tf_ops.write_pending_status = &tcm_loop_write_pending_status;
1395 /*
1396 * Not used for TCM loopback
1397 */
1398 fabric->tf_ops.set_default_node_attributes =
1399 &tcm_loop_set_default_node_attributes;
1400 fabric->tf_ops.get_task_tag = &tcm_loop_get_task_tag;
1401 fabric->tf_ops.get_cmd_state = &tcm_loop_get_cmd_state;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001402 fabric->tf_ops.queue_data_in = &tcm_loop_queue_data_in;
1403 fabric->tf_ops.queue_status = &tcm_loop_queue_status;
1404 fabric->tf_ops.queue_tm_rsp = &tcm_loop_queue_tm_rsp;
1405 fabric->tf_ops.set_fabric_sense_len = &tcm_loop_set_fabric_sense_len;
1406 fabric->tf_ops.get_fabric_sense_len = &tcm_loop_get_fabric_sense_len;
1407 fabric->tf_ops.is_state_remove = &tcm_loop_is_state_remove;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001408
1409 tf_cg = &fabric->tf_group;
1410 /*
1411 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1412 */
1413 fabric->tf_ops.fabric_make_wwn = &tcm_loop_make_scsi_hba;
1414 fabric->tf_ops.fabric_drop_wwn = &tcm_loop_drop_scsi_hba;
1415 fabric->tf_ops.fabric_make_tpg = &tcm_loop_make_naa_tpg;
1416 fabric->tf_ops.fabric_drop_tpg = &tcm_loop_drop_naa_tpg;
1417 /*
1418 * fabric_post_link() and fabric_pre_unlink() are used for
1419 * registration and release of TCM Loop Virtual SCSI LUNs.
1420 */
1421 fabric->tf_ops.fabric_post_link = &tcm_loop_port_link;
1422 fabric->tf_ops.fabric_pre_unlink = &tcm_loop_port_unlink;
1423 fabric->tf_ops.fabric_make_np = NULL;
1424 fabric->tf_ops.fabric_drop_np = NULL;
1425 /*
1426 * Setup default attribute lists for various fabric->tf_cit_tmpl
1427 */
1428 TF_CIT_TMPL(fabric)->tfc_wwn_cit.ct_attrs = tcm_loop_wwn_attrs;
1429 TF_CIT_TMPL(fabric)->tfc_tpg_base_cit.ct_attrs = tcm_loop_tpg_attrs;
1430 TF_CIT_TMPL(fabric)->tfc_tpg_attrib_cit.ct_attrs = NULL;
1431 TF_CIT_TMPL(fabric)->tfc_tpg_param_cit.ct_attrs = NULL;
1432 TF_CIT_TMPL(fabric)->tfc_tpg_np_base_cit.ct_attrs = NULL;
1433 /*
1434 * Once fabric->tf_ops has been setup, now register the fabric for
1435 * use within TCM
1436 */
1437 ret = target_fabric_configfs_register(fabric);
1438 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001439 pr_err("target_fabric_configfs_register() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001440 " TCM_Loop failed!\n");
1441 target_fabric_configfs_free(fabric);
1442 return -1;
1443 }
1444 /*
1445 * Setup our local pointer to *fabric.
1446 */
1447 tcm_loop_fabric_configfs = fabric;
Andy Grover6708bb22011-06-08 10:36:43 -07001448 pr_debug("TCM_LOOP[0] - Set fabric ->"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001449 " tcm_loop_fabric_configfs\n");
1450 return 0;
1451}
1452
1453static void tcm_loop_deregister_configfs(void)
1454{
1455 if (!tcm_loop_fabric_configfs)
1456 return;
1457
1458 target_fabric_configfs_deregister(tcm_loop_fabric_configfs);
1459 tcm_loop_fabric_configfs = NULL;
Andy Grover6708bb22011-06-08 10:36:43 -07001460 pr_debug("TCM_LOOP[0] - Cleared"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001461 " tcm_loop_fabric_configfs\n");
1462}
1463
1464static int __init tcm_loop_fabric_init(void)
1465{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001466 int ret = -ENOMEM;
1467
1468 tcm_loop_workqueue = alloc_workqueue("tcm_loop", 0, 0);
1469 if (!tcm_loop_workqueue)
1470 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001471
1472 tcm_loop_cmd_cache = kmem_cache_create("tcm_loop_cmd_cache",
1473 sizeof(struct tcm_loop_cmd),
1474 __alignof__(struct tcm_loop_cmd),
1475 0, NULL);
1476 if (!tcm_loop_cmd_cache) {
Andy Grover6708bb22011-06-08 10:36:43 -07001477 pr_debug("kmem_cache_create() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001478 " tcm_loop_cmd_cache failed\n");
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001479 goto out_destroy_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001480 }
1481
1482 ret = tcm_loop_alloc_core_bus();
1483 if (ret)
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001484 goto out_destroy_cache;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001485
1486 ret = tcm_loop_register_configfs();
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001487 if (ret)
1488 goto out_release_core_bus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001489
1490 return 0;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001491
1492out_release_core_bus:
1493 tcm_loop_release_core_bus();
1494out_destroy_cache:
1495 kmem_cache_destroy(tcm_loop_cmd_cache);
1496out_destroy_workqueue:
1497 destroy_workqueue(tcm_loop_workqueue);
1498out:
1499 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001500}
1501
1502static void __exit tcm_loop_fabric_exit(void)
1503{
1504 tcm_loop_deregister_configfs();
1505 tcm_loop_release_core_bus();
1506 kmem_cache_destroy(tcm_loop_cmd_cache);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001507 destroy_workqueue(tcm_loop_workqueue);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001508}
1509
1510MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1511MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1512MODULE_LICENSE("GPL");
1513module_init(tcm_loop_fabric_init);
1514module_exit(tcm_loop_fabric_exit);