blob: 041673e9d2dbbae80e8b23ff6c522d97baf364f0 [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);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800832 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
833 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
834 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700835 sc->scsi_done(sc);
836 return 0;
837}
838
839static int tcm_loop_queue_status(struct se_cmd *se_cmd)
840{
841 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
842 struct tcm_loop_cmd, tl_se_cmd);
843 struct scsi_cmnd *sc = tl_cmd->sc;
844
Andy Grover6708bb22011-06-08 10:36:43 -0700845 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700846 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
847
848 if (se_cmd->sense_buffer &&
849 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
850 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
851
Andy Grover5951146d2011-07-19 10:26:37 +0000852 memcpy(sc->sense_buffer, se_cmd->sense_buffer,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700853 SCSI_SENSE_BUFFERSIZE);
854 sc->result = SAM_STAT_CHECK_CONDITION;
855 set_driver_byte(sc, DRIVER_SENSE);
856 } else
857 sc->result = se_cmd->scsi_status;
858
859 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800860 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
861 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
862 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700863 sc->scsi_done(sc);
864 return 0;
865}
866
867static int tcm_loop_queue_tm_rsp(struct se_cmd *se_cmd)
868{
869 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
870 struct tcm_loop_tmr *tl_tmr = se_tmr->fabric_tmr_ptr;
871 /*
872 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
873 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
874 */
875 atomic_set(&tl_tmr->tmr_complete, 1);
876 wake_up(&tl_tmr->tl_tmr_wait);
877 return 0;
878}
879
880static u16 tcm_loop_set_fabric_sense_len(struct se_cmd *se_cmd, u32 sense_length)
881{
882 return 0;
883}
884
885static u16 tcm_loop_get_fabric_sense_len(void)
886{
887 return 0;
888}
889
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700890static char *tcm_loop_dump_proto_id(struct tcm_loop_hba *tl_hba)
891{
892 switch (tl_hba->tl_proto_id) {
893 case SCSI_PROTOCOL_SAS:
894 return "SAS";
895 case SCSI_PROTOCOL_FCP:
896 return "FCP";
897 case SCSI_PROTOCOL_ISCSI:
898 return "iSCSI";
899 default:
900 break;
901 }
902
903 return "Unknown";
904}
905
906/* Start items for tcm_loop_port_cit */
907
908static int tcm_loop_port_link(
909 struct se_portal_group *se_tpg,
910 struct se_lun *lun)
911{
912 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
913 struct tcm_loop_tpg, tl_se_tpg);
914 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
915
916 atomic_inc(&tl_tpg->tl_tpg_port_count);
917 smp_mb__after_atomic_inc();
918 /*
919 * Add Linux/SCSI struct scsi_device by HCTL
920 */
921 scsi_add_device(tl_hba->sh, 0, tl_tpg->tl_tpgt, lun->unpacked_lun);
922
Andy Grover6708bb22011-06-08 10:36:43 -0700923 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700924 return 0;
925}
926
927static void tcm_loop_port_unlink(
928 struct se_portal_group *se_tpg,
929 struct se_lun *se_lun)
930{
931 struct scsi_device *sd;
932 struct tcm_loop_hba *tl_hba;
933 struct tcm_loop_tpg *tl_tpg;
934
935 tl_tpg = container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
936 tl_hba = tl_tpg->tl_hba;
937
938 sd = scsi_device_lookup(tl_hba->sh, 0, tl_tpg->tl_tpgt,
939 se_lun->unpacked_lun);
940 if (!sd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700941 pr_err("Unable to locate struct scsi_device for %d:%d:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700942 "%d\n", 0, tl_tpg->tl_tpgt, se_lun->unpacked_lun);
943 return;
944 }
945 /*
946 * Remove Linux/SCSI struct scsi_device by HCTL
947 */
948 scsi_remove_device(sd);
949 scsi_device_put(sd);
950
951 atomic_dec(&tl_tpg->tl_tpg_port_count);
952 smp_mb__after_atomic_dec();
953
Andy Grover6708bb22011-06-08 10:36:43 -0700954 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700955}
956
957/* End items for tcm_loop_port_cit */
958
959/* Start items for tcm_loop_nexus_cit */
960
961static int tcm_loop_make_nexus(
962 struct tcm_loop_tpg *tl_tpg,
963 const char *name)
964{
965 struct se_portal_group *se_tpg;
966 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
967 struct tcm_loop_nexus *tl_nexus;
Dan Carpenter552523d2011-06-15 09:41:33 -0700968 int ret = -ENOMEM;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700969
970 if (tl_tpg->tl_hba->tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700971 pr_debug("tl_tpg->tl_hba->tl_nexus already exists\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700972 return -EEXIST;
973 }
974 se_tpg = &tl_tpg->tl_se_tpg;
975
976 tl_nexus = kzalloc(sizeof(struct tcm_loop_nexus), GFP_KERNEL);
977 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700978 pr_err("Unable to allocate struct tcm_loop_nexus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700979 return -ENOMEM;
980 }
981 /*
982 * Initialize the struct se_session pointer
983 */
984 tl_nexus->se_sess = transport_init_session();
Dan Carpenter552523d2011-06-15 09:41:33 -0700985 if (IS_ERR(tl_nexus->se_sess)) {
986 ret = PTR_ERR(tl_nexus->se_sess);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700987 goto out;
Dan Carpenter552523d2011-06-15 09:41:33 -0700988 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700989 /*
990 * Since we are running in 'demo mode' this call with generate a
991 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
992 * Initiator port name of the passed configfs group 'name'.
993 */
994 tl_nexus->se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
995 se_tpg, (unsigned char *)name);
996 if (!tl_nexus->se_sess->se_node_acl) {
997 transport_free_session(tl_nexus->se_sess);
998 goto out;
999 }
1000 /*
1001 * Now, register the SAS I_T Nexus as active with the call to
1002 * transport_register_session()
1003 */
1004 __transport_register_session(se_tpg, tl_nexus->se_sess->se_node_acl,
Andy Grover5951146d2011-07-19 10:26:37 +00001005 tl_nexus->se_sess, tl_nexus);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001006 tl_tpg->tl_hba->tl_nexus = tl_nexus;
Andy Grover6708bb22011-06-08 10:36:43 -07001007 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001008 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1009 name);
1010 return 0;
1011
1012out:
1013 kfree(tl_nexus);
Dan Carpenter552523d2011-06-15 09:41:33 -07001014 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001015}
1016
1017static int tcm_loop_drop_nexus(
1018 struct tcm_loop_tpg *tpg)
1019{
1020 struct se_session *se_sess;
1021 struct tcm_loop_nexus *tl_nexus;
1022 struct tcm_loop_hba *tl_hba = tpg->tl_hba;
1023
1024 tl_nexus = tpg->tl_hba->tl_nexus;
1025 if (!tl_nexus)
1026 return -ENODEV;
1027
1028 se_sess = tl_nexus->se_sess;
1029 if (!se_sess)
1030 return -ENODEV;
1031
1032 if (atomic_read(&tpg->tl_tpg_port_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001033 pr_err("Unable to remove TCM_Loop I_T Nexus with"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001034 " active TPG port count: %d\n",
1035 atomic_read(&tpg->tl_tpg_port_count));
1036 return -EPERM;
1037 }
1038
Andy Grover6708bb22011-06-08 10:36:43 -07001039 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001040 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1041 tl_nexus->se_sess->se_node_acl->initiatorname);
1042 /*
1043 * Release the SCSI I_T Nexus to the emulated SAS Target Port
1044 */
1045 transport_deregister_session(tl_nexus->se_sess);
1046 tpg->tl_hba->tl_nexus = NULL;
1047 kfree(tl_nexus);
1048 return 0;
1049}
1050
1051/* End items for tcm_loop_nexus_cit */
1052
1053static ssize_t tcm_loop_tpg_show_nexus(
1054 struct se_portal_group *se_tpg,
1055 char *page)
1056{
1057 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1058 struct tcm_loop_tpg, tl_se_tpg);
1059 struct tcm_loop_nexus *tl_nexus;
1060 ssize_t ret;
1061
1062 tl_nexus = tl_tpg->tl_hba->tl_nexus;
1063 if (!tl_nexus)
1064 return -ENODEV;
1065
1066 ret = snprintf(page, PAGE_SIZE, "%s\n",
1067 tl_nexus->se_sess->se_node_acl->initiatorname);
1068
1069 return ret;
1070}
1071
1072static ssize_t tcm_loop_tpg_store_nexus(
1073 struct se_portal_group *se_tpg,
1074 const char *page,
1075 size_t count)
1076{
1077 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1078 struct tcm_loop_tpg, tl_se_tpg);
1079 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
1080 unsigned char i_port[TL_WWN_ADDR_LEN], *ptr, *port_ptr;
1081 int ret;
1082 /*
1083 * Shutdown the active I_T nexus if 'NULL' is passed..
1084 */
1085 if (!strncmp(page, "NULL", 4)) {
1086 ret = tcm_loop_drop_nexus(tl_tpg);
1087 return (!ret) ? count : ret;
1088 }
1089 /*
1090 * Otherwise make sure the passed virtual Initiator port WWN matches
1091 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1092 * tcm_loop_make_nexus()
1093 */
Dan Carpenter60d645a2011-06-15 10:03:05 -07001094 if (strlen(page) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001095 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001096 " max: %d\n", page, TL_WWN_ADDR_LEN);
1097 return -EINVAL;
1098 }
1099 snprintf(&i_port[0], TL_WWN_ADDR_LEN, "%s", page);
1100
1101 ptr = strstr(i_port, "naa.");
1102 if (ptr) {
1103 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_SAS) {
Andy Grover6708bb22011-06-08 10:36:43 -07001104 pr_err("Passed SAS Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001105 " match target port protoid: %s\n", i_port,
1106 tcm_loop_dump_proto_id(tl_hba));
1107 return -EINVAL;
1108 }
1109 port_ptr = &i_port[0];
1110 goto check_newline;
1111 }
1112 ptr = strstr(i_port, "fc.");
1113 if (ptr) {
1114 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_FCP) {
Andy Grover6708bb22011-06-08 10:36:43 -07001115 pr_err("Passed FCP Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001116 " match target port protoid: %s\n", i_port,
1117 tcm_loop_dump_proto_id(tl_hba));
1118 return -EINVAL;
1119 }
1120 port_ptr = &i_port[3]; /* Skip over "fc." */
1121 goto check_newline;
1122 }
1123 ptr = strstr(i_port, "iqn.");
1124 if (ptr) {
1125 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_ISCSI) {
Andy Grover6708bb22011-06-08 10:36:43 -07001126 pr_err("Passed iSCSI Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001127 " match target port protoid: %s\n", i_port,
1128 tcm_loop_dump_proto_id(tl_hba));
1129 return -EINVAL;
1130 }
1131 port_ptr = &i_port[0];
1132 goto check_newline;
1133 }
Andy Grover6708bb22011-06-08 10:36:43 -07001134 pr_err("Unable to locate prefix for emulated Initiator Port:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001135 " %s\n", i_port);
1136 return -EINVAL;
1137 /*
1138 * Clear any trailing newline for the NAA WWN
1139 */
1140check_newline:
1141 if (i_port[strlen(i_port)-1] == '\n')
1142 i_port[strlen(i_port)-1] = '\0';
1143
1144 ret = tcm_loop_make_nexus(tl_tpg, port_ptr);
1145 if (ret < 0)
1146 return ret;
1147
1148 return count;
1149}
1150
1151TF_TPG_BASE_ATTR(tcm_loop, nexus, S_IRUGO | S_IWUSR);
1152
1153static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
1154 &tcm_loop_tpg_nexus.attr,
1155 NULL,
1156};
1157
1158/* Start items for tcm_loop_naa_cit */
1159
1160struct se_portal_group *tcm_loop_make_naa_tpg(
1161 struct se_wwn *wwn,
1162 struct config_group *group,
1163 const char *name)
1164{
1165 struct tcm_loop_hba *tl_hba = container_of(wwn,
1166 struct tcm_loop_hba, tl_hba_wwn);
1167 struct tcm_loop_tpg *tl_tpg;
1168 char *tpgt_str, *end_ptr;
1169 int ret;
1170 unsigned short int tpgt;
1171
1172 tpgt_str = strstr(name, "tpgt_");
1173 if (!tpgt_str) {
Andy Grover6708bb22011-06-08 10:36:43 -07001174 pr_err("Unable to locate \"tpgt_#\" directory"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001175 " group\n");
1176 return ERR_PTR(-EINVAL);
1177 }
1178 tpgt_str += 5; /* Skip ahead of "tpgt_" */
1179 tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
1180
Dan Carpenter12f09cc2011-04-02 14:32:47 -07001181 if (tpgt >= TL_TPGS_PER_HBA) {
Andy Grover6708bb22011-06-08 10:36:43 -07001182 pr_err("Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001183 " %u\n", tpgt, TL_TPGS_PER_HBA);
1184 return ERR_PTR(-EINVAL);
1185 }
1186 tl_tpg = &tl_hba->tl_hba_tpgs[tpgt];
1187 tl_tpg->tl_hba = tl_hba;
1188 tl_tpg->tl_tpgt = tpgt;
1189 /*
1190 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1191 */
1192 ret = core_tpg_register(&tcm_loop_fabric_configfs->tf_ops,
Andy Grover5951146d2011-07-19 10:26:37 +00001193 wwn, &tl_tpg->tl_se_tpg, tl_tpg,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001194 TRANSPORT_TPG_TYPE_NORMAL);
1195 if (ret < 0)
1196 return ERR_PTR(-ENOMEM);
1197
Andy Grover6708bb22011-06-08 10:36:43 -07001198 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001199 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1200 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1201
1202 return &tl_tpg->tl_se_tpg;
1203}
1204
1205void tcm_loop_drop_naa_tpg(
1206 struct se_portal_group *se_tpg)
1207{
1208 struct se_wwn *wwn = se_tpg->se_tpg_wwn;
1209 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1210 struct tcm_loop_tpg, tl_se_tpg);
1211 struct tcm_loop_hba *tl_hba;
1212 unsigned short tpgt;
1213
1214 tl_hba = tl_tpg->tl_hba;
1215 tpgt = tl_tpg->tl_tpgt;
1216 /*
1217 * Release the I_T Nexus for the Virtual SAS link if present
1218 */
1219 tcm_loop_drop_nexus(tl_tpg);
1220 /*
1221 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1222 */
1223 core_tpg_deregister(se_tpg);
1224
Nicholas Bellinger0a020432011-10-10 19:44:05 -07001225 tl_tpg->tl_hba = NULL;
1226 tl_tpg->tl_tpgt = 0;
1227
Andy Grover6708bb22011-06-08 10:36:43 -07001228 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001229 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1230 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1231}
1232
1233/* End items for tcm_loop_naa_cit */
1234
1235/* Start items for tcm_loop_cit */
1236
1237struct se_wwn *tcm_loop_make_scsi_hba(
1238 struct target_fabric_configfs *tf,
1239 struct config_group *group,
1240 const char *name)
1241{
1242 struct tcm_loop_hba *tl_hba;
1243 struct Scsi_Host *sh;
1244 char *ptr;
1245 int ret, off = 0;
1246
1247 tl_hba = kzalloc(sizeof(struct tcm_loop_hba), GFP_KERNEL);
1248 if (!tl_hba) {
Andy Grover6708bb22011-06-08 10:36:43 -07001249 pr_err("Unable to allocate struct tcm_loop_hba\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001250 return ERR_PTR(-ENOMEM);
1251 }
1252 /*
1253 * Determine the emulated Protocol Identifier and Target Port Name
1254 * based on the incoming configfs directory name.
1255 */
1256 ptr = strstr(name, "naa.");
1257 if (ptr) {
1258 tl_hba->tl_proto_id = SCSI_PROTOCOL_SAS;
1259 goto check_len;
1260 }
1261 ptr = strstr(name, "fc.");
1262 if (ptr) {
1263 tl_hba->tl_proto_id = SCSI_PROTOCOL_FCP;
1264 off = 3; /* Skip over "fc." */
1265 goto check_len;
1266 }
1267 ptr = strstr(name, "iqn.");
Jesper Juhla57b5d32011-06-28 00:30:17 +02001268 if (!ptr) {
Andy Grover6708bb22011-06-08 10:36:43 -07001269 pr_err("Unable to locate prefix for emulated Target "
Jesper Juhla57b5d32011-06-28 00:30:17 +02001270 "Port: %s\n", name);
1271 ret = -EINVAL;
1272 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001273 }
Jesper Juhla57b5d32011-06-28 00:30:17 +02001274 tl_hba->tl_proto_id = SCSI_PROTOCOL_ISCSI;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001275
1276check_len:
Dan Carpenter60d645a2011-06-15 10:03:05 -07001277 if (strlen(name) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001278 pr_err("Emulated NAA %s Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001279 " max: %d\n", name, tcm_loop_dump_proto_id(tl_hba),
1280 TL_WWN_ADDR_LEN);
Jesper Juhla57b5d32011-06-28 00:30:17 +02001281 ret = -EINVAL;
1282 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001283 }
1284 snprintf(&tl_hba->tl_wwn_address[0], TL_WWN_ADDR_LEN, "%s", &name[off]);
1285
1286 /*
1287 * Call device_register(tl_hba->dev) to register the emulated
1288 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1289 * device_register() callbacks in tcm_loop_driver_probe()
1290 */
1291 ret = tcm_loop_setup_hba_bus(tl_hba, tcm_loop_hba_no_cnt);
1292 if (ret)
1293 goto out;
1294
1295 sh = tl_hba->sh;
1296 tcm_loop_hba_no_cnt++;
Andy Grover6708bb22011-06-08 10:36:43 -07001297 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001298 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1299 tcm_loop_dump_proto_id(tl_hba), name, sh->host_no);
1300
1301 return &tl_hba->tl_hba_wwn;
1302out:
1303 kfree(tl_hba);
1304 return ERR_PTR(ret);
1305}
1306
1307void tcm_loop_drop_scsi_hba(
1308 struct se_wwn *wwn)
1309{
1310 struct tcm_loop_hba *tl_hba = container_of(wwn,
1311 struct tcm_loop_hba, tl_hba_wwn);
Nicholas Bellinger6297b072011-11-12 09:29:51 -08001312
1313 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1314 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1315 tl_hba->tl_wwn_address, tl_hba->sh->host_no);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001316 /*
1317 * Call device_unregister() on the original tl_hba->dev.
1318 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1319 * release *tl_hba;
1320 */
1321 device_unregister(&tl_hba->dev);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001322}
1323
1324/* Start items for tcm_loop_cit */
1325static ssize_t tcm_loop_wwn_show_attr_version(
1326 struct target_fabric_configfs *tf,
1327 char *page)
1328{
1329 return sprintf(page, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION);
1330}
1331
1332TF_WWN_ATTR_RO(tcm_loop, version);
1333
1334static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
1335 &tcm_loop_wwn_version.attr,
1336 NULL,
1337};
1338
1339/* End items for tcm_loop_cit */
1340
1341static int tcm_loop_register_configfs(void)
1342{
1343 struct target_fabric_configfs *fabric;
1344 struct config_group *tf_cg;
1345 int ret;
1346 /*
1347 * Set the TCM Loop HBA counter to zero
1348 */
1349 tcm_loop_hba_no_cnt = 0;
1350 /*
1351 * Register the top level struct config_item_type with TCM core
1352 */
1353 fabric = target_fabric_configfs_init(THIS_MODULE, "loopback");
Andy Grovere3d6f902011-07-19 08:55:10 +00001354 if (IS_ERR(fabric)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001355 pr_err("tcm_loop_register_configfs() failed!\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001356 return PTR_ERR(fabric);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001357 }
1358 /*
1359 * Setup the fabric API of function pointers used by target_core_mod
1360 */
1361 fabric->tf_ops.get_fabric_name = &tcm_loop_get_fabric_name;
1362 fabric->tf_ops.get_fabric_proto_ident = &tcm_loop_get_fabric_proto_ident;
1363 fabric->tf_ops.tpg_get_wwn = &tcm_loop_get_endpoint_wwn;
1364 fabric->tf_ops.tpg_get_tag = &tcm_loop_get_tag;
1365 fabric->tf_ops.tpg_get_default_depth = &tcm_loop_get_default_depth;
1366 fabric->tf_ops.tpg_get_pr_transport_id = &tcm_loop_get_pr_transport_id;
1367 fabric->tf_ops.tpg_get_pr_transport_id_len =
1368 &tcm_loop_get_pr_transport_id_len;
1369 fabric->tf_ops.tpg_parse_pr_out_transport_id =
1370 &tcm_loop_parse_pr_out_transport_id;
1371 fabric->tf_ops.tpg_check_demo_mode = &tcm_loop_check_demo_mode;
1372 fabric->tf_ops.tpg_check_demo_mode_cache =
1373 &tcm_loop_check_demo_mode_cache;
1374 fabric->tf_ops.tpg_check_demo_mode_write_protect =
1375 &tcm_loop_check_demo_mode_write_protect;
1376 fabric->tf_ops.tpg_check_prod_mode_write_protect =
1377 &tcm_loop_check_prod_mode_write_protect;
1378 /*
1379 * The TCM loopback fabric module runs in demo-mode to a local
1380 * virtual SCSI device, so fabric dependent initator ACLs are
1381 * not required.
1382 */
1383 fabric->tf_ops.tpg_alloc_fabric_acl = &tcm_loop_tpg_alloc_fabric_acl;
1384 fabric->tf_ops.tpg_release_fabric_acl =
1385 &tcm_loop_tpg_release_fabric_acl;
1386 fabric->tf_ops.tpg_get_inst_index = &tcm_loop_get_inst_index;
1387 /*
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001388 * Used for setting up remaining TCM resources in process context
1389 */
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001390 fabric->tf_ops.check_stop_free = &tcm_loop_check_stop_free;
Christoph Hellwig35462972011-05-31 23:56:57 -04001391 fabric->tf_ops.release_cmd = &tcm_loop_release_cmd;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001392 fabric->tf_ops.shutdown_session = &tcm_loop_shutdown_session;
1393 fabric->tf_ops.close_session = &tcm_loop_close_session;
1394 fabric->tf_ops.stop_session = &tcm_loop_stop_session;
1395 fabric->tf_ops.fall_back_to_erl0 = &tcm_loop_fall_back_to_erl0;
1396 fabric->tf_ops.sess_logged_in = &tcm_loop_sess_logged_in;
1397 fabric->tf_ops.sess_get_index = &tcm_loop_sess_get_index;
1398 fabric->tf_ops.sess_get_initiator_sid = NULL;
1399 fabric->tf_ops.write_pending = &tcm_loop_write_pending;
1400 fabric->tf_ops.write_pending_status = &tcm_loop_write_pending_status;
1401 /*
1402 * Not used for TCM loopback
1403 */
1404 fabric->tf_ops.set_default_node_attributes =
1405 &tcm_loop_set_default_node_attributes;
1406 fabric->tf_ops.get_task_tag = &tcm_loop_get_task_tag;
1407 fabric->tf_ops.get_cmd_state = &tcm_loop_get_cmd_state;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001408 fabric->tf_ops.queue_data_in = &tcm_loop_queue_data_in;
1409 fabric->tf_ops.queue_status = &tcm_loop_queue_status;
1410 fabric->tf_ops.queue_tm_rsp = &tcm_loop_queue_tm_rsp;
1411 fabric->tf_ops.set_fabric_sense_len = &tcm_loop_set_fabric_sense_len;
1412 fabric->tf_ops.get_fabric_sense_len = &tcm_loop_get_fabric_sense_len;
1413 fabric->tf_ops.is_state_remove = &tcm_loop_is_state_remove;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001414
1415 tf_cg = &fabric->tf_group;
1416 /*
1417 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1418 */
1419 fabric->tf_ops.fabric_make_wwn = &tcm_loop_make_scsi_hba;
1420 fabric->tf_ops.fabric_drop_wwn = &tcm_loop_drop_scsi_hba;
1421 fabric->tf_ops.fabric_make_tpg = &tcm_loop_make_naa_tpg;
1422 fabric->tf_ops.fabric_drop_tpg = &tcm_loop_drop_naa_tpg;
1423 /*
1424 * fabric_post_link() and fabric_pre_unlink() are used for
1425 * registration and release of TCM Loop Virtual SCSI LUNs.
1426 */
1427 fabric->tf_ops.fabric_post_link = &tcm_loop_port_link;
1428 fabric->tf_ops.fabric_pre_unlink = &tcm_loop_port_unlink;
1429 fabric->tf_ops.fabric_make_np = NULL;
1430 fabric->tf_ops.fabric_drop_np = NULL;
1431 /*
1432 * Setup default attribute lists for various fabric->tf_cit_tmpl
1433 */
1434 TF_CIT_TMPL(fabric)->tfc_wwn_cit.ct_attrs = tcm_loop_wwn_attrs;
1435 TF_CIT_TMPL(fabric)->tfc_tpg_base_cit.ct_attrs = tcm_loop_tpg_attrs;
1436 TF_CIT_TMPL(fabric)->tfc_tpg_attrib_cit.ct_attrs = NULL;
1437 TF_CIT_TMPL(fabric)->tfc_tpg_param_cit.ct_attrs = NULL;
1438 TF_CIT_TMPL(fabric)->tfc_tpg_np_base_cit.ct_attrs = NULL;
1439 /*
1440 * Once fabric->tf_ops has been setup, now register the fabric for
1441 * use within TCM
1442 */
1443 ret = target_fabric_configfs_register(fabric);
1444 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001445 pr_err("target_fabric_configfs_register() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001446 " TCM_Loop failed!\n");
1447 target_fabric_configfs_free(fabric);
1448 return -1;
1449 }
1450 /*
1451 * Setup our local pointer to *fabric.
1452 */
1453 tcm_loop_fabric_configfs = fabric;
Andy Grover6708bb22011-06-08 10:36:43 -07001454 pr_debug("TCM_LOOP[0] - Set fabric ->"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001455 " tcm_loop_fabric_configfs\n");
1456 return 0;
1457}
1458
1459static void tcm_loop_deregister_configfs(void)
1460{
1461 if (!tcm_loop_fabric_configfs)
1462 return;
1463
1464 target_fabric_configfs_deregister(tcm_loop_fabric_configfs);
1465 tcm_loop_fabric_configfs = NULL;
Andy Grover6708bb22011-06-08 10:36:43 -07001466 pr_debug("TCM_LOOP[0] - Cleared"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001467 " tcm_loop_fabric_configfs\n");
1468}
1469
1470static int __init tcm_loop_fabric_init(void)
1471{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001472 int ret = -ENOMEM;
1473
1474 tcm_loop_workqueue = alloc_workqueue("tcm_loop", 0, 0);
1475 if (!tcm_loop_workqueue)
1476 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001477
1478 tcm_loop_cmd_cache = kmem_cache_create("tcm_loop_cmd_cache",
1479 sizeof(struct tcm_loop_cmd),
1480 __alignof__(struct tcm_loop_cmd),
1481 0, NULL);
1482 if (!tcm_loop_cmd_cache) {
Andy Grover6708bb22011-06-08 10:36:43 -07001483 pr_debug("kmem_cache_create() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001484 " tcm_loop_cmd_cache failed\n");
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001485 goto out_destroy_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001486 }
1487
1488 ret = tcm_loop_alloc_core_bus();
1489 if (ret)
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001490 goto out_destroy_cache;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001491
1492 ret = tcm_loop_register_configfs();
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001493 if (ret)
1494 goto out_release_core_bus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001495
1496 return 0;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001497
1498out_release_core_bus:
1499 tcm_loop_release_core_bus();
1500out_destroy_cache:
1501 kmem_cache_destroy(tcm_loop_cmd_cache);
1502out_destroy_workqueue:
1503 destroy_workqueue(tcm_loop_workqueue);
1504out:
1505 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001506}
1507
1508static void __exit tcm_loop_fabric_exit(void)
1509{
1510 tcm_loop_deregister_configfs();
1511 tcm_loop_release_core_bus();
1512 kmem_cache_destroy(tcm_loop_cmd_cache);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001513 destroy_workqueue(tcm_loop_workqueue);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001514}
1515
1516MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1517MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1518MODULE_LICENSE("GPL");
1519module_init(tcm_loop_fabric_init);
1520module_exit(tcm_loop_fabric_exit);