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/vmalloc.h>
31 #include <linux/init.h>
32 #include <linux/list.h>
33 #include <linux/slab.h>
34 #include <linux/kthread.h>
35 #include <linux/types.h>
36 #include <linux/string.h>
37 #include <linux/configfs.h>
38 #include <linux/ctype.h>
39 #include <asm/unaligned.h>
40 #include <scsi/scsi.h>
41 #include <scsi/scsi_host.h>
42 #include <scsi/scsi_device.h>
43 #include <scsi/scsi_cmnd.h>
44 #include <target/target_core_base.h>
45 #include <target/target_core_fabric.h>
46 #include <target/target_core_fabric_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
;
58 * If strict, we require lower-case hex and colon separators to be sure
59 * the name is the same as what would be generated by ft_format_wwn()
60 * so the name and wwn are mapped one-to-one.
62 static ssize_t
tcm_qla2xxx_parse_wwn(const char *name
, u64
*wwn
, int strict
)
72 for (cp
= name
; cp
< &name
[TCM_QLA2XXX_NAMELEN
- 1]; cp
++) {
74 if (c
== '\n' && cp
[1] == '\0')
76 if (strict
&& pos
++ == 2 && byte
++ < 7) {
85 if (strict
&& byte
!= 8)
92 else if (isxdigit(c
) && (islower(c
) || !strict
))
93 nibble
= tolower(c
) - 'a' + 10;
96 *wwn
= (*wwn
<< 4) | nibble
;
100 pr_debug("err %u len %zu pos %u byte %u\n",
101 err
, cp
- name
, pos
, byte
);
105 static ssize_t
tcm_qla2xxx_format_wwn(char *buf
, size_t len
, u64 wwn
)
109 put_unaligned_be64(wwn
, b
);
110 return snprintf(buf
, len
,
111 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
112 b
[0], b
[1], b
[2], b
[3], b
[4], b
[5], b
[6], b
[7]);
115 static char *tcm_qla2xxx_get_fabric_name(void)
121 * From drivers/scsi/scsi_transport_fc.c:fc_parse_wwn
123 static int tcm_qla2xxx_npiv_extract_wwn(const char *ns
, u64
*nm
)
128 memset(wwn
, 0, sizeof(wwn
));
130 /* Validate and store the new name */
131 for (i
= 0, j
= 0; i
< 16; i
++) {
134 value
= hex_to_bin(*ns
++);
136 j
= (j
<< 4) | value
;
146 *nm
= wwn_to_u64(wwn
);
151 * This parsing logic follows drivers/scsi/scsi_transport_fc.c:
152 * store_fc_host_vport_create()
154 static int tcm_qla2xxx_npiv_parse_wwn(
160 unsigned int cnt
= count
;
166 /* count may include a LF at end of string */
167 if (name
[cnt
-1] == '\n' || name
[cnt
-1] == 0)
170 /* validate we have enough characters for WWPN */
171 if ((cnt
!= (16+1+16)) || (name
[16] != ':'))
174 rc
= tcm_qla2xxx_npiv_extract_wwn(&name
[0], wwpn
);
178 rc
= tcm_qla2xxx_npiv_extract_wwn(&name
[17], wwnn
);
185 static char *tcm_qla2xxx_npiv_get_fabric_name(void)
187 return "qla2xxx_npiv";
190 static char *tcm_qla2xxx_get_fabric_wwn(struct se_portal_group
*se_tpg
)
192 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
193 struct tcm_qla2xxx_tpg
, se_tpg
);
194 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
196 return lport
->lport_naa_name
;
199 static u16
tcm_qla2xxx_get_tag(struct se_portal_group
*se_tpg
)
201 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
202 struct tcm_qla2xxx_tpg
, se_tpg
);
203 return tpg
->lport_tpgt
;
206 static int tcm_qla2xxx_check_demo_mode(struct se_portal_group
*se_tpg
)
208 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
209 struct tcm_qla2xxx_tpg
, se_tpg
);
211 return tpg
->tpg_attrib
.generate_node_acls
;
214 static int tcm_qla2xxx_check_demo_mode_cache(struct se_portal_group
*se_tpg
)
216 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
217 struct tcm_qla2xxx_tpg
, se_tpg
);
219 return tpg
->tpg_attrib
.cache_dynamic_acls
;
222 static int tcm_qla2xxx_check_demo_write_protect(struct se_portal_group
*se_tpg
)
224 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
225 struct tcm_qla2xxx_tpg
, se_tpg
);
227 return tpg
->tpg_attrib
.demo_mode_write_protect
;
230 static int tcm_qla2xxx_check_prod_write_protect(struct se_portal_group
*se_tpg
)
232 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
233 struct tcm_qla2xxx_tpg
, se_tpg
);
235 return tpg
->tpg_attrib
.prod_mode_write_protect
;
238 static int tcm_qla2xxx_check_demo_mode_login_only(struct se_portal_group
*se_tpg
)
240 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
241 struct tcm_qla2xxx_tpg
, se_tpg
);
243 return tpg
->tpg_attrib
.demo_mode_login_only
;
246 static int tcm_qla2xxx_check_prot_fabric_only(struct se_portal_group
*se_tpg
)
248 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
249 struct tcm_qla2xxx_tpg
, se_tpg
);
251 return tpg
->tpg_attrib
.fabric_prot_type
;
254 static u32
tcm_qla2xxx_tpg_get_inst_index(struct se_portal_group
*se_tpg
)
256 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
257 struct tcm_qla2xxx_tpg
, se_tpg
);
259 return tpg
->lport_tpgt
;
262 static void tcm_qla2xxx_complete_mcmd(struct work_struct
*work
)
264 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(work
,
265 struct qla_tgt_mgmt_cmd
, free_work
);
267 transport_generic_free_cmd(&mcmd
->se_cmd
, 0);
271 * Called from qla_target_template->free_mcmd(), and will call
272 * tcm_qla2xxx_release_cmd() via normal struct target_core_fabric_ops
273 * release callback. qla_hw_data->hardware_lock is expected to be held
275 static void tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd
*mcmd
)
277 INIT_WORK(&mcmd
->free_work
, tcm_qla2xxx_complete_mcmd
);
278 queue_work(tcm_qla2xxx_free_wq
, &mcmd
->free_work
);
281 static void tcm_qla2xxx_complete_free(struct work_struct
*work
)
283 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
287 WARN_ON(cmd
->cmd_flags
& BIT_16
);
289 cmd
->cmd_flags
|= BIT_16
;
290 transport_generic_free_cmd(&cmd
->se_cmd
, 0);
294 * Called from qla_target_template->free_cmd(), and will call
295 * tcm_qla2xxx_release_cmd via normal struct target_core_fabric_ops
296 * release callback. qla_hw_data->hardware_lock is expected to be held
298 static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd
*cmd
)
301 INIT_WORK(&cmd
->work
, tcm_qla2xxx_complete_free
);
302 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
306 * Called from struct target_core_fabric_ops->check_stop_free() context
308 static int tcm_qla2xxx_check_stop_free(struct se_cmd
*se_cmd
)
310 struct qla_tgt_cmd
*cmd
;
312 if ((se_cmd
->se_cmd_flags
& SCF_SCSI_TMR_CDB
) == 0) {
313 cmd
= container_of(se_cmd
, struct qla_tgt_cmd
, se_cmd
);
314 cmd
->cmd_flags
|= BIT_14
;
317 return target_put_sess_cmd(se_cmd
);
320 /* tcm_qla2xxx_release_cmd - Callback from TCM Core to release underlying
321 * fabric descriptor @se_cmd command to release
323 static void tcm_qla2xxx_release_cmd(struct se_cmd
*se_cmd
)
325 struct qla_tgt_cmd
*cmd
;
327 if (se_cmd
->se_cmd_flags
& SCF_SCSI_TMR_CDB
) {
328 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(se_cmd
,
329 struct qla_tgt_mgmt_cmd
, se_cmd
);
334 cmd
= container_of(se_cmd
, struct qla_tgt_cmd
, se_cmd
);
338 static int tcm_qla2xxx_shutdown_session(struct se_session
*se_sess
)
340 struct qla_tgt_sess
*sess
= se_sess
->fabric_sess_ptr
;
341 struct scsi_qla_host
*vha
;
347 spin_lock_irqsave(&vha
->hw
->hardware_lock
, flags
);
348 target_sess_cmd_list_set_waiting(se_sess
);
349 spin_unlock_irqrestore(&vha
->hw
->hardware_lock
, flags
);
354 static void tcm_qla2xxx_close_session(struct se_session
*se_sess
)
356 struct qla_tgt_sess
*sess
= se_sess
->fabric_sess_ptr
;
357 struct scsi_qla_host
*vha
;
363 spin_lock_irqsave(&vha
->hw
->hardware_lock
, flags
);
364 qlt_unreg_sess(sess
);
365 spin_unlock_irqrestore(&vha
->hw
->hardware_lock
, flags
);
368 static u32
tcm_qla2xxx_sess_get_index(struct se_session
*se_sess
)
373 static int tcm_qla2xxx_write_pending(struct se_cmd
*se_cmd
)
375 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
376 struct qla_tgt_cmd
, se_cmd
);
378 cmd
->bufflen
= se_cmd
->data_length
;
379 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
381 cmd
->sg_cnt
= se_cmd
->t_data_nents
;
382 cmd
->sg
= se_cmd
->t_data_sg
;
384 cmd
->prot_sg_cnt
= se_cmd
->t_prot_nents
;
385 cmd
->prot_sg
= se_cmd
->t_prot_sg
;
386 cmd
->blk_sz
= se_cmd
->se_dev
->dev_attrib
.block_size
;
390 * qla_target.c:qlt_rdy_to_xfer() will call pci_map_sg() to setup
391 * the SGL mappings into PCIe memory for incoming FCP WRITE data.
393 return qlt_rdy_to_xfer(cmd
);
396 static int tcm_qla2xxx_write_pending_status(struct se_cmd
*se_cmd
)
400 * Check for WRITE_PENDING status to determine if we need to wait for
401 * CTIO aborts to be posted via hardware in tcm_qla2xxx_handle_data().
403 spin_lock_irqsave(&se_cmd
->t_state_lock
, flags
);
404 if (se_cmd
->t_state
== TRANSPORT_WRITE_PENDING
||
405 se_cmd
->t_state
== TRANSPORT_COMPLETE_QF_WP
) {
406 spin_unlock_irqrestore(&se_cmd
->t_state_lock
, flags
);
407 wait_for_completion_timeout(&se_cmd
->t_transport_stop_comp
,
411 spin_unlock_irqrestore(&se_cmd
->t_state_lock
, flags
);
416 static void tcm_qla2xxx_set_default_node_attrs(struct se_node_acl
*nacl
)
421 static int tcm_qla2xxx_get_cmd_state(struct se_cmd
*se_cmd
)
427 * Called from process context in qla_target.c:qlt_do_work() code
429 static int tcm_qla2xxx_handle_cmd(scsi_qla_host_t
*vha
, struct qla_tgt_cmd
*cmd
,
430 unsigned char *cdb
, uint32_t data_length
, int fcp_task_attr
,
431 int data_dir
, int bidi
)
433 struct se_cmd
*se_cmd
= &cmd
->se_cmd
;
434 struct se_session
*se_sess
;
435 struct qla_tgt_sess
*sess
;
436 int flags
= TARGET_SCF_ACK_KREF
;
439 flags
|= TARGET_SCF_BIDI_OP
;
443 pr_err("Unable to locate struct qla_tgt_sess from qla_tgt_cmd\n");
447 se_sess
= sess
->se_sess
;
449 pr_err("Unable to locate active struct se_session\n");
453 return target_submit_cmd(se_cmd
, se_sess
, cdb
, &cmd
->sense_buffer
[0],
454 cmd
->unpacked_lun
, data_length
, fcp_task_attr
,
458 static void tcm_qla2xxx_handle_data_work(struct work_struct
*work
)
460 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
463 * Ensure that the complete FCP WRITE payload has been received.
464 * Otherwise return an exception via CHECK_CONDITION status.
467 cmd
->cmd_flags
|= BIT_11
;
468 if (!cmd
->write_data_transferred
) {
470 * Check if se_cmd has already been aborted via LUN_RESET, and
471 * waiting upon completion in tcm_qla2xxx_write_pending_status()
473 if (cmd
->se_cmd
.transport_state
& CMD_T_ABORTED
) {
474 complete(&cmd
->se_cmd
.t_transport_stop_comp
);
478 if (cmd
->se_cmd
.pi_err
)
479 transport_generic_request_failure(&cmd
->se_cmd
,
482 transport_generic_request_failure(&cmd
->se_cmd
,
483 TCM_CHECK_CONDITION_ABORT_CMD
);
488 return target_execute_cmd(&cmd
->se_cmd
);
492 * Called from qla_target.c:qlt_do_ctio_completion()
494 static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd
*cmd
)
496 cmd
->cmd_flags
|= BIT_10
;
498 INIT_WORK(&cmd
->work
, tcm_qla2xxx_handle_data_work
);
499 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
502 static void tcm_qla2xxx_handle_dif_work(struct work_struct
*work
)
504 struct qla_tgt_cmd
*cmd
= container_of(work
, struct qla_tgt_cmd
, work
);
506 /* take an extra kref to prevent cmd free too early.
507 * need to wait for SCSI status/check condition to
508 * finish responding generate by transport_generic_request_failure.
510 kref_get(&cmd
->se_cmd
.cmd_kref
);
511 transport_generic_request_failure(&cmd
->se_cmd
, cmd
->se_cmd
.pi_err
);
515 * Called from qla_target.c:qlt_do_ctio_completion()
517 static void tcm_qla2xxx_handle_dif_err(struct qla_tgt_cmd
*cmd
)
519 INIT_WORK(&cmd
->work
, tcm_qla2xxx_handle_dif_work
);
520 queue_work(tcm_qla2xxx_free_wq
, &cmd
->work
);
524 * Called from qla_target.c:qlt_issue_task_mgmt()
526 static int tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd
*mcmd
, uint32_t lun
,
527 uint8_t tmr_func
, uint32_t tag
)
529 struct qla_tgt_sess
*sess
= mcmd
->sess
;
530 struct se_cmd
*se_cmd
= &mcmd
->se_cmd
;
532 return target_submit_tmr(se_cmd
, sess
->se_sess
, NULL
, lun
, mcmd
,
533 tmr_func
, GFP_ATOMIC
, tag
, TARGET_SCF_ACK_KREF
);
536 static int tcm_qla2xxx_queue_data_in(struct se_cmd
*se_cmd
)
538 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
539 struct qla_tgt_cmd
, se_cmd
);
541 cmd
->cmd_flags
|= BIT_4
;
542 cmd
->bufflen
= se_cmd
->data_length
;
543 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
544 cmd
->aborted
= (se_cmd
->transport_state
& CMD_T_ABORTED
);
546 cmd
->sg_cnt
= se_cmd
->t_data_nents
;
547 cmd
->sg
= se_cmd
->t_data_sg
;
549 cmd
->cmd_flags
|= BIT_3
;
551 cmd
->prot_sg_cnt
= se_cmd
->t_prot_nents
;
552 cmd
->prot_sg
= se_cmd
->t_prot_sg
;
553 cmd
->blk_sz
= se_cmd
->se_dev
->dev_attrib
.block_size
;
557 * Now queue completed DATA_IN the qla2xxx LLD and response ring
559 return qlt_xmit_response(cmd
, QLA_TGT_XMIT_DATA
|QLA_TGT_XMIT_STATUS
,
560 se_cmd
->scsi_status
);
563 static int tcm_qla2xxx_queue_status(struct se_cmd
*se_cmd
)
565 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
566 struct qla_tgt_cmd
, se_cmd
);
567 int xmit_type
= QLA_TGT_XMIT_STATUS
;
569 cmd
->bufflen
= se_cmd
->data_length
;
573 cmd
->dma_data_direction
= target_reverse_dma_direction(se_cmd
);
574 cmd
->aborted
= (se_cmd
->transport_state
& CMD_T_ABORTED
);
575 if (cmd
->cmd_flags
& BIT_5
) {
576 pr_crit("Bit_5 already set for cmd = %p.\n", cmd
);
579 cmd
->cmd_flags
|= BIT_5
;
581 if (se_cmd
->data_direction
== DMA_FROM_DEVICE
) {
583 * For FCP_READ with CHECK_CONDITION status, clear cmd->bufflen
584 * for qla_tgt_xmit_response LLD code
586 if (se_cmd
->se_cmd_flags
& SCF_OVERFLOW_BIT
) {
587 se_cmd
->se_cmd_flags
&= ~SCF_OVERFLOW_BIT
;
588 se_cmd
->residual_count
= 0;
590 se_cmd
->se_cmd_flags
|= SCF_UNDERFLOW_BIT
;
591 se_cmd
->residual_count
+= se_cmd
->data_length
;
596 * Now queue status response to qla2xxx LLD code and response ring
598 return qlt_xmit_response(cmd
, xmit_type
, se_cmd
->scsi_status
);
601 static void tcm_qla2xxx_queue_tm_rsp(struct se_cmd
*se_cmd
)
603 struct se_tmr_req
*se_tmr
= se_cmd
->se_tmr_req
;
604 struct qla_tgt_mgmt_cmd
*mcmd
= container_of(se_cmd
,
605 struct qla_tgt_mgmt_cmd
, se_cmd
);
607 pr_debug("queue_tm_rsp: mcmd: %p func: 0x%02x response: 0x%02x\n",
608 mcmd
, se_tmr
->function
, se_tmr
->response
);
610 * Do translation between TCM TM response codes and
611 * QLA2xxx FC TM response codes.
613 switch (se_tmr
->response
) {
614 case TMR_FUNCTION_COMPLETE
:
615 mcmd
->fc_tm_rsp
= FC_TM_SUCCESS
;
617 case TMR_TASK_DOES_NOT_EXIST
:
618 mcmd
->fc_tm_rsp
= FC_TM_BAD_CMD
;
620 case TMR_FUNCTION_REJECTED
:
621 mcmd
->fc_tm_rsp
= FC_TM_REJECT
;
623 case TMR_LUN_DOES_NOT_EXIST
:
625 mcmd
->fc_tm_rsp
= FC_TM_FAILED
;
629 * Queue the TM response to QLA2xxx LLD to build a
630 * CTIO response packet.
632 qlt_xmit_tm_rsp(mcmd
);
635 static void tcm_qla2xxx_aborted_task(struct se_cmd
*se_cmd
)
637 struct qla_tgt_cmd
*cmd
= container_of(se_cmd
,
638 struct qla_tgt_cmd
, se_cmd
);
639 struct scsi_qla_host
*vha
= cmd
->vha
;
640 struct qla_hw_data
*ha
= vha
->hw
;
645 pci_unmap_sg(ha
->pdev
, cmd
->sg
, cmd
->sg_cnt
, cmd
->dma_data_direction
);
649 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport
*,
650 struct tcm_qla2xxx_nacl
*, struct qla_tgt_sess
*);
652 * Expected to be called with struct qla_hw_data->hardware_lock held
654 static void tcm_qla2xxx_clear_nacl_from_fcport_map(struct qla_tgt_sess
*sess
)
656 struct se_node_acl
*se_nacl
= sess
->se_sess
->se_node_acl
;
657 struct se_portal_group
*se_tpg
= se_nacl
->se_tpg
;
658 struct se_wwn
*se_wwn
= se_tpg
->se_tpg_wwn
;
659 struct tcm_qla2xxx_lport
*lport
= container_of(se_wwn
,
660 struct tcm_qla2xxx_lport
, lport_wwn
);
661 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_nacl
,
662 struct tcm_qla2xxx_nacl
, se_node_acl
);
665 pr_debug("fc_rport domain: port_id 0x%06x\n", nacl
->nport_id
);
667 node
= btree_remove32(&lport
->lport_fcport_map
, nacl
->nport_id
);
668 if (WARN_ON(node
&& (node
!= se_nacl
))) {
670 * The nacl no longer matches what we think it should be.
671 * Most likely a new dynamic acl has been added while
672 * someone dropped the hardware lock. It clearly is a
673 * bug elsewhere, but this bit can't make things worse.
675 btree_insert32(&lport
->lport_fcport_map
, nacl
->nport_id
,
679 pr_debug("Removed from fcport_map: %p for WWNN: 0x%016LX, port_id: 0x%06x\n",
680 se_nacl
, nacl
->nport_wwnn
, nacl
->nport_id
);
682 * Now clear the se_nacl and session pointers from our HW lport lookup
683 * table mapping for this initiator's fabric S_ID and LOOP_ID entries.
685 * This is done ahead of callbacks into tcm_qla2xxx_free_session() ->
686 * target_wait_for_sess_cmds() before the session waits for outstanding
687 * I/O to complete, to avoid a race between session shutdown execution
688 * and incoming ATIOs or TMRs picking up a stale se_node_act reference.
690 tcm_qla2xxx_clear_sess_lookup(lport
, nacl
, sess
);
693 static void tcm_qla2xxx_release_session(struct kref
*kref
)
695 struct se_session
*se_sess
= container_of(kref
,
696 struct se_session
, sess_kref
);
698 qlt_unreg_sess(se_sess
->fabric_sess_ptr
);
701 static void tcm_qla2xxx_put_sess(struct qla_tgt_sess
*sess
)
706 assert_spin_locked(&sess
->vha
->hw
->hardware_lock
);
707 kref_put(&sess
->se_sess
->sess_kref
, tcm_qla2xxx_release_session
);
710 static void tcm_qla2xxx_shutdown_sess(struct qla_tgt_sess
*sess
)
712 assert_spin_locked(&sess
->vha
->hw
->hardware_lock
);
713 target_sess_cmd_list_set_waiting(sess
->se_sess
);
716 static int tcm_qla2xxx_init_nodeacl(struct se_node_acl
*se_nacl
,
719 struct tcm_qla2xxx_nacl
*nacl
=
720 container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
723 if (tcm_qla2xxx_parse_wwn(name
, &wwnn
, 1) < 0)
726 nacl
->nport_wwnn
= wwnn
;
727 tcm_qla2xxx_format_wwn(&nacl
->nport_name
[0], TCM_QLA2XXX_NAMELEN
, wwnn
);
732 /* Start items for tcm_qla2xxx_tpg_attrib_cit */
734 #define DEF_QLA_TPG_ATTRIB(name) \
736 static ssize_t tcm_qla2xxx_tpg_attrib_show_##name( \
737 struct se_portal_group *se_tpg, \
740 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
741 struct tcm_qla2xxx_tpg, se_tpg); \
743 return sprintf(page, "%u\n", tpg->tpg_attrib.name); \
746 static ssize_t tcm_qla2xxx_tpg_attrib_store_##name( \
747 struct se_portal_group *se_tpg, \
751 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
752 struct tcm_qla2xxx_tpg, se_tpg); \
756 ret = kstrtoul(page, 0, &val); \
758 pr_err("kstrtoul() failed with" \
759 " ret: %d\n", ret); \
762 ret = tcm_qla2xxx_set_attrib_##name(tpg, val); \
764 return (!ret) ? count : -EINVAL; \
767 #define DEF_QLA_TPG_ATTR_BOOL(_name) \
769 static int tcm_qla2xxx_set_attrib_##_name( \
770 struct tcm_qla2xxx_tpg *tpg, \
773 struct tcm_qla2xxx_tpg_attrib *a = &tpg->tpg_attrib; \
775 if ((val != 0) && (val != 1)) { \
776 pr_err("Illegal boolean value %lu\n", val); \
784 #define QLA_TPG_ATTR(_name, _mode) \
785 TF_TPG_ATTRIB_ATTR(tcm_qla2xxx, _name, _mode);
788 * Define tcm_qla2xxx_tpg_attrib_s_generate_node_acls
790 DEF_QLA_TPG_ATTR_BOOL(generate_node_acls
);
791 DEF_QLA_TPG_ATTRIB(generate_node_acls
);
792 QLA_TPG_ATTR(generate_node_acls
, S_IRUGO
| S_IWUSR
);
795 Define tcm_qla2xxx_attrib_s_cache_dynamic_acls
797 DEF_QLA_TPG_ATTR_BOOL(cache_dynamic_acls
);
798 DEF_QLA_TPG_ATTRIB(cache_dynamic_acls
);
799 QLA_TPG_ATTR(cache_dynamic_acls
, S_IRUGO
| S_IWUSR
);
802 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_write_protect
804 DEF_QLA_TPG_ATTR_BOOL(demo_mode_write_protect
);
805 DEF_QLA_TPG_ATTRIB(demo_mode_write_protect
);
806 QLA_TPG_ATTR(demo_mode_write_protect
, S_IRUGO
| S_IWUSR
);
809 * Define tcm_qla2xxx_tpg_attrib_s_prod_mode_write_protect
811 DEF_QLA_TPG_ATTR_BOOL(prod_mode_write_protect
);
812 DEF_QLA_TPG_ATTRIB(prod_mode_write_protect
);
813 QLA_TPG_ATTR(prod_mode_write_protect
, S_IRUGO
| S_IWUSR
);
816 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_login_only
818 DEF_QLA_TPG_ATTR_BOOL(demo_mode_login_only
);
819 DEF_QLA_TPG_ATTRIB(demo_mode_login_only
);
820 QLA_TPG_ATTR(demo_mode_login_only
, S_IRUGO
| S_IWUSR
);
822 static struct configfs_attribute
*tcm_qla2xxx_tpg_attrib_attrs
[] = {
823 &tcm_qla2xxx_tpg_attrib_generate_node_acls
.attr
,
824 &tcm_qla2xxx_tpg_attrib_cache_dynamic_acls
.attr
,
825 &tcm_qla2xxx_tpg_attrib_demo_mode_write_protect
.attr
,
826 &tcm_qla2xxx_tpg_attrib_prod_mode_write_protect
.attr
,
827 &tcm_qla2xxx_tpg_attrib_demo_mode_login_only
.attr
,
831 /* End items for tcm_qla2xxx_tpg_attrib_cit */
833 static ssize_t
tcm_qla2xxx_tpg_show_enable(
834 struct se_portal_group
*se_tpg
,
837 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
838 struct tcm_qla2xxx_tpg
, se_tpg
);
840 return snprintf(page
, PAGE_SIZE
, "%d\n",
841 atomic_read(&tpg
->lport_tpg_enabled
));
844 static void tcm_qla2xxx_depend_tpg(struct work_struct
*work
)
846 struct tcm_qla2xxx_tpg
*base_tpg
= container_of(work
,
847 struct tcm_qla2xxx_tpg
, tpg_base_work
);
848 struct se_portal_group
*se_tpg
= &base_tpg
->se_tpg
;
849 struct scsi_qla_host
*base_vha
= base_tpg
->lport
->qla_vha
;
851 if (!target_depend_item(&se_tpg
->tpg_group
.cg_item
)) {
852 atomic_set(&base_tpg
->lport_tpg_enabled
, 1);
853 qlt_enable_vha(base_vha
);
855 complete(&base_tpg
->tpg_base_comp
);
858 static void tcm_qla2xxx_undepend_tpg(struct work_struct
*work
)
860 struct tcm_qla2xxx_tpg
*base_tpg
= container_of(work
,
861 struct tcm_qla2xxx_tpg
, tpg_base_work
);
862 struct se_portal_group
*se_tpg
= &base_tpg
->se_tpg
;
863 struct scsi_qla_host
*base_vha
= base_tpg
->lport
->qla_vha
;
865 if (!qlt_stop_phase1(base_vha
->vha_tgt
.qla_tgt
)) {
866 atomic_set(&base_tpg
->lport_tpg_enabled
, 0);
867 target_undepend_item(&se_tpg
->tpg_group
.cg_item
);
869 complete(&base_tpg
->tpg_base_comp
);
872 static ssize_t
tcm_qla2xxx_tpg_store_enable(
873 struct se_portal_group
*se_tpg
,
877 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
878 struct tcm_qla2xxx_tpg
, se_tpg
);
882 rc
= kstrtoul(page
, 0, &op
);
884 pr_err("kstrtoul() returned %d\n", rc
);
887 if ((op
!= 1) && (op
!= 0)) {
888 pr_err("Illegal value for tpg_enable: %lu\n", op
);
892 if (atomic_read(&tpg
->lport_tpg_enabled
))
895 INIT_WORK(&tpg
->tpg_base_work
, tcm_qla2xxx_depend_tpg
);
897 if (!atomic_read(&tpg
->lport_tpg_enabled
))
900 INIT_WORK(&tpg
->tpg_base_work
, tcm_qla2xxx_undepend_tpg
);
902 init_completion(&tpg
->tpg_base_comp
);
903 schedule_work(&tpg
->tpg_base_work
);
904 wait_for_completion(&tpg
->tpg_base_comp
);
907 if (!atomic_read(&tpg
->lport_tpg_enabled
))
910 if (atomic_read(&tpg
->lport_tpg_enabled
))
916 TF_TPG_BASE_ATTR(tcm_qla2xxx
, enable
, S_IRUGO
| S_IWUSR
);
918 static ssize_t
tcm_qla2xxx_tpg_show_dynamic_sessions(
919 struct se_portal_group
*se_tpg
,
922 return target_show_dynamic_sessions(se_tpg
, page
);
925 TF_TPG_BASE_ATTR_RO(tcm_qla2xxx
, dynamic_sessions
);
927 static ssize_t
tcm_qla2xxx_tpg_store_fabric_prot_type(
928 struct se_portal_group
*se_tpg
,
932 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
933 struct tcm_qla2xxx_tpg
, se_tpg
);
935 int ret
= kstrtoul(page
, 0, &val
);
938 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret
);
941 if (val
!= 0 && val
!= 1 && val
!= 3) {
942 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val
);
945 tpg
->tpg_attrib
.fabric_prot_type
= val
;
950 static ssize_t
tcm_qla2xxx_tpg_show_fabric_prot_type(
951 struct se_portal_group
*se_tpg
,
954 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
955 struct tcm_qla2xxx_tpg
, se_tpg
);
957 return sprintf(page
, "%d\n", tpg
->tpg_attrib
.fabric_prot_type
);
959 TF_TPG_BASE_ATTR(tcm_qla2xxx
, fabric_prot_type
, S_IRUGO
| S_IWUSR
);
961 static struct configfs_attribute
*tcm_qla2xxx_tpg_attrs
[] = {
962 &tcm_qla2xxx_tpg_enable
.attr
,
963 &tcm_qla2xxx_tpg_dynamic_sessions
.attr
,
964 &tcm_qla2xxx_tpg_fabric_prot_type
.attr
,
968 static struct se_portal_group
*tcm_qla2xxx_make_tpg(
970 struct config_group
*group
,
973 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
974 struct tcm_qla2xxx_lport
, lport_wwn
);
975 struct tcm_qla2xxx_tpg
*tpg
;
979 if (strstr(name
, "tpgt_") != name
)
980 return ERR_PTR(-EINVAL
);
981 if (kstrtoul(name
+ 5, 10, &tpgt
) || tpgt
> USHRT_MAX
)
982 return ERR_PTR(-EINVAL
);
985 pr_err("In non NPIV mode, a single TPG=1 is used for HW port mappings\n");
986 return ERR_PTR(-ENOSYS
);
989 tpg
= kzalloc(sizeof(struct tcm_qla2xxx_tpg
), GFP_KERNEL
);
991 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
992 return ERR_PTR(-ENOMEM
);
995 tpg
->lport_tpgt
= tpgt
;
997 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1000 tpg
->tpg_attrib
.generate_node_acls
= 1;
1001 tpg
->tpg_attrib
.demo_mode_write_protect
= 1;
1002 tpg
->tpg_attrib
.cache_dynamic_acls
= 1;
1003 tpg
->tpg_attrib
.demo_mode_login_only
= 1;
1005 ret
= core_tpg_register(wwn
, &tpg
->se_tpg
, SCSI_PROTOCOL_FCP
);
1013 return &tpg
->se_tpg
;
1016 static void tcm_qla2xxx_drop_tpg(struct se_portal_group
*se_tpg
)
1018 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1019 struct tcm_qla2xxx_tpg
, se_tpg
);
1020 struct tcm_qla2xxx_lport
*lport
= tpg
->lport
;
1021 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1023 * Call into qla2x_target.c LLD logic to shutdown the active
1024 * FC Nexuses and disable target mode operation for this qla_hw_data
1026 if (vha
->vha_tgt
.qla_tgt
&& !vha
->vha_tgt
.qla_tgt
->tgt_stop
)
1027 qlt_stop_phase1(vha
->vha_tgt
.qla_tgt
);
1029 core_tpg_deregister(se_tpg
);
1031 * Clear local TPG=1 pointer for non NPIV mode.
1033 lport
->tpg_1
= NULL
;
1037 static ssize_t
tcm_qla2xxx_npiv_tpg_show_enable(
1038 struct se_portal_group
*se_tpg
,
1041 return tcm_qla2xxx_tpg_show_enable(se_tpg
, page
);
1044 static ssize_t
tcm_qla2xxx_npiv_tpg_store_enable(
1045 struct se_portal_group
*se_tpg
,
1049 struct se_wwn
*se_wwn
= se_tpg
->se_tpg_wwn
;
1050 struct tcm_qla2xxx_lport
*lport
= container_of(se_wwn
,
1051 struct tcm_qla2xxx_lport
, lport_wwn
);
1052 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1053 struct tcm_qla2xxx_tpg
*tpg
= container_of(se_tpg
,
1054 struct tcm_qla2xxx_tpg
, se_tpg
);
1058 rc
= kstrtoul(page
, 0, &op
);
1060 pr_err("kstrtoul() returned %d\n", rc
);
1063 if ((op
!= 1) && (op
!= 0)) {
1064 pr_err("Illegal value for tpg_enable: %lu\n", op
);
1068 if (atomic_read(&tpg
->lport_tpg_enabled
))
1071 atomic_set(&tpg
->lport_tpg_enabled
, 1);
1072 qlt_enable_vha(vha
);
1074 if (!atomic_read(&tpg
->lport_tpg_enabled
))
1077 atomic_set(&tpg
->lport_tpg_enabled
, 0);
1078 qlt_stop_phase1(vha
->vha_tgt
.qla_tgt
);
1084 TF_TPG_BASE_ATTR(tcm_qla2xxx_npiv
, enable
, S_IRUGO
| S_IWUSR
);
1086 static struct configfs_attribute
*tcm_qla2xxx_npiv_tpg_attrs
[] = {
1087 &tcm_qla2xxx_npiv_tpg_enable
.attr
,
1091 static struct se_portal_group
*tcm_qla2xxx_npiv_make_tpg(
1093 struct config_group
*group
,
1096 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1097 struct tcm_qla2xxx_lport
, lport_wwn
);
1098 struct tcm_qla2xxx_tpg
*tpg
;
1102 if (strstr(name
, "tpgt_") != name
)
1103 return ERR_PTR(-EINVAL
);
1104 if (kstrtoul(name
+ 5, 10, &tpgt
) || tpgt
> USHRT_MAX
)
1105 return ERR_PTR(-EINVAL
);
1107 tpg
= kzalloc(sizeof(struct tcm_qla2xxx_tpg
), GFP_KERNEL
);
1109 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1110 return ERR_PTR(-ENOMEM
);
1113 tpg
->lport_tpgt
= tpgt
;
1116 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1119 tpg
->tpg_attrib
.generate_node_acls
= 1;
1120 tpg
->tpg_attrib
.demo_mode_write_protect
= 1;
1121 tpg
->tpg_attrib
.cache_dynamic_acls
= 1;
1122 tpg
->tpg_attrib
.demo_mode_login_only
= 1;
1124 ret
= core_tpg_register(wwn
, &tpg
->se_tpg
, SCSI_PROTOCOL_FCP
);
1130 return &tpg
->se_tpg
;
1134 * Expected to be called with struct qla_hw_data->hardware_lock held
1136 static struct qla_tgt_sess
*tcm_qla2xxx_find_sess_by_s_id(
1137 scsi_qla_host_t
*vha
,
1138 const uint8_t *s_id
)
1140 struct tcm_qla2xxx_lport
*lport
;
1141 struct se_node_acl
*se_nacl
;
1142 struct tcm_qla2xxx_nacl
*nacl
;
1145 lport
= vha
->vha_tgt
.target_lport_ptr
;
1147 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1152 key
= (((unsigned long)s_id
[0] << 16) |
1153 ((unsigned long)s_id
[1] << 8) |
1154 (unsigned long)s_id
[2]);
1155 pr_debug("find_sess_by_s_id: 0x%06x\n", key
);
1157 se_nacl
= btree_lookup32(&lport
->lport_fcport_map
, key
);
1159 pr_debug("Unable to locate s_id: 0x%06x\n", key
);
1162 pr_debug("find_sess_by_s_id: located se_nacl: %p, initiatorname: %s\n",
1163 se_nacl
, se_nacl
->initiatorname
);
1165 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1166 if (!nacl
->qla_tgt_sess
) {
1167 pr_err("Unable to locate struct qla_tgt_sess\n");
1171 return nacl
->qla_tgt_sess
;
1175 * Expected to be called with struct qla_hw_data->hardware_lock held
1177 static void tcm_qla2xxx_set_sess_by_s_id(
1178 struct tcm_qla2xxx_lport
*lport
,
1179 struct se_node_acl
*new_se_nacl
,
1180 struct tcm_qla2xxx_nacl
*nacl
,
1181 struct se_session
*se_sess
,
1182 struct qla_tgt_sess
*qla_tgt_sess
,
1189 key
= (((unsigned long)s_id
[0] << 16) |
1190 ((unsigned long)s_id
[1] << 8) |
1191 (unsigned long)s_id
[2]);
1192 pr_debug("set_sess_by_s_id: %06x\n", key
);
1194 slot
= btree_lookup32(&lport
->lport_fcport_map
, key
);
1197 pr_debug("Setting up new fc_port entry to new_se_nacl\n");
1198 nacl
->nport_id
= key
;
1199 rc
= btree_insert32(&lport
->lport_fcport_map
, key
,
1200 new_se_nacl
, GFP_ATOMIC
);
1202 printk(KERN_ERR
"Unable to insert s_id into fcport_map: %06x\n",
1205 pr_debug("Wiping nonexisting fc_port entry\n");
1208 qla_tgt_sess
->se_sess
= se_sess
;
1209 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1213 if (nacl
->qla_tgt_sess
) {
1214 if (new_se_nacl
== NULL
) {
1215 pr_debug("Clearing existing nacl->qla_tgt_sess and fc_port entry\n");
1216 btree_remove32(&lport
->lport_fcport_map
, key
);
1217 nacl
->qla_tgt_sess
= NULL
;
1220 pr_debug("Replacing existing nacl->qla_tgt_sess and fc_port entry\n");
1221 btree_update32(&lport
->lport_fcport_map
, key
, new_se_nacl
);
1222 qla_tgt_sess
->se_sess
= se_sess
;
1223 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1227 if (new_se_nacl
== NULL
) {
1228 pr_debug("Clearing existing fc_port entry\n");
1229 btree_remove32(&lport
->lport_fcport_map
, key
);
1233 pr_debug("Replacing existing fc_port entry w/o active nacl->qla_tgt_sess\n");
1234 btree_update32(&lport
->lport_fcport_map
, key
, new_se_nacl
);
1235 qla_tgt_sess
->se_sess
= se_sess
;
1236 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1238 pr_debug("Setup nacl->qla_tgt_sess %p by s_id for se_nacl: %p, initiatorname: %s\n",
1239 nacl
->qla_tgt_sess
, new_se_nacl
, new_se_nacl
->initiatorname
);
1243 * Expected to be called with struct qla_hw_data->hardware_lock held
1245 static struct qla_tgt_sess
*tcm_qla2xxx_find_sess_by_loop_id(
1246 scsi_qla_host_t
*vha
,
1247 const uint16_t loop_id
)
1249 struct tcm_qla2xxx_lport
*lport
;
1250 struct se_node_acl
*se_nacl
;
1251 struct tcm_qla2xxx_nacl
*nacl
;
1252 struct tcm_qla2xxx_fc_loopid
*fc_loopid
;
1254 lport
= vha
->vha_tgt
.target_lport_ptr
;
1256 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1261 pr_debug("find_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id
);
1263 fc_loopid
= lport
->lport_loopid_map
+ loop_id
;
1264 se_nacl
= fc_loopid
->se_nacl
;
1266 pr_debug("Unable to locate se_nacl by loop_id: 0x%04x\n",
1271 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1273 if (!nacl
->qla_tgt_sess
) {
1274 pr_err("Unable to locate struct qla_tgt_sess\n");
1278 return nacl
->qla_tgt_sess
;
1282 * Expected to be called with struct qla_hw_data->hardware_lock held
1284 static void tcm_qla2xxx_set_sess_by_loop_id(
1285 struct tcm_qla2xxx_lport
*lport
,
1286 struct se_node_acl
*new_se_nacl
,
1287 struct tcm_qla2xxx_nacl
*nacl
,
1288 struct se_session
*se_sess
,
1289 struct qla_tgt_sess
*qla_tgt_sess
,
1292 struct se_node_acl
*saved_nacl
;
1293 struct tcm_qla2xxx_fc_loopid
*fc_loopid
;
1295 pr_debug("set_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id
);
1297 fc_loopid
= &((struct tcm_qla2xxx_fc_loopid
*)
1298 lport
->lport_loopid_map
)[loop_id
];
1300 saved_nacl
= fc_loopid
->se_nacl
;
1302 pr_debug("Setting up new fc_loopid->se_nacl to new_se_nacl\n");
1303 fc_loopid
->se_nacl
= new_se_nacl
;
1304 if (qla_tgt_sess
->se_sess
!= se_sess
)
1305 qla_tgt_sess
->se_sess
= se_sess
;
1306 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1307 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1311 if (nacl
->qla_tgt_sess
) {
1312 if (new_se_nacl
== NULL
) {
1313 pr_debug("Clearing nacl->qla_tgt_sess and fc_loopid->se_nacl\n");
1314 fc_loopid
->se_nacl
= NULL
;
1315 nacl
->qla_tgt_sess
= NULL
;
1319 pr_debug("Replacing existing nacl->qla_tgt_sess and fc_loopid->se_nacl\n");
1320 fc_loopid
->se_nacl
= new_se_nacl
;
1321 if (qla_tgt_sess
->se_sess
!= se_sess
)
1322 qla_tgt_sess
->se_sess
= se_sess
;
1323 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1324 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1328 if (new_se_nacl
== NULL
) {
1329 pr_debug("Clearing fc_loopid->se_nacl\n");
1330 fc_loopid
->se_nacl
= NULL
;
1334 pr_debug("Replacing existing fc_loopid->se_nacl w/o active nacl->qla_tgt_sess\n");
1335 fc_loopid
->se_nacl
= new_se_nacl
;
1336 if (qla_tgt_sess
->se_sess
!= se_sess
)
1337 qla_tgt_sess
->se_sess
= se_sess
;
1338 if (nacl
->qla_tgt_sess
!= qla_tgt_sess
)
1339 nacl
->qla_tgt_sess
= qla_tgt_sess
;
1341 pr_debug("Setup nacl->qla_tgt_sess %p by loop_id for se_nacl: %p, initiatorname: %s\n",
1342 nacl
->qla_tgt_sess
, new_se_nacl
, new_se_nacl
->initiatorname
);
1346 * Should always be called with qla_hw_data->hardware_lock held.
1348 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport
*lport
,
1349 struct tcm_qla2xxx_nacl
*nacl
, struct qla_tgt_sess
*sess
)
1351 struct se_session
*se_sess
= sess
->se_sess
;
1352 unsigned char be_sid
[3];
1354 be_sid
[0] = sess
->s_id
.b
.domain
;
1355 be_sid
[1] = sess
->s_id
.b
.area
;
1356 be_sid
[2] = sess
->s_id
.b
.al_pa
;
1358 tcm_qla2xxx_set_sess_by_s_id(lport
, NULL
, nacl
, se_sess
,
1360 tcm_qla2xxx_set_sess_by_loop_id(lport
, NULL
, nacl
, se_sess
,
1361 sess
, sess
->loop_id
);
1364 static void tcm_qla2xxx_free_session(struct qla_tgt_sess
*sess
)
1366 struct qla_tgt
*tgt
= sess
->tgt
;
1367 struct qla_hw_data
*ha
= tgt
->ha
;
1368 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
1369 struct se_session
*se_sess
;
1370 struct se_node_acl
*se_nacl
;
1371 struct tcm_qla2xxx_lport
*lport
;
1372 struct tcm_qla2xxx_nacl
*nacl
;
1374 BUG_ON(in_interrupt());
1376 se_sess
= sess
->se_sess
;
1378 pr_err("struct qla_tgt_sess->se_sess is NULL\n");
1382 se_nacl
= se_sess
->se_node_acl
;
1383 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1385 lport
= vha
->vha_tgt
.target_lport_ptr
;
1387 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1391 target_wait_for_sess_cmds(se_sess
);
1393 transport_deregister_session_configfs(sess
->se_sess
);
1394 transport_deregister_session(sess
->se_sess
);
1398 * Called via qlt_create_sess():ha->qla2x_tmpl->check_initiator_node_acl()
1399 * to locate struct se_node_acl
1401 static int tcm_qla2xxx_check_initiator_node_acl(
1402 scsi_qla_host_t
*vha
,
1403 unsigned char *fc_wwpn
,
1408 struct qla_hw_data
*ha
= vha
->hw
;
1409 struct tcm_qla2xxx_lport
*lport
;
1410 struct tcm_qla2xxx_tpg
*tpg
;
1411 struct tcm_qla2xxx_nacl
*nacl
;
1412 struct se_portal_group
*se_tpg
;
1413 struct se_node_acl
*se_nacl
;
1414 struct se_session
*se_sess
;
1415 struct qla_tgt_sess
*sess
= qla_tgt_sess
;
1416 unsigned char port_name
[36];
1417 unsigned long flags
;
1418 int num_tags
= (ha
->fw_xcb_count
) ? ha
->fw_xcb_count
:
1419 TCM_QLA2XXX_DEFAULT_TAGS
;
1421 lport
= vha
->vha_tgt
.target_lport_ptr
;
1423 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1428 * Locate the TPG=1 reference..
1432 pr_err("Unable to lcoate struct tcm_qla2xxx_lport->tpg_1\n");
1435 se_tpg
= &tpg
->se_tpg
;
1437 se_sess
= transport_init_session_tags(num_tags
,
1438 sizeof(struct qla_tgt_cmd
),
1440 if (IS_ERR(se_sess
)) {
1441 pr_err("Unable to initialize struct se_session\n");
1442 return PTR_ERR(se_sess
);
1445 * Format the FCP Initiator port_name into colon seperated values to
1446 * match the format by tcm_qla2xxx explict ConfigFS NodeACLs.
1448 memset(&port_name
, 0, 36);
1449 snprintf(port_name
, sizeof(port_name
), "%8phC", fc_wwpn
);
1451 * Locate our struct se_node_acl either from an explict NodeACL created
1452 * via ConfigFS, or via running in TPG demo mode.
1454 se_sess
->se_node_acl
= core_tpg_check_initiator_node_acl(se_tpg
,
1456 if (!se_sess
->se_node_acl
) {
1457 transport_free_session(se_sess
);
1460 se_nacl
= se_sess
->se_node_acl
;
1461 nacl
= container_of(se_nacl
, struct tcm_qla2xxx_nacl
, se_node_acl
);
1463 * And now setup the new se_nacl and session pointers into our HW lport
1464 * mappings for fabric S_ID and LOOP_ID.
1466 spin_lock_irqsave(&ha
->hardware_lock
, flags
);
1467 tcm_qla2xxx_set_sess_by_s_id(lport
, se_nacl
, nacl
, se_sess
,
1468 qla_tgt_sess
, s_id
);
1469 tcm_qla2xxx_set_sess_by_loop_id(lport
, se_nacl
, nacl
, se_sess
,
1470 qla_tgt_sess
, loop_id
);
1471 spin_unlock_irqrestore(&ha
->hardware_lock
, flags
);
1473 * Finally register the new FC Nexus with TCM
1475 transport_register_session(se_nacl
->se_tpg
, se_nacl
, se_sess
, sess
);
1480 static void tcm_qla2xxx_update_sess(struct qla_tgt_sess
*sess
, port_id_t s_id
,
1481 uint16_t loop_id
, bool conf_compl_supported
)
1483 struct qla_tgt
*tgt
= sess
->tgt
;
1484 struct qla_hw_data
*ha
= tgt
->ha
;
1485 scsi_qla_host_t
*vha
= pci_get_drvdata(ha
->pdev
);
1486 struct tcm_qla2xxx_lport
*lport
= vha
->vha_tgt
.target_lport_ptr
;
1487 struct se_node_acl
*se_nacl
= sess
->se_sess
->se_node_acl
;
1488 struct tcm_qla2xxx_nacl
*nacl
= container_of(se_nacl
,
1489 struct tcm_qla2xxx_nacl
, se_node_acl
);
1493 if (sess
->loop_id
!= loop_id
|| sess
->s_id
.b24
!= s_id
.b24
)
1494 pr_info("Updating session %p from port %8phC loop_id %d -> %d s_id %x:%x:%x -> %x:%x:%x\n",
1495 sess
, sess
->port_name
,
1496 sess
->loop_id
, loop_id
, sess
->s_id
.b
.domain
,
1497 sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
, s_id
.b
.domain
,
1498 s_id
.b
.area
, s_id
.b
.al_pa
);
1500 if (sess
->loop_id
!= loop_id
) {
1502 * Because we can shuffle loop IDs around and we
1503 * update different sessions non-atomically, we might
1504 * have overwritten this session's old loop ID
1505 * already, and we might end up overwriting some other
1506 * session that will be updated later. So we have to
1507 * be extra careful and we can't warn about those things...
1509 if (lport
->lport_loopid_map
[sess
->loop_id
].se_nacl
== se_nacl
)
1510 lport
->lport_loopid_map
[sess
->loop_id
].se_nacl
= NULL
;
1512 lport
->lport_loopid_map
[loop_id
].se_nacl
= se_nacl
;
1514 sess
->loop_id
= loop_id
;
1517 if (sess
->s_id
.b24
!= s_id
.b24
) {
1518 key
= (((u32
) sess
->s_id
.b
.domain
<< 16) |
1519 ((u32
) sess
->s_id
.b
.area
<< 8) |
1520 ((u32
) sess
->s_id
.b
.al_pa
));
1522 if (btree_lookup32(&lport
->lport_fcport_map
, key
))
1523 WARN(btree_remove32(&lport
->lport_fcport_map
, key
) != se_nacl
,
1524 "Found wrong se_nacl when updating s_id %x:%x:%x\n",
1525 sess
->s_id
.b
.domain
, sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
);
1527 WARN(1, "No lport_fcport_map entry for s_id %x:%x:%x\n",
1528 sess
->s_id
.b
.domain
, sess
->s_id
.b
.area
, sess
->s_id
.b
.al_pa
);
1530 key
= (((u32
) s_id
.b
.domain
<< 16) |
1531 ((u32
) s_id
.b
.area
<< 8) |
1532 ((u32
) s_id
.b
.al_pa
));
1534 if (btree_lookup32(&lport
->lport_fcport_map
, key
)) {
1535 WARN(1, "Already have lport_fcport_map entry for s_id %x:%x:%x\n",
1536 s_id
.b
.domain
, s_id
.b
.area
, s_id
.b
.al_pa
);
1537 btree_update32(&lport
->lport_fcport_map
, key
, se_nacl
);
1539 btree_insert32(&lport
->lport_fcport_map
, key
, se_nacl
, GFP_ATOMIC
);
1543 nacl
->nport_id
= key
;
1546 sess
->conf_compl_supported
= conf_compl_supported
;
1550 * Calls into tcm_qla2xxx used by qla2xxx LLD I/O path.
1552 static struct qla_tgt_func_tmpl tcm_qla2xxx_template
= {
1553 .handle_cmd
= tcm_qla2xxx_handle_cmd
,
1554 .handle_data
= tcm_qla2xxx_handle_data
,
1555 .handle_dif_err
= tcm_qla2xxx_handle_dif_err
,
1556 .handle_tmr
= tcm_qla2xxx_handle_tmr
,
1557 .free_cmd
= tcm_qla2xxx_free_cmd
,
1558 .free_mcmd
= tcm_qla2xxx_free_mcmd
,
1559 .free_session
= tcm_qla2xxx_free_session
,
1560 .update_sess
= tcm_qla2xxx_update_sess
,
1561 .check_initiator_node_acl
= tcm_qla2xxx_check_initiator_node_acl
,
1562 .find_sess_by_s_id
= tcm_qla2xxx_find_sess_by_s_id
,
1563 .find_sess_by_loop_id
= tcm_qla2xxx_find_sess_by_loop_id
,
1564 .clear_nacl_from_fcport_map
= tcm_qla2xxx_clear_nacl_from_fcport_map
,
1565 .put_sess
= tcm_qla2xxx_put_sess
,
1566 .shutdown_sess
= tcm_qla2xxx_shutdown_sess
,
1569 static int tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport
*lport
)
1573 rc
= btree_init32(&lport
->lport_fcport_map
);
1575 pr_err("Unable to initialize lport->lport_fcport_map btree\n");
1579 lport
->lport_loopid_map
= vmalloc(sizeof(struct tcm_qla2xxx_fc_loopid
) *
1581 if (!lport
->lport_loopid_map
) {
1582 pr_err("Unable to allocate lport->lport_loopid_map of %zu bytes\n",
1583 sizeof(struct tcm_qla2xxx_fc_loopid
) * 65536);
1584 btree_destroy32(&lport
->lport_fcport_map
);
1587 memset(lport
->lport_loopid_map
, 0, sizeof(struct tcm_qla2xxx_fc_loopid
)
1589 pr_debug("qla2xxx: Allocated lport_loopid_map of %zu bytes\n",
1590 sizeof(struct tcm_qla2xxx_fc_loopid
) * 65536);
1594 static int tcm_qla2xxx_lport_register_cb(struct scsi_qla_host
*vha
,
1595 void *target_lport_ptr
,
1596 u64 npiv_wwpn
, u64 npiv_wwnn
)
1598 struct qla_hw_data
*ha
= vha
->hw
;
1599 struct tcm_qla2xxx_lport
*lport
=
1600 (struct tcm_qla2xxx_lport
*)target_lport_ptr
;
1602 * Setup tgt_ops, local pointer to vha and target_lport_ptr
1604 ha
->tgt
.tgt_ops
= &tcm_qla2xxx_template
;
1605 vha
->vha_tgt
.target_lport_ptr
= target_lport_ptr
;
1606 lport
->qla_vha
= vha
;
1611 static struct se_wwn
*tcm_qla2xxx_make_lport(
1612 struct target_fabric_configfs
*tf
,
1613 struct config_group
*group
,
1616 struct tcm_qla2xxx_lport
*lport
;
1620 if (tcm_qla2xxx_parse_wwn(name
, &wwpn
, 1) < 0)
1621 return ERR_PTR(-EINVAL
);
1623 lport
= kzalloc(sizeof(struct tcm_qla2xxx_lport
), GFP_KERNEL
);
1625 pr_err("Unable to allocate struct tcm_qla2xxx_lport\n");
1626 return ERR_PTR(-ENOMEM
);
1628 lport
->lport_wwpn
= wwpn
;
1629 tcm_qla2xxx_format_wwn(&lport
->lport_name
[0], TCM_QLA2XXX_NAMELEN
,
1631 sprintf(lport
->lport_naa_name
, "naa.%016llx", (unsigned long long) wwpn
);
1633 ret
= tcm_qla2xxx_init_lport(lport
);
1637 ret
= qlt_lport_register(lport
, wwpn
, 0, 0,
1638 tcm_qla2xxx_lport_register_cb
);
1642 return &lport
->lport_wwn
;
1644 vfree(lport
->lport_loopid_map
);
1645 btree_destroy32(&lport
->lport_fcport_map
);
1648 return ERR_PTR(ret
);
1651 static void tcm_qla2xxx_drop_lport(struct se_wwn
*wwn
)
1653 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1654 struct tcm_qla2xxx_lport
, lport_wwn
);
1655 struct scsi_qla_host
*vha
= lport
->qla_vha
;
1656 struct se_node_acl
*node
;
1660 * Call into qla2x_target.c LLD logic to complete the
1661 * shutdown of struct qla_tgt after the call to
1662 * qlt_stop_phase1() from tcm_qla2xxx_drop_tpg() above..
1664 if (vha
->vha_tgt
.qla_tgt
&& !vha
->vha_tgt
.qla_tgt
->tgt_stopped
)
1665 qlt_stop_phase2(vha
->vha_tgt
.qla_tgt
);
1667 qlt_lport_deregister(vha
);
1669 vfree(lport
->lport_loopid_map
);
1670 btree_for_each_safe32(&lport
->lport_fcport_map
, key
, node
)
1671 btree_remove32(&lport
->lport_fcport_map
, key
);
1672 btree_destroy32(&lport
->lport_fcport_map
);
1676 static int tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host
*base_vha
,
1677 void *target_lport_ptr
,
1678 u64 npiv_wwpn
, u64 npiv_wwnn
)
1680 struct fc_vport
*vport
;
1681 struct Scsi_Host
*sh
= base_vha
->host
;
1682 struct scsi_qla_host
*npiv_vha
;
1683 struct tcm_qla2xxx_lport
*lport
=
1684 (struct tcm_qla2xxx_lport
*)target_lport_ptr
;
1685 struct tcm_qla2xxx_lport
*base_lport
=
1686 (struct tcm_qla2xxx_lport
*)base_vha
->vha_tgt
.target_lport_ptr
;
1687 struct tcm_qla2xxx_tpg
*base_tpg
;
1688 struct fc_vport_identifiers vport_id
;
1690 if (!qla_tgt_mode_enabled(base_vha
)) {
1691 pr_err("qla2xxx base_vha not enabled for target mode\n");
1695 if (!base_lport
|| !base_lport
->tpg_1
||
1696 !atomic_read(&base_lport
->tpg_1
->lport_tpg_enabled
)) {
1697 pr_err("qla2xxx base_lport or tpg_1 not available\n");
1700 base_tpg
= base_lport
->tpg_1
;
1702 memset(&vport_id
, 0, sizeof(vport_id
));
1703 vport_id
.port_name
= npiv_wwpn
;
1704 vport_id
.node_name
= npiv_wwnn
;
1705 vport_id
.roles
= FC_PORT_ROLE_FCP_INITIATOR
;
1706 vport_id
.vport_type
= FC_PORTTYPE_NPIV
;
1707 vport_id
.disable
= false;
1709 vport
= fc_vport_create(sh
, 0, &vport_id
);
1711 pr_err("fc_vport_create failed for qla2xxx_npiv\n");
1715 * Setup local pointer to NPIV vhba + target_lport_ptr
1717 npiv_vha
= (struct scsi_qla_host
*)vport
->dd_data
;
1718 npiv_vha
->vha_tgt
.target_lport_ptr
= target_lport_ptr
;
1719 lport
->qla_vha
= npiv_vha
;
1720 scsi_host_get(npiv_vha
->host
);
1725 static struct se_wwn
*tcm_qla2xxx_npiv_make_lport(
1726 struct target_fabric_configfs
*tf
,
1727 struct config_group
*group
,
1730 struct tcm_qla2xxx_lport
*lport
;
1731 u64 phys_wwpn
, npiv_wwpn
, npiv_wwnn
;
1735 snprintf(tmp
, 128, "%s", name
);
1737 p
= strchr(tmp
, '@');
1739 pr_err("Unable to locate NPIV '@' seperator\n");
1740 return ERR_PTR(-EINVAL
);
1744 if (tcm_qla2xxx_parse_wwn(tmp
, &phys_wwpn
, 1) < 0)
1745 return ERR_PTR(-EINVAL
);
1747 if (tcm_qla2xxx_npiv_parse_wwn(p
, strlen(p
)+1,
1748 &npiv_wwpn
, &npiv_wwnn
) < 0)
1749 return ERR_PTR(-EINVAL
);
1751 lport
= kzalloc(sizeof(struct tcm_qla2xxx_lport
), GFP_KERNEL
);
1753 pr_err("Unable to allocate struct tcm_qla2xxx_lport for NPIV\n");
1754 return ERR_PTR(-ENOMEM
);
1756 lport
->lport_npiv_wwpn
= npiv_wwpn
;
1757 lport
->lport_npiv_wwnn
= npiv_wwnn
;
1758 sprintf(lport
->lport_naa_name
, "naa.%016llx", (unsigned long long) npiv_wwpn
);
1760 ret
= tcm_qla2xxx_init_lport(lport
);
1764 ret
= qlt_lport_register(lport
, phys_wwpn
, npiv_wwpn
, npiv_wwnn
,
1765 tcm_qla2xxx_lport_register_npiv_cb
);
1769 return &lport
->lport_wwn
;
1771 vfree(lport
->lport_loopid_map
);
1772 btree_destroy32(&lport
->lport_fcport_map
);
1775 return ERR_PTR(ret
);
1778 static void tcm_qla2xxx_npiv_drop_lport(struct se_wwn
*wwn
)
1780 struct tcm_qla2xxx_lport
*lport
= container_of(wwn
,
1781 struct tcm_qla2xxx_lport
, lport_wwn
);
1782 struct scsi_qla_host
*npiv_vha
= lport
->qla_vha
;
1783 struct qla_hw_data
*ha
= npiv_vha
->hw
;
1784 scsi_qla_host_t
*base_vha
= pci_get_drvdata(ha
->pdev
);
1786 scsi_host_put(npiv_vha
->host
);
1788 * Notify libfc that we want to release the vha->fc_vport
1790 fc_vport_terminate(npiv_vha
->fc_vport
);
1791 scsi_host_put(base_vha
->host
);
1796 static ssize_t
tcm_qla2xxx_wwn_show_attr_version(
1797 struct target_fabric_configfs
*tf
,
1800 return sprintf(page
,
1801 "TCM QLOGIC QLA2XXX NPIV capable fabric module %s on %s/%s on "
1802 UTS_RELEASE
"\n", TCM_QLA2XXX_VERSION
, utsname()->sysname
,
1803 utsname()->machine
);
1806 TF_WWN_ATTR_RO(tcm_qla2xxx
, version
);
1808 static struct configfs_attribute
*tcm_qla2xxx_wwn_attrs
[] = {
1809 &tcm_qla2xxx_wwn_version
.attr
,
1813 static const struct target_core_fabric_ops tcm_qla2xxx_ops
= {
1814 .module
= THIS_MODULE
,
1816 .node_acl_size
= sizeof(struct tcm_qla2xxx_nacl
),
1817 .get_fabric_name
= tcm_qla2xxx_get_fabric_name
,
1818 .tpg_get_wwn
= tcm_qla2xxx_get_fabric_wwn
,
1819 .tpg_get_tag
= tcm_qla2xxx_get_tag
,
1820 .tpg_check_demo_mode
= tcm_qla2xxx_check_demo_mode
,
1821 .tpg_check_demo_mode_cache
= tcm_qla2xxx_check_demo_mode_cache
,
1822 .tpg_check_demo_mode_write_protect
=
1823 tcm_qla2xxx_check_demo_write_protect
,
1824 .tpg_check_prod_mode_write_protect
=
1825 tcm_qla2xxx_check_prod_write_protect
,
1826 .tpg_check_prot_fabric_only
= tcm_qla2xxx_check_prot_fabric_only
,
1827 .tpg_check_demo_mode_login_only
= tcm_qla2xxx_check_demo_mode_login_only
,
1828 .tpg_get_inst_index
= tcm_qla2xxx_tpg_get_inst_index
,
1829 .check_stop_free
= tcm_qla2xxx_check_stop_free
,
1830 .release_cmd
= tcm_qla2xxx_release_cmd
,
1831 .shutdown_session
= tcm_qla2xxx_shutdown_session
,
1832 .close_session
= tcm_qla2xxx_close_session
,
1833 .sess_get_index
= tcm_qla2xxx_sess_get_index
,
1834 .sess_get_initiator_sid
= NULL
,
1835 .write_pending
= tcm_qla2xxx_write_pending
,
1836 .write_pending_status
= tcm_qla2xxx_write_pending_status
,
1837 .set_default_node_attributes
= tcm_qla2xxx_set_default_node_attrs
,
1838 .get_cmd_state
= tcm_qla2xxx_get_cmd_state
,
1839 .queue_data_in
= tcm_qla2xxx_queue_data_in
,
1840 .queue_status
= tcm_qla2xxx_queue_status
,
1841 .queue_tm_rsp
= tcm_qla2xxx_queue_tm_rsp
,
1842 .aborted_task
= tcm_qla2xxx_aborted_task
,
1844 * Setup function pointers for generic logic in
1845 * target_core_fabric_configfs.c
1847 .fabric_make_wwn
= tcm_qla2xxx_make_lport
,
1848 .fabric_drop_wwn
= tcm_qla2xxx_drop_lport
,
1849 .fabric_make_tpg
= tcm_qla2xxx_make_tpg
,
1850 .fabric_drop_tpg
= tcm_qla2xxx_drop_tpg
,
1851 .fabric_init_nodeacl
= tcm_qla2xxx_init_nodeacl
,
1853 .tfc_wwn_attrs
= tcm_qla2xxx_wwn_attrs
,
1854 .tfc_tpg_base_attrs
= tcm_qla2xxx_tpg_attrs
,
1855 .tfc_tpg_attrib_attrs
= tcm_qla2xxx_tpg_attrib_attrs
,
1858 static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops
= {
1859 .module
= THIS_MODULE
,
1860 .name
= "qla2xxx_npiv",
1861 .node_acl_size
= sizeof(struct tcm_qla2xxx_nacl
),
1862 .get_fabric_name
= tcm_qla2xxx_npiv_get_fabric_name
,
1863 .tpg_get_wwn
= tcm_qla2xxx_get_fabric_wwn
,
1864 .tpg_get_tag
= tcm_qla2xxx_get_tag
,
1865 .tpg_check_demo_mode
= tcm_qla2xxx_check_demo_mode
,
1866 .tpg_check_demo_mode_cache
= tcm_qla2xxx_check_demo_mode_cache
,
1867 .tpg_check_demo_mode_write_protect
= tcm_qla2xxx_check_demo_mode
,
1868 .tpg_check_prod_mode_write_protect
=
1869 tcm_qla2xxx_check_prod_write_protect
,
1870 .tpg_check_demo_mode_login_only
= tcm_qla2xxx_check_demo_mode_login_only
,
1871 .tpg_get_inst_index
= tcm_qla2xxx_tpg_get_inst_index
,
1872 .check_stop_free
= tcm_qla2xxx_check_stop_free
,
1873 .release_cmd
= tcm_qla2xxx_release_cmd
,
1874 .shutdown_session
= tcm_qla2xxx_shutdown_session
,
1875 .close_session
= tcm_qla2xxx_close_session
,
1876 .sess_get_index
= tcm_qla2xxx_sess_get_index
,
1877 .sess_get_initiator_sid
= NULL
,
1878 .write_pending
= tcm_qla2xxx_write_pending
,
1879 .write_pending_status
= tcm_qla2xxx_write_pending_status
,
1880 .set_default_node_attributes
= tcm_qla2xxx_set_default_node_attrs
,
1881 .get_cmd_state
= tcm_qla2xxx_get_cmd_state
,
1882 .queue_data_in
= tcm_qla2xxx_queue_data_in
,
1883 .queue_status
= tcm_qla2xxx_queue_status
,
1884 .queue_tm_rsp
= tcm_qla2xxx_queue_tm_rsp
,
1885 .aborted_task
= tcm_qla2xxx_aborted_task
,
1887 * Setup function pointers for generic logic in
1888 * target_core_fabric_configfs.c
1890 .fabric_make_wwn
= tcm_qla2xxx_npiv_make_lport
,
1891 .fabric_drop_wwn
= tcm_qla2xxx_npiv_drop_lport
,
1892 .fabric_make_tpg
= tcm_qla2xxx_npiv_make_tpg
,
1893 .fabric_drop_tpg
= tcm_qla2xxx_drop_tpg
,
1894 .fabric_init_nodeacl
= tcm_qla2xxx_init_nodeacl
,
1896 .tfc_wwn_attrs
= tcm_qla2xxx_wwn_attrs
,
1897 .tfc_tpg_base_attrs
= tcm_qla2xxx_npiv_tpg_attrs
,
1900 static int tcm_qla2xxx_register_configfs(void)
1904 pr_debug("TCM QLOGIC QLA2XXX fabric module %s on %s/%s on "
1905 UTS_RELEASE
"\n", TCM_QLA2XXX_VERSION
, utsname()->sysname
,
1906 utsname()->machine
);
1908 ret
= target_register_template(&tcm_qla2xxx_ops
);
1912 ret
= target_register_template(&tcm_qla2xxx_npiv_ops
);
1916 tcm_qla2xxx_free_wq
= alloc_workqueue("tcm_qla2xxx_free",
1918 if (!tcm_qla2xxx_free_wq
) {
1920 goto out_fabric_npiv
;
1923 tcm_qla2xxx_cmd_wq
= alloc_workqueue("tcm_qla2xxx_cmd", 0, 0);
1924 if (!tcm_qla2xxx_cmd_wq
) {
1932 destroy_workqueue(tcm_qla2xxx_free_wq
);
1934 target_unregister_template(&tcm_qla2xxx_npiv_ops
);
1936 target_unregister_template(&tcm_qla2xxx_ops
);
1940 static void tcm_qla2xxx_deregister_configfs(void)
1942 destroy_workqueue(tcm_qla2xxx_cmd_wq
);
1943 destroy_workqueue(tcm_qla2xxx_free_wq
);
1945 target_unregister_template(&tcm_qla2xxx_ops
);
1946 target_unregister_template(&tcm_qla2xxx_npiv_ops
);
1949 static int __init
tcm_qla2xxx_init(void)
1953 ret
= tcm_qla2xxx_register_configfs();
1960 static void __exit
tcm_qla2xxx_exit(void)
1962 tcm_qla2xxx_deregister_configfs();
1965 MODULE_DESCRIPTION("TCM QLA2XXX series NPIV enabled fabric driver");
1966 MODULE_LICENSE("GPL");
1967 module_init(tcm_qla2xxx_init
);
1968 module_exit(tcm_qla2xxx_exit
);