1 /*******************************************************************************
3 * This file contains the Linux/SCSI LLD virtual SCSI initiator driver
4 * for emulated SAS initiator ports
6 * © Copyright 2011-2013 Datera, Inc.
8 * Licensed to the Linux Foundation under the General Public License (GPL) version 2.
10 * Author: Nicholas A. Bellinger <nab@risingtidesystems.com>
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.
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 ****************************************************************************/
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>
35 #include <target/target_core_base.h>
36 #include <target/target_core_fabric.h>
40 #define to_tcm_loop_hba(hba) container_of(hba, struct tcm_loop_hba, dev)
42 static struct workqueue_struct
*tcm_loop_workqueue
;
43 static struct kmem_cache
*tcm_loop_cmd_cache
;
45 static int tcm_loop_hba_no_cnt
;
47 static int tcm_loop_queue_status(struct se_cmd
*se_cmd
);
50 * Called from struct target_core_fabric_ops->check_stop_free()
52 static int tcm_loop_check_stop_free(struct se_cmd
*se_cmd
)
54 return transport_generic_free_cmd(se_cmd
, 0);
57 static void tcm_loop_release_cmd(struct se_cmd
*se_cmd
)
59 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
60 struct tcm_loop_cmd
, tl_se_cmd
);
62 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
65 static int tcm_loop_show_info(struct seq_file
*m
, struct Scsi_Host
*host
)
67 seq_puts(m
, "tcm_loop_proc_info()\n");
71 static int tcm_loop_driver_probe(struct device
*);
72 static int tcm_loop_driver_remove(struct device
*);
74 static int pseudo_lld_bus_match(struct device
*dev
,
75 struct device_driver
*dev_driver
)
80 static struct bus_type tcm_loop_lld_bus
= {
81 .name
= "tcm_loop_bus",
82 .match
= pseudo_lld_bus_match
,
83 .probe
= tcm_loop_driver_probe
,
84 .remove
= tcm_loop_driver_remove
,
87 static struct device_driver tcm_loop_driverfs
= {
89 .bus
= &tcm_loop_lld_bus
,
92 * Used with root_device_register() in tcm_loop_alloc_core_bus() below
94 static struct device
*tcm_loop_primary
;
96 static void tcm_loop_submission_work(struct work_struct
*work
)
98 struct tcm_loop_cmd
*tl_cmd
=
99 container_of(work
, struct tcm_loop_cmd
, work
);
100 struct se_cmd
*se_cmd
= &tl_cmd
->tl_se_cmd
;
101 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
102 struct tcm_loop_nexus
*tl_nexus
;
103 struct tcm_loop_hba
*tl_hba
;
104 struct tcm_loop_tpg
*tl_tpg
;
105 struct scatterlist
*sgl_bidi
= NULL
;
106 u32 sgl_bidi_count
= 0, transfer_length
;
109 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
110 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
113 * Ensure that this tl_tpg reference from the incoming sc->device->id
114 * has already been configured via tcm_loop_make_naa_tpg().
116 if (!tl_tpg
->tl_hba
) {
117 set_host_byte(sc
, DID_NO_CONNECT
);
120 if (tl_tpg
->tl_transport_status
== TCM_TRANSPORT_OFFLINE
) {
121 set_host_byte(sc
, DID_TRANSPORT_DISRUPTED
);
124 tl_nexus
= tl_tpg
->tl_nexus
;
126 scmd_printk(KERN_ERR
, sc
,
127 "TCM_Loop I_T Nexus does not exist\n");
128 set_host_byte(sc
, DID_ERROR
);
131 if (scsi_bidi_cmnd(sc
)) {
132 struct scsi_data_buffer
*sdb
= scsi_in(sc
);
134 sgl_bidi
= sdb
->table
.sgl
;
135 sgl_bidi_count
= sdb
->table
.nents
;
136 se_cmd
->se_cmd_flags
|= SCF_BIDI
;
140 transfer_length
= scsi_transfer_length(sc
);
141 if (!scsi_prot_sg_count(sc
) &&
142 scsi_get_prot_op(sc
) != SCSI_PROT_NORMAL
) {
143 se_cmd
->prot_pto
= true;
145 * loopback transport doesn't support
146 * WRITE_GENERATE, READ_STRIP protection
147 * information operations, go ahead unprotected.
149 transfer_length
= scsi_bufflen(sc
);
152 se_cmd
->tag
= tl_cmd
->sc_cmd_tag
;
153 rc
= target_submit_cmd_map_sgls(se_cmd
, tl_nexus
->se_sess
, sc
->cmnd
,
154 &tl_cmd
->tl_sense_buf
[0], tl_cmd
->sc
->device
->lun
,
155 transfer_length
, TCM_SIMPLE_TAG
,
156 sc
->sc_data_direction
, 0,
157 scsi_sglist(sc
), scsi_sg_count(sc
),
158 sgl_bidi
, sgl_bidi_count
,
159 scsi_prot_sglist(sc
), scsi_prot_sg_count(sc
));
161 set_host_byte(sc
, DID_NO_CONNECT
);
167 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
172 * ->queuecommand can be and usually is called from interrupt context, so
173 * defer the actual submission to a workqueue.
175 static int tcm_loop_queuecommand(struct Scsi_Host
*sh
, struct scsi_cmnd
*sc
)
177 struct tcm_loop_cmd
*tl_cmd
;
179 pr_debug("%s() %d:%d:%d:%llu got CDB: 0x%02x scsi_buf_len: %u\n",
180 __func__
, sc
->device
->host
->host_no
, sc
->device
->id
,
181 sc
->device
->channel
, sc
->device
->lun
, sc
->cmnd
[0],
184 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_ATOMIC
);
186 set_host_byte(sc
, DID_ERROR
);
192 tl_cmd
->sc_cmd_tag
= sc
->request
->tag
;
193 INIT_WORK(&tl_cmd
->work
, tcm_loop_submission_work
);
194 queue_work(tcm_loop_workqueue
, &tl_cmd
->work
);
199 * Called from SCSI EH process context to issue a LUN_RESET TMR
200 * to struct scsi_device
202 static int tcm_loop_issue_tmr(struct tcm_loop_tpg
*tl_tpg
,
203 u64 lun
, int task
, enum tcm_tmreq_table tmr
)
205 struct se_cmd
*se_cmd
;
206 struct se_session
*se_sess
;
207 struct tcm_loop_nexus
*tl_nexus
;
208 struct tcm_loop_cmd
*tl_cmd
;
209 int ret
= TMR_FUNCTION_FAILED
, rc
;
212 * Locate the tl_nexus and se_sess pointers
214 tl_nexus
= tl_tpg
->tl_nexus
;
216 pr_err("Unable to perform device reset without active I_T Nexus\n");
220 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_KERNEL
);
224 init_completion(&tl_cmd
->tmr_done
);
226 se_cmd
= &tl_cmd
->tl_se_cmd
;
227 se_sess
= tl_tpg
->tl_nexus
->se_sess
;
229 rc
= target_submit_tmr(se_cmd
, se_sess
, tl_cmd
->tl_sense_buf
, lun
,
230 NULL
, tmr
, GFP_KERNEL
, task
,
231 TARGET_SCF_ACK_KREF
);
234 wait_for_completion(&tl_cmd
->tmr_done
);
235 ret
= se_cmd
->se_tmr_req
->response
;
236 target_put_sess_cmd(se_cmd
);
242 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
246 static int tcm_loop_abort_task(struct scsi_cmnd
*sc
)
248 struct tcm_loop_hba
*tl_hba
;
249 struct tcm_loop_tpg
*tl_tpg
;
253 * Locate the tcm_loop_hba_t pointer
255 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
256 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
257 ret
= tcm_loop_issue_tmr(tl_tpg
, sc
->device
->lun
,
258 sc
->request
->tag
, TMR_ABORT_TASK
);
259 return (ret
== TMR_FUNCTION_COMPLETE
) ? SUCCESS
: FAILED
;
263 * Called from SCSI EH process context to issue a LUN_RESET TMR
264 * to struct scsi_device
266 static int tcm_loop_device_reset(struct scsi_cmnd
*sc
)
268 struct tcm_loop_hba
*tl_hba
;
269 struct tcm_loop_tpg
*tl_tpg
;
273 * Locate the tcm_loop_hba_t pointer
275 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
276 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
278 ret
= tcm_loop_issue_tmr(tl_tpg
, sc
->device
->lun
,
280 return (ret
== TMR_FUNCTION_COMPLETE
) ? SUCCESS
: FAILED
;
283 static int tcm_loop_target_reset(struct scsi_cmnd
*sc
)
285 struct tcm_loop_hba
*tl_hba
;
286 struct tcm_loop_tpg
*tl_tpg
;
289 * Locate the tcm_loop_hba_t pointer
291 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
293 pr_err("Unable to perform device reset without active I_T Nexus\n");
297 * Locate the tl_tpg pointer from TargetID in sc->device->id
299 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
301 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_ONLINE
;
307 static int tcm_loop_slave_alloc(struct scsi_device
*sd
)
309 blk_queue_flag_set(QUEUE_FLAG_BIDI
, sd
->request_queue
);
313 static struct scsi_host_template tcm_loop_driver_template
= {
314 .show_info
= tcm_loop_show_info
,
315 .proc_name
= "tcm_loopback",
316 .name
= "TCM_Loopback",
317 .queuecommand
= tcm_loop_queuecommand
,
318 .change_queue_depth
= scsi_change_queue_depth
,
319 .eh_abort_handler
= tcm_loop_abort_task
,
320 .eh_device_reset_handler
= tcm_loop_device_reset
,
321 .eh_target_reset_handler
= tcm_loop_target_reset
,
326 .max_sectors
= 0xFFFF,
327 .dma_boundary
= PAGE_SIZE
- 1,
328 .slave_alloc
= tcm_loop_slave_alloc
,
329 .module
= THIS_MODULE
,
330 .track_queue_depth
= 1,
333 static int tcm_loop_driver_probe(struct device
*dev
)
335 struct tcm_loop_hba
*tl_hba
;
336 struct Scsi_Host
*sh
;
337 int error
, host_prot
;
339 tl_hba
= to_tcm_loop_hba(dev
);
341 sh
= scsi_host_alloc(&tcm_loop_driver_template
,
342 sizeof(struct tcm_loop_hba
));
344 pr_err("Unable to allocate struct scsi_host\n");
350 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
352 *((struct tcm_loop_hba
**)sh
->hostdata
) = tl_hba
;
354 * Setup single ID, Channel and LUN for now..
359 sh
->max_cmd_len
= SCSI_MAX_VARLEN_CDB_SIZE
;
361 host_prot
= SHOST_DIF_TYPE1_PROTECTION
| SHOST_DIF_TYPE2_PROTECTION
|
362 SHOST_DIF_TYPE3_PROTECTION
| SHOST_DIX_TYPE1_PROTECTION
|
363 SHOST_DIX_TYPE2_PROTECTION
| SHOST_DIX_TYPE3_PROTECTION
;
365 scsi_host_set_prot(sh
, host_prot
);
366 scsi_host_set_guard(sh
, SHOST_DIX_GUARD_CRC
);
368 error
= scsi_add_host(sh
, &tl_hba
->dev
);
370 pr_err("%s: scsi_add_host failed\n", __func__
);
377 static int tcm_loop_driver_remove(struct device
*dev
)
379 struct tcm_loop_hba
*tl_hba
;
380 struct Scsi_Host
*sh
;
382 tl_hba
= to_tcm_loop_hba(dev
);
385 scsi_remove_host(sh
);
390 static void tcm_loop_release_adapter(struct device
*dev
)
392 struct tcm_loop_hba
*tl_hba
= to_tcm_loop_hba(dev
);
398 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
400 static int tcm_loop_setup_hba_bus(struct tcm_loop_hba
*tl_hba
, int tcm_loop_host_id
)
404 tl_hba
->dev
.bus
= &tcm_loop_lld_bus
;
405 tl_hba
->dev
.parent
= tcm_loop_primary
;
406 tl_hba
->dev
.release
= &tcm_loop_release_adapter
;
407 dev_set_name(&tl_hba
->dev
, "tcm_loop_adapter_%d", tcm_loop_host_id
);
409 ret
= device_register(&tl_hba
->dev
);
411 pr_err("device_register() failed for tl_hba->dev: %d\n", ret
);
419 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
422 static int tcm_loop_alloc_core_bus(void)
426 tcm_loop_primary
= root_device_register("tcm_loop_0");
427 if (IS_ERR(tcm_loop_primary
)) {
428 pr_err("Unable to allocate tcm_loop_primary\n");
429 return PTR_ERR(tcm_loop_primary
);
432 ret
= bus_register(&tcm_loop_lld_bus
);
434 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
438 ret
= driver_register(&tcm_loop_driverfs
);
440 pr_err("driver_register() failed for tcm_loop_driverfs\n");
444 pr_debug("Initialized TCM Loop Core Bus\n");
448 bus_unregister(&tcm_loop_lld_bus
);
450 root_device_unregister(tcm_loop_primary
);
454 static void tcm_loop_release_core_bus(void)
456 driver_unregister(&tcm_loop_driverfs
);
457 bus_unregister(&tcm_loop_lld_bus
);
458 root_device_unregister(tcm_loop_primary
);
460 pr_debug("Releasing TCM Loop Core BUS\n");
463 static inline struct tcm_loop_tpg
*tl_tpg(struct se_portal_group
*se_tpg
)
465 return container_of(se_tpg
, struct tcm_loop_tpg
, tl_se_tpg
);
468 static char *tcm_loop_get_endpoint_wwn(struct se_portal_group
*se_tpg
)
471 * Return the passed NAA identifier for the Target Port
473 return &tl_tpg(se_tpg
)->tl_hba
->tl_wwn_address
[0];
476 static u16
tcm_loop_get_tag(struct se_portal_group
*se_tpg
)
479 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
480 * to represent the SCSI Target Port.
482 return tl_tpg(se_tpg
)->tl_tpgt
;
486 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
487 * based upon the incoming fabric dependent SCSI Initiator Port
489 static int tcm_loop_check_demo_mode(struct se_portal_group
*se_tpg
)
494 static int tcm_loop_check_demo_mode_cache(struct se_portal_group
*se_tpg
)
500 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
501 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
503 static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group
*se_tpg
)
509 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
510 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
511 * It has been added here as a nop for target_fabric_tf_ops_check()
513 static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group
*se_tpg
)
518 static int tcm_loop_check_prot_fabric_only(struct se_portal_group
*se_tpg
)
520 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
522 return tl_tpg
->tl_fabric_prot_type
;
525 static u32
tcm_loop_get_inst_index(struct se_portal_group
*se_tpg
)
530 static u32
tcm_loop_sess_get_index(struct se_session
*se_sess
)
535 static void tcm_loop_set_default_node_attributes(struct se_node_acl
*se_acl
)
540 static int tcm_loop_get_cmd_state(struct se_cmd
*se_cmd
)
542 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
543 struct tcm_loop_cmd
, tl_se_cmd
);
545 return tl_cmd
->sc_cmd_state
;
548 static int tcm_loop_write_pending(struct se_cmd
*se_cmd
)
551 * Since Linux/SCSI has already sent down a struct scsi_cmnd
552 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
553 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
554 * format with transport_generic_map_mem_to_cmd().
556 * We now tell TCM to add this WRITE CDB directly into the TCM storage
557 * object execution queue.
559 target_execute_cmd(se_cmd
);
563 static int tcm_loop_write_pending_status(struct se_cmd
*se_cmd
)
568 static int tcm_loop_queue_data_in(struct se_cmd
*se_cmd
)
570 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
571 struct tcm_loop_cmd
, tl_se_cmd
);
572 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
574 pr_debug("%s() called for scsi_cmnd: %p cdb: 0x%02x\n",
575 __func__
, sc
, sc
->cmnd
[0]);
577 sc
->result
= SAM_STAT_GOOD
;
578 set_host_byte(sc
, DID_OK
);
579 if ((se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) ||
580 (se_cmd
->se_cmd_flags
& SCF_UNDERFLOW_BIT
))
581 scsi_set_resid(sc
, se_cmd
->residual_count
);
586 static int tcm_loop_queue_status(struct se_cmd
*se_cmd
)
588 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
589 struct tcm_loop_cmd
, tl_se_cmd
);
590 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
592 pr_debug("%s() called for scsi_cmnd: %p cdb: 0x%02x\n",
593 __func__
, sc
, sc
->cmnd
[0]);
595 if (se_cmd
->sense_buffer
&&
596 ((se_cmd
->se_cmd_flags
& SCF_TRANSPORT_TASK_SENSE
) ||
597 (se_cmd
->se_cmd_flags
& SCF_EMULATED_TASK_SENSE
))) {
599 memcpy(sc
->sense_buffer
, se_cmd
->sense_buffer
,
600 SCSI_SENSE_BUFFERSIZE
);
601 sc
->result
= SAM_STAT_CHECK_CONDITION
;
602 set_driver_byte(sc
, DRIVER_SENSE
);
604 sc
->result
= se_cmd
->scsi_status
;
606 set_host_byte(sc
, DID_OK
);
607 if ((se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) ||
608 (se_cmd
->se_cmd_flags
& SCF_UNDERFLOW_BIT
))
609 scsi_set_resid(sc
, se_cmd
->residual_count
);
614 static void tcm_loop_queue_tm_rsp(struct se_cmd
*se_cmd
)
616 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
617 struct tcm_loop_cmd
, tl_se_cmd
);
619 /* Wake up tcm_loop_issue_tmr(). */
620 complete(&tl_cmd
->tmr_done
);
623 static void tcm_loop_aborted_task(struct se_cmd
*se_cmd
)
628 static char *tcm_loop_dump_proto_id(struct tcm_loop_hba
*tl_hba
)
630 switch (tl_hba
->tl_proto_id
) {
631 case SCSI_PROTOCOL_SAS
:
633 case SCSI_PROTOCOL_FCP
:
635 case SCSI_PROTOCOL_ISCSI
:
644 /* Start items for tcm_loop_port_cit */
646 static int tcm_loop_port_link(
647 struct se_portal_group
*se_tpg
,
650 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
651 struct tcm_loop_tpg
, tl_se_tpg
);
652 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
654 atomic_inc_mb(&tl_tpg
->tl_tpg_port_count
);
656 * Add Linux/SCSI struct scsi_device by HCTL
658 scsi_add_device(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
, lun
->unpacked_lun
);
660 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
664 static void tcm_loop_port_unlink(
665 struct se_portal_group
*se_tpg
,
666 struct se_lun
*se_lun
)
668 struct scsi_device
*sd
;
669 struct tcm_loop_hba
*tl_hba
;
670 struct tcm_loop_tpg
*tl_tpg
;
672 tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
, tl_se_tpg
);
673 tl_hba
= tl_tpg
->tl_hba
;
675 sd
= scsi_device_lookup(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
,
676 se_lun
->unpacked_lun
);
678 pr_err("Unable to locate struct scsi_device for %d:%d:%llu\n",
679 0, tl_tpg
->tl_tpgt
, se_lun
->unpacked_lun
);
683 * Remove Linux/SCSI struct scsi_device by HCTL
685 scsi_remove_device(sd
);
688 atomic_dec_mb(&tl_tpg
->tl_tpg_port_count
);
690 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
693 /* End items for tcm_loop_port_cit */
695 static ssize_t
tcm_loop_tpg_attrib_fabric_prot_type_show(
696 struct config_item
*item
, char *page
)
698 struct se_portal_group
*se_tpg
= attrib_to_tpg(item
);
699 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
702 return sprintf(page
, "%d\n", tl_tpg
->tl_fabric_prot_type
);
705 static ssize_t
tcm_loop_tpg_attrib_fabric_prot_type_store(
706 struct config_item
*item
, const char *page
, size_t count
)
708 struct se_portal_group
*se_tpg
= attrib_to_tpg(item
);
709 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
712 int ret
= kstrtoul(page
, 0, &val
);
715 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret
);
718 if (val
!= 0 && val
!= 1 && val
!= 3) {
719 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val
);
722 tl_tpg
->tl_fabric_prot_type
= val
;
727 CONFIGFS_ATTR(tcm_loop_tpg_attrib_
, fabric_prot_type
);
729 static struct configfs_attribute
*tcm_loop_tpg_attrib_attrs
[] = {
730 &tcm_loop_tpg_attrib_attr_fabric_prot_type
,
734 /* Start items for tcm_loop_nexus_cit */
736 static int tcm_loop_alloc_sess_cb(struct se_portal_group
*se_tpg
,
737 struct se_session
*se_sess
, void *p
)
739 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
740 struct tcm_loop_tpg
, tl_se_tpg
);
742 tl_tpg
->tl_nexus
= p
;
746 static int tcm_loop_make_nexus(
747 struct tcm_loop_tpg
*tl_tpg
,
750 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
751 struct tcm_loop_nexus
*tl_nexus
;
754 if (tl_tpg
->tl_nexus
) {
755 pr_debug("tl_tpg->tl_nexus already exists\n");
759 tl_nexus
= kzalloc(sizeof(*tl_nexus
), GFP_KERNEL
);
763 tl_nexus
->se_sess
= target_setup_session(&tl_tpg
->tl_se_tpg
, 0, 0,
764 TARGET_PROT_DIN_PASS
| TARGET_PROT_DOUT_PASS
,
765 name
, tl_nexus
, tcm_loop_alloc_sess_cb
);
766 if (IS_ERR(tl_nexus
->se_sess
)) {
767 ret
= PTR_ERR(tl_nexus
->se_sess
);
772 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated %s Initiator Port: %s\n",
773 tcm_loop_dump_proto_id(tl_hba
), name
);
777 static int tcm_loop_drop_nexus(
778 struct tcm_loop_tpg
*tpg
)
780 struct se_session
*se_sess
;
781 struct tcm_loop_nexus
*tl_nexus
;
783 tl_nexus
= tpg
->tl_nexus
;
787 se_sess
= tl_nexus
->se_sess
;
791 if (atomic_read(&tpg
->tl_tpg_port_count
)) {
792 pr_err("Unable to remove TCM_Loop I_T Nexus with active TPG port count: %d\n",
793 atomic_read(&tpg
->tl_tpg_port_count
));
797 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated %s Initiator Port: %s\n",
798 tcm_loop_dump_proto_id(tpg
->tl_hba
),
799 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
801 * Release the SCSI I_T Nexus to the emulated Target Port
803 target_remove_session(se_sess
);
804 tpg
->tl_nexus
= NULL
;
809 /* End items for tcm_loop_nexus_cit */
811 static ssize_t
tcm_loop_tpg_nexus_show(struct config_item
*item
, char *page
)
813 struct se_portal_group
*se_tpg
= to_tpg(item
);
814 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
815 struct tcm_loop_tpg
, tl_se_tpg
);
816 struct tcm_loop_nexus
*tl_nexus
;
819 tl_nexus
= tl_tpg
->tl_nexus
;
823 ret
= snprintf(page
, PAGE_SIZE
, "%s\n",
824 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
829 static ssize_t
tcm_loop_tpg_nexus_store(struct config_item
*item
,
830 const char *page
, size_t count
)
832 struct se_portal_group
*se_tpg
= to_tpg(item
);
833 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
834 struct tcm_loop_tpg
, tl_se_tpg
);
835 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
836 unsigned char i_port
[TL_WWN_ADDR_LEN
], *ptr
, *port_ptr
;
839 * Shutdown the active I_T nexus if 'NULL' is passed..
841 if (!strncmp(page
, "NULL", 4)) {
842 ret
= tcm_loop_drop_nexus(tl_tpg
);
843 return (!ret
) ? count
: ret
;
846 * Otherwise make sure the passed virtual Initiator port WWN matches
847 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
848 * tcm_loop_make_nexus()
850 if (strlen(page
) >= TL_WWN_ADDR_LEN
) {
851 pr_err("Emulated NAA Sas Address: %s, exceeds max: %d\n",
852 page
, TL_WWN_ADDR_LEN
);
855 snprintf(&i_port
[0], TL_WWN_ADDR_LEN
, "%s", page
);
857 ptr
= strstr(i_port
, "naa.");
859 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_SAS
) {
860 pr_err("Passed SAS Initiator Port %s does not match target port protoid: %s\n",
861 i_port
, tcm_loop_dump_proto_id(tl_hba
));
864 port_ptr
= &i_port
[0];
867 ptr
= strstr(i_port
, "fc.");
869 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_FCP
) {
870 pr_err("Passed FCP Initiator Port %s does not match target port protoid: %s\n",
871 i_port
, tcm_loop_dump_proto_id(tl_hba
));
874 port_ptr
= &i_port
[3]; /* Skip over "fc." */
877 ptr
= strstr(i_port
, "iqn.");
879 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_ISCSI
) {
880 pr_err("Passed iSCSI Initiator Port %s does not match target port protoid: %s\n",
881 i_port
, tcm_loop_dump_proto_id(tl_hba
));
884 port_ptr
= &i_port
[0];
887 pr_err("Unable to locate prefix for emulated Initiator Port: %s\n",
891 * Clear any trailing newline for the NAA WWN
894 if (i_port
[strlen(i_port
)-1] == '\n')
895 i_port
[strlen(i_port
)-1] = '\0';
897 ret
= tcm_loop_make_nexus(tl_tpg
, port_ptr
);
904 static ssize_t
tcm_loop_tpg_transport_status_show(struct config_item
*item
,
907 struct se_portal_group
*se_tpg
= to_tpg(item
);
908 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
909 struct tcm_loop_tpg
, tl_se_tpg
);
910 const char *status
= NULL
;
911 ssize_t ret
= -EINVAL
;
913 switch (tl_tpg
->tl_transport_status
) {
914 case TCM_TRANSPORT_ONLINE
:
917 case TCM_TRANSPORT_OFFLINE
:
925 ret
= snprintf(page
, PAGE_SIZE
, "%s\n", status
);
930 static ssize_t
tcm_loop_tpg_transport_status_store(struct config_item
*item
,
931 const char *page
, size_t count
)
933 struct se_portal_group
*se_tpg
= to_tpg(item
);
934 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
935 struct tcm_loop_tpg
, tl_se_tpg
);
937 if (!strncmp(page
, "online", 6)) {
938 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_ONLINE
;
941 if (!strncmp(page
, "offline", 7)) {
942 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_OFFLINE
;
943 if (tl_tpg
->tl_nexus
) {
944 struct se_session
*tl_sess
= tl_tpg
->tl_nexus
->se_sess
;
946 core_allocate_nexus_loss_ua(tl_sess
->se_node_acl
);
953 static ssize_t
tcm_loop_tpg_address_show(struct config_item
*item
,
956 struct se_portal_group
*se_tpg
= to_tpg(item
);
957 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
958 struct tcm_loop_tpg
, tl_se_tpg
);
959 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
961 return snprintf(page
, PAGE_SIZE
, "%d:0:%d\n",
962 tl_hba
->sh
->host_no
, tl_tpg
->tl_tpgt
);
965 CONFIGFS_ATTR(tcm_loop_tpg_
, nexus
);
966 CONFIGFS_ATTR(tcm_loop_tpg_
, transport_status
);
967 CONFIGFS_ATTR_RO(tcm_loop_tpg_
, address
);
969 static struct configfs_attribute
*tcm_loop_tpg_attrs
[] = {
970 &tcm_loop_tpg_attr_nexus
,
971 &tcm_loop_tpg_attr_transport_status
,
972 &tcm_loop_tpg_attr_address
,
976 /* Start items for tcm_loop_naa_cit */
978 static struct se_portal_group
*tcm_loop_make_naa_tpg(struct se_wwn
*wwn
,
981 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
982 struct tcm_loop_hba
, tl_hba_wwn
);
983 struct tcm_loop_tpg
*tl_tpg
;
987 if (strstr(name
, "tpgt_") != name
) {
988 pr_err("Unable to locate \"tpgt_#\" directory group\n");
989 return ERR_PTR(-EINVAL
);
991 if (kstrtoul(name
+5, 10, &tpgt
))
992 return ERR_PTR(-EINVAL
);
994 if (tpgt
>= TL_TPGS_PER_HBA
) {
995 pr_err("Passed tpgt: %lu exceeds TL_TPGS_PER_HBA: %u\n",
996 tpgt
, TL_TPGS_PER_HBA
);
997 return ERR_PTR(-EINVAL
);
999 tl_tpg
= &tl_hba
->tl_hba_tpgs
[tpgt
];
1000 tl_tpg
->tl_hba
= tl_hba
;
1001 tl_tpg
->tl_tpgt
= tpgt
;
1003 * Register the tl_tpg as a emulated TCM Target Endpoint
1005 ret
= core_tpg_register(wwn
, &tl_tpg
->tl_se_tpg
, tl_hba
->tl_proto_id
);
1007 return ERR_PTR(-ENOMEM
);
1009 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s Target Port %s,t,0x%04lx\n",
1010 tcm_loop_dump_proto_id(tl_hba
),
1011 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1012 return &tl_tpg
->tl_se_tpg
;
1015 static void tcm_loop_drop_naa_tpg(
1016 struct se_portal_group
*se_tpg
)
1018 struct se_wwn
*wwn
= se_tpg
->se_tpg_wwn
;
1019 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
1020 struct tcm_loop_tpg
, tl_se_tpg
);
1021 struct tcm_loop_hba
*tl_hba
;
1022 unsigned short tpgt
;
1024 tl_hba
= tl_tpg
->tl_hba
;
1025 tpgt
= tl_tpg
->tl_tpgt
;
1027 * Release the I_T Nexus for the Virtual target link if present
1029 tcm_loop_drop_nexus(tl_tpg
);
1031 * Deregister the tl_tpg as a emulated TCM Target Endpoint
1033 core_tpg_deregister(se_tpg
);
1035 tl_tpg
->tl_hba
= NULL
;
1036 tl_tpg
->tl_tpgt
= 0;
1038 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s Target Port %s,t,0x%04x\n",
1039 tcm_loop_dump_proto_id(tl_hba
),
1040 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1043 /* End items for tcm_loop_naa_cit */
1045 /* Start items for tcm_loop_cit */
1047 static struct se_wwn
*tcm_loop_make_scsi_hba(
1048 struct target_fabric_configfs
*tf
,
1049 struct config_group
*group
,
1052 struct tcm_loop_hba
*tl_hba
;
1053 struct Scsi_Host
*sh
;
1057 tl_hba
= kzalloc(sizeof(*tl_hba
), GFP_KERNEL
);
1059 return ERR_PTR(-ENOMEM
);
1062 * Determine the emulated Protocol Identifier and Target Port Name
1063 * based on the incoming configfs directory name.
1065 ptr
= strstr(name
, "naa.");
1067 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_SAS
;
1070 ptr
= strstr(name
, "fc.");
1072 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_FCP
;
1073 off
= 3; /* Skip over "fc." */
1076 ptr
= strstr(name
, "iqn.");
1078 pr_err("Unable to locate prefix for emulated Target Port: %s\n",
1083 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_ISCSI
;
1086 if (strlen(name
) >= TL_WWN_ADDR_LEN
) {
1087 pr_err("Emulated NAA %s Address: %s, exceeds max: %d\n",
1088 name
, tcm_loop_dump_proto_id(tl_hba
), TL_WWN_ADDR_LEN
);
1092 snprintf(&tl_hba
->tl_wwn_address
[0], TL_WWN_ADDR_LEN
, "%s", &name
[off
]);
1095 * Call device_register(tl_hba->dev) to register the emulated
1096 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1097 * device_register() callbacks in tcm_loop_driver_probe()
1099 ret
= tcm_loop_setup_hba_bus(tl_hba
, tcm_loop_hba_no_cnt
);
1104 tcm_loop_hba_no_cnt
++;
1105 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target %s Address: %s at Linux/SCSI Host ID: %d\n",
1106 tcm_loop_dump_proto_id(tl_hba
), name
, sh
->host_no
);
1107 return &tl_hba
->tl_hba_wwn
;
1110 return ERR_PTR(ret
);
1113 static void tcm_loop_drop_scsi_hba(
1116 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
1117 struct tcm_loop_hba
, tl_hba_wwn
);
1119 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target %s Address: %s at Linux/SCSI Host ID: %d\n",
1120 tcm_loop_dump_proto_id(tl_hba
), tl_hba
->tl_wwn_address
,
1121 tl_hba
->sh
->host_no
);
1123 * Call device_unregister() on the original tl_hba->dev.
1124 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1127 device_unregister(&tl_hba
->dev
);
1130 /* Start items for tcm_loop_cit */
1131 static ssize_t
tcm_loop_wwn_version_show(struct config_item
*item
, char *page
)
1133 return sprintf(page
, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION
);
1136 CONFIGFS_ATTR_RO(tcm_loop_wwn_
, version
);
1138 static struct configfs_attribute
*tcm_loop_wwn_attrs
[] = {
1139 &tcm_loop_wwn_attr_version
,
1143 /* End items for tcm_loop_cit */
1145 static const struct target_core_fabric_ops loop_ops
= {
1146 .module
= THIS_MODULE
,
1147 .fabric_name
= "loopback",
1148 .tpg_get_wwn
= tcm_loop_get_endpoint_wwn
,
1149 .tpg_get_tag
= tcm_loop_get_tag
,
1150 .tpg_check_demo_mode
= tcm_loop_check_demo_mode
,
1151 .tpg_check_demo_mode_cache
= tcm_loop_check_demo_mode_cache
,
1152 .tpg_check_demo_mode_write_protect
=
1153 tcm_loop_check_demo_mode_write_protect
,
1154 .tpg_check_prod_mode_write_protect
=
1155 tcm_loop_check_prod_mode_write_protect
,
1156 .tpg_check_prot_fabric_only
= tcm_loop_check_prot_fabric_only
,
1157 .tpg_get_inst_index
= tcm_loop_get_inst_index
,
1158 .check_stop_free
= tcm_loop_check_stop_free
,
1159 .release_cmd
= tcm_loop_release_cmd
,
1160 .sess_get_index
= tcm_loop_sess_get_index
,
1161 .write_pending
= tcm_loop_write_pending
,
1162 .write_pending_status
= tcm_loop_write_pending_status
,
1163 .set_default_node_attributes
= tcm_loop_set_default_node_attributes
,
1164 .get_cmd_state
= tcm_loop_get_cmd_state
,
1165 .queue_data_in
= tcm_loop_queue_data_in
,
1166 .queue_status
= tcm_loop_queue_status
,
1167 .queue_tm_rsp
= tcm_loop_queue_tm_rsp
,
1168 .aborted_task
= tcm_loop_aborted_task
,
1169 .fabric_make_wwn
= tcm_loop_make_scsi_hba
,
1170 .fabric_drop_wwn
= tcm_loop_drop_scsi_hba
,
1171 .fabric_make_tpg
= tcm_loop_make_naa_tpg
,
1172 .fabric_drop_tpg
= tcm_loop_drop_naa_tpg
,
1173 .fabric_post_link
= tcm_loop_port_link
,
1174 .fabric_pre_unlink
= tcm_loop_port_unlink
,
1175 .tfc_wwn_attrs
= tcm_loop_wwn_attrs
,
1176 .tfc_tpg_base_attrs
= tcm_loop_tpg_attrs
,
1177 .tfc_tpg_attrib_attrs
= tcm_loop_tpg_attrib_attrs
,
1180 static int __init
tcm_loop_fabric_init(void)
1184 tcm_loop_workqueue
= alloc_workqueue("tcm_loop", 0, 0);
1185 if (!tcm_loop_workqueue
)
1188 tcm_loop_cmd_cache
= kmem_cache_create("tcm_loop_cmd_cache",
1189 sizeof(struct tcm_loop_cmd
),
1190 __alignof__(struct tcm_loop_cmd
),
1192 if (!tcm_loop_cmd_cache
) {
1193 pr_debug("kmem_cache_create() for tcm_loop_cmd_cache failed\n");
1194 goto out_destroy_workqueue
;
1197 ret
= tcm_loop_alloc_core_bus();
1199 goto out_destroy_cache
;
1201 ret
= target_register_template(&loop_ops
);
1203 goto out_release_core_bus
;
1207 out_release_core_bus
:
1208 tcm_loop_release_core_bus();
1210 kmem_cache_destroy(tcm_loop_cmd_cache
);
1211 out_destroy_workqueue
:
1212 destroy_workqueue(tcm_loop_workqueue
);
1217 static void __exit
tcm_loop_fabric_exit(void)
1219 target_unregister_template(&loop_ops
);
1220 tcm_loop_release_core_bus();
1221 kmem_cache_destroy(tcm_loop_cmd_cache
);
1222 destroy_workqueue(tcm_loop_workqueue
);
1225 MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1226 MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1227 MODULE_LICENSE("GPL");
1228 module_init(tcm_loop_fabric_init
);
1229 module_exit(tcm_loop_fabric_exit
);