blob: 3b9c76835b4525cae1f0b3c138fff3ba835303f9 [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{
122 switch (reason) {
123 case SCSI_QDEPTH_DEFAULT:
124 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
125 break;
126 case SCSI_QDEPTH_QFULL:
127 scsi_track_queue_full(sdev, depth);
128 break;
129 case SCSI_QDEPTH_RAMP_UP:
130 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
131 break;
132 default:
133 return -EOPNOTSUPP;
134 }
135 return sdev->queue_depth;
136}
137
138/*
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500139 * Locate the SAM Task Attr from struct scsi_cmnd *
140 */
Hannes Reinecke6375f892014-10-02 09:30:55 +0200141static int tcm_loop_sam_attr(struct scsi_cmnd *sc, int tag)
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500142{
Hannes Reinecke6375f892014-10-02 09:30:55 +0200143 if (sc->device->tagged_supported &&
144 sc->device->ordered_tags && tag >= 0)
145 return MSG_ORDERED_TAG;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500146
147 return MSG_SIMPLE_TAG;
148}
149
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500150static void tcm_loop_submission_work(struct work_struct *work)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700151{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500152 struct tcm_loop_cmd *tl_cmd =
153 container_of(work, struct tcm_loop_cmd, work);
154 struct se_cmd *se_cmd = &tl_cmd->tl_se_cmd;
155 struct scsi_cmnd *sc = tl_cmd->sc;
156 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700157 struct tcm_loop_hba *tl_hba;
158 struct tcm_loop_tpg *tl_tpg;
Christoph Hellwig167864542012-02-02 17:04:42 -0500159 struct scatterlist *sgl_bidi = NULL;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300160 u32 sgl_bidi_count = 0, transfer_length;
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700161 int rc;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500162
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700163 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
164 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500165
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700166 /*
167 * Ensure that this tl_tpg reference from the incoming sc->device->id
168 * has already been configured via tcm_loop_make_naa_tpg().
169 */
170 if (!tl_tpg->tl_hba) {
171 set_host_byte(sc, DID_NO_CONNECT);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500172 goto out_done;
Nicholas Bellinger0a020432011-10-10 19:44:05 -0700173 }
Hannes Reineckefb2b2842013-10-16 09:12:53 +0200174 if (tl_tpg->tl_transport_status == TCM_TRANSPORT_OFFLINE) {
175 set_host_byte(sc, DID_TRANSPORT_DISRUPTED);
176 goto out_done;
177 }
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500178 tl_nexus = tl_hba->tl_nexus;
179 if (!tl_nexus) {
180 scmd_printk(KERN_ERR, sc, "TCM_Loop I_T Nexus"
181 " does not exist\n");
182 set_host_byte(sc, DID_ERROR);
183 goto out_done;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700184 }
Christoph Hellwig167864542012-02-02 17:04:42 -0500185 if (scsi_bidi_cmnd(sc)) {
186 struct scsi_data_buffer *sdb = scsi_in(sc);
187
188 sgl_bidi = sdb->table.sgl;
189 sgl_bidi_count = sdb->table.nents;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500190 se_cmd->se_cmd_flags |= SCF_BIDI;
191
Christoph Hellwig167864542012-02-02 17:04:42 -0500192 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200193
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300194 transfer_length = scsi_transfer_length(sc);
195 if (!scsi_prot_sg_count(sc) &&
196 scsi_get_prot_op(sc) != SCSI_PROT_NORMAL) {
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200197 se_cmd->prot_pto = true;
Sagi Grimberge2a4f552014-06-11 12:09:59 +0300198 /*
199 * loopback transport doesn't support
200 * WRITE_GENERATE, READ_STRIP protection
201 * information operations, go ahead unprotected.
202 */
203 transfer_length = scsi_bufflen(sc);
204 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +0200205
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700206 rc = target_submit_cmd_map_sgls(se_cmd, tl_nexus->se_sess, sc->cmnd,
207 &tl_cmd->tl_sense_buf[0], tl_cmd->sc->device->lun,
Hannes Reinecke6375f892014-10-02 09:30:55 +0200208 transfer_length, tcm_loop_sam_attr(sc, tl_cmd->sc_cmd_tag),
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700209 sc->sc_data_direction, 0,
210 scsi_sglist(sc), scsi_sg_count(sc),
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000211 sgl_bidi, sgl_bidi_count,
212 scsi_prot_sglist(sc), scsi_prot_sg_count(sc));
Nicholas Bellinger8f9f44f2012-10-01 23:29:49 -0700213 if (rc < 0) {
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500214 set_host_byte(sc, DID_NO_CONNECT);
215 goto out_done;
216 }
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500217 return;
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500218
219out_done:
Nicholas Bellingerb43f1882014-06-17 22:23:03 +0000220 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500221 sc->scsi_done(sc);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500222 return;
223}
224
225/*
226 * ->queuecommand can be and usually is called from interrupt context, so
227 * defer the actual submission to a workqueue.
228 */
229static int tcm_loop_queuecommand(struct Scsi_Host *sh, struct scsi_cmnd *sc)
230{
231 struct tcm_loop_cmd *tl_cmd;
232
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200233 pr_debug("tcm_loop_queuecommand() %d:%d:%d:%llu got CDB: 0x%02x"
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500234 " scsi_buf_len: %u\n", sc->device->host->host_no,
235 sc->device->id, sc->device->channel, sc->device->lun,
236 sc->cmnd[0], scsi_bufflen(sc));
237
238 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_ATOMIC);
239 if (!tl_cmd) {
240 pr_err("Unable to allocate struct tcm_loop_cmd\n");
241 set_host_byte(sc, DID_ERROR);
242 sc->scsi_done(sc);
243 return 0;
244 }
245
246 tl_cmd->sc = sc;
Hannes Reinecke6375f892014-10-02 09:30:55 +0200247 tl_cmd->sc_cmd_tag = sc->request->tag;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -0500248 INIT_WORK(&tl_cmd->work, tcm_loop_submission_work);
249 queue_work(tcm_loop_workqueue, &tl_cmd->work);
Christoph Hellwigf872c9f2012-02-02 17:04:40 -0500250 return 0;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700251}
252
253/*
254 * Called from SCSI EH process context to issue a LUN_RESET TMR
255 * to struct scsi_device
256 */
Hannes Reineckea314d702013-10-16 09:12:54 +0200257static int tcm_loop_issue_tmr(struct tcm_loop_tpg *tl_tpg,
258 struct tcm_loop_nexus *tl_nexus,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200259 int lun, int task, enum tcm_tmreq_table tmr)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700260{
261 struct se_cmd *se_cmd = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700262 struct se_session *se_sess;
Hannes Reineckea314d702013-10-16 09:12:54 +0200263 struct se_portal_group *se_tpg;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700264 struct tcm_loop_cmd *tl_cmd = NULL;
Hannes Reineckea314d702013-10-16 09:12:54 +0200265 struct tcm_loop_tmr *tl_tmr = NULL;
266 int ret = TMR_FUNCTION_FAILED, rc;
267
268 tl_cmd = kmem_cache_zalloc(tcm_loop_cmd_cache, GFP_KERNEL);
269 if (!tl_cmd) {
270 pr_err("Unable to allocate memory for tl_cmd\n");
271 return ret;
272 }
273
274 tl_tmr = kzalloc(sizeof(struct tcm_loop_tmr), GFP_KERNEL);
275 if (!tl_tmr) {
276 pr_err("Unable to allocate memory for tl_tmr\n");
277 goto release;
278 }
279 init_waitqueue_head(&tl_tmr->tl_tmr_wait);
280
281 se_cmd = &tl_cmd->tl_se_cmd;
282 se_tpg = &tl_tpg->tl_se_tpg;
283 se_sess = tl_nexus->se_sess;
284 /*
285 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
286 */
287 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess, 0,
288 DMA_NONE, MSG_SIMPLE_TAG,
289 &tl_cmd->tl_sense_buf[0]);
290
291 rc = core_tmr_alloc_req(se_cmd, tl_tmr, tmr, GFP_KERNEL);
292 if (rc < 0)
293 goto release;
294
Hannes Reinecke969871c2013-10-16 09:12:55 +0200295 if (tmr == TMR_ABORT_TASK)
296 se_cmd->se_tmr_req->ref_task_tag = task;
297
Hannes Reineckea314d702013-10-16 09:12:54 +0200298 /*
299 * Locate the underlying TCM struct se_lun
300 */
301 if (transport_lookup_tmr_lun(se_cmd, lun) < 0) {
302 ret = TMR_LUN_DOES_NOT_EXIST;
303 goto release;
304 }
305 /*
306 * Queue the TMR to TCM Core and sleep waiting for
307 * tcm_loop_queue_tm_rsp() to wake us up.
308 */
309 transport_generic_handle_tmr(se_cmd);
310 wait_event(tl_tmr->tl_tmr_wait, atomic_read(&tl_tmr->tmr_complete));
311 /*
312 * The TMR LUN_RESET has completed, check the response status and
313 * then release allocations.
314 */
315 ret = se_cmd->se_tmr_req->response;
316release:
317 if (se_cmd)
318 transport_generic_free_cmd(se_cmd, 1);
319 else
320 kmem_cache_free(tcm_loop_cmd_cache, tl_cmd);
321 kfree(tl_tmr);
322 return ret;
323}
324
Hannes Reinecke969871c2013-10-16 09:12:55 +0200325static int tcm_loop_abort_task(struct scsi_cmnd *sc)
326{
327 struct tcm_loop_hba *tl_hba;
328 struct tcm_loop_nexus *tl_nexus;
329 struct tcm_loop_tpg *tl_tpg;
330 int ret = FAILED;
331
332 /*
333 * Locate the tcm_loop_hba_t pointer
334 */
335 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
336 /*
337 * Locate the tl_nexus and se_sess pointers
338 */
339 tl_nexus = tl_hba->tl_nexus;
340 if (!tl_nexus) {
341 pr_err("Unable to perform device reset without"
342 " active I_T Nexus\n");
343 return FAILED;
344 }
345
346 /*
347 * Locate the tl_tpg pointer from TargetID in sc->device->id
348 */
349 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
350 ret = tcm_loop_issue_tmr(tl_tpg, tl_nexus, sc->device->lun,
Hannes Reinecke6375f892014-10-02 09:30:55 +0200351 sc->request->tag, TMR_ABORT_TASK);
Hannes Reinecke969871c2013-10-16 09:12:55 +0200352 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
353}
354
Hannes Reineckea314d702013-10-16 09:12:54 +0200355/*
356 * Called from SCSI EH process context to issue a LUN_RESET TMR
357 * to struct scsi_device
358 */
359static int tcm_loop_device_reset(struct scsi_cmnd *sc)
360{
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700361 struct tcm_loop_hba *tl_hba;
362 struct tcm_loop_nexus *tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700363 struct tcm_loop_tpg *tl_tpg;
Hannes Reineckea314d702013-10-16 09:12:54 +0200364 int ret = FAILED;
365
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700366 /*
367 * Locate the tcm_loop_hba_t pointer
368 */
369 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
370 /*
371 * Locate the tl_nexus and se_sess pointers
372 */
373 tl_nexus = tl_hba->tl_nexus;
374 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700375 pr_err("Unable to perform device reset without"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700376 " active I_T Nexus\n");
377 return FAILED;
378 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700379 /*
Hannes Reineckea314d702013-10-16 09:12:54 +0200380 * Locate the tl_tpg pointer from TargetID in sc->device->id
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700381 */
382 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
Hannes Reinecke969871c2013-10-16 09:12:55 +0200383 ret = tcm_loop_issue_tmr(tl_tpg, tl_nexus, sc->device->lun,
384 0, TMR_LUN_RESET);
Hannes Reineckea314d702013-10-16 09:12:54 +0200385 return (ret == TMR_FUNCTION_COMPLETE) ? SUCCESS : FAILED;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700386}
387
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200388static int tcm_loop_target_reset(struct scsi_cmnd *sc)
389{
390 struct tcm_loop_hba *tl_hba;
391 struct tcm_loop_tpg *tl_tpg;
392
393 /*
394 * Locate the tcm_loop_hba_t pointer
395 */
396 tl_hba = *(struct tcm_loop_hba **)shost_priv(sc->device->host);
397 if (!tl_hba) {
398 pr_err("Unable to perform device reset without"
399 " active I_T Nexus\n");
400 return FAILED;
401 }
402 /*
403 * Locate the tl_tpg pointer from TargetID in sc->device->id
404 */
405 tl_tpg = &tl_hba->tl_hba_tpgs[sc->device->id];
406 if (tl_tpg) {
407 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
408 return SUCCESS;
409 }
410 return FAILED;
411}
412
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700413static int tcm_loop_slave_alloc(struct scsi_device *sd)
414{
415 set_bit(QUEUE_FLAG_BIDI, &sd->request_queue->queue_flags);
416 return 0;
417}
418
419static int tcm_loop_slave_configure(struct scsi_device *sd)
420{
Hannes Reinecke969871c2013-10-16 09:12:55 +0200421 if (sd->tagged_supported) {
422 scsi_activate_tcq(sd, sd->queue_depth);
423 scsi_adjust_queue_depth(sd, MSG_SIMPLE_TAG,
424 sd->host->cmd_per_lun);
425 } else {
426 scsi_adjust_queue_depth(sd, 0,
427 sd->host->cmd_per_lun);
428 }
429
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700430 return 0;
431}
432
433static struct scsi_host_template tcm_loop_driver_template = {
Al Viro8946b072013-03-31 02:01:55 -0400434 .show_info = tcm_loop_show_info,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700435 .proc_name = "tcm_loopback",
436 .name = "TCM_Loopback",
437 .queuecommand = tcm_loop_queuecommand,
438 .change_queue_depth = tcm_loop_change_queue_depth,
Christoph Hellwiga62182f2014-10-02 14:39:55 +0200439 .change_queue_type = scsi_change_queue_type,
Hannes Reinecke969871c2013-10-16 09:12:55 +0200440 .eh_abort_handler = tcm_loop_abort_task,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700441 .eh_device_reset_handler = tcm_loop_device_reset,
Hannes Reinecke8f4a1fb2013-10-16 09:12:56 +0200442 .eh_target_reset_handler = tcm_loop_target_reset,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500443 .can_queue = 1024,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700444 .this_id = -1,
Christoph Hellwig2e88efd2011-11-29 03:20:41 -0500445 .sg_tablesize = 256,
446 .cmd_per_lun = 1024,
447 .max_sectors = 0xFFFF,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700448 .use_clustering = DISABLE_CLUSTERING,
449 .slave_alloc = tcm_loop_slave_alloc,
450 .slave_configure = tcm_loop_slave_configure,
451 .module = THIS_MODULE,
452};
453
454static int tcm_loop_driver_probe(struct device *dev)
455{
456 struct tcm_loop_hba *tl_hba;
457 struct Scsi_Host *sh;
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000458 int error, host_prot;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700459
460 tl_hba = to_tcm_loop_hba(dev);
461
462 sh = scsi_host_alloc(&tcm_loop_driver_template,
463 sizeof(struct tcm_loop_hba));
464 if (!sh) {
Andy Grover6708bb22011-06-08 10:36:43 -0700465 pr_err("Unable to allocate struct scsi_host\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700466 return -ENODEV;
467 }
468 tl_hba->sh = sh;
469
470 /*
471 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
472 */
473 *((struct tcm_loop_hba **)sh->hostdata) = tl_hba;
474 /*
475 * Setup single ID, Channel and LUN for now..
476 */
477 sh->max_id = 2;
478 sh->max_lun = 0;
479 sh->max_channel = 0;
480 sh->max_cmd_len = TL_SCSI_MAX_CMD_LEN;
481
Nicholas Bellinger59dedde2013-12-23 20:39:23 +0000482 host_prot = SHOST_DIF_TYPE1_PROTECTION | SHOST_DIF_TYPE2_PROTECTION |
483 SHOST_DIF_TYPE3_PROTECTION | SHOST_DIX_TYPE1_PROTECTION |
484 SHOST_DIX_TYPE2_PROTECTION | SHOST_DIX_TYPE3_PROTECTION;
485
486 scsi_host_set_prot(sh, host_prot);
487 scsi_host_set_guard(sh, SHOST_DIX_GUARD_CRC);
488
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700489 error = scsi_add_host(sh, &tl_hba->dev);
490 if (error) {
Andy Grover6708bb22011-06-08 10:36:43 -0700491 pr_err("%s: scsi_add_host failed\n", __func__);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700492 scsi_host_put(sh);
493 return -ENODEV;
494 }
495 return 0;
496}
497
498static int tcm_loop_driver_remove(struct device *dev)
499{
500 struct tcm_loop_hba *tl_hba;
501 struct Scsi_Host *sh;
502
503 tl_hba = to_tcm_loop_hba(dev);
504 sh = tl_hba->sh;
505
506 scsi_remove_host(sh);
507 scsi_host_put(sh);
508 return 0;
509}
510
511static void tcm_loop_release_adapter(struct device *dev)
512{
513 struct tcm_loop_hba *tl_hba = to_tcm_loop_hba(dev);
514
515 kfree(tl_hba);
516}
517
518/*
519 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
520 */
521static int tcm_loop_setup_hba_bus(struct tcm_loop_hba *tl_hba, int tcm_loop_host_id)
522{
523 int ret;
524
525 tl_hba->dev.bus = &tcm_loop_lld_bus;
526 tl_hba->dev.parent = tcm_loop_primary;
527 tl_hba->dev.release = &tcm_loop_release_adapter;
528 dev_set_name(&tl_hba->dev, "tcm_loop_adapter_%d", tcm_loop_host_id);
529
530 ret = device_register(&tl_hba->dev);
531 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700532 pr_err("device_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700533 " tl_hba->dev: %d\n", ret);
534 return -ENODEV;
535 }
536
537 return 0;
538}
539
540/*
541 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
542 * tcm_loop SCSI bus.
543 */
544static int tcm_loop_alloc_core_bus(void)
545{
546 int ret;
547
548 tcm_loop_primary = root_device_register("tcm_loop_0");
549 if (IS_ERR(tcm_loop_primary)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700550 pr_err("Unable to allocate tcm_loop_primary\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700551 return PTR_ERR(tcm_loop_primary);
552 }
553
554 ret = bus_register(&tcm_loop_lld_bus);
555 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700556 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700557 goto dev_unreg;
558 }
559
560 ret = driver_register(&tcm_loop_driverfs);
561 if (ret) {
Andy Grover6708bb22011-06-08 10:36:43 -0700562 pr_err("driver_register() failed for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700563 "tcm_loop_driverfs\n");
564 goto bus_unreg;
565 }
566
Andy Grover6708bb22011-06-08 10:36:43 -0700567 pr_debug("Initialized TCM Loop Core Bus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700568 return ret;
569
570bus_unreg:
571 bus_unregister(&tcm_loop_lld_bus);
572dev_unreg:
573 root_device_unregister(tcm_loop_primary);
574 return ret;
575}
576
577static void tcm_loop_release_core_bus(void)
578{
579 driver_unregister(&tcm_loop_driverfs);
580 bus_unregister(&tcm_loop_lld_bus);
581 root_device_unregister(tcm_loop_primary);
582
Andy Grover6708bb22011-06-08 10:36:43 -0700583 pr_debug("Releasing TCM Loop Core BUS\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700584}
585
586static char *tcm_loop_get_fabric_name(void)
587{
588 return "loopback";
589}
590
591static u8 tcm_loop_get_fabric_proto_ident(struct se_portal_group *se_tpg)
592{
Jörn Engel8359cf42011-11-24 02:05:51 +0100593 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700594 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
595 /*
596 * tl_proto_id is set at tcm_loop_configfs.c:tcm_loop_make_scsi_hba()
597 * time based on the protocol dependent prefix of the passed configfs group.
598 *
599 * Based upon tl_proto_id, TCM_Loop emulates the requested fabric
600 * ProtocolID using target_core_fabric_lib.c symbols.
601 */
602 switch (tl_hba->tl_proto_id) {
603 case SCSI_PROTOCOL_SAS:
604 return sas_get_fabric_proto_ident(se_tpg);
605 case SCSI_PROTOCOL_FCP:
606 return fc_get_fabric_proto_ident(se_tpg);
607 case SCSI_PROTOCOL_ISCSI:
608 return iscsi_get_fabric_proto_ident(se_tpg);
609 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700610 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700611 " SAS emulation\n", tl_hba->tl_proto_id);
612 break;
613 }
614
615 return sas_get_fabric_proto_ident(se_tpg);
616}
617
618static char *tcm_loop_get_endpoint_wwn(struct se_portal_group *se_tpg)
619{
Jörn Engel8359cf42011-11-24 02:05:51 +0100620 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700621 /*
622 * Return the passed NAA identifier for the SAS Target Port
623 */
624 return &tl_tpg->tl_hba->tl_wwn_address[0];
625}
626
627static u16 tcm_loop_get_tag(struct se_portal_group *se_tpg)
628{
Jörn Engel8359cf42011-11-24 02:05:51 +0100629 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700630 /*
631 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
632 * to represent the SCSI Target Port.
633 */
634 return tl_tpg->tl_tpgt;
635}
636
637static u32 tcm_loop_get_default_depth(struct se_portal_group *se_tpg)
638{
639 return 1;
640}
641
642static u32 tcm_loop_get_pr_transport_id(
643 struct se_portal_group *se_tpg,
644 struct se_node_acl *se_nacl,
645 struct t10_pr_registration *pr_reg,
646 int *format_code,
647 unsigned char *buf)
648{
Jörn Engel8359cf42011-11-24 02:05:51 +0100649 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700650 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
651
652 switch (tl_hba->tl_proto_id) {
653 case SCSI_PROTOCOL_SAS:
654 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
655 format_code, buf);
656 case SCSI_PROTOCOL_FCP:
657 return fc_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
658 format_code, buf);
659 case SCSI_PROTOCOL_ISCSI:
660 return iscsi_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
661 format_code, buf);
662 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700663 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700664 " SAS emulation\n", tl_hba->tl_proto_id);
665 break;
666 }
667
668 return sas_get_pr_transport_id(se_tpg, se_nacl, pr_reg,
669 format_code, buf);
670}
671
672static u32 tcm_loop_get_pr_transport_id_len(
673 struct se_portal_group *se_tpg,
674 struct se_node_acl *se_nacl,
675 struct t10_pr_registration *pr_reg,
676 int *format_code)
677{
Jörn Engel8359cf42011-11-24 02:05:51 +0100678 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700679 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
680
681 switch (tl_hba->tl_proto_id) {
682 case SCSI_PROTOCOL_SAS:
683 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
684 format_code);
685 case SCSI_PROTOCOL_FCP:
686 return fc_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
687 format_code);
688 case SCSI_PROTOCOL_ISCSI:
689 return iscsi_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
690 format_code);
691 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700692 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700693 " SAS emulation\n", tl_hba->tl_proto_id);
694 break;
695 }
696
697 return sas_get_pr_transport_id_len(se_tpg, se_nacl, pr_reg,
698 format_code);
699}
700
701/*
702 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
703 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
704 */
705static char *tcm_loop_parse_pr_out_transport_id(
706 struct se_portal_group *se_tpg,
707 const char *buf,
708 u32 *out_tid_len,
709 char **port_nexus_ptr)
710{
Jörn Engel8359cf42011-11-24 02:05:51 +0100711 struct tcm_loop_tpg *tl_tpg = se_tpg->se_tpg_fabric_ptr;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700712 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
713
714 switch (tl_hba->tl_proto_id) {
715 case SCSI_PROTOCOL_SAS:
716 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
717 port_nexus_ptr);
718 case SCSI_PROTOCOL_FCP:
719 return fc_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
720 port_nexus_ptr);
721 case SCSI_PROTOCOL_ISCSI:
722 return iscsi_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
723 port_nexus_ptr);
724 default:
Andy Grover6708bb22011-06-08 10:36:43 -0700725 pr_err("Unknown tl_proto_id: 0x%02x, using"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700726 " SAS emulation\n", tl_hba->tl_proto_id);
727 break;
728 }
729
730 return sas_parse_pr_out_transport_id(se_tpg, buf, out_tid_len,
731 port_nexus_ptr);
732}
733
734/*
735 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
736 * based upon the incoming fabric dependent SCSI Initiator Port
737 */
738static int tcm_loop_check_demo_mode(struct se_portal_group *se_tpg)
739{
740 return 1;
741}
742
743static int tcm_loop_check_demo_mode_cache(struct se_portal_group *se_tpg)
744{
745 return 0;
746}
747
748/*
749 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
750 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
751 */
752static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group *se_tpg)
753{
754 return 0;
755}
756
757/*
758 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
759 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
760 * It has been added here as a nop for target_fabric_tf_ops_check()
761 */
762static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group *se_tpg)
763{
764 return 0;
765}
766
767static struct se_node_acl *tcm_loop_tpg_alloc_fabric_acl(
768 struct se_portal_group *se_tpg)
769{
770 struct tcm_loop_nacl *tl_nacl;
771
772 tl_nacl = kzalloc(sizeof(struct tcm_loop_nacl), GFP_KERNEL);
773 if (!tl_nacl) {
Andy Grover6708bb22011-06-08 10:36:43 -0700774 pr_err("Unable to allocate struct tcm_loop_nacl\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700775 return NULL;
776 }
777
778 return &tl_nacl->se_node_acl;
779}
780
781static void tcm_loop_tpg_release_fabric_acl(
782 struct se_portal_group *se_tpg,
783 struct se_node_acl *se_nacl)
784{
785 struct tcm_loop_nacl *tl_nacl = container_of(se_nacl,
786 struct tcm_loop_nacl, se_node_acl);
787
788 kfree(tl_nacl);
789}
790
791static u32 tcm_loop_get_inst_index(struct se_portal_group *se_tpg)
792{
793 return 1;
794}
795
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700796static u32 tcm_loop_sess_get_index(struct se_session *se_sess)
797{
798 return 1;
799}
800
801static void tcm_loop_set_default_node_attributes(struct se_node_acl *se_acl)
802{
803 return;
804}
805
806static u32 tcm_loop_get_task_tag(struct se_cmd *se_cmd)
807{
Hannes Reinecke969871c2013-10-16 09:12:55 +0200808 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
809 struct tcm_loop_cmd, tl_se_cmd);
810
811 return tl_cmd->sc_cmd_tag;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700812}
813
814static int tcm_loop_get_cmd_state(struct se_cmd *se_cmd)
815{
816 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
817 struct tcm_loop_cmd, tl_se_cmd);
818
819 return tl_cmd->sc_cmd_state;
820}
821
822static int tcm_loop_shutdown_session(struct se_session *se_sess)
823{
824 return 0;
825}
826
827static void tcm_loop_close_session(struct se_session *se_sess)
828{
829 return;
830};
831
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700832static int tcm_loop_write_pending(struct se_cmd *se_cmd)
833{
834 /*
835 * Since Linux/SCSI has already sent down a struct scsi_cmnd
836 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
837 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
838 * format with transport_generic_map_mem_to_cmd().
839 *
840 * We now tell TCM to add this WRITE CDB directly into the TCM storage
841 * object execution queue.
842 */
Christoph Hellwig70baf0a2012-07-08 15:58:39 -0400843 target_execute_cmd(se_cmd);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700844 return 0;
845}
846
847static int tcm_loop_write_pending_status(struct se_cmd *se_cmd)
848{
849 return 0;
850}
851
852static int tcm_loop_queue_data_in(struct se_cmd *se_cmd)
853{
854 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
855 struct tcm_loop_cmd, tl_se_cmd);
856 struct scsi_cmnd *sc = tl_cmd->sc;
857
Andy Grover6708bb22011-06-08 10:36:43 -0700858 pr_debug("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700859 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
860
861 sc->result = SAM_STAT_GOOD;
862 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800863 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
864 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
865 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700866 sc->scsi_done(sc);
867 return 0;
868}
869
870static int tcm_loop_queue_status(struct se_cmd *se_cmd)
871{
872 struct tcm_loop_cmd *tl_cmd = container_of(se_cmd,
873 struct tcm_loop_cmd, tl_se_cmd);
874 struct scsi_cmnd *sc = tl_cmd->sc;
875
Andy Grover6708bb22011-06-08 10:36:43 -0700876 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700877 " cdb: 0x%02x\n", sc, sc->cmnd[0]);
878
879 if (se_cmd->sense_buffer &&
880 ((se_cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) ||
881 (se_cmd->se_cmd_flags & SCF_EMULATED_TASK_SENSE))) {
882
Andy Grover5951146d2011-07-19 10:26:37 +0000883 memcpy(sc->sense_buffer, se_cmd->sense_buffer,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700884 SCSI_SENSE_BUFFERSIZE);
885 sc->result = SAM_STAT_CHECK_CONDITION;
886 set_driver_byte(sc, DRIVER_SENSE);
887 } else
888 sc->result = se_cmd->scsi_status;
889
890 set_host_byte(sc, DID_OK);
Roland Dreier6cf3fa62012-02-14 15:30:31 -0800891 if ((se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) ||
892 (se_cmd->se_cmd_flags & SCF_UNDERFLOW_BIT))
893 scsi_set_resid(sc, se_cmd->residual_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700894 sc->scsi_done(sc);
895 return 0;
896}
897
Joern Engelb79fafa2013-07-03 11:22:17 -0400898static void tcm_loop_queue_tm_rsp(struct se_cmd *se_cmd)
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700899{
900 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
901 struct tcm_loop_tmr *tl_tmr = se_tmr->fabric_tmr_ptr;
902 /*
903 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
904 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
905 */
906 atomic_set(&tl_tmr->tmr_complete, 1);
907 wake_up(&tl_tmr->tl_tmr_wait);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700908}
909
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700910static void tcm_loop_aborted_task(struct se_cmd *se_cmd)
911{
912 return;
913}
914
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700915static char *tcm_loop_dump_proto_id(struct tcm_loop_hba *tl_hba)
916{
917 switch (tl_hba->tl_proto_id) {
918 case SCSI_PROTOCOL_SAS:
919 return "SAS";
920 case SCSI_PROTOCOL_FCP:
921 return "FCP";
922 case SCSI_PROTOCOL_ISCSI:
923 return "iSCSI";
924 default:
925 break;
926 }
927
928 return "Unknown";
929}
930
931/* Start items for tcm_loop_port_cit */
932
933static int tcm_loop_port_link(
934 struct se_portal_group *se_tpg,
935 struct se_lun *lun)
936{
937 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
938 struct tcm_loop_tpg, tl_se_tpg);
939 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
940
Joern Engel33940d02014-09-16 16:23:12 -0400941 atomic_inc_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700942 /*
943 * Add Linux/SCSI struct scsi_device by HCTL
944 */
945 scsi_add_device(tl_hba->sh, 0, tl_tpg->tl_tpgt, lun->unpacked_lun);
946
Andy Grover6708bb22011-06-08 10:36:43 -0700947 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700948 return 0;
949}
950
951static void tcm_loop_port_unlink(
952 struct se_portal_group *se_tpg,
953 struct se_lun *se_lun)
954{
955 struct scsi_device *sd;
956 struct tcm_loop_hba *tl_hba;
957 struct tcm_loop_tpg *tl_tpg;
958
959 tl_tpg = container_of(se_tpg, struct tcm_loop_tpg, tl_se_tpg);
960 tl_hba = tl_tpg->tl_hba;
961
962 sd = scsi_device_lookup(tl_hba->sh, 0, tl_tpg->tl_tpgt,
963 se_lun->unpacked_lun);
964 if (!sd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700965 pr_err("Unable to locate struct scsi_device for %d:%d:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700966 "%d\n", 0, tl_tpg->tl_tpgt, se_lun->unpacked_lun);
967 return;
968 }
969 /*
970 * Remove Linux/SCSI struct scsi_device by HCTL
971 */
972 scsi_remove_device(sd);
973 scsi_device_put(sd);
974
Joern Engel33940d02014-09-16 16:23:12 -0400975 atomic_dec_mb(&tl_tpg->tl_tpg_port_count);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700976
Andy Grover6708bb22011-06-08 10:36:43 -0700977 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700978}
979
980/* End items for tcm_loop_port_cit */
981
982/* Start items for tcm_loop_nexus_cit */
983
984static int tcm_loop_make_nexus(
985 struct tcm_loop_tpg *tl_tpg,
986 const char *name)
987{
988 struct se_portal_group *se_tpg;
989 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
990 struct tcm_loop_nexus *tl_nexus;
Dan Carpenter552523d2011-06-15 09:41:33 -0700991 int ret = -ENOMEM;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700992
993 if (tl_tpg->tl_hba->tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -0700994 pr_debug("tl_tpg->tl_hba->tl_nexus already exists\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -0700995 return -EEXIST;
996 }
997 se_tpg = &tl_tpg->tl_se_tpg;
998
999 tl_nexus = kzalloc(sizeof(struct tcm_loop_nexus), GFP_KERNEL);
1000 if (!tl_nexus) {
Andy Grover6708bb22011-06-08 10:36:43 -07001001 pr_err("Unable to allocate struct tcm_loop_nexus\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001002 return -ENOMEM;
1003 }
1004 /*
1005 * Initialize the struct se_session pointer
1006 */
Nicholas Bellingere70beee2014-04-02 12:52:38 -07001007 tl_nexus->se_sess = transport_init_session(TARGET_PROT_ALL);
Dan Carpenter552523d2011-06-15 09:41:33 -07001008 if (IS_ERR(tl_nexus->se_sess)) {
1009 ret = PTR_ERR(tl_nexus->se_sess);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001010 goto out;
Dan Carpenter552523d2011-06-15 09:41:33 -07001011 }
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001012 /*
1013 * Since we are running in 'demo mode' this call with generate a
1014 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
1015 * Initiator port name of the passed configfs group 'name'.
1016 */
1017 tl_nexus->se_sess->se_node_acl = core_tpg_check_initiator_node_acl(
1018 se_tpg, (unsigned char *)name);
1019 if (!tl_nexus->se_sess->se_node_acl) {
1020 transport_free_session(tl_nexus->se_sess);
1021 goto out;
1022 }
1023 /*
1024 * Now, register the SAS I_T Nexus as active with the call to
1025 * transport_register_session()
1026 */
1027 __transport_register_session(se_tpg, tl_nexus->se_sess->se_node_acl,
Andy Grover5951146d2011-07-19 10:26:37 +00001028 tl_nexus->se_sess, tl_nexus);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001029 tl_tpg->tl_hba->tl_nexus = tl_nexus;
Andy Grover6708bb22011-06-08 10:36:43 -07001030 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001031 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1032 name);
1033 return 0;
1034
1035out:
1036 kfree(tl_nexus);
Dan Carpenter552523d2011-06-15 09:41:33 -07001037 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001038}
1039
1040static int tcm_loop_drop_nexus(
1041 struct tcm_loop_tpg *tpg)
1042{
1043 struct se_session *se_sess;
1044 struct tcm_loop_nexus *tl_nexus;
1045 struct tcm_loop_hba *tl_hba = tpg->tl_hba;
1046
Hannes Reinecke1ec59fe2013-10-16 09:12:52 +02001047 if (!tl_hba)
1048 return -ENODEV;
1049
1050 tl_nexus = tl_hba->tl_nexus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001051 if (!tl_nexus)
1052 return -ENODEV;
1053
1054 se_sess = tl_nexus->se_sess;
1055 if (!se_sess)
1056 return -ENODEV;
1057
1058 if (atomic_read(&tpg->tl_tpg_port_count)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001059 pr_err("Unable to remove TCM_Loop I_T Nexus with"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001060 " active TPG port count: %d\n",
1061 atomic_read(&tpg->tl_tpg_port_count));
1062 return -EPERM;
1063 }
1064
Andy Grover6708bb22011-06-08 10:36:43 -07001065 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001066 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba),
1067 tl_nexus->se_sess->se_node_acl->initiatorname);
1068 /*
1069 * Release the SCSI I_T Nexus to the emulated SAS Target Port
1070 */
1071 transport_deregister_session(tl_nexus->se_sess);
1072 tpg->tl_hba->tl_nexus = NULL;
1073 kfree(tl_nexus);
1074 return 0;
1075}
1076
1077/* End items for tcm_loop_nexus_cit */
1078
1079static ssize_t tcm_loop_tpg_show_nexus(
1080 struct se_portal_group *se_tpg,
1081 char *page)
1082{
1083 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1084 struct tcm_loop_tpg, tl_se_tpg);
1085 struct tcm_loop_nexus *tl_nexus;
1086 ssize_t ret;
1087
1088 tl_nexus = tl_tpg->tl_hba->tl_nexus;
1089 if (!tl_nexus)
1090 return -ENODEV;
1091
1092 ret = snprintf(page, PAGE_SIZE, "%s\n",
1093 tl_nexus->se_sess->se_node_acl->initiatorname);
1094
1095 return ret;
1096}
1097
1098static ssize_t tcm_loop_tpg_store_nexus(
1099 struct se_portal_group *se_tpg,
1100 const char *page,
1101 size_t count)
1102{
1103 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1104 struct tcm_loop_tpg, tl_se_tpg);
1105 struct tcm_loop_hba *tl_hba = tl_tpg->tl_hba;
1106 unsigned char i_port[TL_WWN_ADDR_LEN], *ptr, *port_ptr;
1107 int ret;
1108 /*
1109 * Shutdown the active I_T nexus if 'NULL' is passed..
1110 */
1111 if (!strncmp(page, "NULL", 4)) {
1112 ret = tcm_loop_drop_nexus(tl_tpg);
1113 return (!ret) ? count : ret;
1114 }
1115 /*
1116 * Otherwise make sure the passed virtual Initiator port WWN matches
1117 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1118 * tcm_loop_make_nexus()
1119 */
Dan Carpenter60d645a2011-06-15 10:03:05 -07001120 if (strlen(page) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001121 pr_err("Emulated NAA Sas Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001122 " max: %d\n", page, TL_WWN_ADDR_LEN);
1123 return -EINVAL;
1124 }
1125 snprintf(&i_port[0], TL_WWN_ADDR_LEN, "%s", page);
1126
1127 ptr = strstr(i_port, "naa.");
1128 if (ptr) {
1129 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_SAS) {
Andy Grover6708bb22011-06-08 10:36:43 -07001130 pr_err("Passed SAS Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001131 " match target port protoid: %s\n", i_port,
1132 tcm_loop_dump_proto_id(tl_hba));
1133 return -EINVAL;
1134 }
1135 port_ptr = &i_port[0];
1136 goto check_newline;
1137 }
1138 ptr = strstr(i_port, "fc.");
1139 if (ptr) {
1140 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_FCP) {
Andy Grover6708bb22011-06-08 10:36:43 -07001141 pr_err("Passed FCP Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001142 " match target port protoid: %s\n", i_port,
1143 tcm_loop_dump_proto_id(tl_hba));
1144 return -EINVAL;
1145 }
1146 port_ptr = &i_port[3]; /* Skip over "fc." */
1147 goto check_newline;
1148 }
1149 ptr = strstr(i_port, "iqn.");
1150 if (ptr) {
1151 if (tl_hba->tl_proto_id != SCSI_PROTOCOL_ISCSI) {
Andy Grover6708bb22011-06-08 10:36:43 -07001152 pr_err("Passed iSCSI Initiator Port %s does not"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001153 " match target port protoid: %s\n", i_port,
1154 tcm_loop_dump_proto_id(tl_hba));
1155 return -EINVAL;
1156 }
1157 port_ptr = &i_port[0];
1158 goto check_newline;
1159 }
Andy Grover6708bb22011-06-08 10:36:43 -07001160 pr_err("Unable to locate prefix for emulated Initiator Port:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001161 " %s\n", i_port);
1162 return -EINVAL;
1163 /*
1164 * Clear any trailing newline for the NAA WWN
1165 */
1166check_newline:
1167 if (i_port[strlen(i_port)-1] == '\n')
1168 i_port[strlen(i_port)-1] = '\0';
1169
1170 ret = tcm_loop_make_nexus(tl_tpg, port_ptr);
1171 if (ret < 0)
1172 return ret;
1173
1174 return count;
1175}
1176
1177TF_TPG_BASE_ATTR(tcm_loop, nexus, S_IRUGO | S_IWUSR);
1178
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001179static ssize_t tcm_loop_tpg_show_transport_status(
1180 struct se_portal_group *se_tpg,
1181 char *page)
1182{
1183 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1184 struct tcm_loop_tpg, tl_se_tpg);
1185 const char *status = NULL;
1186 ssize_t ret = -EINVAL;
1187
1188 switch (tl_tpg->tl_transport_status) {
1189 case TCM_TRANSPORT_ONLINE:
1190 status = "online";
1191 break;
1192 case TCM_TRANSPORT_OFFLINE:
1193 status = "offline";
1194 break;
1195 default:
1196 break;
1197 }
1198
1199 if (status)
1200 ret = snprintf(page, PAGE_SIZE, "%s\n", status);
1201
1202 return ret;
1203}
1204
1205static ssize_t tcm_loop_tpg_store_transport_status(
1206 struct se_portal_group *se_tpg,
1207 const char *page,
1208 size_t count)
1209{
1210 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1211 struct tcm_loop_tpg, tl_se_tpg);
1212
1213 if (!strncmp(page, "online", 6)) {
1214 tl_tpg->tl_transport_status = TCM_TRANSPORT_ONLINE;
1215 return count;
1216 }
1217 if (!strncmp(page, "offline", 7)) {
1218 tl_tpg->tl_transport_status = TCM_TRANSPORT_OFFLINE;
1219 return count;
1220 }
1221 return -EINVAL;
1222}
1223
1224TF_TPG_BASE_ATTR(tcm_loop, transport_status, S_IRUGO | S_IWUSR);
1225
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001226static struct configfs_attribute *tcm_loop_tpg_attrs[] = {
1227 &tcm_loop_tpg_nexus.attr,
Hannes Reineckefb2b2842013-10-16 09:12:53 +02001228 &tcm_loop_tpg_transport_status.attr,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001229 NULL,
1230};
1231
1232/* Start items for tcm_loop_naa_cit */
1233
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301234static struct se_portal_group *tcm_loop_make_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001235 struct se_wwn *wwn,
1236 struct config_group *group,
1237 const char *name)
1238{
1239 struct tcm_loop_hba *tl_hba = container_of(wwn,
1240 struct tcm_loop_hba, tl_hba_wwn);
1241 struct tcm_loop_tpg *tl_tpg;
1242 char *tpgt_str, *end_ptr;
1243 int ret;
1244 unsigned short int tpgt;
1245
1246 tpgt_str = strstr(name, "tpgt_");
1247 if (!tpgt_str) {
Andy Grover6708bb22011-06-08 10:36:43 -07001248 pr_err("Unable to locate \"tpgt_#\" directory"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001249 " group\n");
1250 return ERR_PTR(-EINVAL);
1251 }
1252 tpgt_str += 5; /* Skip ahead of "tpgt_" */
1253 tpgt = (unsigned short int) simple_strtoul(tpgt_str, &end_ptr, 0);
1254
Dan Carpenter12f09cc2011-04-02 14:32:47 -07001255 if (tpgt >= TL_TPGS_PER_HBA) {
Andy Grover6708bb22011-06-08 10:36:43 -07001256 pr_err("Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001257 " %u\n", tpgt, TL_TPGS_PER_HBA);
1258 return ERR_PTR(-EINVAL);
1259 }
1260 tl_tpg = &tl_hba->tl_hba_tpgs[tpgt];
1261 tl_tpg->tl_hba = tl_hba;
1262 tl_tpg->tl_tpgt = tpgt;
1263 /*
1264 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1265 */
1266 ret = core_tpg_register(&tcm_loop_fabric_configfs->tf_ops,
Andy Grover5951146d2011-07-19 10:26:37 +00001267 wwn, &tl_tpg->tl_se_tpg, tl_tpg,
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001268 TRANSPORT_TPG_TYPE_NORMAL);
1269 if (ret < 0)
1270 return ERR_PTR(-ENOMEM);
1271
Andy Grover6708bb22011-06-08 10:36:43 -07001272 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001273 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1274 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1275
1276 return &tl_tpg->tl_se_tpg;
1277}
1278
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301279static void tcm_loop_drop_naa_tpg(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001280 struct se_portal_group *se_tpg)
1281{
1282 struct se_wwn *wwn = se_tpg->se_tpg_wwn;
1283 struct tcm_loop_tpg *tl_tpg = container_of(se_tpg,
1284 struct tcm_loop_tpg, tl_se_tpg);
1285 struct tcm_loop_hba *tl_hba;
1286 unsigned short tpgt;
1287
1288 tl_hba = tl_tpg->tl_hba;
1289 tpgt = tl_tpg->tl_tpgt;
1290 /*
1291 * Release the I_T Nexus for the Virtual SAS link if present
1292 */
1293 tcm_loop_drop_nexus(tl_tpg);
1294 /*
1295 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1296 */
1297 core_tpg_deregister(se_tpg);
1298
Nicholas Bellinger0a020432011-10-10 19:44:05 -07001299 tl_tpg->tl_hba = NULL;
1300 tl_tpg->tl_tpgt = 0;
1301
Andy Grover6708bb22011-06-08 10:36:43 -07001302 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001303 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba),
1304 config_item_name(&wwn->wwn_group.cg_item), tpgt);
1305}
1306
1307/* End items for tcm_loop_naa_cit */
1308
1309/* Start items for tcm_loop_cit */
1310
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301311static struct se_wwn *tcm_loop_make_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001312 struct target_fabric_configfs *tf,
1313 struct config_group *group,
1314 const char *name)
1315{
1316 struct tcm_loop_hba *tl_hba;
1317 struct Scsi_Host *sh;
1318 char *ptr;
1319 int ret, off = 0;
1320
1321 tl_hba = kzalloc(sizeof(struct tcm_loop_hba), GFP_KERNEL);
1322 if (!tl_hba) {
Andy Grover6708bb22011-06-08 10:36:43 -07001323 pr_err("Unable to allocate struct tcm_loop_hba\n");
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001324 return ERR_PTR(-ENOMEM);
1325 }
1326 /*
1327 * Determine the emulated Protocol Identifier and Target Port Name
1328 * based on the incoming configfs directory name.
1329 */
1330 ptr = strstr(name, "naa.");
1331 if (ptr) {
1332 tl_hba->tl_proto_id = SCSI_PROTOCOL_SAS;
1333 goto check_len;
1334 }
1335 ptr = strstr(name, "fc.");
1336 if (ptr) {
1337 tl_hba->tl_proto_id = SCSI_PROTOCOL_FCP;
1338 off = 3; /* Skip over "fc." */
1339 goto check_len;
1340 }
1341 ptr = strstr(name, "iqn.");
Jesper Juhla57b5d32011-06-28 00:30:17 +02001342 if (!ptr) {
Andy Grover6708bb22011-06-08 10:36:43 -07001343 pr_err("Unable to locate prefix for emulated Target "
Jesper Juhla57b5d32011-06-28 00:30:17 +02001344 "Port: %s\n", name);
1345 ret = -EINVAL;
1346 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001347 }
Jesper Juhla57b5d32011-06-28 00:30:17 +02001348 tl_hba->tl_proto_id = SCSI_PROTOCOL_ISCSI;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001349
1350check_len:
Dan Carpenter60d645a2011-06-15 10:03:05 -07001351 if (strlen(name) >= TL_WWN_ADDR_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001352 pr_err("Emulated NAA %s Address: %s, exceeds"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001353 " max: %d\n", name, tcm_loop_dump_proto_id(tl_hba),
1354 TL_WWN_ADDR_LEN);
Jesper Juhla57b5d32011-06-28 00:30:17 +02001355 ret = -EINVAL;
1356 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001357 }
1358 snprintf(&tl_hba->tl_wwn_address[0], TL_WWN_ADDR_LEN, "%s", &name[off]);
1359
1360 /*
1361 * Call device_register(tl_hba->dev) to register the emulated
1362 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1363 * device_register() callbacks in tcm_loop_driver_probe()
1364 */
1365 ret = tcm_loop_setup_hba_bus(tl_hba, tcm_loop_hba_no_cnt);
1366 if (ret)
1367 goto out;
1368
1369 sh = tl_hba->sh;
1370 tcm_loop_hba_no_cnt++;
Andy Grover6708bb22011-06-08 10:36:43 -07001371 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001372 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1373 tcm_loop_dump_proto_id(tl_hba), name, sh->host_no);
1374
1375 return &tl_hba->tl_hba_wwn;
1376out:
1377 kfree(tl_hba);
1378 return ERR_PTR(ret);
1379}
1380
Rashika Kheriaf0a6c692013-12-19 00:02:54 +05301381static void tcm_loop_drop_scsi_hba(
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001382 struct se_wwn *wwn)
1383{
1384 struct tcm_loop_hba *tl_hba = container_of(wwn,
1385 struct tcm_loop_hba, tl_hba_wwn);
Nicholas Bellinger6297b072011-11-12 09:29:51 -08001386
1387 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1388 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1389 tl_hba->tl_wwn_address, tl_hba->sh->host_no);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001390 /*
1391 * Call device_unregister() on the original tl_hba->dev.
1392 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1393 * release *tl_hba;
1394 */
1395 device_unregister(&tl_hba->dev);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001396}
1397
1398/* Start items for tcm_loop_cit */
1399static ssize_t tcm_loop_wwn_show_attr_version(
1400 struct target_fabric_configfs *tf,
1401 char *page)
1402{
1403 return sprintf(page, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION);
1404}
1405
1406TF_WWN_ATTR_RO(tcm_loop, version);
1407
1408static struct configfs_attribute *tcm_loop_wwn_attrs[] = {
1409 &tcm_loop_wwn_version.attr,
1410 NULL,
1411};
1412
1413/* End items for tcm_loop_cit */
1414
1415static int tcm_loop_register_configfs(void)
1416{
1417 struct target_fabric_configfs *fabric;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001418 int ret;
1419 /*
1420 * Set the TCM Loop HBA counter to zero
1421 */
1422 tcm_loop_hba_no_cnt = 0;
1423 /*
1424 * Register the top level struct config_item_type with TCM core
1425 */
1426 fabric = target_fabric_configfs_init(THIS_MODULE, "loopback");
Andy Grovere3d6f902011-07-19 08:55:10 +00001427 if (IS_ERR(fabric)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001428 pr_err("tcm_loop_register_configfs() failed!\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001429 return PTR_ERR(fabric);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001430 }
1431 /*
1432 * Setup the fabric API of function pointers used by target_core_mod
1433 */
1434 fabric->tf_ops.get_fabric_name = &tcm_loop_get_fabric_name;
1435 fabric->tf_ops.get_fabric_proto_ident = &tcm_loop_get_fabric_proto_ident;
1436 fabric->tf_ops.tpg_get_wwn = &tcm_loop_get_endpoint_wwn;
1437 fabric->tf_ops.tpg_get_tag = &tcm_loop_get_tag;
1438 fabric->tf_ops.tpg_get_default_depth = &tcm_loop_get_default_depth;
1439 fabric->tf_ops.tpg_get_pr_transport_id = &tcm_loop_get_pr_transport_id;
1440 fabric->tf_ops.tpg_get_pr_transport_id_len =
1441 &tcm_loop_get_pr_transport_id_len;
1442 fabric->tf_ops.tpg_parse_pr_out_transport_id =
1443 &tcm_loop_parse_pr_out_transport_id;
1444 fabric->tf_ops.tpg_check_demo_mode = &tcm_loop_check_demo_mode;
1445 fabric->tf_ops.tpg_check_demo_mode_cache =
1446 &tcm_loop_check_demo_mode_cache;
1447 fabric->tf_ops.tpg_check_demo_mode_write_protect =
1448 &tcm_loop_check_demo_mode_write_protect;
1449 fabric->tf_ops.tpg_check_prod_mode_write_protect =
1450 &tcm_loop_check_prod_mode_write_protect;
1451 /*
1452 * The TCM loopback fabric module runs in demo-mode to a local
1453 * virtual SCSI device, so fabric dependent initator ACLs are
1454 * not required.
1455 */
1456 fabric->tf_ops.tpg_alloc_fabric_acl = &tcm_loop_tpg_alloc_fabric_acl;
1457 fabric->tf_ops.tpg_release_fabric_acl =
1458 &tcm_loop_tpg_release_fabric_acl;
1459 fabric->tf_ops.tpg_get_inst_index = &tcm_loop_get_inst_index;
1460 /*
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001461 * Used for setting up remaining TCM resources in process context
1462 */
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001463 fabric->tf_ops.check_stop_free = &tcm_loop_check_stop_free;
Christoph Hellwig35462972011-05-31 23:56:57 -04001464 fabric->tf_ops.release_cmd = &tcm_loop_release_cmd;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001465 fabric->tf_ops.shutdown_session = &tcm_loop_shutdown_session;
1466 fabric->tf_ops.close_session = &tcm_loop_close_session;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001467 fabric->tf_ops.sess_get_index = &tcm_loop_sess_get_index;
1468 fabric->tf_ops.sess_get_initiator_sid = NULL;
1469 fabric->tf_ops.write_pending = &tcm_loop_write_pending;
1470 fabric->tf_ops.write_pending_status = &tcm_loop_write_pending_status;
1471 /*
1472 * Not used for TCM loopback
1473 */
1474 fabric->tf_ops.set_default_node_attributes =
1475 &tcm_loop_set_default_node_attributes;
1476 fabric->tf_ops.get_task_tag = &tcm_loop_get_task_tag;
1477 fabric->tf_ops.get_cmd_state = &tcm_loop_get_cmd_state;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001478 fabric->tf_ops.queue_data_in = &tcm_loop_queue_data_in;
1479 fabric->tf_ops.queue_status = &tcm_loop_queue_status;
1480 fabric->tf_ops.queue_tm_rsp = &tcm_loop_queue_tm_rsp;
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -07001481 fabric->tf_ops.aborted_task = &tcm_loop_aborted_task;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001482
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001483 /*
1484 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1485 */
1486 fabric->tf_ops.fabric_make_wwn = &tcm_loop_make_scsi_hba;
1487 fabric->tf_ops.fabric_drop_wwn = &tcm_loop_drop_scsi_hba;
1488 fabric->tf_ops.fabric_make_tpg = &tcm_loop_make_naa_tpg;
1489 fabric->tf_ops.fabric_drop_tpg = &tcm_loop_drop_naa_tpg;
1490 /*
1491 * fabric_post_link() and fabric_pre_unlink() are used for
1492 * registration and release of TCM Loop Virtual SCSI LUNs.
1493 */
1494 fabric->tf_ops.fabric_post_link = &tcm_loop_port_link;
1495 fabric->tf_ops.fabric_pre_unlink = &tcm_loop_port_unlink;
1496 fabric->tf_ops.fabric_make_np = NULL;
1497 fabric->tf_ops.fabric_drop_np = NULL;
1498 /*
1499 * Setup default attribute lists for various fabric->tf_cit_tmpl
1500 */
Andy Groverd80e224d2013-10-09 11:05:56 -07001501 fabric->tf_cit_tmpl.tfc_wwn_cit.ct_attrs = tcm_loop_wwn_attrs;
1502 fabric->tf_cit_tmpl.tfc_tpg_base_cit.ct_attrs = tcm_loop_tpg_attrs;
1503 fabric->tf_cit_tmpl.tfc_tpg_attrib_cit.ct_attrs = NULL;
1504 fabric->tf_cit_tmpl.tfc_tpg_param_cit.ct_attrs = NULL;
1505 fabric->tf_cit_tmpl.tfc_tpg_np_base_cit.ct_attrs = NULL;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001506 /*
1507 * Once fabric->tf_ops has been setup, now register the fabric for
1508 * use within TCM
1509 */
1510 ret = target_fabric_configfs_register(fabric);
1511 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07001512 pr_err("target_fabric_configfs_register() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001513 " TCM_Loop failed!\n");
1514 target_fabric_configfs_free(fabric);
1515 return -1;
1516 }
1517 /*
1518 * Setup our local pointer to *fabric.
1519 */
1520 tcm_loop_fabric_configfs = fabric;
Andy Grover6708bb22011-06-08 10:36:43 -07001521 pr_debug("TCM_LOOP[0] - Set fabric ->"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001522 " tcm_loop_fabric_configfs\n");
1523 return 0;
1524}
1525
1526static void tcm_loop_deregister_configfs(void)
1527{
1528 if (!tcm_loop_fabric_configfs)
1529 return;
1530
1531 target_fabric_configfs_deregister(tcm_loop_fabric_configfs);
1532 tcm_loop_fabric_configfs = NULL;
Andy Grover6708bb22011-06-08 10:36:43 -07001533 pr_debug("TCM_LOOP[0] - Cleared"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001534 " tcm_loop_fabric_configfs\n");
1535}
1536
1537static int __init tcm_loop_fabric_init(void)
1538{
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001539 int ret = -ENOMEM;
1540
1541 tcm_loop_workqueue = alloc_workqueue("tcm_loop", 0, 0);
1542 if (!tcm_loop_workqueue)
1543 goto out;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001544
1545 tcm_loop_cmd_cache = kmem_cache_create("tcm_loop_cmd_cache",
1546 sizeof(struct tcm_loop_cmd),
1547 __alignof__(struct tcm_loop_cmd),
1548 0, NULL);
1549 if (!tcm_loop_cmd_cache) {
Andy Grover6708bb22011-06-08 10:36:43 -07001550 pr_debug("kmem_cache_create() for"
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001551 " tcm_loop_cmd_cache failed\n");
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001552 goto out_destroy_workqueue;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001553 }
1554
1555 ret = tcm_loop_alloc_core_bus();
1556 if (ret)
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001557 goto out_destroy_cache;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001558
1559 ret = tcm_loop_register_configfs();
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001560 if (ret)
1561 goto out_release_core_bus;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001562
1563 return 0;
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001564
1565out_release_core_bus:
1566 tcm_loop_release_core_bus();
1567out_destroy_cache:
1568 kmem_cache_destroy(tcm_loop_cmd_cache);
1569out_destroy_workqueue:
1570 destroy_workqueue(tcm_loop_workqueue);
1571out:
1572 return ret;
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001573}
1574
1575static void __exit tcm_loop_fabric_exit(void)
1576{
1577 tcm_loop_deregister_configfs();
1578 tcm_loop_release_core_bus();
1579 kmem_cache_destroy(tcm_loop_cmd_cache);
Christoph Hellwigafe2cb72012-02-02 17:04:41 -05001580 destroy_workqueue(tcm_loop_workqueue);
Nicholas Bellinger3703b2c2011-03-18 15:39:17 -07001581}
1582
1583MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1584MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1585MODULE_LICENSE("GPL");
1586module_init(tcm_loop_fabric_init);
1587module_exit(tcm_loop_fabric_exit);