blob: 670b75a62243c59fc9129b4f1f119fd0d584202a [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
113/*
114 * Copied from drivers/scsi/libfc/fc_fcp.c:fc_change_queue_depth() and
115 * drivers/scsi/libiscsi.c:iscsi_change_queue_depth()
116 */
117static int tcm_loop_change_queue_depth(
118 struct scsi_device *sdev,
119 int depth,
120 int reason)
121{
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100122 scsi_adjust_queue_depth(sdev, depth);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700123 return sdev->queue_depth;
124}
125
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500126static void tcm_loop_submission_work(struct work_struct *work)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700127{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500128 struct tcm_loop_cmd *tl_cmd =
129 container_of(work, struct tcm_loop_cmd, work);
130 struct se_cmd *se_cmd = &tl_cmd->tl_se_cmd;
131 struct scsi_cmnd *sc = tl_cmd->sc;
132 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700133 struct tcm_loop_hba *tl_hba;
134 struct tcm_loop_tpg *tl_tpg;
Christoph Hellwig167864542012-02-02 17:04:42 -0500135 struct scatterlist *sgl_bidi = NULL;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300136 u32 sgl_bidi_count = 0, transfer_length;
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700137 int rc;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500138
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700139 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
140 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500141
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700142 /*
143 * Ensure that this tl_tpg reference from the incoming sc->device->id
144 * has already been configured via tcm_loop_make_naa_tpg().
145 */
146 if (!tl_tpg->tl_hba) {
147 set_host_byte(sc, DID_NO_CONNECT);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500148 goto out_done;
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700149 }
Hannes Reineckefb2b2842013-10-16 09:12:53 +0200150 if (tl_tpg->tl_transport_status == TCM_TRANSPORT_OFFLINE) {
151 set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
152 goto out_done;
153 }
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500154 tl_nexus = tl_hba->tl_nexus;
155 if (!tl_nexus) {
156 scmd_printk(KERN_ERR, sc, "TCM_Loop I_T Nexus"
157 " does not exist\n");
158 set_host_byte(sc, DID_ERROR);
159 goto out_done;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700160 }
Christoph Hellwig167864542012-02-02 17:04:42 -0500161 if (scsi_bidi_cmnd(sc)) {
162 struct scsi_data_buffer *sdb = scsi_in(sc);
163
164 sgl_bidi = sdb->table.sgl;
165 sgl_bidi_count = sdb->table.nents;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500166 se_cmd->se_cmd_flags |= SCF_BIDI;
167
Christoph Hellwig167864542012-02-02 17:04:42 -0500168 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200169
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300170 transfer_length = scsi_transfer_length(sc);
171 if (!scsi_prot_sg_count(sc) &&
172 scsi_get_prot_op(sc) != SCSI_PROT_NORMAL) {
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200173 se_cmd->prot_pto = true;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300174 /*
175 * loopback transport doesn't support
176 * WRITE_GENERATE, READ_STRIP protection
177 * information operations, go ahead unprotected.
178 */
179 transfer_length = scsi_bufflen(sc);
180 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200181
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700182 rc = target_submit_cmd_map_sgls(se_cmd, tl_nexus->se_sess, sc->cmnd,
183 &tl_cmd->tl_sense_buf[0], tl_cmd->sc->device->lun,
Christoph Hellwig609aa222014-10-30 11:54:58 +0100184 transfer_length, MSG_SIMPLE_TAG,
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700185 sc->sc_data_direction, 0,
186 scsi_sglist(sc), scsi_sg_count(sc),
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000187 sgl_bidi, sgl_bidi_count,
188 scsi_prot_sglist(sc), scsi_prot_sg_count(sc));
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700189 if (rc < 0) {
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500190 set_host_byte(sc, DID_NO_CONNECT);
191 goto out_done;
192 }
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500193 return;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500194
195out_done:
Nicholas Bellingerb43f1882014-06-17 22:23:03 +0000196 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500197 sc->scsi_done(sc);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500198 return;
199}
200
201/*
202 * ->queuecommand can be and usually is called from interrupt context, so
203 * defer the actual submission to a workqueue.
204 */
205static int tcm_loop_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *sc)
206{
207 struct tcm_loop_cmd *tl_cmd;
208
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200209 pr_debug("tcm_loop_queuecommand() %d:%d:%d:%llu got CDB: 0x%02x"
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500210 " scsi_buf_len: %u\n", sc->device->host->host_no,
211 sc->device->id, sc->device->channel, sc->device->lun,
212 sc->cmnd[0], scsi_bufflen(sc));
213
214 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_ATOMIC);
215 if (!tl_cmd) {
216 pr_err("Unable to allocate struct tcm_loop_cmd\n");
217 set_host_byte(sc, DID_ERROR);
218 sc->scsi_done(sc);
219 return 0;
220 }
221
222 tl_cmd->sc = sc;
Hannes Reinecke6375f892014-10-02 09:30:55 +0200223 tl_cmd->sc_cmd_tag = sc->request->tag;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500224 INIT_WORK(&tl_cmd->work, tcm_loop_submission_work);
225 queue_work(tcm_loop_workqueue, &tl_cmd->work);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500226 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700227}
228
229/*
230 * Called from SCSI EH process context to issue a LUN_RESET TMR
231 * to struct scsi_device
232 */
Hannes Reineckea314d702013-10-16 09:12:54 +0200233static int tcm_loop_issue_tmr(struct tcm_loop_tpg *tl_tpg,
234 struct tcm_loop_nexus *tl_nexus,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200235 int lun, int task, enum tcm_tmreq_table tmr)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700236{
237 struct se_cmd *se_cmd = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700238 struct se_session *se_sess;
Hannes Reineckea314d702013-10-16 09:12:54 +0200239 struct se_portal_group *se_tpg;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700240 struct tcm_loop_cmd *tl_cmd = NULL;
Hannes Reineckea314d702013-10-16 09:12:54 +0200241 struct tcm_loop_tmr *tl_tmr = NULL;
242 int ret = TMR_FUNCTION_FAILED, rc;
243
244 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_KERNEL);
245 if (!tl_cmd) {
246 pr_err("Unable to allocate memory for tl_cmd\n");
247 return ret;
248 }
249
250 tl_tmr = kzalloc(sizeof(struct tcm_loop_tmr), GFP_KERNEL);
251 if (!tl_tmr) {
252 pr_err("Unable to allocate memory for tl_tmr\n");
253 goto release;
254 }
255 init_waitqueue_head(&tl_tmr->tl_tmr_wait);
256
257 se_cmd = &tl_cmd->tl_se_cmd;
258 se_tpg = &tl_tpg->tl_se_tpg;
259 se_sess = tl_nexus->se_sess;
260 /*
261 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
262 */
263 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess, 0,
264 DMA_NONE, MSG_SIMPLE_TAG,
265 &tl_cmd->tl_sense_buf[0]);
266
267 rc = core_tmr_alloc_req(se_cmd, tl_tmr, tmr, GFP_KERNEL);
268 if (rc < 0)
269 goto release;
270
Hannes Reinecke969871c2013-10-16 09:12:55 +0200271 if (tmr == TMR_ABORT_TASK)
272 se_cmd->se_tmr_req->ref_task_tag = task;
273
Hannes Reineckea314d702013-10-16 09:12:54 +0200274 /*
275 * Locate the underlying TCM struct se_lun
276 */
277 if (transport_lookup_tmr_lun(se_cmd, lun) < 0) {
278 ret = TMR_LUN_DOES_NOT_EXIST;
279 goto release;
280 }
281 /*
282 * Queue the TMR to TCM Core and sleep waiting for
283 * tcm_loop_queue_tm_rsp() to wake us up.
284 */
285 transport_generic_handle_tmr(se_cmd);
286 wait_event(tl_tmr->tl_tmr_wait, atomic_read(&tl_tmr->tmr_complete));
287 /*
288 * The TMR LUN_RESET has completed, check the response status and
289 * then release allocations.
290 */
291 ret = se_cmd->se_tmr_req->response;
292release:
293 if (se_cmd)
294 transport_generic_free_cmd(se_cmd, 1);
295 else
296 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
297 kfree(tl_tmr);
298 return ret;
299}
300
Hannes Reinecke969871c2013-10-16 09:12:55 +0200301static int tcm_loop_abort_task(struct scsi_cmnd *sc)
302{
303 struct tcm_loop_hba *tl_hba;
304 struct tcm_loop_nexus *tl_nexus;
305 struct tcm_loop_tpg *tl_tpg;
306 int ret = FAILED;
307
308 /*
309 * Locate the tcm_loop_hba_t pointer
310 */
311 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
312 /*
313 * Locate the tl_nexus and se_sess pointers
314 */
315 tl_nexus = tl_hba->tl_nexus;
316 if (!tl_nexus) {
317 pr_err("Unable to perform device reset without"
318 " active I_T Nexus\n");
319 return FAILED;
320 }
321
322 /*
323 * Locate the tl_tpg pointer from TargetID in sc->device->id
324 */
325 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
326 ret = tcm_loop_issue_tmr(tl_tpg, tl_nexus, sc->device->lun,
Hannes Reinecke6375f892014-10-02 09:30:55 +0200327 sc->request->tag, TMR_ABORT_TASK);
Hannes Reinecke969871c2013-10-16 09:12:55 +0200328 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
329}
330
Hannes Reineckea314d702013-10-16 09:12:54 +0200331/*
332 * Called from SCSI EH process context to issue a LUN_RESET TMR
333 * to struct scsi_device
334 */
335static int tcm_loop_device_reset(struct scsi_cmnd *sc)
336{
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700337 struct tcm_loop_hba *tl_hba;
338 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700339 struct tcm_loop_tpg *tl_tpg;
Hannes Reineckea314d702013-10-16 09:12:54 +0200340 int ret = FAILED;
341
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700342 /*
343 * Locate the tcm_loop_hba_t pointer
344 */
345 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
346 /*
347 * Locate the tl_nexus and se_sess pointers
348 */
349 tl_nexus = tl_hba->tl_nexus;
350 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700351 pr_err("Unable to perform device reset without"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700352 " active I_T Nexus\n");
353 return FAILED;
354 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700355 /*
Hannes Reineckea314d702013-10-16 09:12:54 +0200356 * Locate the tl_tpg pointer from TargetID in sc->device->id
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700357 */
358 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Hannes Reinecke969871c2013-10-16 09:12:55 +0200359 ret = tcm_loop_issue_tmr(tl_tpg, tl_nexus, sc->device->lun,
360 0, TMR_LUN_RESET);
Hannes Reineckea314d702013-10-16 09:12:54 +0200361 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700362}
363
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200364static int tcm_loop_target_reset(struct scsi_cmnd *sc)
365{
366 struct tcm_loop_hba *tl_hba;
367 struct tcm_loop_tpg *tl_tpg;
368
369 /*
370 * Locate the tcm_loop_hba_t pointer
371 */
372 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
373 if (!tl_hba) {
374 pr_err("Unable to perform device reset without"
375 " active I_T Nexus\n");
376 return FAILED;
377 }
378 /*
379 * Locate the tl_tpg pointer from TargetID in sc->device->id
380 */
381 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
382 if (tl_tpg) {
383 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
384 return SUCCESS;
385 }
386 return FAILED;
387}
388
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700389static int tcm_loop_slave_alloc(struct scsi_device *sd)
390{
391 set_bit(QUEUE_FLAG_BIDI, &sd->request_queue->queue_flags);
392 return 0;
393}
394
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700395static struct scsi_host_template tcm_loop_driver_template = {
Al Viro8946b072013-03-31 02:01:55 -0400396 .show_info = tcm_loop_show_info,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700397 .proc_name = "tcm_loopback",
398 .name = "TCM_Loopback",
399 .queuecommand = tcm_loop_queuecommand,
400 .change_queue_depth = tcm_loop_change_queue_depth,
Christoph Hellwiga62182f2014-10-02 14:39:55 +0200401 .change_queue_type = scsi_change_queue_type,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200402 .eh_abort_handler = tcm_loop_abort_task,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700403 .eh_device_reset_handler = tcm_loop_device_reset,
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200404 .eh_target_reset_handler = tcm_loop_target_reset,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500405 .can_queue = 1024,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700406 .this_id = -1,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500407 .sg_tablesize = 256,
408 .cmd_per_lun = 1024,
409 .max_sectors = 0xFFFF,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700410 .use_clustering = DISABLE_CLUSTERING,
411 .slave_alloc = tcm_loop_slave_alloc,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700412 .module = THIS_MODULE,
Christoph Hellwig2ecb2042014-11-03 14:09:02 +0100413 .use_blk_tags = 1,
Christoph Hellwigc40ecc12014-11-13 14:25:11 +0100414 .track_queue_depth = 1,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700415};
416
417static int tcm_loop_driver_probe(struct device *dev)
418{
419 struct tcm_loop_hba *tl_hba;
420 struct Scsi_Host *sh;
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000421 int error, host_prot;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700422
423 tl_hba = to_tcm_loop_hba(dev);
424
425 sh = scsi_host_alloc(&tcm_loop_driver_template,
426 sizeof(struct tcm_loop_hba));
427 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700428 pr_err("Unable to allocate struct scsi_host\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700429 return -ENODEV;
430 }
431 tl_hba->sh = sh;
432
433 /*
434 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
435 */
436 *((struct tcm_loop_hba **)sh->hostdata) = tl_hba;
437 /*
438 * Setup single ID, Channel and LUN for now..
439 */
440 sh->max_id = 2;
441 sh->max_lun = 0;
442 sh->max_channel = 0;
443 sh->max_cmd_len = TL_SCSI_MAX_CMD_LEN;
444
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000445 host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
446 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
447 SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;
448
449 scsi_host_set_prot(sh, host_prot);
450 scsi_host_set_guard(sh, SHOST_DIX_GUARD_CRC);
451
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700452 error = scsi_add_host(sh, &tl_hba->dev);
453 if (error) {
Andy Grover6708bb22011-06-08 10:36:43 -0700454 pr_err("%s: scsi_add_host failed\n", __func__);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700455 scsi_host_put(sh);
456 return -ENODEV;
457 }
458 return 0;
459}
460
461static int tcm_loop_driver_remove(struct device *dev)
462{
463 struct tcm_loop_hba *tl_hba;
464 struct Scsi_Host *sh;
465
466 tl_hba = to_tcm_loop_hba(dev);
467 sh = tl_hba->sh;
468
469 scsi_remove_host(sh);
470 scsi_host_put(sh);
471 return 0;
472}
473
474static void tcm_loop_release_adapter(struct device *dev)
475{
476 struct tcm_loop_hba *tl_hba = to_tcm_loop_hba(dev);
477
478 kfree(tl_hba);
479}
480
481/*
482 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
483 */
484static int tcm_loop_setup_hba_bus(struct tcm_loop_hba *tl_hba, int tcm_loop_host_id)
485{
486 int ret;
487
488 tl_hba->dev.bus = &tcm_loop_lld_bus;
489 tl_hba->dev.parent = tcm_loop_primary;
490 tl_hba->dev.release = &tcm_loop_release_adapter;
491 dev_set_name(&tl_hba->dev, "tcm_loop_adapter_%d", tcm_loop_host_id);
492
493 ret = device_register(&tl_hba->dev);
494 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700495 pr_err("device_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700496 " tl_hba->dev: %d\n", ret);
497 return -ENODEV;
498 }
499
500 return 0;
501}
502
503/*
504 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
505 * tcm_loop SCSI bus.
506 */
507static int tcm_loop_alloc_core_bus(void)
508{
509 int ret;
510
511 tcm_loop_primary = root_device_register("tcm_loop_0");
512 if (IS_ERR(tcm_loop_primary)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700513 pr_err("Unable to allocate tcm_loop_primary\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700514 return PTR_ERR(tcm_loop_primary);
515 }
516
517 ret = bus_register(&tcm_loop_lld_bus);
518 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700519 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700520 goto dev_unreg;
521 }
522
523 ret = driver_register(&tcm_loop_driverfs);
524 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700525 pr_err("driver_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700526 "tcm_loop_driverfs\n");
527 goto bus_unreg;
528 }
529
Andy Grover6708bb22011-06-08 10:36:43 -0700530 pr_debug("Initialized TCM Loop Core Bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700531 return ret;
532
533bus_unreg:
534 bus_unregister(&tcm_loop_lld_bus);
535dev_unreg:
536 root_device_unregister(tcm_loop_primary);
537 return ret;
538}
539
540static void tcm_loop_release_core_bus(void)
541{
542 driver_unregister(&tcm_loop_driverfs);
543 bus_unregister(&tcm_loop_lld_bus);
544 root_device_unregister(tcm_loop_primary);
545
Andy Grover6708bb22011-06-08 10:36:43 -0700546 pr_debug("Releasing TCM Loop Core BUS\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700547}
548
549static char *tcm_loop_get_fabric_name(void)
550{
551 return "loopback";
552}
553
554static u8 tcm_loop_get_fabric_proto_ident(struct se_portal_group *se_tpg)
555{
Jörn Engel8359cf42011-11-24 02:05:51 +0100556 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700557 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
558 /*
559 * tl_proto_id is set at tcm_loop_configfs.c:tcm_loop_make_scsi_hba()
560 * time based on the protocol dependent prefix of the passed configfs group.
561 *
562 * Based upon tl_proto_id, TCM_Loop emulates the requested fabric
563 * ProtocolID using target_core_fabric_lib.c symbols.
564 */
565 switch (tl_hba->tl_proto_id) {
566 case SCSI_PROTOCOL_SAS:
567 return sas_get_fabric_proto_ident(se_tpg);
568 case SCSI_PROTOCOL_FCP:
569 return fc_get_fabric_proto_ident(se_tpg);
570 case SCSI_PROTOCOL_ISCSI:
571 return iscsi_get_fabric_proto_ident(se_tpg);
572 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700573 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700574 " SAS emulation\n", tl_hba->tl_proto_id);
575 break;
576 }
577
578 return sas_get_fabric_proto_ident(se_tpg);
579}
580
581static char *tcm_loop_get_endpoint_wwn(struct se_portal_group *se_tpg)
582{
Jörn Engel8359cf42011-11-24 02:05:51 +0100583 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700584 /*
585 * Return the passed NAA identifier for the SAS Target Port
586 */
587 return &tl_tpg->tl_hba->tl_wwn_address[0];
588}
589
590static u16 tcm_loop_get_tag(struct se_portal_group *se_tpg)
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 /*
594 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
595 * to represent the SCSI Target Port.
596 */
597 return tl_tpg->tl_tpgt;
598}
599
600static u32 tcm_loop_get_default_depth(struct se_portal_group *se_tpg)
601{
602 return 1;
603}
604
605static u32 tcm_loop_get_pr_transport_id(
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 unsigned char *buf)
611{
Jörn Engel8359cf42011-11-24 02:05:51 +0100612 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700613 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
614
615 switch (tl_hba->tl_proto_id) {
616 case SCSI_PROTOCOL_SAS:
617 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
618 format_code, buf);
619 case SCSI_PROTOCOL_FCP:
620 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
621 format_code, buf);
622 case SCSI_PROTOCOL_ISCSI:
623 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
624 format_code, buf);
625 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700626 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700627 " SAS emulation\n", tl_hba->tl_proto_id);
628 break;
629 }
630
631 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
632 format_code, buf);
633}
634
635static u32 tcm_loop_get_pr_transport_id_len(
636 struct se_portal_group *se_tpg,
637 struct se_node_acl *se_nacl,
638 struct t10_pr_registration *pr_reg,
639 int *format_code)
640{
Jörn Engel8359cf42011-11-24 02:05:51 +0100641 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700642 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
643
644 switch (tl_hba->tl_proto_id) {
645 case SCSI_PROTOCOL_SAS:
646 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
647 format_code);
648 case SCSI_PROTOCOL_FCP:
649 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
650 format_code);
651 case SCSI_PROTOCOL_ISCSI:
652 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
653 format_code);
654 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700655 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700656 " SAS emulation\n", tl_hba->tl_proto_id);
657 break;
658 }
659
660 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
661 format_code);
662}
663
664/*
665 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
666 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
667 */
668static char *tcm_loop_parse_pr_out_transport_id(
669 struct se_portal_group *se_tpg,
670 const char *buf,
671 u32 *out_tid_len,
672 char **port_nexus_ptr)
673{
Jörn Engel8359cf42011-11-24 02:05:51 +0100674 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700675 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
676
677 switch (tl_hba->tl_proto_id) {
678 case SCSI_PROTOCOL_SAS:
679 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
680 port_nexus_ptr);
681 case SCSI_PROTOCOL_FCP:
682 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
683 port_nexus_ptr);
684 case SCSI_PROTOCOL_ISCSI:
685 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
686 port_nexus_ptr);
687 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700688 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700689 " SAS emulation\n", tl_hba->tl_proto_id);
690 break;
691 }
692
693 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
694 port_nexus_ptr);
695}
696
697/*
698 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
699 * based upon the incoming fabric dependent SCSI Initiator Port
700 */
701static int tcm_loop_check_demo_mode(struct se_portal_group *se_tpg)
702{
703 return 1;
704}
705
706static int tcm_loop_check_demo_mode_cache(struct se_portal_group *se_tpg)
707{
708 return 0;
709}
710
711/*
712 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
713 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
714 */
715static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group *se_tpg)
716{
717 return 0;
718}
719
720/*
721 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
722 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
723 * It has been added here as a nop for target_fabric_tf_ops_check()
724 */
725static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group *se_tpg)
726{
727 return 0;
728}
729
730static struct se_node_acl *tcm_loop_tpg_alloc_fabric_acl(
731 struct se_portal_group *se_tpg)
732{
733 struct tcm_loop_nacl *tl_nacl;
734
735 tl_nacl = kzalloc(sizeof(struct tcm_loop_nacl), GFP_KERNEL);
736 if (!tl_nacl) {
Andy Grover6708bb22011-06-08 10:36:43 -0700737 pr_err("Unable to allocate struct tcm_loop_nacl\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700738 return NULL;
739 }
740
741 return &tl_nacl->se_node_acl;
742}
743
744static void tcm_loop_tpg_release_fabric_acl(
745 struct se_portal_group *se_tpg,
746 struct se_node_acl *se_nacl)
747{
748 struct tcm_loop_nacl *tl_nacl = container_of(se_nacl,
749 struct tcm_loop_nacl, se_node_acl);
750
751 kfree(tl_nacl);
752}
753
754static u32 tcm_loop_get_inst_index(struct se_portal_group *se_tpg)
755{
756 return 1;
757}
758
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700759static u32 tcm_loop_sess_get_index(struct se_session *se_sess)
760{
761 return 1;
762}
763
764static void tcm_loop_set_default_node_attributes(struct se_node_acl *se_acl)
765{
766 return;
767}
768
769static u32 tcm_loop_get_task_tag(struct se_cmd *se_cmd)
770{
Hannes Reinecke969871c2013-10-16 09:12:55 +0200771 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
772 struct tcm_loop_cmd, tl_se_cmd);
773
774 return tl_cmd->sc_cmd_tag;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700775}
776
777static int tcm_loop_get_cmd_state(struct se_cmd *se_cmd)
778{
779 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
780 struct tcm_loop_cmd, tl_se_cmd);
781
782 return tl_cmd->sc_cmd_state;
783}
784
785static int tcm_loop_shutdown_session(struct se_session *se_sess)
786{
787 return 0;
788}
789
790static void tcm_loop_close_session(struct se_session *se_sess)
791{
792 return;
793};
794
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700795static int tcm_loop_write_pending(struct se_cmd *se_cmd)
796{
797 /*
798 * Since Linux/SCSI has already sent down a struct scsi_cmnd
799 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
800 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
801 * format with transport_generic_map_mem_to_cmd().
802 *
803 * We now tell TCM to add this WRITE CDB directly into the TCM storage
804 * object execution queue.
805 */
Christoph Hellwig70baf0a2012-07-08 15:58:39 -0400806 target_execute_cmd(se_cmd);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700807 return 0;
808}
809
810static int tcm_loop_write_pending_status(struct se_cmd *se_cmd)
811{
812 return 0;
813}
814
815static int tcm_loop_queue_data_in(struct se_cmd *se_cmd)
816{
817 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
818 struct tcm_loop_cmd, tl_se_cmd);
819 struct scsi_cmnd *sc = tl_cmd->sc;
820
Andy Grover6708bb22011-06-08 10:36:43 -0700821 pr_debug("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700822 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
823
824 sc->result = SAM_STAT_GOOD;
825 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800826 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
827 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
828 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700829 sc->scsi_done(sc);
830 return 0;
831}
832
833static int tcm_loop_queue_status(struct se_cmd *se_cmd)
834{
835 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
836 struct tcm_loop_cmd, tl_se_cmd);
837 struct scsi_cmnd *sc = tl_cmd->sc;
838
Andy Grover6708bb22011-06-08 10:36:43 -0700839 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700840 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
841
842 if (se_cmd->sense_buffer &&
843 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
844 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
845
Andy Grover5951146d2011-07-19 10:26:37 +0000846 memcpy(sc->sense_buffer, se_cmd->sense_buffer,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700847 SCSI_SENSE_BUFFERSIZE);
848 sc->result = SAM_STAT_CHECK_CONDITION;
849 set_driver_byte(sc, DRIVER_SENSE);
850 } else
851 sc->result = se_cmd->scsi_status;
852
853 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800854 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
855 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
856 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700857 sc->scsi_done(sc);
858 return 0;
859}
860
Joern Engelb79fafa2013-07-03 11:22:17 -0400861static void tcm_loop_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700862{
863 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
864 struct tcm_loop_tmr *tl_tmr = se_tmr->fabric_tmr_ptr;
865 /*
866 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
867 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
868 */
869 atomic_set(&tl_tmr->tmr_complete, 1);
870 wake_up(&tl_tmr->tl_tmr_wait);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700871}
872
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700873static void tcm_loop_aborted_task(struct se_cmd *se_cmd)
874{
875 return;
876}
877
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700878static char *tcm_loop_dump_proto_id(struct tcm_loop_hba *tl_hba)
879{
880 switch (tl_hba->tl_proto_id) {
881 case SCSI_PROTOCOL_SAS:
882 return "SAS";
883 case SCSI_PROTOCOL_FCP:
884 return "FCP";
885 case SCSI_PROTOCOL_ISCSI:
886 return "iSCSI";
887 default:
888 break;
889 }
890
891 return "Unknown";
892}
893
894/* Start items for tcm_loop_port_cit */
895
896static int tcm_loop_port_link(
897 struct se_portal_group *se_tpg,
898 struct se_lun *lun)
899{
900 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
901 struct tcm_loop_tpg, tl_se_tpg);
902 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
903
Joern Engel33940d02014-09-16 16:23:12 -0400904 atomic_inc_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700905 /*
906 * Add Linux/SCSI struct scsi_device by HCTL
907 */
908 scsi_add_device(tl_hba->sh, 0, tl_tpg->tl_tpgt, lun->unpacked_lun);
909
Andy Grover6708bb22011-06-08 10:36:43 -0700910 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700911 return 0;
912}
913
914static void tcm_loop_port_unlink(
915 struct se_portal_group *se_tpg,
916 struct se_lun *se_lun)
917{
918 struct scsi_device *sd;
919 struct tcm_loop_hba *tl_hba;
920 struct tcm_loop_tpg *tl_tpg;
921
922 tl_tpg = container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
923 tl_hba = tl_tpg->tl_hba;
924
925 sd = scsi_device_lookup(tl_hba->sh, 0, tl_tpg->tl_tpgt,
926 se_lun->unpacked_lun);
927 if (!sd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700928 pr_err("Unable to locate struct scsi_device for %d:%d:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700929 "%d\n", 0, tl_tpg->tl_tpgt, se_lun->unpacked_lun);
930 return;
931 }
932 /*
933 * Remove Linux/SCSI struct scsi_device by HCTL
934 */
935 scsi_remove_device(sd);
936 scsi_device_put(sd);
937
Joern Engel33940d02014-09-16 16:23:12 -0400938 atomic_dec_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700939
Andy Grover6708bb22011-06-08 10:36:43 -0700940 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700941}
942
943/* End items for tcm_loop_port_cit */
944
945/* Start items for tcm_loop_nexus_cit */
946
947static int tcm_loop_make_nexus(
948 struct tcm_loop_tpg *tl_tpg,
949 const char *name)
950{
951 struct se_portal_group *se_tpg;
952 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
953 struct tcm_loop_nexus *tl_nexus;
Dan Carpenter552523d2011-06-15 09:41:33 -0700954 int ret = -ENOMEM;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700955
956 if (tl_tpg->tl_hba->tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700957 pr_debug("tl_tpg->tl_hba->tl_nexus already exists\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700958 return -EEXIST;
959 }
960 se_tpg = &tl_tpg->tl_se_tpg;
961
962 tl_nexus = kzalloc(sizeof(struct tcm_loop_nexus), GFP_KERNEL);
963 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700964 pr_err("Unable to allocate struct tcm_loop_nexus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700965 return -ENOMEM;
966 }
967 /*
968 * Initialize the struct se_session pointer
969 */
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700970 tl_nexus->se_sess = transport_init_session(TARGET_PROT_ALL);
Dan Carpenter552523d2011-06-15 09:41:33 -0700971 if (IS_ERR(tl_nexus->se_sess)) {
972 ret = PTR_ERR(tl_nexus->se_sess);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700973 goto out;
Dan Carpenter552523d2011-06-15 09:41:33 -0700974 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700975 /*
976 * Since we are running in 'demo mode' this call with generate a
977 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
978 * Initiator port name of the passed configfs group 'name'.
979 */
980 tl_nexus->se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
981 se_tpg, (unsigned char *)name);
982 if (!tl_nexus->se_sess->se_node_acl) {
983 transport_free_session(tl_nexus->se_sess);
984 goto out;
985 }
986 /*
987 * Now, register the SAS I_T Nexus as active with the call to
988 * transport_register_session()
989 */
990 __transport_register_session(se_tpg, tl_nexus->se_sess->se_node_acl,
Andy Grover5951146d2011-07-19 10:26:37 +0000991 tl_nexus->se_sess, tl_nexus);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700992 tl_tpg->tl_hba->tl_nexus = tl_nexus;
Andy Grover6708bb22011-06-08 10:36:43 -0700993 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700994 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
995 name);
996 return 0;
997
998out:
999 kfree(tl_nexus);
Dan Carpenter552523d2011-06-15 09:41:33 -07001000 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001001}
1002
1003static int tcm_loop_drop_nexus(
1004 struct tcm_loop_tpg *tpg)
1005{
1006 struct se_session *se_sess;
1007 struct tcm_loop_nexus *tl_nexus;
1008 struct tcm_loop_hba *tl_hba = tpg->tl_hba;
1009
Hannes Reinecke1ec59fe2013-10-16 09:12:52 +02001010 if (!tl_hba)
1011 return -ENODEV;
1012
1013 tl_nexus = tl_hba->tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001014 if (!tl_nexus)
1015 return -ENODEV;
1016
1017 se_sess = tl_nexus->se_sess;
1018 if (!se_sess)
1019 return -ENODEV;
1020
1021 if (atomic_read(&tpg->tl_tpg_port_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001022 pr_err("Unable to remove TCM_Loop I_T Nexus with"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001023 " active TPG port count: %d\n",
1024 atomic_read(&tpg->tl_tpg_port_count));
1025 return -EPERM;
1026 }
1027
Andy Grover6708bb22011-06-08 10:36:43 -07001028 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001029 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1030 tl_nexus->se_sess->se_node_acl->initiatorname);
1031 /*
1032 * Release the SCSI I_T Nexus to the emulated SAS Target Port
1033 */
1034 transport_deregister_session(tl_nexus->se_sess);
1035 tpg->tl_hba->tl_nexus = NULL;
1036 kfree(tl_nexus);
1037 return 0;
1038}
1039
1040/* End items for tcm_loop_nexus_cit */
1041
1042static ssize_t tcm_loop_tpg_show_nexus(
1043 struct se_portal_group *se_tpg,
1044 char *page)
1045{
1046 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1047 struct tcm_loop_tpg, tl_se_tpg);
1048 struct tcm_loop_nexus *tl_nexus;
1049 ssize_t ret;
1050
1051 tl_nexus = tl_tpg->tl_hba->tl_nexus;
1052 if (!tl_nexus)
1053 return -ENODEV;
1054
1055 ret = snprintf(page, PAGE_SIZE, "%s\n",
1056 tl_nexus->se_sess->se_node_acl->initiatorname);
1057
1058 return ret;
1059}
1060
1061static ssize_t tcm_loop_tpg_store_nexus(
1062 struct se_portal_group *se_tpg,
1063 const char *page,
1064 size_t count)
1065{
1066 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1067 struct tcm_loop_tpg, tl_se_tpg);
1068 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
1069 unsigned char i_port[TL_WWN_ADDR_LEN], *ptr, *port_ptr;
1070 int ret;
1071 /*
1072 * Shutdown the active I_T nexus if 'NULL' is passed..
1073 */
1074 if (!strncmp(page, "NULL", 4)) {
1075 ret = tcm_loop_drop_nexus(tl_tpg);
1076 return (!ret) ? count : ret;
1077 }
1078 /*
1079 * Otherwise make sure the passed virtual Initiator port WWN matches
1080 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1081 * tcm_loop_make_nexus()
1082 */
Dan Carpenter60d645a2011-06-15 10:03:05 -07001083 if (strlen(page) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001084 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001085 " max: %d\n", page, TL_WWN_ADDR_LEN);
1086 return -EINVAL;
1087 }
1088 snprintf(&i_port[0], TL_WWN_ADDR_LEN, "%s", page);
1089
1090 ptr = strstr(i_port, "naa.");
1091 if (ptr) {
1092 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_SAS) {
Andy Grover6708bb22011-06-08 10:36:43 -07001093 pr_err("Passed SAS Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001094 " match target port protoid: %s\n", i_port,
1095 tcm_loop_dump_proto_id(tl_hba));
1096 return -EINVAL;
1097 }
1098 port_ptr = &i_port[0];
1099 goto check_newline;
1100 }
1101 ptr = strstr(i_port, "fc.");
1102 if (ptr) {
1103 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_FCP) {
Andy Grover6708bb22011-06-08 10:36:43 -07001104 pr_err("Passed FCP 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[3]; /* Skip over "fc." */
1110 goto check_newline;
1111 }
1112 ptr = strstr(i_port, "iqn.");
1113 if (ptr) {
1114 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_ISCSI) {
Andy Grover6708bb22011-06-08 10:36:43 -07001115 pr_err("Passed iSCSI 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[0];
1121 goto check_newline;
1122 }
Andy Grover6708bb22011-06-08 10:36:43 -07001123 pr_err("Unable to locate prefix for emulated Initiator Port:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001124 " %s\n", i_port);
1125 return -EINVAL;
1126 /*
1127 * Clear any trailing newline for the NAA WWN
1128 */
1129check_newline:
1130 if (i_port[strlen(i_port)-1] == '\n')
1131 i_port[strlen(i_port)-1] = '\0';
1132
1133 ret = tcm_loop_make_nexus(tl_tpg, port_ptr);
1134 if (ret < 0)
1135 return ret;
1136
1137 return count;
1138}
1139
1140TF_TPG_BASE_ATTR(tcm_loop, nexus, S_IRUGO | S_IWUSR);
1141
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001142static ssize_t tcm_loop_tpg_show_transport_status(
1143 struct se_portal_group *se_tpg,
1144 char *page)
1145{
1146 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1147 struct tcm_loop_tpg, tl_se_tpg);
1148 const char *status = NULL;
1149 ssize_t ret = -EINVAL;
1150
1151 switch (tl_tpg->tl_transport_status) {
1152 case TCM_TRANSPORT_ONLINE:
1153 status = "online";
1154 break;
1155 case TCM_TRANSPORT_OFFLINE:
1156 status = "offline";
1157 break;
1158 default:
1159 break;
1160 }
1161
1162 if (status)
1163 ret = snprintf(page, PAGE_SIZE, "%s\n", status);
1164
1165 return ret;
1166}
1167
1168static ssize_t tcm_loop_tpg_store_transport_status(
1169 struct se_portal_group *se_tpg,
1170 const char *page,
1171 size_t count)
1172{
1173 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1174 struct tcm_loop_tpg, tl_se_tpg);
1175
1176 if (!strncmp(page, "online", 6)) {
1177 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
1178 return count;
1179 }
1180 if (!strncmp(page, "offline", 7)) {
1181 tl_tpg->tl_transport_status = TCM_TRANSPORT_OFFLINE;
1182 return count;
1183 }
1184 return -EINVAL;
1185}
1186
1187TF_TPG_BASE_ATTR(tcm_loop, transport_status, S_IRUGO | S_IWUSR);
1188
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001189static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
1190 &tcm_loop_tpg_nexus.attr,
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001191 &tcm_loop_tpg_transport_status.attr,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001192 NULL,
1193};
1194
1195/* Start items for tcm_loop_naa_cit */
1196
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301197static struct se_portal_group *tcm_loop_make_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001198 struct se_wwn *wwn,
1199 struct config_group *group,
1200 const char *name)
1201{
1202 struct tcm_loop_hba *tl_hba = container_of(wwn,
1203 struct tcm_loop_hba, tl_hba_wwn);
1204 struct tcm_loop_tpg *tl_tpg;
1205 char *tpgt_str, *end_ptr;
1206 int ret;
1207 unsigned short int tpgt;
1208
1209 tpgt_str = strstr(name, "tpgt_");
1210 if (!tpgt_str) {
Andy Grover6708bb22011-06-08 10:36:43 -07001211 pr_err("Unable to locate \"tpgt_#\" directory"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001212 " group\n");
1213 return ERR_PTR(-EINVAL);
1214 }
1215 tpgt_str += 5; /* Skip ahead of "tpgt_" */
1216 tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
1217
Dan Carpenter12f09cc2011-04-02 14:32:47 -07001218 if (tpgt >= TL_TPGS_PER_HBA) {
Andy Grover6708bb22011-06-08 10:36:43 -07001219 pr_err("Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001220 " %u\n", tpgt, TL_TPGS_PER_HBA);
1221 return ERR_PTR(-EINVAL);
1222 }
1223 tl_tpg = &tl_hba->tl_hba_tpgs[tpgt];
1224 tl_tpg->tl_hba = tl_hba;
1225 tl_tpg->tl_tpgt = tpgt;
1226 /*
1227 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1228 */
1229 ret = core_tpg_register(&tcm_loop_fabric_configfs->tf_ops,
Andy Grover5951146d2011-07-19 10:26:37 +00001230 wwn, &tl_tpg->tl_se_tpg, tl_tpg,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001231 TRANSPORT_TPG_TYPE_NORMAL);
1232 if (ret < 0)
1233 return ERR_PTR(-ENOMEM);
1234
Andy Grover6708bb22011-06-08 10:36:43 -07001235 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001236 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1237 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1238
1239 return &tl_tpg->tl_se_tpg;
1240}
1241
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301242static void tcm_loop_drop_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001243 struct se_portal_group *se_tpg)
1244{
1245 struct se_wwn *wwn = se_tpg->se_tpg_wwn;
1246 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1247 struct tcm_loop_tpg, tl_se_tpg);
1248 struct tcm_loop_hba *tl_hba;
1249 unsigned short tpgt;
1250
1251 tl_hba = tl_tpg->tl_hba;
1252 tpgt = tl_tpg->tl_tpgt;
1253 /*
1254 * Release the I_T Nexus for the Virtual SAS link if present
1255 */
1256 tcm_loop_drop_nexus(tl_tpg);
1257 /*
1258 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1259 */
1260 core_tpg_deregister(se_tpg);
1261
Nicholas Bellinger0a020432011-10-10 19:44:05 -07001262 tl_tpg->tl_hba = NULL;
1263 tl_tpg->tl_tpgt = 0;
1264
Andy Grover6708bb22011-06-08 10:36:43 -07001265 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001266 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1267 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1268}
1269
1270/* End items for tcm_loop_naa_cit */
1271
1272/* Start items for tcm_loop_cit */
1273
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301274static struct se_wwn *tcm_loop_make_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001275 struct target_fabric_configfs *tf,
1276 struct config_group *group,
1277 const char *name)
1278{
1279 struct tcm_loop_hba *tl_hba;
1280 struct Scsi_Host *sh;
1281 char *ptr;
1282 int ret, off = 0;
1283
1284 tl_hba = kzalloc(sizeof(struct tcm_loop_hba), GFP_KERNEL);
1285 if (!tl_hba) {
Andy Grover6708bb22011-06-08 10:36:43 -07001286 pr_err("Unable to allocate struct tcm_loop_hba\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001287 return ERR_PTR(-ENOMEM);
1288 }
1289 /*
1290 * Determine the emulated Protocol Identifier and Target Port Name
1291 * based on the incoming configfs directory name.
1292 */
1293 ptr = strstr(name, "naa.");
1294 if (ptr) {
1295 tl_hba->tl_proto_id = SCSI_PROTOCOL_SAS;
1296 goto check_len;
1297 }
1298 ptr = strstr(name, "fc.");
1299 if (ptr) {
1300 tl_hba->tl_proto_id = SCSI_PROTOCOL_FCP;
1301 off = 3; /* Skip over "fc." */
1302 goto check_len;
1303 }
1304 ptr = strstr(name, "iqn.");
Jesper Juhla57b5d32011-06-28 00:30:17 +02001305 if (!ptr) {
Andy Grover6708bb22011-06-08 10:36:43 -07001306 pr_err("Unable to locate prefix for emulated Target "
Jesper Juhla57b5d32011-06-28 00:30:17 +02001307 "Port: %s\n", name);
1308 ret = -EINVAL;
1309 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001310 }
Jesper Juhla57b5d32011-06-28 00:30:17 +02001311 tl_hba->tl_proto_id = SCSI_PROTOCOL_ISCSI;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001312
1313check_len:
Dan Carpenter60d645a2011-06-15 10:03:05 -07001314 if (strlen(name) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001315 pr_err("Emulated NAA %s Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001316 " max: %d\n", name, tcm_loop_dump_proto_id(tl_hba),
1317 TL_WWN_ADDR_LEN);
Jesper Juhla57b5d32011-06-28 00:30:17 +02001318 ret = -EINVAL;
1319 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001320 }
1321 snprintf(&tl_hba->tl_wwn_address[0], TL_WWN_ADDR_LEN, "%s", &name[off]);
1322
1323 /*
1324 * Call device_register(tl_hba->dev) to register the emulated
1325 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1326 * device_register() callbacks in tcm_loop_driver_probe()
1327 */
1328 ret = tcm_loop_setup_hba_bus(tl_hba, tcm_loop_hba_no_cnt);
1329 if (ret)
1330 goto out;
1331
1332 sh = tl_hba->sh;
1333 tcm_loop_hba_no_cnt++;
Andy Grover6708bb22011-06-08 10:36:43 -07001334 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001335 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1336 tcm_loop_dump_proto_id(tl_hba), name, sh->host_no);
1337
1338 return &tl_hba->tl_hba_wwn;
1339out:
1340 kfree(tl_hba);
1341 return ERR_PTR(ret);
1342}
1343
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301344static void tcm_loop_drop_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001345 struct se_wwn *wwn)
1346{
1347 struct tcm_loop_hba *tl_hba = container_of(wwn,
1348 struct tcm_loop_hba, tl_hba_wwn);
Nicholas Bellinger6297b072011-11-12 09:29:51 -08001349
1350 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1351 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1352 tl_hba->tl_wwn_address, tl_hba->sh->host_no);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001353 /*
1354 * Call device_unregister() on the original tl_hba->dev.
1355 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1356 * release *tl_hba;
1357 */
1358 device_unregister(&tl_hba->dev);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001359}
1360
1361/* Start items for tcm_loop_cit */
1362static ssize_t tcm_loop_wwn_show_attr_version(
1363 struct target_fabric_configfs *tf,
1364 char *page)
1365{
1366 return sprintf(page, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION);
1367}
1368
1369TF_WWN_ATTR_RO(tcm_loop, version);
1370
1371static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
1372 &tcm_loop_wwn_version.attr,
1373 NULL,
1374};
1375
1376/* End items for tcm_loop_cit */
1377
1378static int tcm_loop_register_configfs(void)
1379{
1380 struct target_fabric_configfs *fabric;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001381 int ret;
1382 /*
1383 * Set the TCM Loop HBA counter to zero
1384 */
1385 tcm_loop_hba_no_cnt = 0;
1386 /*
1387 * Register the top level struct config_item_type with TCM core
1388 */
1389 fabric = target_fabric_configfs_init(THIS_MODULE, "loopback");
Andy Grovere3d6f902011-07-19 08:55:10 +00001390 if (IS_ERR(fabric)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001391 pr_err("tcm_loop_register_configfs() failed!\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001392 return PTR_ERR(fabric);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001393 }
1394 /*
1395 * Setup the fabric API of function pointers used by target_core_mod
1396 */
1397 fabric->tf_ops.get_fabric_name = &tcm_loop_get_fabric_name;
1398 fabric->tf_ops.get_fabric_proto_ident = &tcm_loop_get_fabric_proto_ident;
1399 fabric->tf_ops.tpg_get_wwn = &tcm_loop_get_endpoint_wwn;
1400 fabric->tf_ops.tpg_get_tag = &tcm_loop_get_tag;
1401 fabric->tf_ops.tpg_get_default_depth = &tcm_loop_get_default_depth;
1402 fabric->tf_ops.tpg_get_pr_transport_id = &tcm_loop_get_pr_transport_id;
1403 fabric->tf_ops.tpg_get_pr_transport_id_len =
1404 &tcm_loop_get_pr_transport_id_len;
1405 fabric->tf_ops.tpg_parse_pr_out_transport_id =
1406 &tcm_loop_parse_pr_out_transport_id;
1407 fabric->tf_ops.tpg_check_demo_mode = &tcm_loop_check_demo_mode;
1408 fabric->tf_ops.tpg_check_demo_mode_cache =
1409 &tcm_loop_check_demo_mode_cache;
1410 fabric->tf_ops.tpg_check_demo_mode_write_protect =
1411 &tcm_loop_check_demo_mode_write_protect;
1412 fabric->tf_ops.tpg_check_prod_mode_write_protect =
1413 &tcm_loop_check_prod_mode_write_protect;
1414 /*
1415 * The TCM loopback fabric module runs in demo-mode to a local
1416 * virtual SCSI device, so fabric dependent initator ACLs are
1417 * not required.
1418 */
1419 fabric->tf_ops.tpg_alloc_fabric_acl = &tcm_loop_tpg_alloc_fabric_acl;
1420 fabric->tf_ops.tpg_release_fabric_acl =
1421 &tcm_loop_tpg_release_fabric_acl;
1422 fabric->tf_ops.tpg_get_inst_index = &tcm_loop_get_inst_index;
1423 /*
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001424 * Used for setting up remaining TCM resources in process context
1425 */
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001426 fabric->tf_ops.check_stop_free = &tcm_loop_check_stop_free;
Christoph Hellwig35462972011-05-31 23:56:57 -04001427 fabric->tf_ops.release_cmd = &tcm_loop_release_cmd;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001428 fabric->tf_ops.shutdown_session = &tcm_loop_shutdown_session;
1429 fabric->tf_ops.close_session = &tcm_loop_close_session;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001430 fabric->tf_ops.sess_get_index = &tcm_loop_sess_get_index;
1431 fabric->tf_ops.sess_get_initiator_sid = NULL;
1432 fabric->tf_ops.write_pending = &tcm_loop_write_pending;
1433 fabric->tf_ops.write_pending_status = &tcm_loop_write_pending_status;
1434 /*
1435 * Not used for TCM loopback
1436 */
1437 fabric->tf_ops.set_default_node_attributes =
1438 &tcm_loop_set_default_node_attributes;
1439 fabric->tf_ops.get_task_tag = &tcm_loop_get_task_tag;
1440 fabric->tf_ops.get_cmd_state = &tcm_loop_get_cmd_state;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001441 fabric->tf_ops.queue_data_in = &tcm_loop_queue_data_in;
1442 fabric->tf_ops.queue_status = &tcm_loop_queue_status;
1443 fabric->tf_ops.queue_tm_rsp = &tcm_loop_queue_tm_rsp;
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07001444 fabric->tf_ops.aborted_task = &tcm_loop_aborted_task;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001445
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001446 /*
1447 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1448 */
1449 fabric->tf_ops.fabric_make_wwn = &tcm_loop_make_scsi_hba;
1450 fabric->tf_ops.fabric_drop_wwn = &tcm_loop_drop_scsi_hba;
1451 fabric->tf_ops.fabric_make_tpg = &tcm_loop_make_naa_tpg;
1452 fabric->tf_ops.fabric_drop_tpg = &tcm_loop_drop_naa_tpg;
1453 /*
1454 * fabric_post_link() and fabric_pre_unlink() are used for
1455 * registration and release of TCM Loop Virtual SCSI LUNs.
1456 */
1457 fabric->tf_ops.fabric_post_link = &tcm_loop_port_link;
1458 fabric->tf_ops.fabric_pre_unlink = &tcm_loop_port_unlink;
1459 fabric->tf_ops.fabric_make_np = NULL;
1460 fabric->tf_ops.fabric_drop_np = NULL;
1461 /*
1462 * Setup default attribute lists for various fabric->tf_cit_tmpl
1463 */
Andy Groverd80e224d2013-10-09 11:05:56 -07001464 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = tcm_loop_wwn_attrs;
1465 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = tcm_loop_tpg_attrs;
1466 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
1467 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
1468 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001469 /*
1470 * Once fabric->tf_ops has been setup, now register the fabric for
1471 * use within TCM
1472 */
1473 ret = target_fabric_configfs_register(fabric);
1474 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001475 pr_err("target_fabric_configfs_register() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001476 " TCM_Loop failed!\n");
1477 target_fabric_configfs_free(fabric);
1478 return -1;
1479 }
1480 /*
1481 * Setup our local pointer to *fabric.
1482 */
1483 tcm_loop_fabric_configfs = fabric;
Andy Grover6708bb22011-06-08 10:36:43 -07001484 pr_debug("TCM_LOOP[0] - Set fabric ->"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001485 " tcm_loop_fabric_configfs\n");
1486 return 0;
1487}
1488
1489static void tcm_loop_deregister_configfs(void)
1490{
1491 if (!tcm_loop_fabric_configfs)
1492 return;
1493
1494 target_fabric_configfs_deregister(tcm_loop_fabric_configfs);
1495 tcm_loop_fabric_configfs = NULL;
Andy Grover6708bb22011-06-08 10:36:43 -07001496 pr_debug("TCM_LOOP[0] - Cleared"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001497 " tcm_loop_fabric_configfs\n");
1498}
1499
1500static int __init tcm_loop_fabric_init(void)
1501{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001502 int ret = -ENOMEM;
1503
1504 tcm_loop_workqueue = alloc_workqueue("tcm_loop", 0, 0);
1505 if (!tcm_loop_workqueue)
1506 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001507
1508 tcm_loop_cmd_cache = kmem_cache_create("tcm_loop_cmd_cache",
1509 sizeof(struct tcm_loop_cmd),
1510 __alignof__(struct tcm_loop_cmd),
1511 0, NULL);
1512 if (!tcm_loop_cmd_cache) {
Andy Grover6708bb22011-06-08 10:36:43 -07001513 pr_debug("kmem_cache_create() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001514 " tcm_loop_cmd_cache failed\n");
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001515 goto out_destroy_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001516 }
1517
1518 ret = tcm_loop_alloc_core_bus();
1519 if (ret)
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001520 goto out_destroy_cache;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001521
1522 ret = tcm_loop_register_configfs();
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001523 if (ret)
1524 goto out_release_core_bus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001525
1526 return 0;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001527
1528out_release_core_bus:
1529 tcm_loop_release_core_bus();
1530out_destroy_cache:
1531 kmem_cache_destroy(tcm_loop_cmd_cache);
1532out_destroy_workqueue:
1533 destroy_workqueue(tcm_loop_workqueue);
1534out:
1535 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001536}
1537
1538static void __exit tcm_loop_fabric_exit(void)
1539{
1540 tcm_loop_deregister_configfs();
1541 tcm_loop_release_core_bus();
1542 kmem_cache_destroy(tcm_loop_cmd_cache);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001543 destroy_workqueue(tcm_loop_workqueue);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001544}
1545
1546MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1547MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1548MODULE_LICENSE("GPL");
1549module_init(tcm_loop_fabric_init);
1550module_exit(tcm_loop_fabric_exit);