1 /*******************************************************************************
3 * This file contains the Linux/SCSI LLD virtual SCSI initiator driver
4 * for emulated SAS initiator ports
6 * © Copyright 2011 RisingTide Systems LLC.
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>
34 #include <scsi/libsas.h> /* For TASK_ATTR_* */
36 #include <target/target_core_base.h>
37 #include <target/target_core_transport.h>
38 #include <target/target_core_fabric_ops.h>
39 #include <target/target_core_fabric_configfs.h>
40 #include <target/target_core_fabric_lib.h>
41 #include <target/target_core_configfs.h>
42 #include <target/target_core_device.h>
43 #include <target/target_core_tpg.h>
44 #include <target/target_core_tmr.h>
48 #define to_tcm_loop_hba(hba) container_of(hba, struct tcm_loop_hba, dev)
50 /* Local pointer to allocated TCM configfs fabric module */
51 static struct target_fabric_configfs
*tcm_loop_fabric_configfs
;
53 static struct kmem_cache
*tcm_loop_cmd_cache
;
55 static int tcm_loop_hba_no_cnt
;
58 * Allocate a tcm_loop cmd descriptor from target_core_mod code
60 * Can be called from interrupt context in tcm_loop_queuecommand() below
62 static struct se_cmd
*tcm_loop_allocate_core_cmd(
63 struct tcm_loop_hba
*tl_hba
,
64 struct se_portal_group
*se_tpg
,
67 struct se_cmd
*se_cmd
;
68 struct se_session
*se_sess
;
69 struct tcm_loop_nexus
*tl_nexus
= tl_hba
->tl_nexus
;
70 struct tcm_loop_cmd
*tl_cmd
;
74 scmd_printk(KERN_ERR
, sc
, "TCM_Loop I_T Nexus"
76 set_host_byte(sc
, DID_ERROR
);
79 se_sess
= tl_nexus
->se_sess
;
81 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_ATOMIC
);
83 printk(KERN_ERR
"Unable to allocate struct tcm_loop_cmd\n");
84 set_host_byte(sc
, DID_ERROR
);
87 se_cmd
= &tl_cmd
->tl_se_cmd
;
89 * Save the pointer to struct scsi_cmnd *sc
93 * Locate the SAM Task Attr from struct scsi_cmnd *
95 if (sc
->device
->tagged_supported
) {
97 case HEAD_OF_QUEUE_TAG
:
98 sam_task_attr
= TASK_ATTR_HOQ
;
100 case ORDERED_QUEUE_TAG
:
101 sam_task_attr
= TASK_ATTR_ORDERED
;
104 sam_task_attr
= TASK_ATTR_SIMPLE
;
108 sam_task_attr
= TASK_ATTR_SIMPLE
;
111 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
113 transport_init_se_cmd(se_cmd
, se_tpg
->se_tpg_tfo
, se_sess
,
114 scsi_bufflen(sc
), sc
->sc_data_direction
, sam_task_attr
,
115 &tl_cmd
->tl_sense_buf
[0]);
118 * Signal BIDI usage with T_TASK(cmd)->t_tasks_bidi
120 if (scsi_bidi_cmnd(sc
))
121 T_TASK(se_cmd
)->t_tasks_bidi
= 1;
123 * Locate the struct se_lun pointer and attach it to struct se_cmd
125 if (transport_get_lun_for_cmd(se_cmd
, NULL
, tl_cmd
->sc
->device
->lun
) < 0) {
126 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
127 set_host_byte(sc
, DID_NO_CONNECT
);
131 transport_device_setup_cmd(se_cmd
);
136 * Called by struct target_core_fabric_ops->new_cmd_map()
138 * Always called in process context. A non zero return value
139 * here will signal to handle an exception based on the return code.
141 static int tcm_loop_new_cmd_map(struct se_cmd
*se_cmd
)
143 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
144 struct tcm_loop_cmd
, tl_se_cmd
);
145 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
146 void *mem_ptr
, *mem_bidi_ptr
= NULL
;
150 * Allocate the necessary tasks to complete the received CDB+data
152 ret
= transport_generic_allocate_tasks(se_cmd
, tl_cmd
->sc
->cmnd
);
154 /* Out of Resources */
155 return PYX_TRANSPORT_LU_COMM_FAILURE
;
156 } else if (ret
== -2) {
158 * Handle case for SAM_STAT_RESERVATION_CONFLICT
160 if (se_cmd
->se_cmd_flags
& SCF_SCSI_RESERVATION_CONFLICT
)
161 return PYX_TRANSPORT_RESERVATION_CONFLICT
;
163 * Otherwise, return SAM_STAT_CHECK_CONDITION and return
166 return PYX_TRANSPORT_USE_SENSE_REASON
;
169 * Setup the struct scatterlist memory from the received
172 if (scsi_sg_count(sc
)) {
173 se_cmd
->se_cmd_flags
|= SCF_PASSTHROUGH_SG_TO_MEM
;
174 mem_ptr
= (void *)scsi_sglist(sc
);
176 * For BIDI commands, pass in the extra READ buffer
177 * to transport_generic_map_mem_to_cmd() below..
179 if (T_TASK(se_cmd
)->t_tasks_bidi
) {
180 struct scsi_data_buffer
*sdb
= scsi_in(sc
);
182 mem_bidi_ptr
= (void *)sdb
->table
.sgl
;
183 sg_no_bidi
= sdb
->table
.nents
;
192 * Map the SG memory into struct se_mem->page linked list using the same
193 * physical memory at sg->page_link.
195 ret
= transport_generic_map_mem_to_cmd(se_cmd
, mem_ptr
,
196 scsi_sg_count(sc
), mem_bidi_ptr
, sg_no_bidi
);
198 return PYX_TRANSPORT_LU_COMM_FAILURE
;
204 * Called from struct target_core_fabric_ops->check_stop_free()
206 static void tcm_loop_check_stop_free(struct se_cmd
*se_cmd
)
209 * Do not release struct se_cmd's containing a valid TMR
210 * pointer. These will be released directly in tcm_loop_device_reset()
211 * with transport_generic_free_cmd().
213 if (se_cmd
->se_tmr_req
)
216 * Release the struct se_cmd, which will make a callback to release
217 * struct tcm_loop_cmd * in tcm_loop_deallocate_core_cmd()
219 transport_generic_free_cmd(se_cmd
, 0, 1, 0);
223 * Called from struct target_core_fabric_ops->release_cmd_to_pool()
225 static void tcm_loop_deallocate_core_cmd(struct se_cmd
*se_cmd
)
227 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
228 struct tcm_loop_cmd
, tl_se_cmd
);
230 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
233 static int tcm_loop_proc_info(struct Scsi_Host
*host
, char *buffer
,
234 char **start
, off_t offset
,
235 int length
, int inout
)
237 return sprintf(buffer
, "tcm_loop_proc_info()\n");
240 static int tcm_loop_driver_probe(struct device
*);
241 static int tcm_loop_driver_remove(struct device
*);
243 static int pseudo_lld_bus_match(struct device
*dev
,
244 struct device_driver
*dev_driver
)
249 static struct bus_type tcm_loop_lld_bus
= {
250 .name
= "tcm_loop_bus",
251 .match
= pseudo_lld_bus_match
,
252 .probe
= tcm_loop_driver_probe
,
253 .remove
= tcm_loop_driver_remove
,
256 static struct device_driver tcm_loop_driverfs
= {
258 .bus
= &tcm_loop_lld_bus
,
261 * Used with root_device_register() in tcm_loop_alloc_core_bus() below
263 struct device
*tcm_loop_primary
;
266 * Copied from drivers/scsi/libfc/fc_fcp.c:fc_change_queue_depth() and
267 * drivers/scsi/libiscsi.c:iscsi_change_queue_depth()
269 static int tcm_loop_change_queue_depth(
270 struct scsi_device
*sdev
,
275 case SCSI_QDEPTH_DEFAULT
:
276 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
278 case SCSI_QDEPTH_QFULL
:
279 scsi_track_queue_full(sdev
, depth
);
281 case SCSI_QDEPTH_RAMP_UP
:
282 scsi_adjust_queue_depth(sdev
, scsi_get_tag_type(sdev
), depth
);
287 return sdev
->queue_depth
;
291 * Main entry point from struct scsi_host_template for incoming SCSI CDB+Data
292 * from Linux/SCSI subsystem for SCSI low level device drivers (LLDs)
294 static int tcm_loop_queuecommand(
295 struct Scsi_Host
*sh
,
296 struct scsi_cmnd
*sc
)
298 struct se_cmd
*se_cmd
;
299 struct se_portal_group
*se_tpg
;
300 struct tcm_loop_hba
*tl_hba
;
301 struct tcm_loop_tpg
*tl_tpg
;
303 TL_CDB_DEBUG("tcm_loop_queuecommand() %d:%d:%d:%d got CDB: 0x%02x"
304 " scsi_buf_len: %u\n", sc
->device
->host
->host_no
,
305 sc
->device
->id
, sc
->device
->channel
, sc
->device
->lun
,
306 sc
->cmnd
[0], scsi_bufflen(sc
));
308 * Locate the tcm_loop_hba_t pointer
310 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
311 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
312 se_tpg
= &tl_tpg
->tl_se_tpg
;
314 * Determine the SAM Task Attribute and allocate tl_cmd and
315 * tl_cmd->tl_se_cmd from TCM infrastructure
317 se_cmd
= tcm_loop_allocate_core_cmd(tl_hba
, se_tpg
, sc
);
323 * Queue up the newly allocated to be processed in TCM thread context.
325 transport_generic_handle_cdb_map(se_cmd
);
330 * Called from SCSI EH process context to issue a LUN_RESET TMR
331 * to struct scsi_device
333 static int tcm_loop_device_reset(struct scsi_cmnd
*sc
)
335 struct se_cmd
*se_cmd
= NULL
;
336 struct se_portal_group
*se_tpg
;
337 struct se_session
*se_sess
;
338 struct tcm_loop_cmd
*tl_cmd
= NULL
;
339 struct tcm_loop_hba
*tl_hba
;
340 struct tcm_loop_nexus
*tl_nexus
;
341 struct tcm_loop_tmr
*tl_tmr
= NULL
;
342 struct tcm_loop_tpg
*tl_tpg
;
345 * Locate the tcm_loop_hba_t pointer
347 tl_hba
= *(struct tcm_loop_hba
**)shost_priv(sc
->device
->host
);
349 * Locate the tl_nexus and se_sess pointers
351 tl_nexus
= tl_hba
->tl_nexus
;
353 printk(KERN_ERR
"Unable to perform device reset without"
354 " active I_T Nexus\n");
357 se_sess
= tl_nexus
->se_sess
;
359 * Locate the tl_tpg and se_tpg pointers from TargetID in sc->device->id
361 tl_tpg
= &tl_hba
->tl_hba_tpgs
[sc
->device
->id
];
362 se_tpg
= &tl_tpg
->tl_se_tpg
;
364 tl_cmd
= kmem_cache_zalloc(tcm_loop_cmd_cache
, GFP_KERNEL
);
366 printk(KERN_ERR
"Unable to allocate memory for tl_cmd\n");
370 tl_tmr
= kzalloc(sizeof(struct tcm_loop_tmr
), GFP_KERNEL
);
372 printk(KERN_ERR
"Unable to allocate memory for tl_tmr\n");
375 init_waitqueue_head(&tl_tmr
->tl_tmr_wait
);
377 se_cmd
= &tl_cmd
->tl_se_cmd
;
379 * Initialize struct se_cmd descriptor from target_core_mod infrastructure
381 transport_init_se_cmd(se_cmd
, se_tpg
->se_tpg_tfo
, se_sess
, 0,
382 DMA_NONE
, TASK_ATTR_SIMPLE
,
383 &tl_cmd
->tl_sense_buf
[0]);
385 * Allocate the LUN_RESET TMR
387 se_cmd
->se_tmr_req
= core_tmr_alloc_req(se_cmd
, (void *)tl_tmr
,
389 if (!se_cmd
->se_tmr_req
)
392 * Locate the underlying TCM struct se_lun from sc->device->lun
394 if (transport_get_lun_for_tmr(se_cmd
, sc
->device
->lun
) < 0)
397 * Queue the TMR to TCM Core and sleep waiting for tcm_loop_queue_tm_rsp()
400 transport_generic_handle_tmr(se_cmd
);
401 wait_event(tl_tmr
->tl_tmr_wait
, atomic_read(&tl_tmr
->tmr_complete
));
403 * The TMR LUN_RESET has completed, check the response status and
404 * then release allocations.
406 ret
= (se_cmd
->se_tmr_req
->response
== TMR_FUNCTION_COMPLETE
) ?
410 transport_generic_free_cmd(se_cmd
, 1, 1, 0);
412 kmem_cache_free(tcm_loop_cmd_cache
, tl_cmd
);
417 static int tcm_loop_slave_alloc(struct scsi_device
*sd
)
419 set_bit(QUEUE_FLAG_BIDI
, &sd
->request_queue
->queue_flags
);
423 static int tcm_loop_slave_configure(struct scsi_device
*sd
)
428 static struct scsi_host_template tcm_loop_driver_template
= {
429 .proc_info
= tcm_loop_proc_info
,
430 .proc_name
= "tcm_loopback",
431 .name
= "TCM_Loopback",
432 .queuecommand
= tcm_loop_queuecommand
,
433 .change_queue_depth
= tcm_loop_change_queue_depth
,
434 .eh_device_reset_handler
= tcm_loop_device_reset
,
435 .can_queue
= TL_SCSI_CAN_QUEUE
,
437 .sg_tablesize
= TL_SCSI_SG_TABLESIZE
,
438 .cmd_per_lun
= TL_SCSI_CMD_PER_LUN
,
439 .max_sectors
= TL_SCSI_MAX_SECTORS
,
440 .use_clustering
= DISABLE_CLUSTERING
,
441 .slave_alloc
= tcm_loop_slave_alloc
,
442 .slave_configure
= tcm_loop_slave_configure
,
443 .module
= THIS_MODULE
,
446 static int tcm_loop_driver_probe(struct device
*dev
)
448 struct tcm_loop_hba
*tl_hba
;
449 struct Scsi_Host
*sh
;
452 tl_hba
= to_tcm_loop_hba(dev
);
454 sh
= scsi_host_alloc(&tcm_loop_driver_template
,
455 sizeof(struct tcm_loop_hba
));
457 printk(KERN_ERR
"Unable to allocate struct scsi_host\n");
463 * Assign the struct tcm_loop_hba pointer to struct Scsi_Host->hostdata
465 *((struct tcm_loop_hba
**)sh
->hostdata
) = tl_hba
;
467 * Setup single ID, Channel and LUN for now..
472 sh
->max_cmd_len
= TL_SCSI_MAX_CMD_LEN
;
474 error
= scsi_add_host(sh
, &tl_hba
->dev
);
476 printk(KERN_ERR
"%s: scsi_add_host failed\n", __func__
);
483 static int tcm_loop_driver_remove(struct device
*dev
)
485 struct tcm_loop_hba
*tl_hba
;
486 struct Scsi_Host
*sh
;
488 tl_hba
= to_tcm_loop_hba(dev
);
491 scsi_remove_host(sh
);
496 static void tcm_loop_release_adapter(struct device
*dev
)
498 struct tcm_loop_hba
*tl_hba
= to_tcm_loop_hba(dev
);
504 * Called from tcm_loop_make_scsi_hba() in tcm_loop_configfs.c
506 static int tcm_loop_setup_hba_bus(struct tcm_loop_hba
*tl_hba
, int tcm_loop_host_id
)
510 tl_hba
->dev
.bus
= &tcm_loop_lld_bus
;
511 tl_hba
->dev
.parent
= tcm_loop_primary
;
512 tl_hba
->dev
.release
= &tcm_loop_release_adapter
;
513 dev_set_name(&tl_hba
->dev
, "tcm_loop_adapter_%d", tcm_loop_host_id
);
515 ret
= device_register(&tl_hba
->dev
);
517 printk(KERN_ERR
"device_register() failed for"
518 " tl_hba->dev: %d\n", ret
);
526 * Called from tcm_loop_fabric_init() in tcl_loop_fabric.c to load the emulated
529 static int tcm_loop_alloc_core_bus(void)
533 tcm_loop_primary
= root_device_register("tcm_loop_0");
534 if (IS_ERR(tcm_loop_primary
)) {
535 printk(KERN_ERR
"Unable to allocate tcm_loop_primary\n");
536 return PTR_ERR(tcm_loop_primary
);
539 ret
= bus_register(&tcm_loop_lld_bus
);
541 printk(KERN_ERR
"bus_register() failed for tcm_loop_lld_bus\n");
545 ret
= driver_register(&tcm_loop_driverfs
);
547 printk(KERN_ERR
"driver_register() failed for"
548 "tcm_loop_driverfs\n");
552 printk(KERN_INFO
"Initialized TCM Loop Core Bus\n");
556 bus_unregister(&tcm_loop_lld_bus
);
558 root_device_unregister(tcm_loop_primary
);
562 static void tcm_loop_release_core_bus(void)
564 driver_unregister(&tcm_loop_driverfs
);
565 bus_unregister(&tcm_loop_lld_bus
);
566 root_device_unregister(tcm_loop_primary
);
568 printk(KERN_INFO
"Releasing TCM Loop Core BUS\n");
571 static char *tcm_loop_get_fabric_name(void)
576 static u8
tcm_loop_get_fabric_proto_ident(struct se_portal_group
*se_tpg
)
578 struct tcm_loop_tpg
*tl_tpg
=
579 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
580 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
582 * tl_proto_id is set at tcm_loop_configfs.c:tcm_loop_make_scsi_hba()
583 * time based on the protocol dependent prefix of the passed configfs group.
585 * Based upon tl_proto_id, TCM_Loop emulates the requested fabric
586 * ProtocolID using target_core_fabric_lib.c symbols.
588 switch (tl_hba
->tl_proto_id
) {
589 case SCSI_PROTOCOL_SAS
:
590 return sas_get_fabric_proto_ident(se_tpg
);
591 case SCSI_PROTOCOL_FCP
:
592 return fc_get_fabric_proto_ident(se_tpg
);
593 case SCSI_PROTOCOL_ISCSI
:
594 return iscsi_get_fabric_proto_ident(se_tpg
);
596 printk(KERN_ERR
"Unknown tl_proto_id: 0x%02x, using"
597 " SAS emulation\n", tl_hba
->tl_proto_id
);
601 return sas_get_fabric_proto_ident(se_tpg
);
604 static char *tcm_loop_get_endpoint_wwn(struct se_portal_group
*se_tpg
)
606 struct tcm_loop_tpg
*tl_tpg
=
607 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
609 * Return the passed NAA identifier for the SAS Target Port
611 return &tl_tpg
->tl_hba
->tl_wwn_address
[0];
614 static u16
tcm_loop_get_tag(struct se_portal_group
*se_tpg
)
616 struct tcm_loop_tpg
*tl_tpg
=
617 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
619 * This Tag is used when forming SCSI Name identifier in EVPD=1 0x83
620 * to represent the SCSI Target Port.
622 return tl_tpg
->tl_tpgt
;
625 static u32
tcm_loop_get_default_depth(struct se_portal_group
*se_tpg
)
630 static u32
tcm_loop_get_pr_transport_id(
631 struct se_portal_group
*se_tpg
,
632 struct se_node_acl
*se_nacl
,
633 struct t10_pr_registration
*pr_reg
,
637 struct tcm_loop_tpg
*tl_tpg
=
638 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
639 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
641 switch (tl_hba
->tl_proto_id
) {
642 case SCSI_PROTOCOL_SAS
:
643 return sas_get_pr_transport_id(se_tpg
, se_nacl
, pr_reg
,
645 case SCSI_PROTOCOL_FCP
:
646 return fc_get_pr_transport_id(se_tpg
, se_nacl
, pr_reg
,
648 case SCSI_PROTOCOL_ISCSI
:
649 return iscsi_get_pr_transport_id(se_tpg
, se_nacl
, pr_reg
,
652 printk(KERN_ERR
"Unknown tl_proto_id: 0x%02x, using"
653 " SAS emulation\n", tl_hba
->tl_proto_id
);
657 return sas_get_pr_transport_id(se_tpg
, se_nacl
, pr_reg
,
661 static u32
tcm_loop_get_pr_transport_id_len(
662 struct se_portal_group
*se_tpg
,
663 struct se_node_acl
*se_nacl
,
664 struct t10_pr_registration
*pr_reg
,
667 struct tcm_loop_tpg
*tl_tpg
=
668 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
669 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
671 switch (tl_hba
->tl_proto_id
) {
672 case SCSI_PROTOCOL_SAS
:
673 return sas_get_pr_transport_id_len(se_tpg
, se_nacl
, pr_reg
,
675 case SCSI_PROTOCOL_FCP
:
676 return fc_get_pr_transport_id_len(se_tpg
, se_nacl
, pr_reg
,
678 case SCSI_PROTOCOL_ISCSI
:
679 return iscsi_get_pr_transport_id_len(se_tpg
, se_nacl
, pr_reg
,
682 printk(KERN_ERR
"Unknown tl_proto_id: 0x%02x, using"
683 " SAS emulation\n", tl_hba
->tl_proto_id
);
687 return sas_get_pr_transport_id_len(se_tpg
, se_nacl
, pr_reg
,
692 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
693 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
695 static char *tcm_loop_parse_pr_out_transport_id(
696 struct se_portal_group
*se_tpg
,
699 char **port_nexus_ptr
)
701 struct tcm_loop_tpg
*tl_tpg
=
702 (struct tcm_loop_tpg
*)se_tpg
->se_tpg_fabric_ptr
;
703 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
705 switch (tl_hba
->tl_proto_id
) {
706 case SCSI_PROTOCOL_SAS
:
707 return sas_parse_pr_out_transport_id(se_tpg
, buf
, out_tid_len
,
709 case SCSI_PROTOCOL_FCP
:
710 return fc_parse_pr_out_transport_id(se_tpg
, buf
, out_tid_len
,
712 case SCSI_PROTOCOL_ISCSI
:
713 return iscsi_parse_pr_out_transport_id(se_tpg
, buf
, out_tid_len
,
716 printk(KERN_ERR
"Unknown tl_proto_id: 0x%02x, using"
717 " SAS emulation\n", tl_hba
->tl_proto_id
);
721 return sas_parse_pr_out_transport_id(se_tpg
, buf
, out_tid_len
,
726 * Returning (1) here allows for target_core_mod struct se_node_acl to be generated
727 * based upon the incoming fabric dependent SCSI Initiator Port
729 static int tcm_loop_check_demo_mode(struct se_portal_group
*se_tpg
)
734 static int tcm_loop_check_demo_mode_cache(struct se_portal_group
*se_tpg
)
740 * Allow I_T Nexus full READ-WRITE access without explict Initiator Node ACLs for
741 * local virtual Linux/SCSI LLD passthrough into VM hypervisor guest
743 static int tcm_loop_check_demo_mode_write_protect(struct se_portal_group
*se_tpg
)
749 * Because TCM_Loop does not use explict ACLs and MappedLUNs, this will
750 * never be called for TCM_Loop by target_core_fabric_configfs.c code.
751 * It has been added here as a nop for target_fabric_tf_ops_check()
753 static int tcm_loop_check_prod_mode_write_protect(struct se_portal_group
*se_tpg
)
758 static struct se_node_acl
*tcm_loop_tpg_alloc_fabric_acl(
759 struct se_portal_group
*se_tpg
)
761 struct tcm_loop_nacl
*tl_nacl
;
763 tl_nacl
= kzalloc(sizeof(struct tcm_loop_nacl
), GFP_KERNEL
);
765 printk(KERN_ERR
"Unable to allocate struct tcm_loop_nacl\n");
769 return &tl_nacl
->se_node_acl
;
772 static void tcm_loop_tpg_release_fabric_acl(
773 struct se_portal_group
*se_tpg
,
774 struct se_node_acl
*se_nacl
)
776 struct tcm_loop_nacl
*tl_nacl
= container_of(se_nacl
,
777 struct tcm_loop_nacl
, se_node_acl
);
782 static u32
tcm_loop_get_inst_index(struct se_portal_group
*se_tpg
)
787 static void tcm_loop_new_cmd_failure(struct se_cmd
*se_cmd
)
790 * Since TCM_loop is already passing struct scatterlist data from
791 * struct scsi_cmnd, no more Linux/SCSI failure dependent state need
792 * to be handled here.
797 static int tcm_loop_is_state_remove(struct se_cmd
*se_cmd
)
800 * Assume struct scsi_cmnd is not in remove state..
805 static int tcm_loop_sess_logged_in(struct se_session
*se_sess
)
808 * Assume that TL Nexus is always active
813 static u32
tcm_loop_sess_get_index(struct se_session
*se_sess
)
818 static void tcm_loop_set_default_node_attributes(struct se_node_acl
*se_acl
)
823 static u32
tcm_loop_get_task_tag(struct se_cmd
*se_cmd
)
828 static int tcm_loop_get_cmd_state(struct se_cmd
*se_cmd
)
830 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
831 struct tcm_loop_cmd
, tl_se_cmd
);
833 return tl_cmd
->sc_cmd_state
;
836 static int tcm_loop_shutdown_session(struct se_session
*se_sess
)
841 static void tcm_loop_close_session(struct se_session
*se_sess
)
846 static void tcm_loop_stop_session(
847 struct se_session
*se_sess
,
854 static void tcm_loop_fall_back_to_erl0(struct se_session
*se_sess
)
859 static int tcm_loop_write_pending(struct se_cmd
*se_cmd
)
862 * Since Linux/SCSI has already sent down a struct scsi_cmnd
863 * sc->sc_data_direction of DMA_TO_DEVICE with struct scatterlist array
864 * memory, and memory has already been mapped to struct se_cmd->t_mem_list
865 * format with transport_generic_map_mem_to_cmd().
867 * We now tell TCM to add this WRITE CDB directly into the TCM storage
868 * object execution queue.
870 transport_generic_process_write(se_cmd
);
874 static int tcm_loop_write_pending_status(struct se_cmd
*se_cmd
)
879 static int tcm_loop_queue_data_in(struct se_cmd
*se_cmd
)
881 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
882 struct tcm_loop_cmd
, tl_se_cmd
);
883 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
885 TL_CDB_DEBUG("tcm_loop_queue_data_in() called for scsi_cmnd: %p"
886 " cdb: 0x%02x\n", sc
, sc
->cmnd
[0]);
888 sc
->result
= SAM_STAT_GOOD
;
889 set_host_byte(sc
, DID_OK
);
894 static int tcm_loop_queue_status(struct se_cmd
*se_cmd
)
896 struct tcm_loop_cmd
*tl_cmd
= container_of(se_cmd
,
897 struct tcm_loop_cmd
, tl_se_cmd
);
898 struct scsi_cmnd
*sc
= tl_cmd
->sc
;
900 TL_CDB_DEBUG("tcm_loop_queue_status() called for scsi_cmnd: %p"
901 " cdb: 0x%02x\n", sc
, sc
->cmnd
[0]);
903 if (se_cmd
->sense_buffer
&&
904 ((se_cmd
->se_cmd_flags
& SCF_TRANSPORT_TASK_SENSE
) ||
905 (se_cmd
->se_cmd_flags
& SCF_EMULATED_TASK_SENSE
))) {
907 memcpy((void *)sc
->sense_buffer
, (void *)se_cmd
->sense_buffer
,
908 SCSI_SENSE_BUFFERSIZE
);
909 sc
->result
= SAM_STAT_CHECK_CONDITION
;
910 set_driver_byte(sc
, DRIVER_SENSE
);
912 sc
->result
= se_cmd
->scsi_status
;
914 set_host_byte(sc
, DID_OK
);
919 static int tcm_loop_queue_tm_rsp(struct se_cmd
*se_cmd
)
921 struct se_tmr_req
*se_tmr
= se_cmd
->se_tmr_req
;
922 struct tcm_loop_tmr
*tl_tmr
= se_tmr
->fabric_tmr_ptr
;
924 * The SCSI EH thread will be sleeping on se_tmr->tl_tmr_wait, go ahead
925 * and wake up the wait_queue_head_t in tcm_loop_device_reset()
927 atomic_set(&tl_tmr
->tmr_complete
, 1);
928 wake_up(&tl_tmr
->tl_tmr_wait
);
932 static u16
tcm_loop_set_fabric_sense_len(struct se_cmd
*se_cmd
, u32 sense_length
)
937 static u16
tcm_loop_get_fabric_sense_len(void)
942 static u64
tcm_loop_pack_lun(unsigned int lun
)
946 /* LSB of lun into byte 1 big-endian */
947 result
= ((lun
& 0xff) << 8);
948 /* use flat space addressing method */
949 result
|= 0x40 | ((lun
>> 8) & 0x3f);
951 return cpu_to_le64(result
);
954 static char *tcm_loop_dump_proto_id(struct tcm_loop_hba
*tl_hba
)
956 switch (tl_hba
->tl_proto_id
) {
957 case SCSI_PROTOCOL_SAS
:
959 case SCSI_PROTOCOL_FCP
:
961 case SCSI_PROTOCOL_ISCSI
:
970 /* Start items for tcm_loop_port_cit */
972 static int tcm_loop_port_link(
973 struct se_portal_group
*se_tpg
,
976 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
977 struct tcm_loop_tpg
, tl_se_tpg
);
978 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
980 atomic_inc(&tl_tpg
->tl_tpg_port_count
);
981 smp_mb__after_atomic_inc();
983 * Add Linux/SCSI struct scsi_device by HCTL
985 scsi_add_device(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
, lun
->unpacked_lun
);
987 printk(KERN_INFO
"TCM_Loop_ConfigFS: Port Link Successful\n");
991 static void tcm_loop_port_unlink(
992 struct se_portal_group
*se_tpg
,
993 struct se_lun
*se_lun
)
995 struct scsi_device
*sd
;
996 struct tcm_loop_hba
*tl_hba
;
997 struct tcm_loop_tpg
*tl_tpg
;
999 tl_tpg
= container_of(se_tpg
, struct tcm_loop_tpg
, tl_se_tpg
);
1000 tl_hba
= tl_tpg
->tl_hba
;
1002 sd
= scsi_device_lookup(tl_hba
->sh
, 0, tl_tpg
->tl_tpgt
,
1003 se_lun
->unpacked_lun
);
1005 printk(KERN_ERR
"Unable to locate struct scsi_device for %d:%d:"
1006 "%d\n", 0, tl_tpg
->tl_tpgt
, se_lun
->unpacked_lun
);
1010 * Remove Linux/SCSI struct scsi_device by HCTL
1012 scsi_remove_device(sd
);
1013 scsi_device_put(sd
);
1015 atomic_dec(&tl_tpg
->tl_tpg_port_count
);
1016 smp_mb__after_atomic_dec();
1018 printk(KERN_INFO
"TCM_Loop_ConfigFS: Port Unlink Successful\n");
1021 /* End items for tcm_loop_port_cit */
1023 /* Start items for tcm_loop_nexus_cit */
1025 static int tcm_loop_make_nexus(
1026 struct tcm_loop_tpg
*tl_tpg
,
1029 struct se_portal_group
*se_tpg
;
1030 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
1031 struct tcm_loop_nexus
*tl_nexus
;
1033 if (tl_tpg
->tl_hba
->tl_nexus
) {
1034 printk(KERN_INFO
"tl_tpg->tl_hba->tl_nexus already exists\n");
1037 se_tpg
= &tl_tpg
->tl_se_tpg
;
1039 tl_nexus
= kzalloc(sizeof(struct tcm_loop_nexus
), GFP_KERNEL
);
1041 printk(KERN_ERR
"Unable to allocate struct tcm_loop_nexus\n");
1045 * Initialize the struct se_session pointer
1047 tl_nexus
->se_sess
= transport_init_session();
1048 if (!tl_nexus
->se_sess
)
1051 * Since we are running in 'demo mode' this call with generate a
1052 * struct se_node_acl for the tcm_loop struct se_portal_group with the SCSI
1053 * Initiator port name of the passed configfs group 'name'.
1055 tl_nexus
->se_sess
->se_node_acl
= core_tpg_check_initiator_node_acl(
1056 se_tpg
, (unsigned char *)name
);
1057 if (!tl_nexus
->se_sess
->se_node_acl
) {
1058 transport_free_session(tl_nexus
->se_sess
);
1062 * Now, register the SAS I_T Nexus as active with the call to
1063 * transport_register_session()
1065 __transport_register_session(se_tpg
, tl_nexus
->se_sess
->se_node_acl
,
1066 tl_nexus
->se_sess
, (void *)tl_nexus
);
1067 tl_tpg
->tl_hba
->tl_nexus
= tl_nexus
;
1068 printk(KERN_INFO
"TCM_Loop_ConfigFS: Established I_T Nexus to emulated"
1069 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba
),
1078 static int tcm_loop_drop_nexus(
1079 struct tcm_loop_tpg
*tpg
)
1081 struct se_session
*se_sess
;
1082 struct tcm_loop_nexus
*tl_nexus
;
1083 struct tcm_loop_hba
*tl_hba
= tpg
->tl_hba
;
1085 tl_nexus
= tpg
->tl_hba
->tl_nexus
;
1089 se_sess
= tl_nexus
->se_sess
;
1093 if (atomic_read(&tpg
->tl_tpg_port_count
)) {
1094 printk(KERN_ERR
"Unable to remove TCM_Loop I_T Nexus with"
1095 " active TPG port count: %d\n",
1096 atomic_read(&tpg
->tl_tpg_port_count
));
1100 printk(KERN_INFO
"TCM_Loop_ConfigFS: Removing I_T Nexus to emulated"
1101 " %s Initiator Port: %s\n", tcm_loop_dump_proto_id(tl_hba
),
1102 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
1104 * Release the SCSI I_T Nexus to the emulated SAS Target Port
1106 transport_deregister_session(tl_nexus
->se_sess
);
1107 tpg
->tl_hba
->tl_nexus
= NULL
;
1112 /* End items for tcm_loop_nexus_cit */
1114 static ssize_t
tcm_loop_tpg_show_nexus(
1115 struct se_portal_group
*se_tpg
,
1118 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
1119 struct tcm_loop_tpg
, tl_se_tpg
);
1120 struct tcm_loop_nexus
*tl_nexus
;
1123 tl_nexus
= tl_tpg
->tl_hba
->tl_nexus
;
1127 ret
= snprintf(page
, PAGE_SIZE
, "%s\n",
1128 tl_nexus
->se_sess
->se_node_acl
->initiatorname
);
1133 static ssize_t
tcm_loop_tpg_store_nexus(
1134 struct se_portal_group
*se_tpg
,
1138 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
1139 struct tcm_loop_tpg
, tl_se_tpg
);
1140 struct tcm_loop_hba
*tl_hba
= tl_tpg
->tl_hba
;
1141 unsigned char i_port
[TL_WWN_ADDR_LEN
], *ptr
, *port_ptr
;
1144 * Shutdown the active I_T nexus if 'NULL' is passed..
1146 if (!strncmp(page
, "NULL", 4)) {
1147 ret
= tcm_loop_drop_nexus(tl_tpg
);
1148 return (!ret
) ? count
: ret
;
1151 * Otherwise make sure the passed virtual Initiator port WWN matches
1152 * the fabric protocol_id set in tcm_loop_make_scsi_hba(), and call
1153 * tcm_loop_make_nexus()
1155 if (strlen(page
) > TL_WWN_ADDR_LEN
) {
1156 printk(KERN_ERR
"Emulated NAA Sas Address: %s, exceeds"
1157 " max: %d\n", page
, TL_WWN_ADDR_LEN
);
1160 snprintf(&i_port
[0], TL_WWN_ADDR_LEN
, "%s", page
);
1162 ptr
= strstr(i_port
, "naa.");
1164 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_SAS
) {
1165 printk(KERN_ERR
"Passed SAS Initiator Port %s does not"
1166 " match target port protoid: %s\n", i_port
,
1167 tcm_loop_dump_proto_id(tl_hba
));
1170 port_ptr
= &i_port
[0];
1173 ptr
= strstr(i_port
, "fc.");
1175 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_FCP
) {
1176 printk(KERN_ERR
"Passed FCP Initiator Port %s does not"
1177 " match target port protoid: %s\n", i_port
,
1178 tcm_loop_dump_proto_id(tl_hba
));
1181 port_ptr
= &i_port
[3]; /* Skip over "fc." */
1184 ptr
= strstr(i_port
, "iqn.");
1186 if (tl_hba
->tl_proto_id
!= SCSI_PROTOCOL_ISCSI
) {
1187 printk(KERN_ERR
"Passed iSCSI Initiator Port %s does not"
1188 " match target port protoid: %s\n", i_port
,
1189 tcm_loop_dump_proto_id(tl_hba
));
1192 port_ptr
= &i_port
[0];
1195 printk(KERN_ERR
"Unable to locate prefix for emulated Initiator Port:"
1199 * Clear any trailing newline for the NAA WWN
1202 if (i_port
[strlen(i_port
)-1] == '\n')
1203 i_port
[strlen(i_port
)-1] = '\0';
1205 ret
= tcm_loop_make_nexus(tl_tpg
, port_ptr
);
1212 TF_TPG_BASE_ATTR(tcm_loop
, nexus
, S_IRUGO
| S_IWUSR
);
1214 static struct configfs_attribute
*tcm_loop_tpg_attrs
[] = {
1215 &tcm_loop_tpg_nexus
.attr
,
1219 /* Start items for tcm_loop_naa_cit */
1221 struct se_portal_group
*tcm_loop_make_naa_tpg(
1223 struct config_group
*group
,
1226 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
1227 struct tcm_loop_hba
, tl_hba_wwn
);
1228 struct tcm_loop_tpg
*tl_tpg
;
1229 char *tpgt_str
, *end_ptr
;
1231 unsigned short int tpgt
;
1233 tpgt_str
= strstr(name
, "tpgt_");
1235 printk(KERN_ERR
"Unable to locate \"tpgt_#\" directory"
1237 return ERR_PTR(-EINVAL
);
1239 tpgt_str
+= 5; /* Skip ahead of "tpgt_" */
1240 tpgt
= (unsigned short int) simple_strtoul(tpgt_str
, &end_ptr
, 0);
1242 if (tpgt
> TL_TPGS_PER_HBA
) {
1243 printk(KERN_ERR
"Passed tpgt: %hu exceeds TL_TPGS_PER_HBA:"
1244 " %u\n", tpgt
, TL_TPGS_PER_HBA
);
1245 return ERR_PTR(-EINVAL
);
1247 tl_tpg
= &tl_hba
->tl_hba_tpgs
[tpgt
];
1248 tl_tpg
->tl_hba
= tl_hba
;
1249 tl_tpg
->tl_tpgt
= tpgt
;
1251 * Register the tl_tpg as a emulated SAS TCM Target Endpoint
1253 ret
= core_tpg_register(&tcm_loop_fabric_configfs
->tf_ops
,
1254 wwn
, &tl_tpg
->tl_se_tpg
, (void *)tl_tpg
,
1255 TRANSPORT_TPG_TYPE_NORMAL
);
1257 return ERR_PTR(-ENOMEM
);
1259 printk(KERN_INFO
"TCM_Loop_ConfigFS: Allocated Emulated %s"
1260 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba
),
1261 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1263 return &tl_tpg
->tl_se_tpg
;
1266 void tcm_loop_drop_naa_tpg(
1267 struct se_portal_group
*se_tpg
)
1269 struct se_wwn
*wwn
= se_tpg
->se_tpg_wwn
;
1270 struct tcm_loop_tpg
*tl_tpg
= container_of(se_tpg
,
1271 struct tcm_loop_tpg
, tl_se_tpg
);
1272 struct tcm_loop_hba
*tl_hba
;
1273 unsigned short tpgt
;
1275 tl_hba
= tl_tpg
->tl_hba
;
1276 tpgt
= tl_tpg
->tl_tpgt
;
1278 * Release the I_T Nexus for the Virtual SAS link if present
1280 tcm_loop_drop_nexus(tl_tpg
);
1282 * Deregister the tl_tpg as a emulated SAS TCM Target Endpoint
1284 core_tpg_deregister(se_tpg
);
1286 printk(KERN_INFO
"TCM_Loop_ConfigFS: Deallocated Emulated %s"
1287 " Target Port %s,t,0x%04x\n", tcm_loop_dump_proto_id(tl_hba
),
1288 config_item_name(&wwn
->wwn_group
.cg_item
), tpgt
);
1291 /* End items for tcm_loop_naa_cit */
1293 /* Start items for tcm_loop_cit */
1295 struct se_wwn
*tcm_loop_make_scsi_hba(
1296 struct target_fabric_configfs
*tf
,
1297 struct config_group
*group
,
1300 struct tcm_loop_hba
*tl_hba
;
1301 struct Scsi_Host
*sh
;
1305 tl_hba
= kzalloc(sizeof(struct tcm_loop_hba
), GFP_KERNEL
);
1307 printk(KERN_ERR
"Unable to allocate struct tcm_loop_hba\n");
1308 return ERR_PTR(-ENOMEM
);
1311 * Determine the emulated Protocol Identifier and Target Port Name
1312 * based on the incoming configfs directory name.
1314 ptr
= strstr(name
, "naa.");
1316 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_SAS
;
1319 ptr
= strstr(name
, "fc.");
1321 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_FCP
;
1322 off
= 3; /* Skip over "fc." */
1325 ptr
= strstr(name
, "iqn.");
1327 tl_hba
->tl_proto_id
= SCSI_PROTOCOL_ISCSI
;
1331 printk(KERN_ERR
"Unable to locate prefix for emulated Target Port:"
1333 return ERR_PTR(-EINVAL
);
1336 if (strlen(name
) > TL_WWN_ADDR_LEN
) {
1337 printk(KERN_ERR
"Emulated NAA %s Address: %s, exceeds"
1338 " max: %d\n", name
, tcm_loop_dump_proto_id(tl_hba
),
1341 return ERR_PTR(-EINVAL
);
1343 snprintf(&tl_hba
->tl_wwn_address
[0], TL_WWN_ADDR_LEN
, "%s", &name
[off
]);
1346 * Call device_register(tl_hba->dev) to register the emulated
1347 * Linux/SCSI LLD of type struct Scsi_Host at tl_hba->sh after
1348 * device_register() callbacks in tcm_loop_driver_probe()
1350 ret
= tcm_loop_setup_hba_bus(tl_hba
, tcm_loop_hba_no_cnt
);
1355 tcm_loop_hba_no_cnt
++;
1356 printk(KERN_INFO
"TCM_Loop_ConfigFS: Allocated emulated Target"
1357 " %s Address: %s at Linux/SCSI Host ID: %d\n",
1358 tcm_loop_dump_proto_id(tl_hba
), name
, sh
->host_no
);
1360 return &tl_hba
->tl_hba_wwn
;
1363 return ERR_PTR(ret
);
1366 void tcm_loop_drop_scsi_hba(
1369 struct tcm_loop_hba
*tl_hba
= container_of(wwn
,
1370 struct tcm_loop_hba
, tl_hba_wwn
);
1371 int host_no
= tl_hba
->sh
->host_no
;
1373 * Call device_unregister() on the original tl_hba->dev.
1374 * tcm_loop_fabric_scsi.c:tcm_loop_release_adapter() will
1377 device_unregister(&tl_hba
->dev
);
1379 printk(KERN_INFO
"TCM_Loop_ConfigFS: Deallocated emulated Target"
1380 " SAS Address: %s at Linux/SCSI Host ID: %d\n",
1381 config_item_name(&wwn
->wwn_group
.cg_item
), host_no
);
1384 /* Start items for tcm_loop_cit */
1385 static ssize_t
tcm_loop_wwn_show_attr_version(
1386 struct target_fabric_configfs
*tf
,
1389 return sprintf(page
, "TCM Loopback Fabric module %s\n", TCM_LOOP_VERSION
);
1392 TF_WWN_ATTR_RO(tcm_loop
, version
);
1394 static struct configfs_attribute
*tcm_loop_wwn_attrs
[] = {
1395 &tcm_loop_wwn_version
.attr
,
1399 /* End items for tcm_loop_cit */
1401 static int tcm_loop_register_configfs(void)
1403 struct target_fabric_configfs
*fabric
;
1404 struct config_group
*tf_cg
;
1407 * Set the TCM Loop HBA counter to zero
1409 tcm_loop_hba_no_cnt
= 0;
1411 * Register the top level struct config_item_type with TCM core
1413 fabric
= target_fabric_configfs_init(THIS_MODULE
, "loopback");
1415 printk(KERN_ERR
"tcm_loop_register_configfs() failed!\n");
1419 * Setup the fabric API of function pointers used by target_core_mod
1421 fabric
->tf_ops
.get_fabric_name
= &tcm_loop_get_fabric_name
;
1422 fabric
->tf_ops
.get_fabric_proto_ident
= &tcm_loop_get_fabric_proto_ident
;
1423 fabric
->tf_ops
.tpg_get_wwn
= &tcm_loop_get_endpoint_wwn
;
1424 fabric
->tf_ops
.tpg_get_tag
= &tcm_loop_get_tag
;
1425 fabric
->tf_ops
.tpg_get_default_depth
= &tcm_loop_get_default_depth
;
1426 fabric
->tf_ops
.tpg_get_pr_transport_id
= &tcm_loop_get_pr_transport_id
;
1427 fabric
->tf_ops
.tpg_get_pr_transport_id_len
=
1428 &tcm_loop_get_pr_transport_id_len
;
1429 fabric
->tf_ops
.tpg_parse_pr_out_transport_id
=
1430 &tcm_loop_parse_pr_out_transport_id
;
1431 fabric
->tf_ops
.tpg_check_demo_mode
= &tcm_loop_check_demo_mode
;
1432 fabric
->tf_ops
.tpg_check_demo_mode_cache
=
1433 &tcm_loop_check_demo_mode_cache
;
1434 fabric
->tf_ops
.tpg_check_demo_mode_write_protect
=
1435 &tcm_loop_check_demo_mode_write_protect
;
1436 fabric
->tf_ops
.tpg_check_prod_mode_write_protect
=
1437 &tcm_loop_check_prod_mode_write_protect
;
1439 * The TCM loopback fabric module runs in demo-mode to a local
1440 * virtual SCSI device, so fabric dependent initator ACLs are
1443 fabric
->tf_ops
.tpg_alloc_fabric_acl
= &tcm_loop_tpg_alloc_fabric_acl
;
1444 fabric
->tf_ops
.tpg_release_fabric_acl
=
1445 &tcm_loop_tpg_release_fabric_acl
;
1446 fabric
->tf_ops
.tpg_get_inst_index
= &tcm_loop_get_inst_index
;
1448 * Since tcm_loop is mapping physical memory from Linux/SCSI
1449 * struct scatterlist arrays for each struct scsi_cmnd I/O,
1450 * we do not need TCM to allocate a iovec array for
1451 * virtual memory address mappings
1453 fabric
->tf_ops
.alloc_cmd_iovecs
= NULL
;
1455 * Used for setting up remaining TCM resources in process context
1457 fabric
->tf_ops
.new_cmd_map
= &tcm_loop_new_cmd_map
;
1458 fabric
->tf_ops
.check_stop_free
= &tcm_loop_check_stop_free
;
1459 fabric
->tf_ops
.release_cmd_to_pool
= &tcm_loop_deallocate_core_cmd
;
1460 fabric
->tf_ops
.release_cmd_direct
= &tcm_loop_deallocate_core_cmd
;
1461 fabric
->tf_ops
.shutdown_session
= &tcm_loop_shutdown_session
;
1462 fabric
->tf_ops
.close_session
= &tcm_loop_close_session
;
1463 fabric
->tf_ops
.stop_session
= &tcm_loop_stop_session
;
1464 fabric
->tf_ops
.fall_back_to_erl0
= &tcm_loop_fall_back_to_erl0
;
1465 fabric
->tf_ops
.sess_logged_in
= &tcm_loop_sess_logged_in
;
1466 fabric
->tf_ops
.sess_get_index
= &tcm_loop_sess_get_index
;
1467 fabric
->tf_ops
.sess_get_initiator_sid
= NULL
;
1468 fabric
->tf_ops
.write_pending
= &tcm_loop_write_pending
;
1469 fabric
->tf_ops
.write_pending_status
= &tcm_loop_write_pending_status
;
1471 * Not used for TCM loopback
1473 fabric
->tf_ops
.set_default_node_attributes
=
1474 &tcm_loop_set_default_node_attributes
;
1475 fabric
->tf_ops
.get_task_tag
= &tcm_loop_get_task_tag
;
1476 fabric
->tf_ops
.get_cmd_state
= &tcm_loop_get_cmd_state
;
1477 fabric
->tf_ops
.new_cmd_failure
= &tcm_loop_new_cmd_failure
;
1478 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
;
1481 fabric
->tf_ops
.set_fabric_sense_len
= &tcm_loop_set_fabric_sense_len
;
1482 fabric
->tf_ops
.get_fabric_sense_len
= &tcm_loop_get_fabric_sense_len
;
1483 fabric
->tf_ops
.is_state_remove
= &tcm_loop_is_state_remove
;
1484 fabric
->tf_ops
.pack_lun
= &tcm_loop_pack_lun
;
1486 tf_cg
= &fabric
->tf_group
;
1488 * Setup function pointers for generic logic in target_core_fabric_configfs.c
1490 fabric
->tf_ops
.fabric_make_wwn
= &tcm_loop_make_scsi_hba
;
1491 fabric
->tf_ops
.fabric_drop_wwn
= &tcm_loop_drop_scsi_hba
;
1492 fabric
->tf_ops
.fabric_make_tpg
= &tcm_loop_make_naa_tpg
;
1493 fabric
->tf_ops
.fabric_drop_tpg
= &tcm_loop_drop_naa_tpg
;
1495 * fabric_post_link() and fabric_pre_unlink() are used for
1496 * registration and release of TCM Loop Virtual SCSI LUNs.
1498 fabric
->tf_ops
.fabric_post_link
= &tcm_loop_port_link
;
1499 fabric
->tf_ops
.fabric_pre_unlink
= &tcm_loop_port_unlink
;
1500 fabric
->tf_ops
.fabric_make_np
= NULL
;
1501 fabric
->tf_ops
.fabric_drop_np
= NULL
;
1503 * Setup default attribute lists for various fabric->tf_cit_tmpl
1505 TF_CIT_TMPL(fabric
)->tfc_wwn_cit
.ct_attrs
= tcm_loop_wwn_attrs
;
1506 TF_CIT_TMPL(fabric
)->tfc_tpg_base_cit
.ct_attrs
= tcm_loop_tpg_attrs
;
1507 TF_CIT_TMPL(fabric
)->tfc_tpg_attrib_cit
.ct_attrs
= NULL
;
1508 TF_CIT_TMPL(fabric
)->tfc_tpg_param_cit
.ct_attrs
= NULL
;
1509 TF_CIT_TMPL(fabric
)->tfc_tpg_np_base_cit
.ct_attrs
= NULL
;
1511 * Once fabric->tf_ops has been setup, now register the fabric for
1514 ret
= target_fabric_configfs_register(fabric
);
1516 printk(KERN_ERR
"target_fabric_configfs_register() for"
1517 " TCM_Loop failed!\n");
1518 target_fabric_configfs_free(fabric
);
1522 * Setup our local pointer to *fabric.
1524 tcm_loop_fabric_configfs
= fabric
;
1525 printk(KERN_INFO
"TCM_LOOP[0] - Set fabric ->"
1526 " tcm_loop_fabric_configfs\n");
1530 static void tcm_loop_deregister_configfs(void)
1532 if (!tcm_loop_fabric_configfs
)
1535 target_fabric_configfs_deregister(tcm_loop_fabric_configfs
);
1536 tcm_loop_fabric_configfs
= NULL
;
1537 printk(KERN_INFO
"TCM_LOOP[0] - Cleared"
1538 " tcm_loop_fabric_configfs\n");
1541 static int __init
tcm_loop_fabric_init(void)
1545 tcm_loop_cmd_cache
= kmem_cache_create("tcm_loop_cmd_cache",
1546 sizeof(struct tcm_loop_cmd
),
1547 __alignof__(struct tcm_loop_cmd
),
1549 if (!tcm_loop_cmd_cache
) {
1550 printk(KERN_ERR
"kmem_cache_create() for"
1551 " tcm_loop_cmd_cache failed\n");
1555 ret
= tcm_loop_alloc_core_bus();
1559 ret
= tcm_loop_register_configfs();
1561 tcm_loop_release_core_bus();
1568 static void __exit
tcm_loop_fabric_exit(void)
1570 tcm_loop_deregister_configfs();
1571 tcm_loop_release_core_bus();
1572 kmem_cache_destroy(tcm_loop_cmd_cache
);
1575 MODULE_DESCRIPTION("TCM loopback virtual Linux/SCSI fabric module");
1576 MODULE_AUTHOR("Nicholas A. Bellinger <nab@risingtidesystems.com>");
1577 MODULE_LICENSE("GPL");
1578 module_init(tcm_loop_fabric_init
);
1579 module_exit(tcm_loop_fabric_exit
);