blob: 6b3c329546895ab1095beb5c048ef24c6e1cea19 [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 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * © Copyright 2011-2013 Datera, Inc.
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07007 *
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
Al Viro8946b072013-03-31 02:01:55 -040082static int tcm_loop_show_info(struct seq_file *m, struct Scsi_Host *host)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070083{
Al Viro8946b072013-03-31 02:01:55 -040084 seq_printf(m, "tcm_loop_proc_info()\n");
85 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -070086}
87
88static int tcm_loop_driver_probe(struct device *);
89static int tcm_loop_driver_remove(struct device *);
90
91static int pseudo_lld_bus_match(struct device *dev,
92 struct device_driver *dev_driver)
93{
94 return 1;
95}
96
97static struct bus_type tcm_loop_lld_bus = {
98 .name = "tcm_loop_bus",
99 .match = pseudo_lld_bus_match,
100 .probe = tcm_loop_driver_probe,
101 .remove = tcm_loop_driver_remove,
102};
103
104static struct device_driver tcm_loop_driverfs = {
105 .name = "tcm_loop",
106 .bus = &tcm_loop_lld_bus,
107};
108/*
109 * Used with root_device_register() in tcm_loop_alloc_core_bus() below
110 */
111struct device *tcm_loop_primary;
112
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500113static void tcm_loop_submission_work(struct work_struct *work)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700114{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500115 struct tcm_loop_cmd *tl_cmd =
116 container_of(work, struct tcm_loop_cmd, work);
117 struct se_cmd *se_cmd = &tl_cmd->tl_se_cmd;
118 struct scsi_cmnd *sc = tl_cmd->sc;
119 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700120 struct tcm_loop_hba *tl_hba;
121 struct tcm_loop_tpg *tl_tpg;
Christoph Hellwig167864542012-02-02 17:04:42 -0500122 struct scatterlist *sgl_bidi = NULL;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300123 u32 sgl_bidi_count = 0, transfer_length;
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700124 int rc;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500125
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700126 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
127 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500128
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700129 /*
130 * Ensure that this tl_tpg reference from the incoming sc->device->id
131 * has already been configured via tcm_loop_make_naa_tpg().
132 */
133 if (!tl_tpg->tl_hba) {
134 set_host_byte(sc, DID_NO_CONNECT);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500135 goto out_done;
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700136 }
Hannes Reineckefb2b2842013-10-16 09:12:53 +0200137 if (tl_tpg->tl_transport_status == TCM_TRANSPORT_OFFLINE) {
138 set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
139 goto out_done;
140 }
Hannes Reinecke506787a2014-11-26 14:58:57 +0100141 tl_nexus = tl_tpg->tl_nexus;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500142 if (!tl_nexus) {
143 scmd_printk(KERN_ERR, sc, "TCM_Loop I_T Nexus"
144 " does not exist\n");
145 set_host_byte(sc, DID_ERROR);
146 goto out_done;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700147 }
Christoph Hellwig167864542012-02-02 17:04:42 -0500148 if (scsi_bidi_cmnd(sc)) {
149 struct scsi_data_buffer *sdb = scsi_in(sc);
150
151 sgl_bidi = sdb->table.sgl;
152 sgl_bidi_count = sdb->table.nents;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500153 se_cmd->se_cmd_flags |= SCF_BIDI;
154
Christoph Hellwig167864542012-02-02 17:04:42 -0500155 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200156
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300157 transfer_length = scsi_transfer_length(sc);
158 if (!scsi_prot_sg_count(sc) &&
159 scsi_get_prot_op(sc) != SCSI_PROT_NORMAL) {
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200160 se_cmd->prot_pto = true;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300161 /*
162 * loopback transport doesn't support
163 * WRITE_GENERATE, READ_STRIP protection
164 * information operations, go ahead unprotected.
165 */
166 transfer_length = scsi_bufflen(sc);
167 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200168
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700169 rc = target_submit_cmd_map_sgls(se_cmd, tl_nexus->se_sess, sc->cmnd,
170 &tl_cmd->tl_sense_buf[0], tl_cmd->sc->device->lun,
Christoph Hellwig68d81f42014-11-24 07:07:25 -0800171 transfer_length, TCM_SIMPLE_TAG,
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700172 sc->sc_data_direction, 0,
173 scsi_sglist(sc), scsi_sg_count(sc),
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000174 sgl_bidi, sgl_bidi_count,
175 scsi_prot_sglist(sc), scsi_prot_sg_count(sc));
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700176 if (rc < 0) {
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500177 set_host_byte(sc, DID_NO_CONNECT);
178 goto out_done;
179 }
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500180 return;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500181
182out_done:
Nicholas Bellingerb43f1882014-06-17 22:23:03 +0000183 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500184 sc->scsi_done(sc);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500185 return;
186}
187
188/*
189 * ->queuecommand can be and usually is called from interrupt context, so
190 * defer the actual submission to a workqueue.
191 */
192static int tcm_loop_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *sc)
193{
194 struct tcm_loop_cmd *tl_cmd;
195
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200196 pr_debug("tcm_loop_queuecommand() %d:%d:%d:%llu got CDB: 0x%02x"
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500197 " scsi_buf_len: %u\n", sc->device->host->host_no,
198 sc->device->id, sc->device->channel, sc->device->lun,
199 sc->cmnd[0], scsi_bufflen(sc));
200
201 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_ATOMIC);
202 if (!tl_cmd) {
203 pr_err("Unable to allocate struct tcm_loop_cmd\n");
204 set_host_byte(sc, DID_ERROR);
205 sc->scsi_done(sc);
206 return 0;
207 }
208
209 tl_cmd->sc = sc;
Hannes Reinecke6375f892014-10-02 09:30:55 +0200210 tl_cmd->sc_cmd_tag = sc->request->tag;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500211 INIT_WORK(&tl_cmd->work, tcm_loop_submission_work);
212 queue_work(tcm_loop_workqueue, &tl_cmd->work);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500213 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700214}
215
216/*
217 * Called from SCSI EH process context to issue a LUN_RESET TMR
218 * to struct scsi_device
219 */
Hannes Reineckea314d702013-10-16 09:12:54 +0200220static int tcm_loop_issue_tmr(struct tcm_loop_tpg *tl_tpg,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200221 int lun, int task, enum tcm_tmreq_table tmr)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700222{
223 struct se_cmd *se_cmd = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700224 struct se_session *se_sess;
Hannes Reineckea314d702013-10-16 09:12:54 +0200225 struct se_portal_group *se_tpg;
Hannes Reinecke506787a2014-11-26 14:58:57 +0100226 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700227 struct tcm_loop_cmd *tl_cmd = NULL;
Hannes Reineckea314d702013-10-16 09:12:54 +0200228 struct tcm_loop_tmr *tl_tmr = NULL;
229 int ret = TMR_FUNCTION_FAILED, rc;
230
Hannes Reinecke506787a2014-11-26 14:58:57 +0100231 /*
232 * Locate the tl_nexus and se_sess pointers
233 */
234 tl_nexus = tl_tpg->tl_nexus;
235 if (!tl_nexus) {
236 pr_err("Unable to perform device reset without"
237 " active I_T Nexus\n");
238 return ret;
239 }
240
Hannes Reineckea314d702013-10-16 09:12:54 +0200241 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_KERNEL);
242 if (!tl_cmd) {
243 pr_err("Unable to allocate memory for tl_cmd\n");
244 return ret;
245 }
246
247 tl_tmr = kzalloc(sizeof(struct tcm_loop_tmr), GFP_KERNEL);
248 if (!tl_tmr) {
249 pr_err("Unable to allocate memory for tl_tmr\n");
250 goto release;
251 }
252 init_waitqueue_head(&tl_tmr->tl_tmr_wait);
253
254 se_cmd = &tl_cmd->tl_se_cmd;
255 se_tpg = &tl_tpg->tl_se_tpg;
Hannes Reinecke506787a2014-11-26 14:58:57 +0100256 se_sess = tl_tpg->tl_nexus->se_sess;
Hannes Reineckea314d702013-10-16 09:12:54 +0200257 /*
258 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
259 */
260 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess, 0,
Christoph Hellwig68d81f42014-11-24 07:07:25 -0800261 DMA_NONE, TCM_SIMPLE_TAG,
Hannes Reineckea314d702013-10-16 09:12:54 +0200262 &tl_cmd->tl_sense_buf[0]);
263
264 rc = core_tmr_alloc_req(se_cmd, tl_tmr, tmr, GFP_KERNEL);
265 if (rc < 0)
266 goto release;
267
Hannes Reinecke969871c2013-10-16 09:12:55 +0200268 if (tmr == TMR_ABORT_TASK)
269 se_cmd->se_tmr_req->ref_task_tag = task;
270
Hannes Reineckea314d702013-10-16 09:12:54 +0200271 /*
272 * Locate the underlying TCM struct se_lun
273 */
274 if (transport_lookup_tmr_lun(se_cmd, lun) < 0) {
275 ret = TMR_LUN_DOES_NOT_EXIST;
276 goto release;
277 }
278 /*
279 * Queue the TMR to TCM Core and sleep waiting for
280 * tcm_loop_queue_tm_rsp() to wake us up.
281 */
282 transport_generic_handle_tmr(se_cmd);
283 wait_event(tl_tmr->tl_tmr_wait, atomic_read(&tl_tmr->tmr_complete));
284 /*
285 * The TMR LUN_RESET has completed, check the response status and
286 * then release allocations.
287 */
288 ret = se_cmd->se_tmr_req->response;
289release:
290 if (se_cmd)
291 transport_generic_free_cmd(se_cmd, 1);
292 else
293 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
294 kfree(tl_tmr);
295 return ret;
296}
297
Hannes Reinecke969871c2013-10-16 09:12:55 +0200298static int tcm_loop_abort_task(struct scsi_cmnd *sc)
299{
300 struct tcm_loop_hba *tl_hba;
Hannes Reinecke969871c2013-10-16 09:12:55 +0200301 struct tcm_loop_tpg *tl_tpg;
302 int ret = FAILED;
303
304 /*
305 * Locate the tcm_loop_hba_t pointer
306 */
307 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
Hannes Reinecke969871c2013-10-16 09:12:55 +0200308 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Hannes Reinecke506787a2014-11-26 14:58:57 +0100309 ret = tcm_loop_issue_tmr(tl_tpg, sc->device->lun,
Hannes Reinecke6375f892014-10-02 09:30:55 +0200310 sc->request->tag, TMR_ABORT_TASK);
Hannes Reinecke969871c2013-10-16 09:12:55 +0200311 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
312}
313
Hannes Reineckea314d702013-10-16 09:12:54 +0200314/*
315 * Called from SCSI EH process context to issue a LUN_RESET TMR
316 * to struct scsi_device
317 */
318static int tcm_loop_device_reset(struct scsi_cmnd *sc)
319{
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700320 struct tcm_loop_hba *tl_hba;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700321 struct tcm_loop_tpg *tl_tpg;
Hannes Reineckea314d702013-10-16 09:12:54 +0200322 int ret = FAILED;
323
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700324 /*
325 * Locate the tcm_loop_hba_t pointer
326 */
327 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700328 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Hannes Reinecke506787a2014-11-26 14:58:57 +0100329
330 ret = tcm_loop_issue_tmr(tl_tpg, sc->device->lun,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200331 0, TMR_LUN_RESET);
Hannes Reineckea314d702013-10-16 09:12:54 +0200332 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700333}
334
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200335static int tcm_loop_target_reset(struct scsi_cmnd *sc)
336{
337 struct tcm_loop_hba *tl_hba;
338 struct tcm_loop_tpg *tl_tpg;
339
340 /*
341 * Locate the tcm_loop_hba_t pointer
342 */
343 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
344 if (!tl_hba) {
345 pr_err("Unable to perform device reset without"
346 " active I_T Nexus\n");
347 return FAILED;
348 }
349 /*
350 * Locate the tl_tpg pointer from TargetID in sc->device->id
351 */
352 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
353 if (tl_tpg) {
354 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
355 return SUCCESS;
356 }
357 return FAILED;
358}
359
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700360static int tcm_loop_slave_alloc(struct scsi_device *sd)
361{
362 set_bit(QUEUE_FLAG_BIDI, &sd->request_queue->queue_flags);
363 return 0;
364}
365
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700366static struct scsi_host_template tcm_loop_driver_template = {
Al Viro8946b072013-03-31 02:01:55 -0400367 .show_info = tcm_loop_show_info,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700368 .proc_name = "tcm_loopback",
369 .name = "TCM_Loopback",
370 .queuecommand = tcm_loop_queuecommand,
Christoph Hellwigdb5ed4d2014-11-13 15:08:42 +0100371 .change_queue_depth = scsi_change_queue_depth,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200372 .eh_abort_handler = tcm_loop_abort_task,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700373 .eh_device_reset_handler = tcm_loop_device_reset,
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200374 .eh_target_reset_handler = tcm_loop_target_reset,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500375 .can_queue = 1024,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700376 .this_id = -1,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500377 .sg_tablesize = 256,
378 .cmd_per_lun = 1024,
379 .max_sectors = 0xFFFF,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700380 .use_clustering = DISABLE_CLUSTERING,
381 .slave_alloc = tcm_loop_slave_alloc,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700382 .module = THIS_MODULE,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +0100383 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100384 .track_queue_depth = 1,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700385};
386
387static int tcm_loop_driver_probe(struct device *dev)
388{
389 struct tcm_loop_hba *tl_hba;
390 struct Scsi_Host *sh;
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000391 int error, host_prot;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700392
393 tl_hba = to_tcm_loop_hba(dev);
394
395 sh = scsi_host_alloc(&tcm_loop_driver_template,
396 sizeof(struct tcm_loop_hba));
397 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700398 pr_err("Unable to allocate struct scsi_host\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700399 return -ENODEV;
400 }
401 tl_hba->sh = sh;
402
403 /*
404 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
405 */
406 *((struct tcm_loop_hba **)sh->hostdata) = tl_hba;
407 /*
408 * Setup single ID, Channel and LUN for now..
409 */
410 sh->max_id = 2;
411 sh->max_lun = 0;
412 sh->max_channel = 0;
413 sh->max_cmd_len = TL_SCSI_MAX_CMD_LEN;
414
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000415 host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
416 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
417 SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;
418
419 scsi_host_set_prot(sh, host_prot);
420 scsi_host_set_guard(sh, SHOST_DIX_GUARD_CRC);
421
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700422 error = scsi_add_host(sh, &tl_hba->dev);
423 if (error) {
Andy Grover6708bb22011-06-08 10:36:43 -0700424 pr_err("%s: scsi_add_host failed\n", __func__);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700425 scsi_host_put(sh);
426 return -ENODEV;
427 }
428 return 0;
429}
430
431static int tcm_loop_driver_remove(struct device *dev)
432{
433 struct tcm_loop_hba *tl_hba;
434 struct Scsi_Host *sh;
435
436 tl_hba = to_tcm_loop_hba(dev);
437 sh = tl_hba->sh;
438
439 scsi_remove_host(sh);
440 scsi_host_put(sh);
441 return 0;
442}
443
444static void tcm_loop_release_adapter(struct device *dev)
445{
446 struct tcm_loop_hba *tl_hba = to_tcm_loop_hba(dev);
447
448 kfree(tl_hba);
449}
450
451/*
452 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
453 */
454static int tcm_loop_setup_hba_bus(struct tcm_loop_hba *tl_hba, int tcm_loop_host_id)
455{
456 int ret;
457
458 tl_hba->dev.bus = &tcm_loop_lld_bus;
459 tl_hba->dev.parent = tcm_loop_primary;
460 tl_hba->dev.release = &tcm_loop_release_adapter;
461 dev_set_name(&tl_hba->dev, "tcm_loop_adapter_%d", tcm_loop_host_id);
462
463 ret = device_register(&tl_hba->dev);
464 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700465 pr_err("device_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700466 " tl_hba->dev: %d\n", ret);
467 return -ENODEV;
468 }
469
470 return 0;
471}
472
473/*
474 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
475 * tcm_loop SCSI bus.
476 */
477static int tcm_loop_alloc_core_bus(void)
478{
479 int ret;
480
481 tcm_loop_primary = root_device_register("tcm_loop_0");
482 if (IS_ERR(tcm_loop_primary)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700483 pr_err("Unable to allocate tcm_loop_primary\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700484 return PTR_ERR(tcm_loop_primary);
485 }
486
487 ret = bus_register(&tcm_loop_lld_bus);
488 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700489 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700490 goto dev_unreg;
491 }
492
493 ret = driver_register(&tcm_loop_driverfs);
494 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700495 pr_err("driver_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700496 "tcm_loop_driverfs\n");
497 goto bus_unreg;
498 }
499
Andy Grover6708bb22011-06-08 10:36:43 -0700500 pr_debug("Initialized TCM Loop Core Bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700501 return ret;
502
503bus_unreg:
504 bus_unregister(&tcm_loop_lld_bus);
505dev_unreg:
506 root_device_unregister(tcm_loop_primary);
507 return ret;
508}
509
510static void tcm_loop_release_core_bus(void)
511{
512 driver_unregister(&tcm_loop_driverfs);
513 bus_unregister(&tcm_loop_lld_bus);
514 root_device_unregister(tcm_loop_primary);
515
Andy Grover6708bb22011-06-08 10:36:43 -0700516 pr_debug("Releasing TCM Loop Core BUS\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700517}
518
519static char *tcm_loop_get_fabric_name(void)
520{
521 return "loopback";
522}
523
524static u8 tcm_loop_get_fabric_proto_ident(struct se_portal_group *se_tpg)
525{
Jörn Engel8359cf42011-11-24 02:05:51 +0100526 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700527 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
528 /*
529 * tl_proto_id is set at tcm_loop_configfs.c:tcm_loop_make_scsi_hba()
530 * time based on the protocol dependent prefix of the passed configfs group.
531 *
532 * Based upon tl_proto_id, TCM_Loop emulates the requested fabric
533 * ProtocolID using target_core_fabric_lib.c symbols.
534 */
535 switch (tl_hba->tl_proto_id) {
536 case SCSI_PROTOCOL_SAS:
537 return sas_get_fabric_proto_ident(se_tpg);
538 case SCSI_PROTOCOL_FCP:
539 return fc_get_fabric_proto_ident(se_tpg);
540 case SCSI_PROTOCOL_ISCSI:
541 return iscsi_get_fabric_proto_ident(se_tpg);
542 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700543 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700544 " SAS emulation\n", tl_hba->tl_proto_id);
545 break;
546 }
547
548 return sas_get_fabric_proto_ident(se_tpg);
549}
550
551static char *tcm_loop_get_endpoint_wwn(struct se_portal_group *se_tpg)
552{
Jörn Engel8359cf42011-11-24 02:05:51 +0100553 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700554 /*
555 * Return the passed NAA identifier for the SAS Target Port
556 */
557 return &tl_tpg->tl_hba->tl_wwn_address[0];
558}
559
560static u16 tcm_loop_get_tag(struct se_portal_group *se_tpg)
561{
Jörn Engel8359cf42011-11-24 02:05:51 +0100562 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700563 /*
564 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
565 * to represent the SCSI Target Port.
566 */
567 return tl_tpg->tl_tpgt;
568}
569
570static u32 tcm_loop_get_default_depth(struct se_portal_group *se_tpg)
571{
572 return 1;
573}
574
575static u32 tcm_loop_get_pr_transport_id(
576 struct se_portal_group *se_tpg,
577 struct se_node_acl *se_nacl,
578 struct t10_pr_registration *pr_reg,
579 int *format_code,
580 unsigned char *buf)
581{
Jörn Engel8359cf42011-11-24 02:05:51 +0100582 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700583 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
584
585 switch (tl_hba->tl_proto_id) {
586 case SCSI_PROTOCOL_SAS:
587 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
588 format_code, buf);
589 case SCSI_PROTOCOL_FCP:
590 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
591 format_code, buf);
592 case SCSI_PROTOCOL_ISCSI:
593 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
594 format_code, buf);
595 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700596 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700597 " SAS emulation\n", tl_hba->tl_proto_id);
598 break;
599 }
600
601 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
602 format_code, buf);
603}
604
605static u32 tcm_loop_get_pr_transport_id_len(
606 struct se_portal_group *se_tpg,
607 struct se_node_acl *se_nacl,
608 struct t10_pr_registration *pr_reg,
609 int *format_code)
610{
Jörn Engel8359cf42011-11-24 02:05:51 +0100611 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700612 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
613
614 switch (tl_hba->tl_proto_id) {
615 case SCSI_PROTOCOL_SAS:
616 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
617 format_code);
618 case SCSI_PROTOCOL_FCP:
619 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
620 format_code);
621 case SCSI_PROTOCOL_ISCSI:
622 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
623 format_code);
624 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700625 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700626 " SAS emulation\n", tl_hba->tl_proto_id);
627 break;
628 }
629
630 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
631 format_code);
632}
633
634/*
635 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
636 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
637 */
638static char *tcm_loop_parse_pr_out_transport_id(
639 struct se_portal_group *se_tpg,
640 const char *buf,
641 u32 *out_tid_len,
642 char **port_nexus_ptr)
643{
Jörn Engel8359cf42011-11-24 02:05:51 +0100644 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700645 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
646
647 switch (tl_hba->tl_proto_id) {
648 case SCSI_PROTOCOL_SAS:
649 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
650 port_nexus_ptr);
651 case SCSI_PROTOCOL_FCP:
652 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
653 port_nexus_ptr);
654 case SCSI_PROTOCOL_ISCSI:
655 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
656 port_nexus_ptr);
657 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700658 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700659 " SAS emulation\n", tl_hba->tl_proto_id);
660 break;
661 }
662
663 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
664 port_nexus_ptr);
665}
666
667/*
668 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
669 * based upon the incoming fabric dependent SCSI Initiator Port
670 */
671static int tcm_loop_check_demo_mode(struct se_portal_group *se_tpg)
672{
673 return 1;
674}
675
676static int tcm_loop_check_demo_mode_cache(struct se_portal_group *se_tpg)
677{
678 return 0;
679}
680
681/*
682 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
683 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
684 */
685static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group *se_tpg)
686{
687 return 0;
688}
689
690/*
691 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
692 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
693 * It has been added here as a nop for target_fabric_tf_ops_check()
694 */
695static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group *se_tpg)
696{
697 return 0;
698}
699
700static struct se_node_acl *tcm_loop_tpg_alloc_fabric_acl(
701 struct se_portal_group *se_tpg)
702{
703 struct tcm_loop_nacl *tl_nacl;
704
705 tl_nacl = kzalloc(sizeof(struct tcm_loop_nacl), GFP_KERNEL);
706 if (!tl_nacl) {
Andy Grover6708bb22011-06-08 10:36:43 -0700707 pr_err("Unable to allocate struct tcm_loop_nacl\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700708 return NULL;
709 }
710
711 return &tl_nacl->se_node_acl;
712}
713
714static void tcm_loop_tpg_release_fabric_acl(
715 struct se_portal_group *se_tpg,
716 struct se_node_acl *se_nacl)
717{
718 struct tcm_loop_nacl *tl_nacl = container_of(se_nacl,
719 struct tcm_loop_nacl, se_node_acl);
720
721 kfree(tl_nacl);
722}
723
724static u32 tcm_loop_get_inst_index(struct se_portal_group *se_tpg)
725{
726 return 1;
727}
728
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700729static u32 tcm_loop_sess_get_index(struct se_session *se_sess)
730{
731 return 1;
732}
733
734static void tcm_loop_set_default_node_attributes(struct se_node_acl *se_acl)
735{
736 return;
737}
738
739static u32 tcm_loop_get_task_tag(struct se_cmd *se_cmd)
740{
Hannes Reinecke969871c2013-10-16 09:12:55 +0200741 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
742 struct tcm_loop_cmd, tl_se_cmd);
743
744 return tl_cmd->sc_cmd_tag;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700745}
746
747static int tcm_loop_get_cmd_state(struct se_cmd *se_cmd)
748{
749 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
750 struct tcm_loop_cmd, tl_se_cmd);
751
752 return tl_cmd->sc_cmd_state;
753}
754
755static int tcm_loop_shutdown_session(struct se_session *se_sess)
756{
757 return 0;
758}
759
760static void tcm_loop_close_session(struct se_session *se_sess)
761{
762 return;
763};
764
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700765static int tcm_loop_write_pending(struct se_cmd *se_cmd)
766{
767 /*
768 * Since Linux/SCSI has already sent down a struct scsi_cmnd
769 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
770 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
771 * format with transport_generic_map_mem_to_cmd().
772 *
773 * We now tell TCM to add this WRITE CDB directly into the TCM storage
774 * object execution queue.
775 */
Christoph Hellwig70baf0a2012-07-08 15:58:39 -0400776 target_execute_cmd(se_cmd);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700777 return 0;
778}
779
780static int tcm_loop_write_pending_status(struct se_cmd *se_cmd)
781{
782 return 0;
783}
784
785static int tcm_loop_queue_data_in(struct se_cmd *se_cmd)
786{
787 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
788 struct tcm_loop_cmd, tl_se_cmd);
789 struct scsi_cmnd *sc = tl_cmd->sc;
790
Andy Grover6708bb22011-06-08 10:36:43 -0700791 pr_debug("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700792 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
793
794 sc->result = SAM_STAT_GOOD;
795 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800796 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
797 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
798 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700799 sc->scsi_done(sc);
800 return 0;
801}
802
803static int tcm_loop_queue_status(struct se_cmd *se_cmd)
804{
805 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
806 struct tcm_loop_cmd, tl_se_cmd);
807 struct scsi_cmnd *sc = tl_cmd->sc;
808
Andy Grover6708bb22011-06-08 10:36:43 -0700809 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700810 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
811
812 if (se_cmd->sense_buffer &&
813 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
814 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
815
Andy Grover5951146d2011-07-19 10:26:37 +0000816 memcpy(sc->sense_buffer, se_cmd->sense_buffer,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700817 SCSI_SENSE_BUFFERSIZE);
818 sc->result = SAM_STAT_CHECK_CONDITION;
819 set_driver_byte(sc, DRIVER_SENSE);
820 } else
821 sc->result = se_cmd->scsi_status;
822
823 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800824 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
825 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
826 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700827 sc->scsi_done(sc);
828 return 0;
829}
830
Joern Engelb79fafa2013-07-03 11:22:17 -0400831static void tcm_loop_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700832{
833 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
834 struct tcm_loop_tmr *tl_tmr = se_tmr->fabric_tmr_ptr;
835 /*
836 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
837 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
838 */
839 atomic_set(&tl_tmr->tmr_complete, 1);
840 wake_up(&tl_tmr->tl_tmr_wait);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700841}
842
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700843static void tcm_loop_aborted_task(struct se_cmd *se_cmd)
844{
845 return;
846}
847
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700848static char *tcm_loop_dump_proto_id(struct tcm_loop_hba *tl_hba)
849{
850 switch (tl_hba->tl_proto_id) {
851 case SCSI_PROTOCOL_SAS:
852 return "SAS";
853 case SCSI_PROTOCOL_FCP:
854 return "FCP";
855 case SCSI_PROTOCOL_ISCSI:
856 return "iSCSI";
857 default:
858 break;
859 }
860
861 return "Unknown";
862}
863
864/* Start items for tcm_loop_port_cit */
865
866static int tcm_loop_port_link(
867 struct se_portal_group *se_tpg,
868 struct se_lun *lun)
869{
870 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
871 struct tcm_loop_tpg, tl_se_tpg);
872 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
873
Joern Engel33940d02014-09-16 16:23:12 -0400874 atomic_inc_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700875 /*
876 * Add Linux/SCSI struct scsi_device by HCTL
877 */
878 scsi_add_device(tl_hba->sh, 0, tl_tpg->tl_tpgt, lun->unpacked_lun);
879
Andy Grover6708bb22011-06-08 10:36:43 -0700880 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700881 return 0;
882}
883
884static void tcm_loop_port_unlink(
885 struct se_portal_group *se_tpg,
886 struct se_lun *se_lun)
887{
888 struct scsi_device *sd;
889 struct tcm_loop_hba *tl_hba;
890 struct tcm_loop_tpg *tl_tpg;
891
892 tl_tpg = container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
893 tl_hba = tl_tpg->tl_hba;
894
895 sd = scsi_device_lookup(tl_hba->sh, 0, tl_tpg->tl_tpgt,
896 se_lun->unpacked_lun);
897 if (!sd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700898 pr_err("Unable to locate struct scsi_device for %d:%d:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700899 "%d\n", 0, tl_tpg->tl_tpgt, se_lun->unpacked_lun);
900 return;
901 }
902 /*
903 * Remove Linux/SCSI struct scsi_device by HCTL
904 */
905 scsi_remove_device(sd);
906 scsi_device_put(sd);
907
Joern Engel33940d02014-09-16 16:23:12 -0400908 atomic_dec_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700909
Andy Grover6708bb22011-06-08 10:36:43 -0700910 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700911}
912
913/* End items for tcm_loop_port_cit */
914
915/* Start items for tcm_loop_nexus_cit */
916
917static int tcm_loop_make_nexus(
918 struct tcm_loop_tpg *tl_tpg,
919 const char *name)
920{
921 struct se_portal_group *se_tpg;
922 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
923 struct tcm_loop_nexus *tl_nexus;
Dan Carpenter552523d2011-06-15 09:41:33 -0700924 int ret = -ENOMEM;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700925
Hannes Reinecke506787a2014-11-26 14:58:57 +0100926 if (tl_tpg->tl_nexus) {
927 pr_debug("tl_tpg->tl_nexus already exists\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700928 return -EEXIST;
929 }
930 se_tpg = &tl_tpg->tl_se_tpg;
931
932 tl_nexus = kzalloc(sizeof(struct tcm_loop_nexus), GFP_KERNEL);
933 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700934 pr_err("Unable to allocate struct tcm_loop_nexus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700935 return -ENOMEM;
936 }
937 /*
938 * Initialize the struct se_session pointer
939 */
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700940 tl_nexus->se_sess = transport_init_session(TARGET_PROT_ALL);
Dan Carpenter552523d2011-06-15 09:41:33 -0700941 if (IS_ERR(tl_nexus->se_sess)) {
942 ret = PTR_ERR(tl_nexus->se_sess);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700943 goto out;
Dan Carpenter552523d2011-06-15 09:41:33 -0700944 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700945 /*
946 * Since we are running in 'demo mode' this call with generate a
947 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
948 * Initiator port name of the passed configfs group 'name'.
949 */
950 tl_nexus->se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
951 se_tpg, (unsigned char *)name);
952 if (!tl_nexus->se_sess->se_node_acl) {
953 transport_free_session(tl_nexus->se_sess);
954 goto out;
955 }
956 /*
957 * Now, register the SAS I_T Nexus as active with the call to
958 * transport_register_session()
959 */
960 __transport_register_session(se_tpg, tl_nexus->se_sess->se_node_acl,
Andy Grover5951146d2011-07-19 10:26:37 +0000961 tl_nexus->se_sess, tl_nexus);
Hannes Reinecke506787a2014-11-26 14:58:57 +0100962 tl_tpg->tl_nexus = tl_nexus;
Andy Grover6708bb22011-06-08 10:36:43 -0700963 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700964 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
965 name);
966 return 0;
967
968out:
969 kfree(tl_nexus);
Dan Carpenter552523d2011-06-15 09:41:33 -0700970 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700971}
972
973static int tcm_loop_drop_nexus(
974 struct tcm_loop_tpg *tpg)
975{
976 struct se_session *se_sess;
977 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700978
Hannes Reinecke506787a2014-11-26 14:58:57 +0100979 tl_nexus = tpg->tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700980 if (!tl_nexus)
981 return -ENODEV;
982
983 se_sess = tl_nexus->se_sess;
984 if (!se_sess)
985 return -ENODEV;
986
987 if (atomic_read(&tpg->tl_tpg_port_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700988 pr_err("Unable to remove TCM_Loop I_T Nexus with"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700989 " active TPG port count: %d\n",
990 atomic_read(&tpg->tl_tpg_port_count));
991 return -EPERM;
992 }
993
Andy Grover6708bb22011-06-08 10:36:43 -0700994 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
Hannes Reinecke506787a2014-11-26 14:58:57 +0100995 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tpg->tl_hba),
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700996 tl_nexus->se_sess->se_node_acl->initiatorname);
997 /*
998 * Release the SCSI I_T Nexus to the emulated SAS Target Port
999 */
1000 transport_deregister_session(tl_nexus->se_sess);
Hannes Reinecke506787a2014-11-26 14:58:57 +01001001 tpg->tl_nexus = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001002 kfree(tl_nexus);
1003 return 0;
1004}
1005
1006/* End items for tcm_loop_nexus_cit */
1007
1008static ssize_t tcm_loop_tpg_show_nexus(
1009 struct se_portal_group *se_tpg,
1010 char *page)
1011{
1012 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1013 struct tcm_loop_tpg, tl_se_tpg);
1014 struct tcm_loop_nexus *tl_nexus;
1015 ssize_t ret;
1016
Hannes Reinecke506787a2014-11-26 14:58:57 +01001017 tl_nexus = tl_tpg->tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001018 if (!tl_nexus)
1019 return -ENODEV;
1020
1021 ret = snprintf(page, PAGE_SIZE, "%s\n",
1022 tl_nexus->se_sess->se_node_acl->initiatorname);
1023
1024 return ret;
1025}
1026
1027static ssize_t tcm_loop_tpg_store_nexus(
1028 struct se_portal_group *se_tpg,
1029 const char *page,
1030 size_t count)
1031{
1032 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1033 struct tcm_loop_tpg, tl_se_tpg);
1034 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
1035 unsigned char i_port[TL_WWN_ADDR_LEN], *ptr, *port_ptr;
1036 int ret;
1037 /*
1038 * Shutdown the active I_T nexus if 'NULL' is passed..
1039 */
1040 if (!strncmp(page, "NULL", 4)) {
1041 ret = tcm_loop_drop_nexus(tl_tpg);
1042 return (!ret) ? count : ret;
1043 }
1044 /*
1045 * Otherwise make sure the passed virtual Initiator port WWN matches
1046 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1047 * tcm_loop_make_nexus()
1048 */
Dan Carpenter60d645a2011-06-15 10:03:05 -07001049 if (strlen(page) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001050 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001051 " max: %d\n", page, TL_WWN_ADDR_LEN);
1052 return -EINVAL;
1053 }
1054 snprintf(&i_port[0], TL_WWN_ADDR_LEN, "%s", page);
1055
1056 ptr = strstr(i_port, "naa.");
1057 if (ptr) {
1058 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_SAS) {
Andy Grover6708bb22011-06-08 10:36:43 -07001059 pr_err("Passed SAS Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001060 " match target port protoid: %s\n", i_port,
1061 tcm_loop_dump_proto_id(tl_hba));
1062 return -EINVAL;
1063 }
1064 port_ptr = &i_port[0];
1065 goto check_newline;
1066 }
1067 ptr = strstr(i_port, "fc.");
1068 if (ptr) {
1069 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_FCP) {
Andy Grover6708bb22011-06-08 10:36:43 -07001070 pr_err("Passed FCP Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001071 " match target port protoid: %s\n", i_port,
1072 tcm_loop_dump_proto_id(tl_hba));
1073 return -EINVAL;
1074 }
1075 port_ptr = &i_port[3]; /* Skip over "fc." */
1076 goto check_newline;
1077 }
1078 ptr = strstr(i_port, "iqn.");
1079 if (ptr) {
1080 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_ISCSI) {
Andy Grover6708bb22011-06-08 10:36:43 -07001081 pr_err("Passed iSCSI Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001082 " match target port protoid: %s\n", i_port,
1083 tcm_loop_dump_proto_id(tl_hba));
1084 return -EINVAL;
1085 }
1086 port_ptr = &i_port[0];
1087 goto check_newline;
1088 }
Andy Grover6708bb22011-06-08 10:36:43 -07001089 pr_err("Unable to locate prefix for emulated Initiator Port:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001090 " %s\n", i_port);
1091 return -EINVAL;
1092 /*
1093 * Clear any trailing newline for the NAA WWN
1094 */
1095check_newline:
1096 if (i_port[strlen(i_port)-1] == '\n')
1097 i_port[strlen(i_port)-1] = '\0';
1098
1099 ret = tcm_loop_make_nexus(tl_tpg, port_ptr);
1100 if (ret < 0)
1101 return ret;
1102
1103 return count;
1104}
1105
1106TF_TPG_BASE_ATTR(tcm_loop, nexus, S_IRUGO | S_IWUSR);
1107
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001108static ssize_t tcm_loop_tpg_show_transport_status(
1109 struct se_portal_group *se_tpg,
1110 char *page)
1111{
1112 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1113 struct tcm_loop_tpg, tl_se_tpg);
1114 const char *status = NULL;
1115 ssize_t ret = -EINVAL;
1116
1117 switch (tl_tpg->tl_transport_status) {
1118 case TCM_TRANSPORT_ONLINE:
1119 status = "online";
1120 break;
1121 case TCM_TRANSPORT_OFFLINE:
1122 status = "offline";
1123 break;
1124 default:
1125 break;
1126 }
1127
1128 if (status)
1129 ret = snprintf(page, PAGE_SIZE, "%s\n", status);
1130
1131 return ret;
1132}
1133
1134static ssize_t tcm_loop_tpg_store_transport_status(
1135 struct se_portal_group *se_tpg,
1136 const char *page,
1137 size_t count)
1138{
1139 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1140 struct tcm_loop_tpg, tl_se_tpg);
1141
1142 if (!strncmp(page, "online", 6)) {
1143 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
1144 return count;
1145 }
1146 if (!strncmp(page, "offline", 7)) {
1147 tl_tpg->tl_transport_status = TCM_TRANSPORT_OFFLINE;
1148 return count;
1149 }
1150 return -EINVAL;
1151}
1152
1153TF_TPG_BASE_ATTR(tcm_loop, transport_status, S_IRUGO | S_IWUSR);
1154
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001155static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
1156 &tcm_loop_tpg_nexus.attr,
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001157 &tcm_loop_tpg_transport_status.attr,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001158 NULL,
1159};
1160
1161/* Start items for tcm_loop_naa_cit */
1162
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301163static struct se_portal_group *tcm_loop_make_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001164 struct se_wwn *wwn,
1165 struct config_group *group,
1166 const char *name)
1167{
1168 struct tcm_loop_hba *tl_hba = container_of(wwn,
1169 struct tcm_loop_hba, tl_hba_wwn);
1170 struct tcm_loop_tpg *tl_tpg;
1171 char *tpgt_str, *end_ptr;
1172 int ret;
1173 unsigned short int tpgt;
1174
1175 tpgt_str = strstr(name, "tpgt_");
1176 if (!tpgt_str) {
Andy Grover6708bb22011-06-08 10:36:43 -07001177 pr_err("Unable to locate \"tpgt_#\" directory"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001178 " group\n");
1179 return ERR_PTR(-EINVAL);
1180 }
1181 tpgt_str += 5; /* Skip ahead of "tpgt_" */
1182 tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
1183
Dan Carpenter12f09cc2011-04-02 14:32:47 -07001184 if (tpgt >= TL_TPGS_PER_HBA) {
Andy Grover6708bb22011-06-08 10:36:43 -07001185 pr_err("Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001186 " %u\n", tpgt, TL_TPGS_PER_HBA);
1187 return ERR_PTR(-EINVAL);
1188 }
1189 tl_tpg = &tl_hba->tl_hba_tpgs[tpgt];
1190 tl_tpg->tl_hba = tl_hba;
1191 tl_tpg->tl_tpgt = tpgt;
1192 /*
1193 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1194 */
1195 ret = core_tpg_register(&tcm_loop_fabric_configfs->tf_ops,
Andy Grover5951146d2011-07-19 10:26:37 +00001196 wwn, &tl_tpg->tl_se_tpg, tl_tpg,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001197 TRANSPORT_TPG_TYPE_NORMAL);
1198 if (ret < 0)
1199 return ERR_PTR(-ENOMEM);
1200
Andy Grover6708bb22011-06-08 10:36:43 -07001201 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001202 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1203 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1204
1205 return &tl_tpg->tl_se_tpg;
1206}
1207
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301208static void tcm_loop_drop_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001209 struct se_portal_group *se_tpg)
1210{
1211 struct se_wwn *wwn = se_tpg->se_tpg_wwn;
1212 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1213 struct tcm_loop_tpg, tl_se_tpg);
1214 struct tcm_loop_hba *tl_hba;
1215 unsigned short tpgt;
1216
1217 tl_hba = tl_tpg->tl_hba;
1218 tpgt = tl_tpg->tl_tpgt;
1219 /*
1220 * Release the I_T Nexus for the Virtual SAS link if present
1221 */
1222 tcm_loop_drop_nexus(tl_tpg);
1223 /*
1224 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1225 */
1226 core_tpg_deregister(se_tpg);
1227
Nicholas Bellinger0a020432011-10-10 19:44:05 -07001228 tl_tpg->tl_hba = NULL;
1229 tl_tpg->tl_tpgt = 0;
1230
Andy Grover6708bb22011-06-08 10:36:43 -07001231 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001232 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1233 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1234}
1235
1236/* End items for tcm_loop_naa_cit */
1237
1238/* Start items for tcm_loop_cit */
1239
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301240static struct se_wwn *tcm_loop_make_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001241 struct target_fabric_configfs *tf,
1242 struct config_group *group,
1243 const char *name)
1244{
1245 struct tcm_loop_hba *tl_hba;
1246 struct Scsi_Host *sh;
1247 char *ptr;
1248 int ret, off = 0;
1249
1250 tl_hba = kzalloc(sizeof(struct tcm_loop_hba), GFP_KERNEL);
1251 if (!tl_hba) {
Andy Grover6708bb22011-06-08 10:36:43 -07001252 pr_err("Unable to allocate struct tcm_loop_hba\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001253 return ERR_PTR(-ENOMEM);
1254 }
1255 /*
1256 * Determine the emulated Protocol Identifier and Target Port Name
1257 * based on the incoming configfs directory name.
1258 */
1259 ptr = strstr(name, "naa.");
1260 if (ptr) {
1261 tl_hba->tl_proto_id = SCSI_PROTOCOL_SAS;
1262 goto check_len;
1263 }
1264 ptr = strstr(name, "fc.");
1265 if (ptr) {
1266 tl_hba->tl_proto_id = SCSI_PROTOCOL_FCP;
1267 off = 3; /* Skip over "fc." */
1268 goto check_len;
1269 }
1270 ptr = strstr(name, "iqn.");
Jesper Juhla57b5d32011-06-28 00:30:17 +02001271 if (!ptr) {
Andy Grover6708bb22011-06-08 10:36:43 -07001272 pr_err("Unable to locate prefix for emulated Target "
Jesper Juhla57b5d32011-06-28 00:30:17 +02001273 "Port: %s\n", name);
1274 ret = -EINVAL;
1275 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001276 }
Jesper Juhla57b5d32011-06-28 00:30:17 +02001277 tl_hba->tl_proto_id = SCSI_PROTOCOL_ISCSI;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001278
1279check_len:
Dan Carpenter60d645a2011-06-15 10:03:05 -07001280 if (strlen(name) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001281 pr_err("Emulated NAA %s Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001282 " max: %d\n", name, tcm_loop_dump_proto_id(tl_hba),
1283 TL_WWN_ADDR_LEN);
Jesper Juhla57b5d32011-06-28 00:30:17 +02001284 ret = -EINVAL;
1285 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001286 }
1287 snprintf(&tl_hba->tl_wwn_address[0], TL_WWN_ADDR_LEN, "%s", &name[off]);
1288
1289 /*
1290 * Call device_register(tl_hba->dev) to register the emulated
1291 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1292 * device_register() callbacks in tcm_loop_driver_probe()
1293 */
1294 ret = tcm_loop_setup_hba_bus(tl_hba, tcm_loop_hba_no_cnt);
1295 if (ret)
1296 goto out;
1297
1298 sh = tl_hba->sh;
1299 tcm_loop_hba_no_cnt++;
Andy Grover6708bb22011-06-08 10:36:43 -07001300 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001301 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1302 tcm_loop_dump_proto_id(tl_hba), name, sh->host_no);
1303
1304 return &tl_hba->tl_hba_wwn;
1305out:
1306 kfree(tl_hba);
1307 return ERR_PTR(ret);
1308}
1309
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301310static void tcm_loop_drop_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001311 struct se_wwn *wwn)
1312{
1313 struct tcm_loop_hba *tl_hba = container_of(wwn,
1314 struct tcm_loop_hba, tl_hba_wwn);
Nicholas Bellinger6297b072011-11-12 09:29:51 -08001315
1316 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1317 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1318 tl_hba->tl_wwn_address, tl_hba->sh->host_no);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001319 /*
1320 * Call device_unregister() on the original tl_hba->dev.
1321 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1322 * release *tl_hba;
1323 */
1324 device_unregister(&tl_hba->dev);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001325}
1326
1327/* Start items for tcm_loop_cit */
1328static ssize_t tcm_loop_wwn_show_attr_version(
1329 struct target_fabric_configfs *tf,
1330 char *page)
1331{
1332 return sprintf(page, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION);
1333}
1334
1335TF_WWN_ATTR_RO(tcm_loop, version);
1336
1337static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
1338 &tcm_loop_wwn_version.attr,
1339 NULL,
1340};
1341
1342/* End items for tcm_loop_cit */
1343
1344static int tcm_loop_register_configfs(void)
1345{
1346 struct target_fabric_configfs *fabric;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001347 int ret;
1348 /*
1349 * Set the TCM Loop HBA counter to zero
1350 */
1351 tcm_loop_hba_no_cnt = 0;
1352 /*
1353 * Register the top level struct config_item_type with TCM core
1354 */
1355 fabric = target_fabric_configfs_init(THIS_MODULE, "loopback");
Andy Grovere3d6f902011-07-19 08:55:10 +00001356 if (IS_ERR(fabric)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001357 pr_err("tcm_loop_register_configfs() failed!\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001358 return PTR_ERR(fabric);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001359 }
1360 /*
1361 * Setup the fabric API of function pointers used by target_core_mod
1362 */
1363 fabric->tf_ops.get_fabric_name = &tcm_loop_get_fabric_name;
1364 fabric->tf_ops.get_fabric_proto_ident = &tcm_loop_get_fabric_proto_ident;
1365 fabric->tf_ops.tpg_get_wwn = &tcm_loop_get_endpoint_wwn;
1366 fabric->tf_ops.tpg_get_tag = &tcm_loop_get_tag;
1367 fabric->tf_ops.tpg_get_default_depth = &tcm_loop_get_default_depth;
1368 fabric->tf_ops.tpg_get_pr_transport_id = &tcm_loop_get_pr_transport_id;
1369 fabric->tf_ops.tpg_get_pr_transport_id_len =
1370 &tcm_loop_get_pr_transport_id_len;
1371 fabric->tf_ops.tpg_parse_pr_out_transport_id =
1372 &tcm_loop_parse_pr_out_transport_id;
1373 fabric->tf_ops.tpg_check_demo_mode = &tcm_loop_check_demo_mode;
1374 fabric->tf_ops.tpg_check_demo_mode_cache =
1375 &tcm_loop_check_demo_mode_cache;
1376 fabric->tf_ops.tpg_check_demo_mode_write_protect =
1377 &tcm_loop_check_demo_mode_write_protect;
1378 fabric->tf_ops.tpg_check_prod_mode_write_protect =
1379 &tcm_loop_check_prod_mode_write_protect;
1380 /*
1381 * The TCM loopback fabric module runs in demo-mode to a local
1382 * virtual SCSI device, so fabric dependent initator ACLs are
1383 * not required.
1384 */
1385 fabric->tf_ops.tpg_alloc_fabric_acl = &tcm_loop_tpg_alloc_fabric_acl;
1386 fabric->tf_ops.tpg_release_fabric_acl =
1387 &tcm_loop_tpg_release_fabric_acl;
1388 fabric->tf_ops.tpg_get_inst_index = &tcm_loop_get_inst_index;
1389 /*
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001390 * Used for setting up remaining TCM resources in process context
1391 */
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001392 fabric->tf_ops.check_stop_free = &tcm_loop_check_stop_free;
Christoph Hellwig35462972011-05-31 23:56:57 -04001393 fabric->tf_ops.release_cmd = &tcm_loop_release_cmd;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001394 fabric->tf_ops.shutdown_session = &tcm_loop_shutdown_session;
1395 fabric->tf_ops.close_session = &tcm_loop_close_session;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001396 fabric->tf_ops.sess_get_index = &tcm_loop_sess_get_index;
1397 fabric->tf_ops.sess_get_initiator_sid = NULL;
1398 fabric->tf_ops.write_pending = &tcm_loop_write_pending;
1399 fabric->tf_ops.write_pending_status = &tcm_loop_write_pending_status;
1400 /*
1401 * Not used for TCM loopback
1402 */
1403 fabric->tf_ops.set_default_node_attributes =
1404 &tcm_loop_set_default_node_attributes;
1405 fabric->tf_ops.get_task_tag = &tcm_loop_get_task_tag;
1406 fabric->tf_ops.get_cmd_state = &tcm_loop_get_cmd_state;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001407 fabric->tf_ops.queue_data_in = &tcm_loop_queue_data_in;
1408 fabric->tf_ops.queue_status = &tcm_loop_queue_status;
1409 fabric->tf_ops.queue_tm_rsp = &tcm_loop_queue_tm_rsp;
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07001410 fabric->tf_ops.aborted_task = &tcm_loop_aborted_task;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001411
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001412 /*
1413 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1414 */
1415 fabric->tf_ops.fabric_make_wwn = &tcm_loop_make_scsi_hba;
1416 fabric->tf_ops.fabric_drop_wwn = &tcm_loop_drop_scsi_hba;
1417 fabric->tf_ops.fabric_make_tpg = &tcm_loop_make_naa_tpg;
1418 fabric->tf_ops.fabric_drop_tpg = &tcm_loop_drop_naa_tpg;
1419 /*
1420 * fabric_post_link() and fabric_pre_unlink() are used for
1421 * registration and release of TCM Loop Virtual SCSI LUNs.
1422 */
1423 fabric->tf_ops.fabric_post_link = &tcm_loop_port_link;
1424 fabric->tf_ops.fabric_pre_unlink = &tcm_loop_port_unlink;
1425 fabric->tf_ops.fabric_make_np = NULL;
1426 fabric->tf_ops.fabric_drop_np = NULL;
1427 /*
1428 * Setup default attribute lists for various fabric->tf_cit_tmpl
1429 */
Andy Groverd80e224d2013-10-09 11:05:56 -07001430 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = tcm_loop_wwn_attrs;
1431 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = tcm_loop_tpg_attrs;
1432 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
1433 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
1434 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001435 /*
1436 * Once fabric->tf_ops has been setup, now register the fabric for
1437 * use within TCM
1438 */
1439 ret = target_fabric_configfs_register(fabric);
1440 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001441 pr_err("target_fabric_configfs_register() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001442 " TCM_Loop failed!\n");
1443 target_fabric_configfs_free(fabric);
1444 return -1;
1445 }
1446 /*
1447 * Setup our local pointer to *fabric.
1448 */
1449 tcm_loop_fabric_configfs = fabric;
Andy Grover6708bb22011-06-08 10:36:43 -07001450 pr_debug("TCM_LOOP[0] - Set fabric ->"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001451 " tcm_loop_fabric_configfs\n");
1452 return 0;
1453}
1454
1455static void tcm_loop_deregister_configfs(void)
1456{
1457 if (!tcm_loop_fabric_configfs)
1458 return;
1459
1460 target_fabric_configfs_deregister(tcm_loop_fabric_configfs);
1461 tcm_loop_fabric_configfs = NULL;
Andy Grover6708bb22011-06-08 10:36:43 -07001462 pr_debug("TCM_LOOP[0] - Cleared"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001463 " tcm_loop_fabric_configfs\n");
1464}
1465
1466static int __init tcm_loop_fabric_init(void)
1467{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001468 int ret = -ENOMEM;
1469
1470 tcm_loop_workqueue = alloc_workqueue("tcm_loop", 0, 0);
1471 if (!tcm_loop_workqueue)
1472 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001473
1474 tcm_loop_cmd_cache = kmem_cache_create("tcm_loop_cmd_cache",
1475 sizeof(struct tcm_loop_cmd),
1476 __alignof__(struct tcm_loop_cmd),
1477 0, NULL);
1478 if (!tcm_loop_cmd_cache) {
Andy Grover6708bb22011-06-08 10:36:43 -07001479 pr_debug("kmem_cache_create() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001480 " tcm_loop_cmd_cache failed\n");
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001481 goto out_destroy_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001482 }
1483
1484 ret = tcm_loop_alloc_core_bus();
1485 if (ret)
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001486 goto out_destroy_cache;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001487
1488 ret = tcm_loop_register_configfs();
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001489 if (ret)
1490 goto out_release_core_bus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001491
1492 return 0;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001493
1494out_release_core_bus:
1495 tcm_loop_release_core_bus();
1496out_destroy_cache:
1497 kmem_cache_destroy(tcm_loop_cmd_cache);
1498out_destroy_workqueue:
1499 destroy_workqueue(tcm_loop_workqueue);
1500out:
1501 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001502}
1503
1504static void __exit tcm_loop_fabric_exit(void)
1505{
1506 tcm_loop_deregister_configfs();
1507 tcm_loop_release_core_bus();
1508 kmem_cache_destroy(tcm_loop_cmd_cache);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001509 destroy_workqueue(tcm_loop_workqueue);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001510}
1511
1512MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1513MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1514MODULE_LICENSE("GPL");
1515module_init(tcm_loop_fabric_init);
1516module_exit(tcm_loop_fabric_exit);