1 /*******************************************************************************
2 * This file contains tcm implementation using v4 configfs fabric infrastructure
3 * for QLogic target mode HBAs
5 * (c) Copyright 2010-2013 Datera, Inc.
7 * Author: Nicholas A. Bellinger <nab@daterainc.com>
9 * tcm_qla2xxx_parse_wwn() and tcm_qla2xxx_format_wwn() contains code from
10 * the TCM_FC / Open-FCoE.org fabric module.
12 * Copyright (c) 2010 Cisco Systems, Inc
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 ****************************************************************************/
26 #include <linux/module.h>
27 #include <linux/moduleparam.h>
28 #include <generated/utsrelease.h>
29 #include <linux/utsname.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/slab.h>
33 #include <linux/kthread.h>
34 #include <linux/types.h>
35 #include <linux/string.h>
36 #include <linux/configfs.h>
37 #include <linux/ctype.h>
38 #include <asm/unaligned.h>
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_cmnd.h>
43 #include <target/target_core_base.h>
44 #include <target/target_core_fabric.h>
45 #include <target/target_core_fabric_configfs.h>
46 #include <target/target_core_configfs.h>
47 #include <target/configfs_macros.h>
50 #include "qla_target.h"
51 #include "tcm_qla2xxx.h"
53 static struct workqueue_struct
*tcm_qla2xxx_free_wq
;
54 static struct workqueue_struct
*tcm_qla2xxx_cmd_wq
;
56 static const struct target_core_fabric_ops tcm_qla2xxx_ops
;
57 static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops
;
61 * If strict, we require lower-case hex and colon separators to be sure
62 * the name is the same as what would be generated by ft_format_wwn()
63 * so the name and wwn are mapped one-to-one.
65 static ssize_t
tcm_qla2xxx_parse_wwn(const char *name
, u64
*wwn
, int strict
)
75 for (cp
= name
; cp
< &name
[TCM_QLA2XXX_NAMELEN
- 1]; cp
++) {
77 if (c
== '\n' && cp
[1] == '\0')
79 if (strict
&& pos
++ == 2 && byte
++ < 7) {
88 if (strict
&& byte
!= 8)
95 else if (isxdigit(c
) && (islower(c
) || !strict
))
96 nibble
= tolower(c
) - 'a' + 10;
99 *wwn
= (*wwn
<< 4) | nibble
;
103 pr_debug("err %u len %zu pos %u byte %u\n",
104 err
, cp
- name
, pos
, byte
);
108 static ssize_t
tcm_qla2xxx_format_wwn(char *buf
, size_t len
, u64 wwn
)
112 put_unaligned_be64(wwn
, b
);
113 return snprintf(buf
, len
,
114 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
115 b
[0], b
[1], b
[2], b
[3], b
[4], b
[5], b
[6], b
[7]);
118 static char *tcm_qla2xxx_get_fabric_name(void)
124 * From drivers/scsi/scsi_transport_fc.c:fc_parse_wwn
126 static int tcm_qla2xxx_npiv_extract_wwn(const char *ns
, u64
*nm
)
131 memset(wwn
, 0, sizeof(wwn
));
133 /* Validate and store the new name */
134 for (i
= 0, j
= 0; i
< 16; i
++) {
137 value
= hex_to_bin(*ns
++);
139 j
= (j
<< 4) | value
;
149 *nm
= wwn_to_u64(wwn
);
154 * This parsing logic follows drivers/scsi/scsi_transport_fc.c:
155 * store_fc_host_vport_create()
157 static int tcm_qla2xxx_npiv_parse_wwn(
163 unsigned int cnt
= count
;
169 /* count may include a LF at end of string */
170 if (name
[cnt
-1] == '\n' || name
[cnt
-1] == 0)
173 /* validate we have enough characters for WWPN */
174 if ((cnt
!= (16+1+16)) || (name
[16] != ':'))
177 rc
= tcm_qla2xxx_npiv_extract_wwn(&name
[0], wwpn
);
181 rc
= tcm_qla2xxx_npiv_extract_wwn(&name
[17], wwnn
);
188 static char *tcm_qla2xxx_npiv_get_fabric_name(void)
190 return "qla2xxx_npiv";
193 static u8
tcm_qla2xxx_get_fabric_proto_ident(struct se_portal_group
*se_tpg
)
195 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
196 struct tcm_qla2xxx_tpg
, se_tpg
);
197 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
200 switch (lport
->lport_proto_id
) {
201 case SCSI_PROTOCOL_FCP
:
203 proto_id
= fc_get_fabric_proto_ident(se_tpg
);
210 static char *tcm_qla2xxx_get_fabric_wwn(struct se_portal_group
*se_tpg
)
212 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
213 struct tcm_qla2xxx_tpg
, se_tpg
);
214 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
216 return lport
->lport_naa_name
;
219 static u16
tcm_qla2xxx_get_tag(struct se_portal_group
*se_tpg
)
221 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
222 struct tcm_qla2xxx_tpg
, se_tpg
);
223 return tpg
->lport_tpgt
;
226 static u32
tcm_qla2xxx_get_default_depth(struct se_portal_group
*se_tpg
)
231 static u32
tcm_qla2xxx_get_pr_transport_id(
232 struct se_portal_group
*se_tpg
,
233 struct se_node_acl
*se_nacl
,
234 struct t10_pr_registration
*pr_reg
,
238 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
239 struct tcm_qla2xxx_tpg
, se_tpg
);
240 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
243 switch (lport
->lport_proto_id
) {
244 case SCSI_PROTOCOL_FCP
:
246 ret
= fc_get_pr_transport_id(se_tpg
, se_nacl
, pr_reg
,
254 static u32
tcm_qla2xxx_get_pr_transport_id_len(
255 struct se_portal_group
*se_tpg
,
256 struct se_node_acl
*se_nacl
,
257 struct t10_pr_registration
*pr_reg
,
260 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
261 struct tcm_qla2xxx_tpg
, se_tpg
);
262 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
265 switch (lport
->lport_proto_id
) {
266 case SCSI_PROTOCOL_FCP
:
268 ret
= fc_get_pr_transport_id_len(se_tpg
, se_nacl
, pr_reg
,
276 static char *tcm_qla2xxx_parse_pr_out_transport_id(
277 struct se_portal_group
*se_tpg
,
280 char **port_nexus_ptr
)
282 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
283 struct tcm_qla2xxx_tpg
, se_tpg
);
284 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
287 switch (lport
->lport_proto_id
) {
288 case SCSI_PROTOCOL_FCP
:
290 tid
= fc_parse_pr_out_transport_id(se_tpg
, buf
, out_tid_len
,
298 static int tcm_qla2xxx_check_demo_mode(struct se_portal_group
*se_tpg
)
300 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
301 struct tcm_qla2xxx_tpg
, se_tpg
);
303 return tpg
->tpg_attrib
.generate_node_acls
;
306 static int tcm_qla2xxx_check_demo_mode_cache(struct se_portal_group
*se_tpg
)
308 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
309 struct tcm_qla2xxx_tpg
, se_tpg
);
311 return tpg
->tpg_attrib
.cache_dynamic_acls
;
314 static int tcm_qla2xxx_check_demo_write_protect(struct se_portal_group
*se_tpg
)
316 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
317 struct tcm_qla2xxx_tpg
, se_tpg
);
319 return tpg
->tpg_attrib
.demo_mode_write_protect
;
322 static int tcm_qla2xxx_check_prod_write_protect(struct se_portal_group
*se_tpg
)
324 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
325 struct tcm_qla2xxx_tpg
, se_tpg
);
327 return tpg
->tpg_attrib
.prod_mode_write_protect
;
330 static int tcm_qla2xxx_check_demo_mode_login_only(struct se_portal_group
*se_tpg
)
332 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
333 struct tcm_qla2xxx_tpg
, se_tpg
);
335 return tpg
->tpg_attrib
.demo_mode_login_only
;
338 static int tcm_qla2xxx_check_prot_fabric_only(struct se_portal_group
*se_tpg
)
340 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
341 struct tcm_qla2xxx_tpg
, se_tpg
);
343 return tpg
->tpg_attrib
.fabric_prot_type
;
346 static struct se_node_acl
*tcm_qla2xxx_alloc_fabric_acl(
347 struct se_portal_group
*se_tpg
)
349 struct tcm_qla2xxx_nacl
*nacl
;
351 nacl
= kzalloc(sizeof(struct tcm_qla2xxx_nacl
), GFP_KERNEL
);
353 pr_err("Unable to allocate struct tcm_qla2xxx_nacl\n");
357 return &nacl
->se_node_acl
;
360 static void tcm_qla2xxx_release_fabric_acl(
361 struct se_portal_group
*se_tpg
,
362 struct se_node_acl
*se_nacl
)
364 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_nacl
,
365 struct tcm_qla2xxx_nacl
, se_node_acl
);
369 static u32
tcm_qla2xxx_tpg_get_inst_index(struct se_portal_group
*se_tpg
)
371 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
372 struct tcm_qla2xxx_tpg
, se_tpg
);
374 return tpg
->lport_tpgt
;
377 static void tcm_qla2xxx_complete_mcmd(struct work_struct
*work
)
379 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(work
,
380 struct qla_tgt_mgmt_cmd
, free_work
);
382 transport_generic_free_cmd(&mcmd
->se_cmd
, 0);
386 * Called from qla_target_template->free_mcmd(), and will call
387 * tcm_qla2xxx_release_cmd() via normal struct target_core_fabric_ops
388 * release callback. qla_hw_data->hardware_lock is expected to be held
390 static void tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd
*mcmd
)
392 INIT_WORK(&mcmd
->free_work
, tcm_qla2xxx_complete_mcmd
);
393 queue_work(tcm_qla2xxx_free_wq
, &mcmd
->free_work
);
396 static void tcm_qla2xxx_complete_free(struct work_struct
*work
)
398 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
402 WARN_ON(cmd
->cmd_flags
& BIT_16
);
404 cmd
->cmd_flags
|= BIT_16
;
405 transport_generic_free_cmd(&cmd
->se_cmd
, 0);
409 * Called from qla_target_template->free_cmd(), and will call
410 * tcm_qla2xxx_release_cmd via normal struct target_core_fabric_ops
411 * release callback. qla_hw_data->hardware_lock is expected to be held
413 static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd
*cmd
)
416 INIT_WORK(&cmd
->work
, tcm_qla2xxx_complete_free
);
417 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
421 * Called from struct target_core_fabric_ops->check_stop_free() context
423 static int tcm_qla2xxx_check_stop_free(struct se_cmd
*se_cmd
)
425 struct qla_tgt_cmd
*cmd
;
427 if ((se_cmd
->se_cmd_flags
& SCF_SCSI_TMR_CDB
) == 0) {
428 cmd
= container_of(se_cmd
, struct qla_tgt_cmd
, se_cmd
);
429 cmd
->cmd_flags
|= BIT_14
;
432 return target_put_sess_cmd(se_cmd
->se_sess
, se_cmd
);
435 /* tcm_qla2xxx_release_cmd - Callback from TCM Core to release underlying
436 * fabric descriptor @se_cmd command to release
438 static void tcm_qla2xxx_release_cmd(struct se_cmd
*se_cmd
)
440 struct qla_tgt_cmd
*cmd
;
442 if (se_cmd
->se_cmd_flags
& SCF_SCSI_TMR_CDB
) {
443 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(se_cmd
,
444 struct qla_tgt_mgmt_cmd
, se_cmd
);
449 cmd
= container_of(se_cmd
, struct qla_tgt_cmd
, se_cmd
);
453 static int tcm_qla2xxx_shutdown_session(struct se_session
*se_sess
)
455 struct qla_tgt_sess
*sess
= se_sess
->fabric_sess_ptr
;
456 struct scsi_qla_host
*vha
;
462 spin_lock_irqsave(&vha
->hw
->hardware_lock
, flags
);
463 target_sess_cmd_list_set_waiting(se_sess
);
464 spin_unlock_irqrestore(&vha
->hw
->hardware_lock
, flags
);
469 static void tcm_qla2xxx_close_session(struct se_session
*se_sess
)
471 struct qla_tgt_sess
*sess
= se_sess
->fabric_sess_ptr
;
472 struct scsi_qla_host
*vha
;
478 spin_lock_irqsave(&vha
->hw
->hardware_lock
, flags
);
479 qlt_unreg_sess(sess
);
480 spin_unlock_irqrestore(&vha
->hw
->hardware_lock
, flags
);
483 static u32
tcm_qla2xxx_sess_get_index(struct se_session
*se_sess
)
488 static int tcm_qla2xxx_write_pending(struct se_cmd
*se_cmd
)
490 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
491 struct qla_tgt_cmd
, se_cmd
);
493 cmd
->bufflen
= se_cmd
->data_length
;
494 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
496 cmd
->sg_cnt
= se_cmd
->t_data_nents
;
497 cmd
->sg
= se_cmd
->t_data_sg
;
499 cmd
->prot_sg_cnt
= se_cmd
->t_prot_nents
;
500 cmd
->prot_sg
= se_cmd
->t_prot_sg
;
501 cmd
->blk_sz
= se_cmd
->se_dev
->dev_attrib
.block_size
;
505 * qla_target.c:qlt_rdy_to_xfer() will call pci_map_sg() to setup
506 * the SGL mappings into PCIe memory for incoming FCP WRITE data.
508 return qlt_rdy_to_xfer(cmd
);
511 static int tcm_qla2xxx_write_pending_status(struct se_cmd
*se_cmd
)
515 * Check for WRITE_PENDING status to determine if we need to wait for
516 * CTIO aborts to be posted via hardware in tcm_qla2xxx_handle_data().
518 spin_lock_irqsave(&se_cmd
->t_state_lock
, flags
);
519 if (se_cmd
->t_state
== TRANSPORT_WRITE_PENDING
||
520 se_cmd
->t_state
== TRANSPORT_COMPLETE_QF_WP
) {
521 spin_unlock_irqrestore(&se_cmd
->t_state_lock
, flags
);
522 wait_for_completion_timeout(&se_cmd
->t_transport_stop_comp
,
526 spin_unlock_irqrestore(&se_cmd
->t_state_lock
, flags
);
531 static void tcm_qla2xxx_set_default_node_attrs(struct se_node_acl
*nacl
)
536 static u32
tcm_qla2xxx_get_task_tag(struct se_cmd
*se_cmd
)
538 struct qla_tgt_cmd
*cmd
;
540 /* check for task mgmt cmd */
541 if (se_cmd
->se_cmd_flags
& SCF_SCSI_TMR_CDB
)
544 cmd
= container_of(se_cmd
, struct qla_tgt_cmd
, se_cmd
);
549 static int tcm_qla2xxx_get_cmd_state(struct se_cmd
*se_cmd
)
555 * Called from process context in qla_target.c:qlt_do_work() code
557 static int tcm_qla2xxx_handle_cmd(scsi_qla_host_t
*vha
, struct qla_tgt_cmd
*cmd
,
558 unsigned char *cdb
, uint32_t data_length
, int fcp_task_attr
,
559 int data_dir
, int bidi
)
561 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
562 struct se_session
*se_sess
;
563 struct qla_tgt_sess
*sess
;
564 int flags
= TARGET_SCF_ACK_KREF
;
567 flags
|= TARGET_SCF_BIDI_OP
;
571 pr_err("Unable to locate struct qla_tgt_sess from qla_tgt_cmd\n");
575 se_sess
= sess
->se_sess
;
577 pr_err("Unable to locate active struct se_session\n");
581 return target_submit_cmd(se_cmd
, se_sess
, cdb
, &cmd
->sense_buffer
[0],
582 cmd
->unpacked_lun
, data_length
, fcp_task_attr
,
586 static void tcm_qla2xxx_handle_data_work(struct work_struct
*work
)
588 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
591 * Ensure that the complete FCP WRITE payload has been received.
592 * Otherwise return an exception via CHECK_CONDITION status.
595 cmd
->cmd_flags
|= BIT_11
;
596 if (!cmd
->write_data_transferred
) {
598 * Check if se_cmd has already been aborted via LUN_RESET, and
599 * waiting upon completion in tcm_qla2xxx_write_pending_status()
601 if (cmd
->se_cmd
.transport_state
& CMD_T_ABORTED
) {
602 complete(&cmd
->se_cmd
.t_transport_stop_comp
);
606 if (cmd
->se_cmd
.pi_err
)
607 transport_generic_request_failure(&cmd
->se_cmd
,
610 transport_generic_request_failure(&cmd
->se_cmd
,
611 TCM_CHECK_CONDITION_ABORT_CMD
);
616 return target_execute_cmd(&cmd
->se_cmd
);
620 * Called from qla_target.c:qlt_do_ctio_completion()
622 static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd
*cmd
)
624 cmd
->cmd_flags
|= BIT_10
;
626 INIT_WORK(&cmd
->work
, tcm_qla2xxx_handle_data_work
);
627 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
630 static void tcm_qla2xxx_handle_dif_work(struct work_struct
*work
)
632 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
634 /* take an extra kref to prevent cmd free too early.
635 * need to wait for SCSI status/check condition to
636 * finish responding generate by transport_generic_request_failure.
638 kref_get(&cmd
->se_cmd
.cmd_kref
);
639 transport_generic_request_failure(&cmd
->se_cmd
, cmd
->se_cmd
.pi_err
);
643 * Called from qla_target.c:qlt_do_ctio_completion()
645 static void tcm_qla2xxx_handle_dif_err(struct qla_tgt_cmd
*cmd
)
647 INIT_WORK(&cmd
->work
, tcm_qla2xxx_handle_dif_work
);
648 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
652 * Called from qla_target.c:qlt_issue_task_mgmt()
654 static int tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd
*mcmd
, uint32_t lun
,
655 uint8_t tmr_func
, uint32_t tag
)
657 struct qla_tgt_sess
*sess
= mcmd
->sess
;
658 struct se_cmd
*se_cmd
= &mcmd
->se_cmd
;
660 return target_submit_tmr(se_cmd
, sess
->se_sess
, NULL
, lun
, mcmd
,
661 tmr_func
, GFP_ATOMIC
, tag
, TARGET_SCF_ACK_KREF
);
664 static int tcm_qla2xxx_queue_data_in(struct se_cmd
*se_cmd
)
666 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
667 struct qla_tgt_cmd
, se_cmd
);
669 cmd
->cmd_flags
|= BIT_4
;
670 cmd
->bufflen
= se_cmd
->data_length
;
671 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
672 cmd
->aborted
= (se_cmd
->transport_state
& CMD_T_ABORTED
);
674 cmd
->sg_cnt
= se_cmd
->t_data_nents
;
675 cmd
->sg
= se_cmd
->t_data_sg
;
677 cmd
->cmd_flags
|= BIT_3
;
679 cmd
->prot_sg_cnt
= se_cmd
->t_prot_nents
;
680 cmd
->prot_sg
= se_cmd
->t_prot_sg
;
681 cmd
->blk_sz
= se_cmd
->se_dev
->dev_attrib
.block_size
;
685 * Now queue completed DATA_IN the qla2xxx LLD and response ring
687 return qlt_xmit_response(cmd
, QLA_TGT_XMIT_DATA
|QLA_TGT_XMIT_STATUS
,
688 se_cmd
->scsi_status
);
691 static int tcm_qla2xxx_queue_status(struct se_cmd
*se_cmd
)
693 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
694 struct qla_tgt_cmd
, se_cmd
);
695 int xmit_type
= QLA_TGT_XMIT_STATUS
;
697 cmd
->bufflen
= se_cmd
->data_length
;
701 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
702 cmd
->aborted
= (se_cmd
->transport_state
& CMD_T_ABORTED
);
703 if (cmd
->cmd_flags
& BIT_5
) {
704 pr_crit("Bit_5 already set for cmd = %p.\n", cmd
);
707 cmd
->cmd_flags
|= BIT_5
;
709 if (se_cmd
->data_direction
== DMA_FROM_DEVICE
) {
711 * For FCP_READ with CHECK_CONDITION status, clear cmd->bufflen
712 * for qla_tgt_xmit_response LLD code
714 if (se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) {
715 se_cmd
->se_cmd_flags
&= ~SCF_OVERFLOW_BIT
;
716 se_cmd
->residual_count
= 0;
718 se_cmd
->se_cmd_flags
|= SCF_UNDERFLOW_BIT
;
719 se_cmd
->residual_count
+= se_cmd
->data_length
;
724 * Now queue status response to qla2xxx LLD code and response ring
726 return qlt_xmit_response(cmd
, xmit_type
, se_cmd
->scsi_status
);
729 static void tcm_qla2xxx_queue_tm_rsp(struct se_cmd
*se_cmd
)
731 struct se_tmr_req
*se_tmr
= se_cmd
->se_tmr_req
;
732 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(se_cmd
,
733 struct qla_tgt_mgmt_cmd
, se_cmd
);
735 pr_debug("queue_tm_rsp: mcmd: %p func: 0x%02x response: 0x%02x\n",
736 mcmd
, se_tmr
->function
, se_tmr
->response
);
738 * Do translation between TCM TM response codes and
739 * QLA2xxx FC TM response codes.
741 switch (se_tmr
->response
) {
742 case TMR_FUNCTION_COMPLETE
:
743 mcmd
->fc_tm_rsp
= FC_TM_SUCCESS
;
745 case TMR_TASK_DOES_NOT_EXIST
:
746 mcmd
->fc_tm_rsp
= FC_TM_BAD_CMD
;
748 case TMR_FUNCTION_REJECTED
:
749 mcmd
->fc_tm_rsp
= FC_TM_REJECT
;
751 case TMR_LUN_DOES_NOT_EXIST
:
753 mcmd
->fc_tm_rsp
= FC_TM_FAILED
;
757 * Queue the TM response to QLA2xxx LLD to build a
758 * CTIO response packet.
760 qlt_xmit_tm_rsp(mcmd
);
763 static void tcm_qla2xxx_aborted_task(struct se_cmd
*se_cmd
)
765 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
766 struct qla_tgt_cmd
, se_cmd
);
767 struct scsi_qla_host
*vha
= cmd
->vha
;
768 struct qla_hw_data
*ha
= vha
->hw
;
773 pci_unmap_sg(ha
->pdev
, cmd
->sg
, cmd
->sg_cnt
, cmd
->dma_data_direction
);
777 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport
*,
778 struct tcm_qla2xxx_nacl
*, struct qla_tgt_sess
*);
780 * Expected to be called with struct qla_hw_data->hardware_lock held
782 static void tcm_qla2xxx_clear_nacl_from_fcport_map(struct qla_tgt_sess
*sess
)
784 struct se_node_acl
*se_nacl
= sess
->se_sess
->se_node_acl
;
785 struct se_portal_group
*se_tpg
= se_nacl
->se_tpg
;
786 struct se_wwn
*se_wwn
= se_tpg
->se_tpg_wwn
;
787 struct tcm_qla2xxx_lport
*lport
= container_of(se_wwn
,
788 struct tcm_qla2xxx_lport
, lport_wwn
);
789 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_nacl
,
790 struct tcm_qla2xxx_nacl
, se_node_acl
);
793 pr_debug("fc_rport domain: port_id 0x%06x\n", nacl
->nport_id
);
795 node
= btree_remove32(&lport
->lport_fcport_map
, nacl
->nport_id
);
796 if (WARN_ON(node
&& (node
!= se_nacl
))) {
798 * The nacl no longer matches what we think it should be.
799 * Most likely a new dynamic acl has been added while
800 * someone dropped the hardware lock. It clearly is a
801 * bug elsewhere, but this bit can't make things worse.
803 btree_insert32(&lport
->lport_fcport_map
, nacl
->nport_id
,
807 pr_debug("Removed from fcport_map: %p for WWNN: 0x%016LX, port_id: 0x%06x\n",
808 se_nacl
, nacl
->nport_wwnn
, nacl
->nport_id
);
810 * Now clear the se_nacl and session pointers from our HW lport lookup
811 * table mapping for this initiator's fabric S_ID and LOOP_ID entries.
813 * This is done ahead of callbacks into tcm_qla2xxx_free_session() ->
814 * target_wait_for_sess_cmds() before the session waits for outstanding
815 * I/O to complete, to avoid a race between session shutdown execution
816 * and incoming ATIOs or TMRs picking up a stale se_node_act reference.
818 tcm_qla2xxx_clear_sess_lookup(lport
, nacl
, sess
);
821 static void tcm_qla2xxx_release_session(struct kref
*kref
)
823 struct se_session
*se_sess
= container_of(kref
,
824 struct se_session
, sess_kref
);
826 qlt_unreg_sess(se_sess
->fabric_sess_ptr
);
829 static void tcm_qla2xxx_put_session(struct se_session
*se_sess
)
831 struct qla_tgt_sess
*sess
= se_sess
->fabric_sess_ptr
;
832 struct qla_hw_data
*ha
= sess
->vha
->hw
;
835 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
836 kref_put(&se_sess
->sess_kref
, tcm_qla2xxx_release_session
);
837 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
840 static void tcm_qla2xxx_put_sess(struct qla_tgt_sess
*sess
)
845 assert_spin_locked(&sess
->vha
->hw
->hardware_lock
);
846 kref_put(&sess
->se_sess
->sess_kref
, tcm_qla2xxx_release_session
);
849 static void tcm_qla2xxx_shutdown_sess(struct qla_tgt_sess
*sess
)
851 assert_spin_locked(&sess
->vha
->hw
->hardware_lock
);
852 target_sess_cmd_list_set_waiting(sess
->se_sess
);
855 static struct se_node_acl
*tcm_qla2xxx_make_nodeacl(
856 struct se_portal_group
*se_tpg
,
857 struct config_group
*group
,
860 struct se_node_acl
*se_nacl
, *se_nacl_new
;
861 struct tcm_qla2xxx_nacl
*nacl
;
863 u32 qla2xxx_nexus_depth
;
865 if (tcm_qla2xxx_parse_wwn(name
, &wwnn
, 1) < 0)
866 return ERR_PTR(-EINVAL
);
868 se_nacl_new
= tcm_qla2xxx_alloc_fabric_acl(se_tpg
);
870 return ERR_PTR(-ENOMEM
);
871 /* #warning FIXME: Hardcoded qla2xxx_nexus depth in tcm_qla2xxx_make_nodeacl */
872 qla2xxx_nexus_depth
= 1;
875 * se_nacl_new may be released by core_tpg_add_initiator_node_acl()
876 * when converting a NodeACL from demo mode -> explict
878 se_nacl
= core_tpg_add_initiator_node_acl(se_tpg
, se_nacl_new
,
879 name
, qla2xxx_nexus_depth
);
880 if (IS_ERR(se_nacl
)) {
881 tcm_qla2xxx_release_fabric_acl(se_tpg
, se_nacl_new
);
885 * Locate our struct tcm_qla2xxx_nacl and set the FC Nport WWPN
887 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
888 nacl
->nport_wwnn
= wwnn
;
889 tcm_qla2xxx_format_wwn(&nacl
->nport_name
[0], TCM_QLA2XXX_NAMELEN
, wwnn
);
894 static void tcm_qla2xxx_drop_nodeacl(struct se_node_acl
*se_acl
)
896 struct se_portal_group
*se_tpg
= se_acl
->se_tpg
;
897 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_acl
,
898 struct tcm_qla2xxx_nacl
, se_node_acl
);
900 core_tpg_del_initiator_node_acl(se_tpg
, se_acl
, 1);
904 /* Start items for tcm_qla2xxx_tpg_attrib_cit */
906 #define DEF_QLA_TPG_ATTRIB(name) \
908 static ssize_t tcm_qla2xxx_tpg_attrib_show_##name( \
909 struct se_portal_group *se_tpg, \
912 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
913 struct tcm_qla2xxx_tpg, se_tpg); \
915 return sprintf(page, "%u\n", tpg->tpg_attrib.name); \
918 static ssize_t tcm_qla2xxx_tpg_attrib_store_##name( \
919 struct se_portal_group *se_tpg, \
923 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
924 struct tcm_qla2xxx_tpg, se_tpg); \
928 ret = kstrtoul(page, 0, &val); \
930 pr_err("kstrtoul() failed with" \
931 " ret: %d\n", ret); \
934 ret = tcm_qla2xxx_set_attrib_##name(tpg, val); \
936 return (!ret) ? count : -EINVAL; \
939 #define DEF_QLA_TPG_ATTR_BOOL(_name) \
941 static int tcm_qla2xxx_set_attrib_##_name( \
942 struct tcm_qla2xxx_tpg *tpg, \
945 struct tcm_qla2xxx_tpg_attrib *a = &tpg->tpg_attrib; \
947 if ((val != 0) && (val != 1)) { \
948 pr_err("Illegal boolean value %lu\n", val); \
956 #define QLA_TPG_ATTR(_name, _mode) \
957 TF_TPG_ATTRIB_ATTR(tcm_qla2xxx, _name, _mode);
960 * Define tcm_qla2xxx_tpg_attrib_s_generate_node_acls
962 DEF_QLA_TPG_ATTR_BOOL(generate_node_acls
);
963 DEF_QLA_TPG_ATTRIB(generate_node_acls
);
964 QLA_TPG_ATTR(generate_node_acls
, S_IRUGO
| S_IWUSR
);
967 Define tcm_qla2xxx_attrib_s_cache_dynamic_acls
969 DEF_QLA_TPG_ATTR_BOOL(cache_dynamic_acls
);
970 DEF_QLA_TPG_ATTRIB(cache_dynamic_acls
);
971 QLA_TPG_ATTR(cache_dynamic_acls
, S_IRUGO
| S_IWUSR
);
974 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_write_protect
976 DEF_QLA_TPG_ATTR_BOOL(demo_mode_write_protect
);
977 DEF_QLA_TPG_ATTRIB(demo_mode_write_protect
);
978 QLA_TPG_ATTR(demo_mode_write_protect
, S_IRUGO
| S_IWUSR
);
981 * Define tcm_qla2xxx_tpg_attrib_s_prod_mode_write_protect
983 DEF_QLA_TPG_ATTR_BOOL(prod_mode_write_protect
);
984 DEF_QLA_TPG_ATTRIB(prod_mode_write_protect
);
985 QLA_TPG_ATTR(prod_mode_write_protect
, S_IRUGO
| S_IWUSR
);
988 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_login_only
990 DEF_QLA_TPG_ATTR_BOOL(demo_mode_login_only
);
991 DEF_QLA_TPG_ATTRIB(demo_mode_login_only
);
992 QLA_TPG_ATTR(demo_mode_login_only
, S_IRUGO
| S_IWUSR
);
994 static struct configfs_attribute
*tcm_qla2xxx_tpg_attrib_attrs
[] = {
995 &tcm_qla2xxx_tpg_attrib_generate_node_acls
.attr
,
996 &tcm_qla2xxx_tpg_attrib_cache_dynamic_acls
.attr
,
997 &tcm_qla2xxx_tpg_attrib_demo_mode_write_protect
.attr
,
998 &tcm_qla2xxx_tpg_attrib_prod_mode_write_protect
.attr
,
999 &tcm_qla2xxx_tpg_attrib_demo_mode_login_only
.attr
,
1003 /* End items for tcm_qla2xxx_tpg_attrib_cit */
1005 static ssize_t
tcm_qla2xxx_tpg_show_enable(
1006 struct se_portal_group
*se_tpg
,
1009 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1010 struct tcm_qla2xxx_tpg
, se_tpg
);
1012 return snprintf(page
, PAGE_SIZE
, "%d\n",
1013 atomic_read(&tpg
->lport_tpg_enabled
));
1016 static void tcm_qla2xxx_depend_tpg(struct work_struct
*work
)
1018 struct tcm_qla2xxx_tpg
*base_tpg
= container_of(work
,
1019 struct tcm_qla2xxx_tpg
, tpg_base_work
);
1020 struct se_portal_group
*se_tpg
= &base_tpg
->se_tpg
;
1021 struct scsi_qla_host
*base_vha
= base_tpg
->lport
->qla_vha
;
1023 if (!target_depend_item(&se_tpg
->tpg_group
.cg_item
)) {
1024 atomic_set(&base_tpg
->lport_tpg_enabled
, 1);
1025 qlt_enable_vha(base_vha
);
1027 complete(&base_tpg
->tpg_base_comp
);
1030 static void tcm_qla2xxx_undepend_tpg(struct work_struct
*work
)
1032 struct tcm_qla2xxx_tpg
*base_tpg
= container_of(work
,
1033 struct tcm_qla2xxx_tpg
, tpg_base_work
);
1034 struct se_portal_group
*se_tpg
= &base_tpg
->se_tpg
;
1035 struct scsi_qla_host
*base_vha
= base_tpg
->lport
->qla_vha
;
1037 if (!qlt_stop_phase1(base_vha
->vha_tgt
.qla_tgt
)) {
1038 atomic_set(&base_tpg
->lport_tpg_enabled
, 0);
1039 target_undepend_item(&se_tpg
->tpg_group
.cg_item
);
1041 complete(&base_tpg
->tpg_base_comp
);
1044 static ssize_t
tcm_qla2xxx_tpg_store_enable(
1045 struct se_portal_group
*se_tpg
,
1049 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1050 struct tcm_qla2xxx_tpg
, se_tpg
);
1054 rc
= kstrtoul(page
, 0, &op
);
1056 pr_err("kstrtoul() returned %d\n", rc
);
1059 if ((op
!= 1) && (op
!= 0)) {
1060 pr_err("Illegal value for tpg_enable: %lu\n", op
);
1064 if (atomic_read(&tpg
->lport_tpg_enabled
))
1067 INIT_WORK(&tpg
->tpg_base_work
, tcm_qla2xxx_depend_tpg
);
1069 if (!atomic_read(&tpg
->lport_tpg_enabled
))
1072 INIT_WORK(&tpg
->tpg_base_work
, tcm_qla2xxx_undepend_tpg
);
1074 init_completion(&tpg
->tpg_base_comp
);
1075 schedule_work(&tpg
->tpg_base_work
);
1076 wait_for_completion(&tpg
->tpg_base_comp
);
1079 if (!atomic_read(&tpg
->lport_tpg_enabled
))
1082 if (atomic_read(&tpg
->lport_tpg_enabled
))
1088 TF_TPG_BASE_ATTR(tcm_qla2xxx
, enable
, S_IRUGO
| S_IWUSR
);
1090 static ssize_t
tcm_qla2xxx_tpg_show_dynamic_sessions(
1091 struct se_portal_group
*se_tpg
,
1094 return target_show_dynamic_sessions(se_tpg
, page
);
1097 TF_TPG_BASE_ATTR_RO(tcm_qla2xxx
, dynamic_sessions
);
1099 static ssize_t
tcm_qla2xxx_tpg_store_fabric_prot_type(
1100 struct se_portal_group
*se_tpg
,
1104 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1105 struct tcm_qla2xxx_tpg
, se_tpg
);
1107 int ret
= kstrtoul(page
, 0, &val
);
1110 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret
);
1113 if (val
!= 0 && val
!= 1 && val
!= 3) {
1114 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val
);
1117 tpg
->tpg_attrib
.fabric_prot_type
= val
;
1122 static ssize_t
tcm_qla2xxx_tpg_show_fabric_prot_type(
1123 struct se_portal_group
*se_tpg
,
1126 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1127 struct tcm_qla2xxx_tpg
, se_tpg
);
1129 return sprintf(page
, "%d\n", tpg
->tpg_attrib
.fabric_prot_type
);
1131 TF_TPG_BASE_ATTR(tcm_qla2xxx
, fabric_prot_type
, S_IRUGO
| S_IWUSR
);
1133 static struct configfs_attribute
*tcm_qla2xxx_tpg_attrs
[] = {
1134 &tcm_qla2xxx_tpg_enable
.attr
,
1135 &tcm_qla2xxx_tpg_dynamic_sessions
.attr
,
1136 &tcm_qla2xxx_tpg_fabric_prot_type
.attr
,
1140 static struct se_portal_group
*tcm_qla2xxx_make_tpg(
1142 struct config_group
*group
,
1145 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1146 struct tcm_qla2xxx_lport
, lport_wwn
);
1147 struct tcm_qla2xxx_tpg
*tpg
;
1151 if (strstr(name
, "tpgt_") != name
)
1152 return ERR_PTR(-EINVAL
);
1153 if (kstrtoul(name
+ 5, 10, &tpgt
) || tpgt
> USHRT_MAX
)
1154 return ERR_PTR(-EINVAL
);
1157 pr_err("In non NPIV mode, a single TPG=1 is used for HW port mappings\n");
1158 return ERR_PTR(-ENOSYS
);
1161 tpg
= kzalloc(sizeof(struct tcm_qla2xxx_tpg
), GFP_KERNEL
);
1163 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1164 return ERR_PTR(-ENOMEM
);
1167 tpg
->lport_tpgt
= tpgt
;
1169 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1172 tpg
->tpg_attrib
.generate_node_acls
= 1;
1173 tpg
->tpg_attrib
.demo_mode_write_protect
= 1;
1174 tpg
->tpg_attrib
.cache_dynamic_acls
= 1;
1175 tpg
->tpg_attrib
.demo_mode_login_only
= 1;
1177 ret
= core_tpg_register(&tcm_qla2xxx_ops
, wwn
,
1178 &tpg
->se_tpg
, tpg
, TRANSPORT_TPG_TYPE_NORMAL
);
1186 return &tpg
->se_tpg
;
1189 static void tcm_qla2xxx_drop_tpg(struct se_portal_group
*se_tpg
)
1191 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1192 struct tcm_qla2xxx_tpg
, se_tpg
);
1193 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
1194 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1196 * Call into qla2x_target.c LLD logic to shutdown the active
1197 * FC Nexuses and disable target mode operation for this qla_hw_data
1199 if (vha
->vha_tgt
.qla_tgt
&& !vha
->vha_tgt
.qla_tgt
->tgt_stop
)
1200 qlt_stop_phase1(vha
->vha_tgt
.qla_tgt
);
1202 core_tpg_deregister(se_tpg
);
1204 * Clear local TPG=1 pointer for non NPIV mode.
1206 lport
->tpg_1
= NULL
;
1210 static ssize_t
tcm_qla2xxx_npiv_tpg_show_enable(
1211 struct se_portal_group
*se_tpg
,
1214 return tcm_qla2xxx_tpg_show_enable(se_tpg
, page
);
1217 static ssize_t
tcm_qla2xxx_npiv_tpg_store_enable(
1218 struct se_portal_group
*se_tpg
,
1222 struct se_wwn
*se_wwn
= se_tpg
->se_tpg_wwn
;
1223 struct tcm_qla2xxx_lport
*lport
= container_of(se_wwn
,
1224 struct tcm_qla2xxx_lport
, lport_wwn
);
1225 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1226 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1227 struct tcm_qla2xxx_tpg
, se_tpg
);
1231 rc
= kstrtoul(page
, 0, &op
);
1233 pr_err("kstrtoul() returned %d\n", rc
);
1236 if ((op
!= 1) && (op
!= 0)) {
1237 pr_err("Illegal value for tpg_enable: %lu\n", op
);
1241 if (atomic_read(&tpg
->lport_tpg_enabled
))
1244 atomic_set(&tpg
->lport_tpg_enabled
, 1);
1245 qlt_enable_vha(vha
);
1247 if (!atomic_read(&tpg
->lport_tpg_enabled
))
1250 atomic_set(&tpg
->lport_tpg_enabled
, 0);
1251 qlt_stop_phase1(vha
->vha_tgt
.qla_tgt
);
1257 TF_TPG_BASE_ATTR(tcm_qla2xxx_npiv
, enable
, S_IRUGO
| S_IWUSR
);
1259 static struct configfs_attribute
*tcm_qla2xxx_npiv_tpg_attrs
[] = {
1260 &tcm_qla2xxx_npiv_tpg_enable
.attr
,
1264 static struct se_portal_group
*tcm_qla2xxx_npiv_make_tpg(
1266 struct config_group
*group
,
1269 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1270 struct tcm_qla2xxx_lport
, lport_wwn
);
1271 struct tcm_qla2xxx_tpg
*tpg
;
1275 if (strstr(name
, "tpgt_") != name
)
1276 return ERR_PTR(-EINVAL
);
1277 if (kstrtoul(name
+ 5, 10, &tpgt
) || tpgt
> USHRT_MAX
)
1278 return ERR_PTR(-EINVAL
);
1280 tpg
= kzalloc(sizeof(struct tcm_qla2xxx_tpg
), GFP_KERNEL
);
1282 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1283 return ERR_PTR(-ENOMEM
);
1286 tpg
->lport_tpgt
= tpgt
;
1289 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1292 tpg
->tpg_attrib
.generate_node_acls
= 1;
1293 tpg
->tpg_attrib
.demo_mode_write_protect
= 1;
1294 tpg
->tpg_attrib
.cache_dynamic_acls
= 1;
1295 tpg
->tpg_attrib
.demo_mode_login_only
= 1;
1297 ret
= core_tpg_register(&tcm_qla2xxx_npiv_ops
, wwn
,
1298 &tpg
->se_tpg
, tpg
, TRANSPORT_TPG_TYPE_NORMAL
);
1304 return &tpg
->se_tpg
;
1308 * Expected to be called with struct qla_hw_data->hardware_lock held
1310 static struct qla_tgt_sess
*tcm_qla2xxx_find_sess_by_s_id(
1311 scsi_qla_host_t
*vha
,
1312 const uint8_t *s_id
)
1314 struct tcm_qla2xxx_lport
*lport
;
1315 struct se_node_acl
*se_nacl
;
1316 struct tcm_qla2xxx_nacl
*nacl
;
1319 lport
= vha
->vha_tgt
.target_lport_ptr
;
1321 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1326 key
= (((unsigned long)s_id
[0] << 16) |
1327 ((unsigned long)s_id
[1] << 8) |
1328 (unsigned long)s_id
[2]);
1329 pr_debug("find_sess_by_s_id: 0x%06x\n", key
);
1331 se_nacl
= btree_lookup32(&lport
->lport_fcport_map
, key
);
1333 pr_debug("Unable to locate s_id: 0x%06x\n", key
);
1336 pr_debug("find_sess_by_s_id: located se_nacl: %p, initiatorname: %s\n",
1337 se_nacl
, se_nacl
->initiatorname
);
1339 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1340 if (!nacl
->qla_tgt_sess
) {
1341 pr_err("Unable to locate struct qla_tgt_sess\n");
1345 return nacl
->qla_tgt_sess
;
1349 * Expected to be called with struct qla_hw_data->hardware_lock held
1351 static void tcm_qla2xxx_set_sess_by_s_id(
1352 struct tcm_qla2xxx_lport
*lport
,
1353 struct se_node_acl
*new_se_nacl
,
1354 struct tcm_qla2xxx_nacl
*nacl
,
1355 struct se_session
*se_sess
,
1356 struct qla_tgt_sess
*qla_tgt_sess
,
1363 key
= (((unsigned long)s_id
[0] << 16) |
1364 ((unsigned long)s_id
[1] << 8) |
1365 (unsigned long)s_id
[2]);
1366 pr_debug("set_sess_by_s_id: %06x\n", key
);
1368 slot
= btree_lookup32(&lport
->lport_fcport_map
, key
);
1371 pr_debug("Setting up new fc_port entry to new_se_nacl\n");
1372 nacl
->nport_id
= key
;
1373 rc
= btree_insert32(&lport
->lport_fcport_map
, key
,
1374 new_se_nacl
, GFP_ATOMIC
);
1376 printk(KERN_ERR
"Unable to insert s_id into fcport_map: %06x\n",
1379 pr_debug("Wiping nonexisting fc_port entry\n");
1382 qla_tgt_sess
->se_sess
= se_sess
;
1383 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1387 if (nacl
->qla_tgt_sess
) {
1388 if (new_se_nacl
== NULL
) {
1389 pr_debug("Clearing existing nacl->qla_tgt_sess and fc_port entry\n");
1390 btree_remove32(&lport
->lport_fcport_map
, key
);
1391 nacl
->qla_tgt_sess
= NULL
;
1394 pr_debug("Replacing existing nacl->qla_tgt_sess and fc_port entry\n");
1395 btree_update32(&lport
->lport_fcport_map
, key
, new_se_nacl
);
1396 qla_tgt_sess
->se_sess
= se_sess
;
1397 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1401 if (new_se_nacl
== NULL
) {
1402 pr_debug("Clearing existing fc_port entry\n");
1403 btree_remove32(&lport
->lport_fcport_map
, key
);
1407 pr_debug("Replacing existing fc_port entry w/o active nacl->qla_tgt_sess\n");
1408 btree_update32(&lport
->lport_fcport_map
, key
, new_se_nacl
);
1409 qla_tgt_sess
->se_sess
= se_sess
;
1410 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1412 pr_debug("Setup nacl->qla_tgt_sess %p by s_id for se_nacl: %p, initiatorname: %s\n",
1413 nacl
->qla_tgt_sess
, new_se_nacl
, new_se_nacl
->initiatorname
);
1417 * Expected to be called with struct qla_hw_data->hardware_lock held
1419 static struct qla_tgt_sess
*tcm_qla2xxx_find_sess_by_loop_id(
1420 scsi_qla_host_t
*vha
,
1421 const uint16_t loop_id
)
1423 struct tcm_qla2xxx_lport
*lport
;
1424 struct se_node_acl
*se_nacl
;
1425 struct tcm_qla2xxx_nacl
*nacl
;
1426 struct tcm_qla2xxx_fc_loopid
*fc_loopid
;
1428 lport
= vha
->vha_tgt
.target_lport_ptr
;
1430 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1435 pr_debug("find_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id
);
1437 fc_loopid
= lport
->lport_loopid_map
+ loop_id
;
1438 se_nacl
= fc_loopid
->se_nacl
;
1440 pr_debug("Unable to locate se_nacl by loop_id: 0x%04x\n",
1445 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1447 if (!nacl
->qla_tgt_sess
) {
1448 pr_err("Unable to locate struct qla_tgt_sess\n");
1452 return nacl
->qla_tgt_sess
;
1456 * Expected to be called with struct qla_hw_data->hardware_lock held
1458 static void tcm_qla2xxx_set_sess_by_loop_id(
1459 struct tcm_qla2xxx_lport
*lport
,
1460 struct se_node_acl
*new_se_nacl
,
1461 struct tcm_qla2xxx_nacl
*nacl
,
1462 struct se_session
*se_sess
,
1463 struct qla_tgt_sess
*qla_tgt_sess
,
1466 struct se_node_acl
*saved_nacl
;
1467 struct tcm_qla2xxx_fc_loopid
*fc_loopid
;
1469 pr_debug("set_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id
);
1471 fc_loopid
= &((struct tcm_qla2xxx_fc_loopid
*)
1472 lport
->lport_loopid_map
)[loop_id
];
1474 saved_nacl
= fc_loopid
->se_nacl
;
1476 pr_debug("Setting up new fc_loopid->se_nacl to new_se_nacl\n");
1477 fc_loopid
->se_nacl
= new_se_nacl
;
1478 if (qla_tgt_sess
->se_sess
!= se_sess
)
1479 qla_tgt_sess
->se_sess
= se_sess
;
1480 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1481 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1485 if (nacl
->qla_tgt_sess
) {
1486 if (new_se_nacl
== NULL
) {
1487 pr_debug("Clearing nacl->qla_tgt_sess and fc_loopid->se_nacl\n");
1488 fc_loopid
->se_nacl
= NULL
;
1489 nacl
->qla_tgt_sess
= NULL
;
1493 pr_debug("Replacing existing nacl->qla_tgt_sess and fc_loopid->se_nacl\n");
1494 fc_loopid
->se_nacl
= new_se_nacl
;
1495 if (qla_tgt_sess
->se_sess
!= se_sess
)
1496 qla_tgt_sess
->se_sess
= se_sess
;
1497 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1498 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1502 if (new_se_nacl
== NULL
) {
1503 pr_debug("Clearing fc_loopid->se_nacl\n");
1504 fc_loopid
->se_nacl
= NULL
;
1508 pr_debug("Replacing existing fc_loopid->se_nacl w/o active nacl->qla_tgt_sess\n");
1509 fc_loopid
->se_nacl
= new_se_nacl
;
1510 if (qla_tgt_sess
->se_sess
!= se_sess
)
1511 qla_tgt_sess
->se_sess
= se_sess
;
1512 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1513 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1515 pr_debug("Setup nacl->qla_tgt_sess %p by loop_id for se_nacl: %p, initiatorname: %s\n",
1516 nacl
->qla_tgt_sess
, new_se_nacl
, new_se_nacl
->initiatorname
);
1520 * Should always be called with qla_hw_data->hardware_lock held.
1522 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport
*lport
,
1523 struct tcm_qla2xxx_nacl
*nacl
, struct qla_tgt_sess
*sess
)
1525 struct se_session
*se_sess
= sess
->se_sess
;
1526 unsigned char be_sid
[3];
1528 be_sid
[0] = sess
->s_id
.b
.domain
;
1529 be_sid
[1] = sess
->s_id
.b
.area
;
1530 be_sid
[2] = sess
->s_id
.b
.al_pa
;
1532 tcm_qla2xxx_set_sess_by_s_id(lport
, NULL
, nacl
, se_sess
,
1534 tcm_qla2xxx_set_sess_by_loop_id(lport
, NULL
, nacl
, se_sess
,
1535 sess
, sess
->loop_id
);
1538 static void tcm_qla2xxx_free_session(struct qla_tgt_sess
*sess
)
1540 struct qla_tgt
*tgt
= sess
->tgt
;
1541 struct qla_hw_data
*ha
= tgt
->ha
;
1542 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
1543 struct se_session
*se_sess
;
1544 struct se_node_acl
*se_nacl
;
1545 struct tcm_qla2xxx_lport
*lport
;
1546 struct tcm_qla2xxx_nacl
*nacl
;
1548 BUG_ON(in_interrupt());
1550 se_sess
= sess
->se_sess
;
1552 pr_err("struct qla_tgt_sess->se_sess is NULL\n");
1556 se_nacl
= se_sess
->se_node_acl
;
1557 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1559 lport
= vha
->vha_tgt
.target_lport_ptr
;
1561 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1565 target_wait_for_sess_cmds(se_sess
);
1567 transport_deregister_session_configfs(sess
->se_sess
);
1568 transport_deregister_session(sess
->se_sess
);
1572 * Called via qlt_create_sess():ha->qla2x_tmpl->check_initiator_node_acl()
1573 * to locate struct se_node_acl
1575 static int tcm_qla2xxx_check_initiator_node_acl(
1576 scsi_qla_host_t
*vha
,
1577 unsigned char *fc_wwpn
,
1582 struct qla_hw_data
*ha
= vha
->hw
;
1583 struct tcm_qla2xxx_lport
*lport
;
1584 struct tcm_qla2xxx_tpg
*tpg
;
1585 struct tcm_qla2xxx_nacl
*nacl
;
1586 struct se_portal_group
*se_tpg
;
1587 struct se_node_acl
*se_nacl
;
1588 struct se_session
*se_sess
;
1589 struct qla_tgt_sess
*sess
= qla_tgt_sess
;
1590 unsigned char port_name
[36];
1591 unsigned long flags
;
1592 int num_tags
= (ha
->fw_xcb_count
) ? ha
->fw_xcb_count
:
1593 TCM_QLA2XXX_DEFAULT_TAGS
;
1595 lport
= vha
->vha_tgt
.target_lport_ptr
;
1597 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1602 * Locate the TPG=1 reference..
1606 pr_err("Unable to lcoate struct tcm_qla2xxx_lport->tpg_1\n");
1609 se_tpg
= &tpg
->se_tpg
;
1611 se_sess
= transport_init_session_tags(num_tags
,
1612 sizeof(struct qla_tgt_cmd
),
1614 if (IS_ERR(se_sess
)) {
1615 pr_err("Unable to initialize struct se_session\n");
1616 return PTR_ERR(se_sess
);
1619 * Format the FCP Initiator port_name into colon seperated values to
1620 * match the format by tcm_qla2xxx explict ConfigFS NodeACLs.
1622 memset(&port_name
, 0, 36);
1623 snprintf(port_name
, sizeof(port_name
), "%8phC", fc_wwpn
);
1625 * Locate our struct se_node_acl either from an explict NodeACL created
1626 * via ConfigFS, or via running in TPG demo mode.
1628 se_sess
->se_node_acl
= core_tpg_check_initiator_node_acl(se_tpg
,
1630 if (!se_sess
->se_node_acl
) {
1631 transport_free_session(se_sess
);
1634 se_nacl
= se_sess
->se_node_acl
;
1635 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1637 * And now setup the new se_nacl and session pointers into our HW lport
1638 * mappings for fabric S_ID and LOOP_ID.
1640 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1641 tcm_qla2xxx_set_sess_by_s_id(lport
, se_nacl
, nacl
, se_sess
,
1642 qla_tgt_sess
, s_id
);
1643 tcm_qla2xxx_set_sess_by_loop_id(lport
, se_nacl
, nacl
, se_sess
,
1644 qla_tgt_sess
, loop_id
);
1645 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1647 * Finally register the new FC Nexus with TCM
1649 transport_register_session(se_nacl
->se_tpg
, se_nacl
, se_sess
, sess
);
1654 static void tcm_qla2xxx_update_sess(struct qla_tgt_sess
*sess
, port_id_t s_id
,
1655 uint16_t loop_id
, bool conf_compl_supported
)
1657 struct qla_tgt
*tgt
= sess
->tgt
;
1658 struct qla_hw_data
*ha
= tgt
->ha
;
1659 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
1660 struct tcm_qla2xxx_lport
*lport
= vha
->vha_tgt
.target_lport_ptr
;
1661 struct se_node_acl
*se_nacl
= sess
->se_sess
->se_node_acl
;
1662 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_nacl
,
1663 struct tcm_qla2xxx_nacl
, se_node_acl
);
1667 if (sess
->loop_id
!= loop_id
|| sess
->s_id
.b24
!= s_id
.b24
)
1668 pr_info("Updating session %p from port %8phC loop_id %d -> %d s_id %x:%x:%x -> %x:%x:%x\n",
1669 sess
, sess
->port_name
,
1670 sess
->loop_id
, loop_id
, sess
->s_id
.b
.domain
,
1671 sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
, s_id
.b
.domain
,
1672 s_id
.b
.area
, s_id
.b
.al_pa
);
1674 if (sess
->loop_id
!= loop_id
) {
1676 * Because we can shuffle loop IDs around and we
1677 * update different sessions non-atomically, we might
1678 * have overwritten this session's old loop ID
1679 * already, and we might end up overwriting some other
1680 * session that will be updated later. So we have to
1681 * be extra careful and we can't warn about those things...
1683 if (lport
->lport_loopid_map
[sess
->loop_id
].se_nacl
== se_nacl
)
1684 lport
->lport_loopid_map
[sess
->loop_id
].se_nacl
= NULL
;
1686 lport
->lport_loopid_map
[loop_id
].se_nacl
= se_nacl
;
1688 sess
->loop_id
= loop_id
;
1691 if (sess
->s_id
.b24
!= s_id
.b24
) {
1692 key
= (((u32
) sess
->s_id
.b
.domain
<< 16) |
1693 ((u32
) sess
->s_id
.b
.area
<< 8) |
1694 ((u32
) sess
->s_id
.b
.al_pa
));
1696 if (btree_lookup32(&lport
->lport_fcport_map
, key
))
1697 WARN(btree_remove32(&lport
->lport_fcport_map
, key
) != se_nacl
,
1698 "Found wrong se_nacl when updating s_id %x:%x:%x\n",
1699 sess
->s_id
.b
.domain
, sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
);
1701 WARN(1, "No lport_fcport_map entry for s_id %x:%x:%x\n",
1702 sess
->s_id
.b
.domain
, sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
);
1704 key
= (((u32
) s_id
.b
.domain
<< 16) |
1705 ((u32
) s_id
.b
.area
<< 8) |
1706 ((u32
) s_id
.b
.al_pa
));
1708 if (btree_lookup32(&lport
->lport_fcport_map
, key
)) {
1709 WARN(1, "Already have lport_fcport_map entry for s_id %x:%x:%x\n",
1710 s_id
.b
.domain
, s_id
.b
.area
, s_id
.b
.al_pa
);
1711 btree_update32(&lport
->lport_fcport_map
, key
, se_nacl
);
1713 btree_insert32(&lport
->lport_fcport_map
, key
, se_nacl
, GFP_ATOMIC
);
1717 nacl
->nport_id
= key
;
1720 sess
->conf_compl_supported
= conf_compl_supported
;
1724 * Calls into tcm_qla2xxx used by qla2xxx LLD I/O path.
1726 static struct qla_tgt_func_tmpl tcm_qla2xxx_template
= {
1727 .handle_cmd
= tcm_qla2xxx_handle_cmd
,
1728 .handle_data
= tcm_qla2xxx_handle_data
,
1729 .handle_dif_err
= tcm_qla2xxx_handle_dif_err
,
1730 .handle_tmr
= tcm_qla2xxx_handle_tmr
,
1731 .free_cmd
= tcm_qla2xxx_free_cmd
,
1732 .free_mcmd
= tcm_qla2xxx_free_mcmd
,
1733 .free_session
= tcm_qla2xxx_free_session
,
1734 .update_sess
= tcm_qla2xxx_update_sess
,
1735 .check_initiator_node_acl
= tcm_qla2xxx_check_initiator_node_acl
,
1736 .find_sess_by_s_id
= tcm_qla2xxx_find_sess_by_s_id
,
1737 .find_sess_by_loop_id
= tcm_qla2xxx_find_sess_by_loop_id
,
1738 .clear_nacl_from_fcport_map
= tcm_qla2xxx_clear_nacl_from_fcport_map
,
1739 .put_sess
= tcm_qla2xxx_put_sess
,
1740 .shutdown_sess
= tcm_qla2xxx_shutdown_sess
,
1743 static int tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport
*lport
)
1747 rc
= btree_init32(&lport
->lport_fcport_map
);
1749 pr_err("Unable to initialize lport->lport_fcport_map btree\n");
1753 lport
->lport_loopid_map
= vmalloc(sizeof(struct tcm_qla2xxx_fc_loopid
) *
1755 if (!lport
->lport_loopid_map
) {
1756 pr_err("Unable to allocate lport->lport_loopid_map of %zu bytes\n",
1757 sizeof(struct tcm_qla2xxx_fc_loopid
) * 65536);
1758 btree_destroy32(&lport
->lport_fcport_map
);
1761 memset(lport
->lport_loopid_map
, 0, sizeof(struct tcm_qla2xxx_fc_loopid
)
1763 pr_debug("qla2xxx: Allocated lport_loopid_map of %zu bytes\n",
1764 sizeof(struct tcm_qla2xxx_fc_loopid
) * 65536);
1768 static int tcm_qla2xxx_lport_register_cb(struct scsi_qla_host
*vha
,
1769 void *target_lport_ptr
,
1770 u64 npiv_wwpn
, u64 npiv_wwnn
)
1772 struct qla_hw_data
*ha
= vha
->hw
;
1773 struct tcm_qla2xxx_lport
*lport
=
1774 (struct tcm_qla2xxx_lport
*)target_lport_ptr
;
1776 * Setup tgt_ops, local pointer to vha and target_lport_ptr
1778 ha
->tgt
.tgt_ops
= &tcm_qla2xxx_template
;
1779 vha
->vha_tgt
.target_lport_ptr
= target_lport_ptr
;
1780 lport
->qla_vha
= vha
;
1785 static struct se_wwn
*tcm_qla2xxx_make_lport(
1786 struct target_fabric_configfs
*tf
,
1787 struct config_group
*group
,
1790 struct tcm_qla2xxx_lport
*lport
;
1794 if (tcm_qla2xxx_parse_wwn(name
, &wwpn
, 1) < 0)
1795 return ERR_PTR(-EINVAL
);
1797 lport
= kzalloc(sizeof(struct tcm_qla2xxx_lport
), GFP_KERNEL
);
1799 pr_err("Unable to allocate struct tcm_qla2xxx_lport\n");
1800 return ERR_PTR(-ENOMEM
);
1802 lport
->lport_wwpn
= wwpn
;
1803 tcm_qla2xxx_format_wwn(&lport
->lport_name
[0], TCM_QLA2XXX_NAMELEN
,
1805 sprintf(lport
->lport_naa_name
, "naa.%016llx", (unsigned long long) wwpn
);
1807 ret
= tcm_qla2xxx_init_lport(lport
);
1811 ret
= qlt_lport_register(lport
, wwpn
, 0, 0,
1812 tcm_qla2xxx_lport_register_cb
);
1816 return &lport
->lport_wwn
;
1818 vfree(lport
->lport_loopid_map
);
1819 btree_destroy32(&lport
->lport_fcport_map
);
1822 return ERR_PTR(ret
);
1825 static void tcm_qla2xxx_drop_lport(struct se_wwn
*wwn
)
1827 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1828 struct tcm_qla2xxx_lport
, lport_wwn
);
1829 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1830 struct se_node_acl
*node
;
1834 * Call into qla2x_target.c LLD logic to complete the
1835 * shutdown of struct qla_tgt after the call to
1836 * qlt_stop_phase1() from tcm_qla2xxx_drop_tpg() above..
1838 if (vha
->vha_tgt
.qla_tgt
&& !vha
->vha_tgt
.qla_tgt
->tgt_stopped
)
1839 qlt_stop_phase2(vha
->vha_tgt
.qla_tgt
);
1841 qlt_lport_deregister(vha
);
1843 vfree(lport
->lport_loopid_map
);
1844 btree_for_each_safe32(&lport
->lport_fcport_map
, key
, node
)
1845 btree_remove32(&lport
->lport_fcport_map
, key
);
1846 btree_destroy32(&lport
->lport_fcport_map
);
1850 static int tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host
*base_vha
,
1851 void *target_lport_ptr
,
1852 u64 npiv_wwpn
, u64 npiv_wwnn
)
1854 struct fc_vport
*vport
;
1855 struct Scsi_Host
*sh
= base_vha
->host
;
1856 struct scsi_qla_host
*npiv_vha
;
1857 struct tcm_qla2xxx_lport
*lport
=
1858 (struct tcm_qla2xxx_lport
*)target_lport_ptr
;
1859 struct tcm_qla2xxx_lport
*base_lport
=
1860 (struct tcm_qla2xxx_lport
*)base_vha
->vha_tgt
.target_lport_ptr
;
1861 struct tcm_qla2xxx_tpg
*base_tpg
;
1862 struct fc_vport_identifiers vport_id
;
1864 if (!qla_tgt_mode_enabled(base_vha
)) {
1865 pr_err("qla2xxx base_vha not enabled for target mode\n");
1869 if (!base_lport
|| !base_lport
->tpg_1
||
1870 !atomic_read(&base_lport
->tpg_1
->lport_tpg_enabled
)) {
1871 pr_err("qla2xxx base_lport or tpg_1 not available\n");
1874 base_tpg
= base_lport
->tpg_1
;
1876 memset(&vport_id
, 0, sizeof(vport_id
));
1877 vport_id
.port_name
= npiv_wwpn
;
1878 vport_id
.node_name
= npiv_wwnn
;
1879 vport_id
.roles
= FC_PORT_ROLE_FCP_INITIATOR
;
1880 vport_id
.vport_type
= FC_PORTTYPE_NPIV
;
1881 vport_id
.disable
= false;
1883 vport
= fc_vport_create(sh
, 0, &vport_id
);
1885 pr_err("fc_vport_create failed for qla2xxx_npiv\n");
1889 * Setup local pointer to NPIV vhba + target_lport_ptr
1891 npiv_vha
= (struct scsi_qla_host
*)vport
->dd_data
;
1892 npiv_vha
->vha_tgt
.target_lport_ptr
= target_lport_ptr
;
1893 lport
->qla_vha
= npiv_vha
;
1894 scsi_host_get(npiv_vha
->host
);
1899 static struct se_wwn
*tcm_qla2xxx_npiv_make_lport(
1900 struct target_fabric_configfs
*tf
,
1901 struct config_group
*group
,
1904 struct tcm_qla2xxx_lport
*lport
;
1905 u64 phys_wwpn
, npiv_wwpn
, npiv_wwnn
;
1909 snprintf(tmp
, 128, "%s", name
);
1911 p
= strchr(tmp
, '@');
1913 pr_err("Unable to locate NPIV '@' seperator\n");
1914 return ERR_PTR(-EINVAL
);
1918 if (tcm_qla2xxx_parse_wwn(tmp
, &phys_wwpn
, 1) < 0)
1919 return ERR_PTR(-EINVAL
);
1921 if (tcm_qla2xxx_npiv_parse_wwn(p
, strlen(p
)+1,
1922 &npiv_wwpn
, &npiv_wwnn
) < 0)
1923 return ERR_PTR(-EINVAL
);
1925 lport
= kzalloc(sizeof(struct tcm_qla2xxx_lport
), GFP_KERNEL
);
1927 pr_err("Unable to allocate struct tcm_qla2xxx_lport for NPIV\n");
1928 return ERR_PTR(-ENOMEM
);
1930 lport
->lport_npiv_wwpn
= npiv_wwpn
;
1931 lport
->lport_npiv_wwnn
= npiv_wwnn
;
1932 sprintf(lport
->lport_naa_name
, "naa.%016llx", (unsigned long long) npiv_wwpn
);
1934 ret
= tcm_qla2xxx_init_lport(lport
);
1938 ret
= qlt_lport_register(lport
, phys_wwpn
, npiv_wwpn
, npiv_wwnn
,
1939 tcm_qla2xxx_lport_register_npiv_cb
);
1943 return &lport
->lport_wwn
;
1945 vfree(lport
->lport_loopid_map
);
1946 btree_destroy32(&lport
->lport_fcport_map
);
1949 return ERR_PTR(ret
);
1952 static void tcm_qla2xxx_npiv_drop_lport(struct se_wwn
*wwn
)
1954 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1955 struct tcm_qla2xxx_lport
, lport_wwn
);
1956 struct scsi_qla_host
*npiv_vha
= lport
->qla_vha
;
1957 struct qla_hw_data
*ha
= npiv_vha
->hw
;
1958 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
1960 scsi_host_put(npiv_vha
->host
);
1962 * Notify libfc that we want to release the vha->fc_vport
1964 fc_vport_terminate(npiv_vha
->fc_vport
);
1965 scsi_host_put(base_vha
->host
);
1970 static ssize_t
tcm_qla2xxx_wwn_show_attr_version(
1971 struct target_fabric_configfs
*tf
,
1974 return sprintf(page
,
1975 "TCM QLOGIC QLA2XXX NPIV capable fabric module %s on %s/%s on "
1976 UTS_RELEASE
"\n", TCM_QLA2XXX_VERSION
, utsname()->sysname
,
1977 utsname()->machine
);
1980 TF_WWN_ATTR_RO(tcm_qla2xxx
, version
);
1982 static struct configfs_attribute
*tcm_qla2xxx_wwn_attrs
[] = {
1983 &tcm_qla2xxx_wwn_version
.attr
,
1987 static const struct target_core_fabric_ops tcm_qla2xxx_ops
= {
1988 .module
= THIS_MODULE
,
1990 .get_fabric_name
= tcm_qla2xxx_get_fabric_name
,
1991 .get_fabric_proto_ident
= tcm_qla2xxx_get_fabric_proto_ident
,
1992 .tpg_get_wwn
= tcm_qla2xxx_get_fabric_wwn
,
1993 .tpg_get_tag
= tcm_qla2xxx_get_tag
,
1994 .tpg_get_default_depth
= tcm_qla2xxx_get_default_depth
,
1995 .tpg_get_pr_transport_id
= tcm_qla2xxx_get_pr_transport_id
,
1996 .tpg_get_pr_transport_id_len
= tcm_qla2xxx_get_pr_transport_id_len
,
1997 .tpg_parse_pr_out_transport_id
= tcm_qla2xxx_parse_pr_out_transport_id
,
1998 .tpg_check_demo_mode
= tcm_qla2xxx_check_demo_mode
,
1999 .tpg_check_demo_mode_cache
= tcm_qla2xxx_check_demo_mode_cache
,
2000 .tpg_check_demo_mode_write_protect
=
2001 tcm_qla2xxx_check_demo_write_protect
,
2002 .tpg_check_prod_mode_write_protect
=
2003 tcm_qla2xxx_check_prod_write_protect
,
2004 .tpg_check_prot_fabric_only
= tcm_qla2xxx_check_prot_fabric_only
,
2005 .tpg_check_demo_mode_login_only
= tcm_qla2xxx_check_demo_mode_login_only
,
2006 .tpg_alloc_fabric_acl
= tcm_qla2xxx_alloc_fabric_acl
,
2007 .tpg_release_fabric_acl
= tcm_qla2xxx_release_fabric_acl
,
2008 .tpg_get_inst_index
= tcm_qla2xxx_tpg_get_inst_index
,
2009 .check_stop_free
= tcm_qla2xxx_check_stop_free
,
2010 .release_cmd
= tcm_qla2xxx_release_cmd
,
2011 .put_session
= tcm_qla2xxx_put_session
,
2012 .shutdown_session
= tcm_qla2xxx_shutdown_session
,
2013 .close_session
= tcm_qla2xxx_close_session
,
2014 .sess_get_index
= tcm_qla2xxx_sess_get_index
,
2015 .sess_get_initiator_sid
= NULL
,
2016 .write_pending
= tcm_qla2xxx_write_pending
,
2017 .write_pending_status
= tcm_qla2xxx_write_pending_status
,
2018 .set_default_node_attributes
= tcm_qla2xxx_set_default_node_attrs
,
2019 .get_task_tag
= tcm_qla2xxx_get_task_tag
,
2020 .get_cmd_state
= tcm_qla2xxx_get_cmd_state
,
2021 .queue_data_in
= tcm_qla2xxx_queue_data_in
,
2022 .queue_status
= tcm_qla2xxx_queue_status
,
2023 .queue_tm_rsp
= tcm_qla2xxx_queue_tm_rsp
,
2024 .aborted_task
= tcm_qla2xxx_aborted_task
,
2026 * Setup function pointers for generic logic in
2027 * target_core_fabric_configfs.c
2029 .fabric_make_wwn
= tcm_qla2xxx_make_lport
,
2030 .fabric_drop_wwn
= tcm_qla2xxx_drop_lport
,
2031 .fabric_make_tpg
= tcm_qla2xxx_make_tpg
,
2032 .fabric_drop_tpg
= tcm_qla2xxx_drop_tpg
,
2033 .fabric_post_link
= NULL
,
2034 .fabric_pre_unlink
= NULL
,
2035 .fabric_make_np
= NULL
,
2036 .fabric_drop_np
= NULL
,
2037 .fabric_make_nodeacl
= tcm_qla2xxx_make_nodeacl
,
2038 .fabric_drop_nodeacl
= tcm_qla2xxx_drop_nodeacl
,
2040 .tfc_wwn_attrs
= tcm_qla2xxx_wwn_attrs
,
2041 .tfc_tpg_base_attrs
= tcm_qla2xxx_tpg_attrs
,
2042 .tfc_tpg_attrib_attrs
= tcm_qla2xxx_tpg_attrib_attrs
,
2045 static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops
= {
2046 .module
= THIS_MODULE
,
2047 .name
= "qla2xxx_npiv",
2048 .get_fabric_name
= tcm_qla2xxx_npiv_get_fabric_name
,
2049 .get_fabric_proto_ident
= tcm_qla2xxx_get_fabric_proto_ident
,
2050 .tpg_get_wwn
= tcm_qla2xxx_get_fabric_wwn
,
2051 .tpg_get_tag
= tcm_qla2xxx_get_tag
,
2052 .tpg_get_default_depth
= tcm_qla2xxx_get_default_depth
,
2053 .tpg_get_pr_transport_id
= tcm_qla2xxx_get_pr_transport_id
,
2054 .tpg_get_pr_transport_id_len
= tcm_qla2xxx_get_pr_transport_id_len
,
2055 .tpg_parse_pr_out_transport_id
= tcm_qla2xxx_parse_pr_out_transport_id
,
2056 .tpg_check_demo_mode
= tcm_qla2xxx_check_demo_mode
,
2057 .tpg_check_demo_mode_cache
= tcm_qla2xxx_check_demo_mode_cache
,
2058 .tpg_check_demo_mode_write_protect
= tcm_qla2xxx_check_demo_mode
,
2059 .tpg_check_prod_mode_write_protect
=
2060 tcm_qla2xxx_check_prod_write_protect
,
2061 .tpg_check_demo_mode_login_only
= tcm_qla2xxx_check_demo_mode_login_only
,
2062 .tpg_alloc_fabric_acl
= tcm_qla2xxx_alloc_fabric_acl
,
2063 .tpg_release_fabric_acl
= tcm_qla2xxx_release_fabric_acl
,
2064 .tpg_get_inst_index
= tcm_qla2xxx_tpg_get_inst_index
,
2065 .check_stop_free
= tcm_qla2xxx_check_stop_free
,
2066 .release_cmd
= tcm_qla2xxx_release_cmd
,
2067 .put_session
= tcm_qla2xxx_put_session
,
2068 .shutdown_session
= tcm_qla2xxx_shutdown_session
,
2069 .close_session
= tcm_qla2xxx_close_session
,
2070 .sess_get_index
= tcm_qla2xxx_sess_get_index
,
2071 .sess_get_initiator_sid
= NULL
,
2072 .write_pending
= tcm_qla2xxx_write_pending
,
2073 .write_pending_status
= tcm_qla2xxx_write_pending_status
,
2074 .set_default_node_attributes
= tcm_qla2xxx_set_default_node_attrs
,
2075 .get_task_tag
= tcm_qla2xxx_get_task_tag
,
2076 .get_cmd_state
= tcm_qla2xxx_get_cmd_state
,
2077 .queue_data_in
= tcm_qla2xxx_queue_data_in
,
2078 .queue_status
= tcm_qla2xxx_queue_status
,
2079 .queue_tm_rsp
= tcm_qla2xxx_queue_tm_rsp
,
2080 .aborted_task
= tcm_qla2xxx_aborted_task
,
2082 * Setup function pointers for generic logic in
2083 * target_core_fabric_configfs.c
2085 .fabric_make_wwn
= tcm_qla2xxx_npiv_make_lport
,
2086 .fabric_drop_wwn
= tcm_qla2xxx_npiv_drop_lport
,
2087 .fabric_make_tpg
= tcm_qla2xxx_npiv_make_tpg
,
2088 .fabric_drop_tpg
= tcm_qla2xxx_drop_tpg
,
2089 .fabric_post_link
= NULL
,
2090 .fabric_pre_unlink
= NULL
,
2091 .fabric_make_np
= NULL
,
2092 .fabric_drop_np
= NULL
,
2093 .fabric_make_nodeacl
= tcm_qla2xxx_make_nodeacl
,
2094 .fabric_drop_nodeacl
= tcm_qla2xxx_drop_nodeacl
,
2096 .tfc_wwn_attrs
= tcm_qla2xxx_wwn_attrs
,
2097 .tfc_tpg_base_attrs
= tcm_qla2xxx_npiv_tpg_attrs
,
2100 static int tcm_qla2xxx_register_configfs(void)
2104 pr_debug("TCM QLOGIC QLA2XXX fabric module %s on %s/%s on "
2105 UTS_RELEASE
"\n", TCM_QLA2XXX_VERSION
, utsname()->sysname
,
2106 utsname()->machine
);
2108 ret
= target_register_template(&tcm_qla2xxx_ops
);
2112 ret
= target_register_template(&tcm_qla2xxx_npiv_ops
);
2116 tcm_qla2xxx_free_wq
= alloc_workqueue("tcm_qla2xxx_free",
2118 if (!tcm_qla2xxx_free_wq
) {
2120 goto out_fabric_npiv
;
2123 tcm_qla2xxx_cmd_wq
= alloc_workqueue("tcm_qla2xxx_cmd", 0, 0);
2124 if (!tcm_qla2xxx_cmd_wq
) {
2132 destroy_workqueue(tcm_qla2xxx_free_wq
);
2134 target_unregister_template(&tcm_qla2xxx_npiv_ops
);
2136 target_unregister_template(&tcm_qla2xxx_ops
);
2140 static void tcm_qla2xxx_deregister_configfs(void)
2142 destroy_workqueue(tcm_qla2xxx_cmd_wq
);
2143 destroy_workqueue(tcm_qla2xxx_free_wq
);
2145 target_unregister_template(&tcm_qla2xxx_ops
);
2146 target_unregister_template(&tcm_qla2xxx_npiv_ops
);
2149 static int __init
tcm_qla2xxx_init(void)
2153 ret
= tcm_qla2xxx_register_configfs();
2160 static void __exit
tcm_qla2xxx_exit(void)
2162 tcm_qla2xxx_deregister_configfs();
2165 MODULE_DESCRIPTION("TCM QLA2XXX series NPIV enabled fabric driver");
2166 MODULE_LICENSE("GPL");
2167 module_init(tcm_qla2xxx_init
);
2168 module_exit(tcm_qla2xxx_exit
);