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_printf(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
, "TCM_Loop I_T Nexus"
127 " 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
);
173 * ->queuecommand can be and usually is called from interrupt context, so
174 * defer the actual submission to a workqueue.
176 static int tcm_loop_queuecommand(struct Scsi_Host
*sh
, struct scsi_cmnd
*sc
)
178 struct tcm_loop_cmd
*tl_cmd
;
180 pr_debug("tcm_loop_queuecommand() %d:%d:%d:%llu got CDB: 0x%02x"
181 " scsi_buf_len: %u\n", sc
->device
->host
->host_no
,
182 sc
->device
->id
, sc
->device
->channel
, sc
->device
->lun
,
183 sc
->cmnd
[0], scsi_bufflen(sc
));
185 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_ATOMIC
);
187 pr_err("Unable to allocate struct tcm_loop_cmd\n");
188 set_host_byte(sc
, DID_ERROR
);
194 tl_cmd
->sc_cmd_tag
= sc
->request
->tag
;
195 INIT_WORK(&tl_cmd
->work
, tcm_loop_submission_work
);
196 queue_work(tcm_loop_workqueue
, &tl_cmd
->work
);
201 * Called from SCSI EH process context to issue a LUN_RESET TMR
202 * to struct scsi_device
204 static int tcm_loop_issue_tmr(struct tcm_loop_tpg
*tl_tpg
,
205 u64 lun
, int task
, enum tcm_tmreq_table tmr
)
207 struct se_cmd
*se_cmd
= NULL
;
208 struct se_session
*se_sess
;
209 struct tcm_loop_nexus
*tl_nexus
;
210 struct tcm_loop_cmd
*tl_cmd
= NULL
;
211 int ret
= TMR_FUNCTION_FAILED
, rc
;
214 * Locate the tl_nexus and se_sess pointers
216 tl_nexus
= tl_tpg
->tl_nexus
;
218 pr_err("Unable to perform device reset without"
219 " active I_T Nexus\n");
223 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_KERNEL
);
225 pr_err("Unable to allocate memory for tl_cmd\n");
229 init_completion(&tl_cmd
->tmr_done
);
231 se_cmd
= &tl_cmd
->tl_se_cmd
;
232 se_sess
= tl_tpg
->tl_nexus
->se_sess
;
234 rc
= target_submit_tmr(se_cmd
, se_sess
, tl_cmd
->tl_sense_buf
, lun
,
235 NULL
, tmr
, GFP_KERNEL
, task
,
236 TARGET_SCF_ACK_KREF
);
239 wait_for_completion(&tl_cmd
->tmr_done
);
240 ret
= se_cmd
->se_tmr_req
->response
;
241 target_put_sess_cmd(se_cmd
);
248 transport_generic_free_cmd(se_cmd
, 0);
250 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
254 static int tcm_loop_abort_task(struct scsi_cmnd
*sc
)
256 struct tcm_loop_hba
*tl_hba
;
257 struct tcm_loop_tpg
*tl_tpg
;
261 * Locate the tcm_loop_hba_t pointer
263 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
264 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
265 ret
= tcm_loop_issue_tmr(tl_tpg
, sc
->device
->lun
,
266 sc
->request
->tag
, TMR_ABORT_TASK
);
267 return (ret
== TMR_FUNCTION_COMPLETE
) ? SUCCESS
: FAILED
;
271 * Called from SCSI EH process context to issue a LUN_RESET TMR
272 * to struct scsi_device
274 static int tcm_loop_device_reset(struct scsi_cmnd
*sc
)
276 struct tcm_loop_hba
*tl_hba
;
277 struct tcm_loop_tpg
*tl_tpg
;
281 * Locate the tcm_loop_hba_t pointer
283 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
284 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
286 ret
= tcm_loop_issue_tmr(tl_tpg
, sc
->device
->lun
,
288 return (ret
== TMR_FUNCTION_COMPLETE
) ? SUCCESS
: FAILED
;
291 static int tcm_loop_target_reset(struct scsi_cmnd
*sc
)
293 struct tcm_loop_hba
*tl_hba
;
294 struct tcm_loop_tpg
*tl_tpg
;
297 * Locate the tcm_loop_hba_t pointer
299 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
301 pr_err("Unable to perform device reset without"
302 " active I_T Nexus\n");
306 * Locate the tl_tpg pointer from TargetID in sc->device->id
308 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
310 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_ONLINE
;
316 static int tcm_loop_slave_alloc(struct scsi_device
*sd
)
318 set_bit(QUEUE_FLAG_BIDI
, &sd
->request_queue
->queue_flags
);
322 static struct scsi_host_template tcm_loop_driver_template
= {
323 .show_info
= tcm_loop_show_info
,
324 .proc_name
= "tcm_loopback",
325 .name
= "TCM_Loopback",
326 .queuecommand
= tcm_loop_queuecommand
,
327 .change_queue_depth
= scsi_change_queue_depth
,
328 .eh_abort_handler
= tcm_loop_abort_task
,
329 .eh_device_reset_handler
= tcm_loop_device_reset
,
330 .eh_target_reset_handler
= tcm_loop_target_reset
,
335 .max_sectors
= 0xFFFF,
336 .use_clustering
= DISABLE_CLUSTERING
,
337 .slave_alloc
= tcm_loop_slave_alloc
,
338 .module
= THIS_MODULE
,
339 .track_queue_depth
= 1,
342 static int tcm_loop_driver_probe(struct device
*dev
)
344 struct tcm_loop_hba
*tl_hba
;
345 struct Scsi_Host
*sh
;
346 int error
, host_prot
;
348 tl_hba
= to_tcm_loop_hba(dev
);
350 sh
= scsi_host_alloc(&tcm_loop_driver_template
,
351 sizeof(struct tcm_loop_hba
));
353 pr_err("Unable to allocate struct scsi_host\n");
359 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
361 *((struct tcm_loop_hba
**)sh
->hostdata
) = tl_hba
;
363 * Setup single ID, Channel and LUN for now..
368 sh
->max_cmd_len
= SCSI_MAX_VARLEN_CDB_SIZE
;
370 host_prot
= SHOST_DIF_TYPE1_PROTECTION
| SHOST_DIF_TYPE2_PROTECTION
|
371 SHOST_DIF_TYPE3_PROTECTION
| SHOST_DIX_TYPE1_PROTECTION
|
372 SHOST_DIX_TYPE2_PROTECTION
| SHOST_DIX_TYPE3_PROTECTION
;
374 scsi_host_set_prot(sh
, host_prot
);
375 scsi_host_set_guard(sh
, SHOST_DIX_GUARD_CRC
);
377 error
= scsi_add_host(sh
, &tl_hba
->dev
);
379 pr_err("%s: scsi_add_host failed\n", __func__
);
386 static int tcm_loop_driver_remove(struct device
*dev
)
388 struct tcm_loop_hba
*tl_hba
;
389 struct Scsi_Host
*sh
;
391 tl_hba
= to_tcm_loop_hba(dev
);
394 scsi_remove_host(sh
);
399 static void tcm_loop_release_adapter(struct device
*dev
)
401 struct tcm_loop_hba
*tl_hba
= to_tcm_loop_hba(dev
);
407 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
409 static int tcm_loop_setup_hba_bus(struct tcm_loop_hba
*tl_hba
, int tcm_loop_host_id
)
413 tl_hba
->dev
.bus
= &tcm_loop_lld_bus
;
414 tl_hba
->dev
.parent
= tcm_loop_primary
;
415 tl_hba
->dev
.release
= &tcm_loop_release_adapter
;
416 dev_set_name(&tl_hba
->dev
, "tcm_loop_adapter_%d", tcm_loop_host_id
);
418 ret
= device_register(&tl_hba
->dev
);
420 pr_err("device_register() failed for"
421 " tl_hba->dev: %d\n", ret
);
429 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
432 static int tcm_loop_alloc_core_bus(void)
436 tcm_loop_primary
= root_device_register("tcm_loop_0");
437 if (IS_ERR(tcm_loop_primary
)) {
438 pr_err("Unable to allocate tcm_loop_primary\n");
439 return PTR_ERR(tcm_loop_primary
);
442 ret
= bus_register(&tcm_loop_lld_bus
);
444 pr_err("bus_register() failed for tcm_loop_lld_bus\n");
448 ret
= driver_register(&tcm_loop_driverfs
);
450 pr_err("driver_register() failed for"
451 "tcm_loop_driverfs\n");
455 pr_debug("Initialized TCM Loop Core Bus\n");
459 bus_unregister(&tcm_loop_lld_bus
);
461 root_device_unregister(tcm_loop_primary
);
465 static void tcm_loop_release_core_bus(void)
467 driver_unregister(&tcm_loop_driverfs
);
468 bus_unregister(&tcm_loop_lld_bus
);
469 root_device_unregister(tcm_loop_primary
);
471 pr_debug("Releasing TCM Loop Core BUS\n");
474 static char *tcm_loop_get_fabric_name(void)
479 static inline struct tcm_loop_tpg
*tl_tpg(struct se_portal_group
*se_tpg
)
481 return container_of(se_tpg
, struct tcm_loop_tpg
, tl_se_tpg
);
484 static char *tcm_loop_get_endpoint_wwn(struct se_portal_group
*se_tpg
)
487 * Return the passed NAA identifier for the Target Port
489 return &tl_tpg(se_tpg
)->tl_hba
->tl_wwn_address
[0];
492 static u16
tcm_loop_get_tag(struct se_portal_group
*se_tpg
)
495 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
496 * to represent the SCSI Target Port.
498 return tl_tpg(se_tpg
)->tl_tpgt
;
502 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
503 * based upon the incoming fabric dependent SCSI Initiator Port
505 static int tcm_loop_check_demo_mode(struct se_portal_group
*se_tpg
)
510 static int tcm_loop_check_demo_mode_cache(struct se_portal_group
*se_tpg
)
516 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
517 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
519 static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group
*se_tpg
)
525 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
526 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
527 * It has been added here as a nop for target_fabric_tf_ops_check()
529 static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group
*se_tpg
)
534 static int tcm_loop_check_prot_fabric_only(struct se_portal_group
*se_tpg
)
536 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
538 return tl_tpg
->tl_fabric_prot_type
;
541 static u32
tcm_loop_get_inst_index(struct se_portal_group
*se_tpg
)
546 static u32
tcm_loop_sess_get_index(struct se_session
*se_sess
)
551 static void tcm_loop_set_default_node_attributes(struct se_node_acl
*se_acl
)
556 static int tcm_loop_get_cmd_state(struct se_cmd
*se_cmd
)
558 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
559 struct tcm_loop_cmd
, tl_se_cmd
);
561 return tl_cmd
->sc_cmd_state
;
564 static int tcm_loop_write_pending(struct se_cmd
*se_cmd
)
567 * Since Linux/SCSI has already sent down a struct scsi_cmnd
568 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
569 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
570 * format with transport_generic_map_mem_to_cmd().
572 * We now tell TCM to add this WRITE CDB directly into the TCM storage
573 * object execution queue.
575 target_execute_cmd(se_cmd
);
579 static int tcm_loop_write_pending_status(struct se_cmd
*se_cmd
)
584 static int tcm_loop_queue_data_in(struct se_cmd
*se_cmd
)
586 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
587 struct tcm_loop_cmd
, tl_se_cmd
);
588 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
590 pr_debug("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
591 " cdb: 0x%02x\n", sc
, sc
->cmnd
[0]);
593 sc
->result
= SAM_STAT_GOOD
;
594 set_host_byte(sc
, DID_OK
);
595 if ((se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) ||
596 (se_cmd
->se_cmd_flags
& SCF_UNDERFLOW_BIT
))
597 scsi_set_resid(sc
, se_cmd
->residual_count
);
602 static int tcm_loop_queue_status(struct se_cmd
*se_cmd
)
604 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
605 struct tcm_loop_cmd
, tl_se_cmd
);
606 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
608 pr_debug("tcm_loop_queue_status() called for scsi_cmnd: %p"
609 " cdb: 0x%02x\n", sc
, sc
->cmnd
[0]);
611 if (se_cmd
->sense_buffer
&&
612 ((se_cmd
->se_cmd_flags
& SCF_TRANSPORT_TASK_SENSE
) ||
613 (se_cmd
->se_cmd_flags
& SCF_EMULATED_TASK_SENSE
))) {
615 memcpy(sc
->sense_buffer
, se_cmd
->sense_buffer
,
616 SCSI_SENSE_BUFFERSIZE
);
617 sc
->result
= SAM_STAT_CHECK_CONDITION
;
618 set_driver_byte(sc
, DRIVER_SENSE
);
620 sc
->result
= se_cmd
->scsi_status
;
622 set_host_byte(sc
, DID_OK
);
623 if ((se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) ||
624 (se_cmd
->se_cmd_flags
& SCF_UNDERFLOW_BIT
))
625 scsi_set_resid(sc
, se_cmd
->residual_count
);
630 static void tcm_loop_queue_tm_rsp(struct se_cmd
*se_cmd
)
632 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
633 struct tcm_loop_cmd
, tl_se_cmd
);
635 /* Wake up tcm_loop_issue_tmr(). */
636 complete(&tl_cmd
->tmr_done
);
639 static void tcm_loop_aborted_task(struct se_cmd
*se_cmd
)
644 static char *tcm_loop_dump_proto_id(struct tcm_loop_hba
*tl_hba
)
646 switch (tl_hba
->tl_proto_id
) {
647 case SCSI_PROTOCOL_SAS
:
649 case SCSI_PROTOCOL_FCP
:
651 case SCSI_PROTOCOL_ISCSI
:
660 /* Start items for tcm_loop_port_cit */
662 static int tcm_loop_port_link(
663 struct se_portal_group
*se_tpg
,
666 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
667 struct tcm_loop_tpg
, tl_se_tpg
);
668 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
670 atomic_inc_mb(&tl_tpg
->tl_tpg_port_count
);
672 * Add Linux/SCSI struct scsi_device by HCTL
674 scsi_add_device(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
, lun
->unpacked_lun
);
676 pr_debug("TCM_Loop_ConfigFS: Port Link Successful\n");
680 static void tcm_loop_port_unlink(
681 struct se_portal_group
*se_tpg
,
682 struct se_lun
*se_lun
)
684 struct scsi_device
*sd
;
685 struct tcm_loop_hba
*tl_hba
;
686 struct tcm_loop_tpg
*tl_tpg
;
688 tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
, tl_se_tpg
);
689 tl_hba
= tl_tpg
->tl_hba
;
691 sd
= scsi_device_lookup(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
,
692 se_lun
->unpacked_lun
);
694 pr_err("Unable to locate struct scsi_device for %d:%d:"
695 "%llu\n", 0, tl_tpg
->tl_tpgt
, se_lun
->unpacked_lun
);
699 * Remove Linux/SCSI struct scsi_device by HCTL
701 scsi_remove_device(sd
);
704 atomic_dec_mb(&tl_tpg
->tl_tpg_port_count
);
706 pr_debug("TCM_Loop_ConfigFS: Port Unlink Successful\n");
709 /* End items for tcm_loop_port_cit */
711 static ssize_t
tcm_loop_tpg_attrib_fabric_prot_type_show(
712 struct config_item
*item
, char *page
)
714 struct se_portal_group
*se_tpg
= attrib_to_tpg(item
);
715 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
718 return sprintf(page
, "%d\n", tl_tpg
->tl_fabric_prot_type
);
721 static ssize_t
tcm_loop_tpg_attrib_fabric_prot_type_store(
722 struct config_item
*item
, const char *page
, size_t count
)
724 struct se_portal_group
*se_tpg
= attrib_to_tpg(item
);
725 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
,
728 int ret
= kstrtoul(page
, 0, &val
);
731 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret
);
734 if (val
!= 0 && val
!= 1 && val
!= 3) {
735 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val
);
738 tl_tpg
->tl_fabric_prot_type
= val
;
743 CONFIGFS_ATTR(tcm_loop_tpg_attrib_
, fabric_prot_type
);
745 static struct configfs_attribute
*tcm_loop_tpg_attrib_attrs
[] = {
746 &tcm_loop_tpg_attrib_attr_fabric_prot_type
,
750 /* Start items for tcm_loop_nexus_cit */
752 static int tcm_loop_alloc_sess_cb(struct se_portal_group
*se_tpg
,
753 struct se_session
*se_sess
, void *p
)
755 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
756 struct tcm_loop_tpg
, tl_se_tpg
);
758 tl_tpg
->tl_nexus
= p
;
762 static int tcm_loop_make_nexus(
763 struct tcm_loop_tpg
*tl_tpg
,
766 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
767 struct tcm_loop_nexus
*tl_nexus
;
770 if (tl_tpg
->tl_nexus
) {
771 pr_debug("tl_tpg->tl_nexus already exists\n");
775 tl_nexus
= kzalloc(sizeof(struct tcm_loop_nexus
), GFP_KERNEL
);
777 pr_err("Unable to allocate struct tcm_loop_nexus\n");
781 tl_nexus
->se_sess
= target_alloc_session(&tl_tpg
->tl_se_tpg
, 0, 0,
782 TARGET_PROT_DIN_PASS
| TARGET_PROT_DOUT_PASS
,
783 name
, tl_nexus
, tcm_loop_alloc_sess_cb
);
784 if (IS_ERR(tl_nexus
->se_sess
)) {
785 ret
= PTR_ERR(tl_nexus
->se_sess
);
790 pr_debug("TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
791 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba
),
796 static int tcm_loop_drop_nexus(
797 struct tcm_loop_tpg
*tpg
)
799 struct se_session
*se_sess
;
800 struct tcm_loop_nexus
*tl_nexus
;
802 tl_nexus
= tpg
->tl_nexus
;
806 se_sess
= tl_nexus
->se_sess
;
810 if (atomic_read(&tpg
->tl_tpg_port_count
)) {
811 pr_err("Unable to remove TCM_Loop I_T Nexus with"
812 " active TPG port count: %d\n",
813 atomic_read(&tpg
->tl_tpg_port_count
));
817 pr_debug("TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
818 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tpg
->tl_hba
),
819 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
821 * Release the SCSI I_T Nexus to the emulated Target Port
823 transport_deregister_session(tl_nexus
->se_sess
);
824 tpg
->tl_nexus
= NULL
;
829 /* End items for tcm_loop_nexus_cit */
831 static ssize_t
tcm_loop_tpg_nexus_show(struct config_item
*item
, char *page
)
833 struct se_portal_group
*se_tpg
= to_tpg(item
);
834 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
835 struct tcm_loop_tpg
, tl_se_tpg
);
836 struct tcm_loop_nexus
*tl_nexus
;
839 tl_nexus
= tl_tpg
->tl_nexus
;
843 ret
= snprintf(page
, PAGE_SIZE
, "%s\n",
844 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
849 static ssize_t
tcm_loop_tpg_nexus_store(struct config_item
*item
,
850 const char *page
, size_t count
)
852 struct se_portal_group
*se_tpg
= to_tpg(item
);
853 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
854 struct tcm_loop_tpg
, tl_se_tpg
);
855 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
856 unsigned char i_port
[TL_WWN_ADDR_LEN
], *ptr
, *port_ptr
;
859 * Shutdown the active I_T nexus if 'NULL' is passed..
861 if (!strncmp(page
, "NULL", 4)) {
862 ret
= tcm_loop_drop_nexus(tl_tpg
);
863 return (!ret
) ? count
: ret
;
866 * Otherwise make sure the passed virtual Initiator port WWN matches
867 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
868 * tcm_loop_make_nexus()
870 if (strlen(page
) >= TL_WWN_ADDR_LEN
) {
871 pr_err("Emulated NAA Sas Address: %s, exceeds"
872 " max: %d\n", page
, TL_WWN_ADDR_LEN
);
875 snprintf(&i_port
[0], TL_WWN_ADDR_LEN
, "%s", page
);
877 ptr
= strstr(i_port
, "naa.");
879 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_SAS
) {
880 pr_err("Passed SAS Initiator Port %s does not"
881 " match target port protoid: %s\n", i_port
,
882 tcm_loop_dump_proto_id(tl_hba
));
885 port_ptr
= &i_port
[0];
888 ptr
= strstr(i_port
, "fc.");
890 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_FCP
) {
891 pr_err("Passed FCP Initiator Port %s does not"
892 " match target port protoid: %s\n", i_port
,
893 tcm_loop_dump_proto_id(tl_hba
));
896 port_ptr
= &i_port
[3]; /* Skip over "fc." */
899 ptr
= strstr(i_port
, "iqn.");
901 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_ISCSI
) {
902 pr_err("Passed iSCSI Initiator Port %s does not"
903 " match target port protoid: %s\n", i_port
,
904 tcm_loop_dump_proto_id(tl_hba
));
907 port_ptr
= &i_port
[0];
910 pr_err("Unable to locate prefix for emulated Initiator Port:"
914 * Clear any trailing newline for the NAA WWN
917 if (i_port
[strlen(i_port
)-1] == '\n')
918 i_port
[strlen(i_port
)-1] = '\0';
920 ret
= tcm_loop_make_nexus(tl_tpg
, port_ptr
);
927 static ssize_t
tcm_loop_tpg_transport_status_show(struct config_item
*item
,
930 struct se_portal_group
*se_tpg
= to_tpg(item
);
931 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
932 struct tcm_loop_tpg
, tl_se_tpg
);
933 const char *status
= NULL
;
934 ssize_t ret
= -EINVAL
;
936 switch (tl_tpg
->tl_transport_status
) {
937 case TCM_TRANSPORT_ONLINE
:
940 case TCM_TRANSPORT_OFFLINE
:
948 ret
= snprintf(page
, PAGE_SIZE
, "%s\n", status
);
953 static ssize_t
tcm_loop_tpg_transport_status_store(struct config_item
*item
,
954 const char *page
, size_t count
)
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
);
960 if (!strncmp(page
, "online", 6)) {
961 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_ONLINE
;
964 if (!strncmp(page
, "offline", 7)) {
965 tl_tpg
->tl_transport_status
= TCM_TRANSPORT_OFFLINE
;
966 if (tl_tpg
->tl_nexus
) {
967 struct se_session
*tl_sess
= tl_tpg
->tl_nexus
->se_sess
;
969 core_allocate_nexus_loss_ua(tl_sess
->se_node_acl
);
976 static ssize_t
tcm_loop_tpg_address_show(struct config_item
*item
,
979 struct se_portal_group
*se_tpg
= to_tpg(item
);
980 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
981 struct tcm_loop_tpg
, tl_se_tpg
);
982 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
984 return snprintf(page
, PAGE_SIZE
, "%d:0:%d\n",
985 tl_hba
->sh
->host_no
, tl_tpg
->tl_tpgt
);
988 CONFIGFS_ATTR(tcm_loop_tpg_
, nexus
);
989 CONFIGFS_ATTR(tcm_loop_tpg_
, transport_status
);
990 CONFIGFS_ATTR_RO(tcm_loop_tpg_
, address
);
992 static struct configfs_attribute
*tcm_loop_tpg_attrs
[] = {
993 &tcm_loop_tpg_attr_nexus
,
994 &tcm_loop_tpg_attr_transport_status
,
995 &tcm_loop_tpg_attr_address
,
999 /* Start items for tcm_loop_naa_cit */
1001 static struct se_portal_group
*tcm_loop_make_naa_tpg(
1003 struct config_group
*group
,
1006 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
1007 struct tcm_loop_hba
, tl_hba_wwn
);
1008 struct tcm_loop_tpg
*tl_tpg
;
1012 if (strstr(name
, "tpgt_") != name
) {
1013 pr_err("Unable to locate \"tpgt_#\" directory"
1015 return ERR_PTR(-EINVAL
);
1017 if (kstrtoul(name
+5, 10, &tpgt
))
1018 return ERR_PTR(-EINVAL
);
1020 if (tpgt
>= TL_TPGS_PER_HBA
) {
1021 pr_err("Passed tpgt: %lu exceeds TL_TPGS_PER_HBA:"
1022 " %u\n", tpgt
, TL_TPGS_PER_HBA
);
1023 return ERR_PTR(-EINVAL
);
1025 tl_tpg
= &tl_hba
->tl_hba_tpgs
[tpgt
];
1026 tl_tpg
->tl_hba
= tl_hba
;
1027 tl_tpg
->tl_tpgt
= tpgt
;
1029 * Register the tl_tpg as a emulated TCM Target Endpoint
1031 ret
= core_tpg_register(wwn
, &tl_tpg
->tl_se_tpg
, tl_hba
->tl_proto_id
);
1033 return ERR_PTR(-ENOMEM
);
1035 pr_debug("TCM_Loop_ConfigFS: Allocated Emulated %s"
1036 " Target Port %s,t,0x%04lx\n", tcm_loop_dump_proto_id(tl_hba
),
1037 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1039 return &tl_tpg
->tl_se_tpg
;
1042 static void tcm_loop_drop_naa_tpg(
1043 struct se_portal_group
*se_tpg
)
1045 struct se_wwn
*wwn
= se_tpg
->se_tpg_wwn
;
1046 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
1047 struct tcm_loop_tpg
, tl_se_tpg
);
1048 struct tcm_loop_hba
*tl_hba
;
1049 unsigned short tpgt
;
1051 tl_hba
= tl_tpg
->tl_hba
;
1052 tpgt
= tl_tpg
->tl_tpgt
;
1054 * Release the I_T Nexus for the Virtual target link if present
1056 tcm_loop_drop_nexus(tl_tpg
);
1058 * Deregister the tl_tpg as a emulated TCM Target Endpoint
1060 core_tpg_deregister(se_tpg
);
1062 tl_tpg
->tl_hba
= NULL
;
1063 tl_tpg
->tl_tpgt
= 0;
1065 pr_debug("TCM_Loop_ConfigFS: Deallocated Emulated %s"
1066 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba
),
1067 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1070 /* End items for tcm_loop_naa_cit */
1072 /* Start items for tcm_loop_cit */
1074 static struct se_wwn
*tcm_loop_make_scsi_hba(
1075 struct target_fabric_configfs
*tf
,
1076 struct config_group
*group
,
1079 struct tcm_loop_hba
*tl_hba
;
1080 struct Scsi_Host
*sh
;
1084 tl_hba
= kzalloc(sizeof(struct tcm_loop_hba
), GFP_KERNEL
);
1086 pr_err("Unable to allocate struct tcm_loop_hba\n");
1087 return ERR_PTR(-ENOMEM
);
1090 * Determine the emulated Protocol Identifier and Target Port Name
1091 * based on the incoming configfs directory name.
1093 ptr
= strstr(name
, "naa.");
1095 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_SAS
;
1098 ptr
= strstr(name
, "fc.");
1100 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_FCP
;
1101 off
= 3; /* Skip over "fc." */
1104 ptr
= strstr(name
, "iqn.");
1106 pr_err("Unable to locate prefix for emulated Target "
1107 "Port: %s\n", name
);
1111 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_ISCSI
;
1114 if (strlen(name
) >= TL_WWN_ADDR_LEN
) {
1115 pr_err("Emulated NAA %s Address: %s, exceeds"
1116 " max: %d\n", name
, tcm_loop_dump_proto_id(tl_hba
),
1121 snprintf(&tl_hba
->tl_wwn_address
[0], TL_WWN_ADDR_LEN
, "%s", &name
[off
]);
1124 * Call device_register(tl_hba->dev) to register the emulated
1125 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1126 * device_register() callbacks in tcm_loop_driver_probe()
1128 ret
= tcm_loop_setup_hba_bus(tl_hba
, tcm_loop_hba_no_cnt
);
1133 tcm_loop_hba_no_cnt
++;
1134 pr_debug("TCM_Loop_ConfigFS: Allocated emulated Target"
1135 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1136 tcm_loop_dump_proto_id(tl_hba
), name
, sh
->host_no
);
1138 return &tl_hba
->tl_hba_wwn
;
1141 return ERR_PTR(ret
);
1144 static void tcm_loop_drop_scsi_hba(
1147 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
1148 struct tcm_loop_hba
, tl_hba_wwn
);
1150 pr_debug("TCM_Loop_ConfigFS: Deallocating emulated Target"
1151 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1152 tcm_loop_dump_proto_id(tl_hba
), tl_hba
->tl_wwn_address
,
1153 tl_hba
->sh
->host_no
);
1155 * Call device_unregister() on the original tl_hba->dev.
1156 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1159 device_unregister(&tl_hba
->dev
);
1162 /* Start items for tcm_loop_cit */
1163 static ssize_t
tcm_loop_wwn_version_show(struct config_item
*item
, char *page
)
1165 return sprintf(page
, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION
);
1168 CONFIGFS_ATTR_RO(tcm_loop_wwn_
, version
);
1170 static struct configfs_attribute
*tcm_loop_wwn_attrs
[] = {
1171 &tcm_loop_wwn_attr_version
,
1175 /* End items for tcm_loop_cit */
1177 static const struct target_core_fabric_ops loop_ops
= {
1178 .module
= THIS_MODULE
,
1180 .get_fabric_name
= tcm_loop_get_fabric_name
,
1181 .tpg_get_wwn
= tcm_loop_get_endpoint_wwn
,
1182 .tpg_get_tag
= tcm_loop_get_tag
,
1183 .tpg_check_demo_mode
= tcm_loop_check_demo_mode
,
1184 .tpg_check_demo_mode_cache
= tcm_loop_check_demo_mode_cache
,
1185 .tpg_check_demo_mode_write_protect
=
1186 tcm_loop_check_demo_mode_write_protect
,
1187 .tpg_check_prod_mode_write_protect
=
1188 tcm_loop_check_prod_mode_write_protect
,
1189 .tpg_check_prot_fabric_only
= tcm_loop_check_prot_fabric_only
,
1190 .tpg_get_inst_index
= tcm_loop_get_inst_index
,
1191 .check_stop_free
= tcm_loop_check_stop_free
,
1192 .release_cmd
= tcm_loop_release_cmd
,
1193 .sess_get_index
= tcm_loop_sess_get_index
,
1194 .write_pending
= tcm_loop_write_pending
,
1195 .write_pending_status
= tcm_loop_write_pending_status
,
1196 .set_default_node_attributes
= tcm_loop_set_default_node_attributes
,
1197 .get_cmd_state
= tcm_loop_get_cmd_state
,
1198 .queue_data_in
= tcm_loop_queue_data_in
,
1199 .queue_status
= tcm_loop_queue_status
,
1200 .queue_tm_rsp
= tcm_loop_queue_tm_rsp
,
1201 .aborted_task
= tcm_loop_aborted_task
,
1202 .fabric_make_wwn
= tcm_loop_make_scsi_hba
,
1203 .fabric_drop_wwn
= tcm_loop_drop_scsi_hba
,
1204 .fabric_make_tpg
= tcm_loop_make_naa_tpg
,
1205 .fabric_drop_tpg
= tcm_loop_drop_naa_tpg
,
1206 .fabric_post_link
= tcm_loop_port_link
,
1207 .fabric_pre_unlink
= tcm_loop_port_unlink
,
1208 .tfc_wwn_attrs
= tcm_loop_wwn_attrs
,
1209 .tfc_tpg_base_attrs
= tcm_loop_tpg_attrs
,
1210 .tfc_tpg_attrib_attrs
= tcm_loop_tpg_attrib_attrs
,
1213 static int __init
tcm_loop_fabric_init(void)
1217 tcm_loop_workqueue
= alloc_workqueue("tcm_loop", 0, 0);
1218 if (!tcm_loop_workqueue
)
1221 tcm_loop_cmd_cache
= kmem_cache_create("tcm_loop_cmd_cache",
1222 sizeof(struct tcm_loop_cmd
),
1223 __alignof__(struct tcm_loop_cmd
),
1225 if (!tcm_loop_cmd_cache
) {
1226 pr_debug("kmem_cache_create() for"
1227 " tcm_loop_cmd_cache failed\n");
1228 goto out_destroy_workqueue
;
1231 ret
= tcm_loop_alloc_core_bus();
1233 goto out_destroy_cache
;
1235 ret
= target_register_template(&loop_ops
);
1237 goto out_release_core_bus
;
1241 out_release_core_bus
:
1242 tcm_loop_release_core_bus();
1244 kmem_cache_destroy(tcm_loop_cmd_cache
);
1245 out_destroy_workqueue
:
1246 destroy_workqueue(tcm_loop_workqueue
);
1251 static void __exit
tcm_loop_fabric_exit(void)
1253 target_unregister_template(&loop_ops
);
1254 tcm_loop_release_core_bus();
1255 kmem_cache_destroy(tcm_loop_cmd_cache
);
1256 destroy_workqueue(tcm_loop_workqueue
);
1259 MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1260 MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1261 MODULE_LICENSE("GPL");
1262 module_init(tcm_loop_fabric_init
);
1263 module_exit(tcm_loop_fabric_exit
);