]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/scsi/qla2xxx/tcm_qla2xxx.c
iscsi-target: Add tpg_enabled_sendtargets for disabled discovery
[mirror_ubuntu-artful-kernel.git] / drivers / scsi / qla2xxx / tcm_qla2xxx.c
CommitLineData
75f8c1f6
NB
1/*******************************************************************************
2 * This file contains tcm implementation using v4 configfs fabric infrastructure
3 * for QLogic target mode HBAs
4 *
4c76251e 5 * (c) Copyright 2010-2013 Datera, Inc.
75f8c1f6 6 *
4c76251e 7 * Author: Nicholas A. Bellinger <nab@daterainc.com>
75f8c1f6
NB
8 *
9 * tcm_qla2xxx_parse_wwn() and tcm_qla2xxx_format_wwn() contains code from
10 * the TCM_FC / Open-FCoE.org fabric module.
11 *
12 * Copyright (c) 2010 Cisco Systems, Inc
13 *
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.
18 *
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 ****************************************************************************/
24
25
26#include <linux/module.h>
27#include <linux/moduleparam.h>
28#include <generated/utsrelease.h>
29#include <linux/utsname.h>
5538d294 30#include <linux/vmalloc.h>
75f8c1f6
NB
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>
75f8c1f6
NB
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>
75f8c1f6
NB
47#include <target/configfs_macros.h>
48
49#include "qla_def.h"
50#include "qla_target.h"
51#include "tcm_qla2xxx.h"
52
4d6609c4
HM
53static struct workqueue_struct *tcm_qla2xxx_free_wq;
54static struct workqueue_struct *tcm_qla2xxx_cmd_wq;
55
75f8c1f6
NB
56/*
57 * Parse WWN.
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.
61 */
62static ssize_t tcm_qla2xxx_parse_wwn(const char *name, u64 *wwn, int strict)
63{
64 const char *cp;
65 char c;
66 u32 nibble;
67 u32 byte = 0;
68 u32 pos = 0;
69 u32 err;
70
71 *wwn = 0;
72 for (cp = name; cp < &name[TCM_QLA2XXX_NAMELEN - 1]; cp++) {
73 c = *cp;
74 if (c == '\n' && cp[1] == '\0')
75 continue;
76 if (strict && pos++ == 2 && byte++ < 7) {
77 pos = 0;
78 if (c == ':')
79 continue;
80 err = 1;
81 goto fail;
82 }
83 if (c == '\0') {
84 err = 2;
85 if (strict && byte != 8)
86 goto fail;
87 return cp - name;
88 }
89 err = 3;
90 if (isdigit(c))
91 nibble = c - '0';
92 else if (isxdigit(c) && (islower(c) || !strict))
93 nibble = tolower(c) - 'a' + 10;
94 else
95 goto fail;
96 *wwn = (*wwn << 4) | nibble;
97 }
98 err = 4;
99fail:
100 pr_debug("err %u len %zu pos %u byte %u\n",
101 err, cp - name, pos, byte);
102 return -1;
103}
104
105static ssize_t tcm_qla2xxx_format_wwn(char *buf, size_t len, u64 wwn)
106{
107 u8 b[8];
108
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]);
113}
114
115static char *tcm_qla2xxx_get_fabric_name(void)
116{
117 return "qla2xxx";
118}
119
120/*
121 * From drivers/scsi/scsi_transport_fc.c:fc_parse_wwn
122 */
123static int tcm_qla2xxx_npiv_extract_wwn(const char *ns, u64 *nm)
124{
d4f75b56 125 unsigned int i, j;
75f8c1f6
NB
126 u8 wwn[8];
127
128 memset(wwn, 0, sizeof(wwn));
129
130 /* Validate and store the new name */
131 for (i = 0, j = 0; i < 16; i++) {
d4f75b56
RD
132 int value;
133
75f8c1f6
NB
134 value = hex_to_bin(*ns++);
135 if (value >= 0)
136 j = (j << 4) | value;
137 else
138 return -EINVAL;
139
140 if (i % 2) {
141 wwn[i/2] = j & 0xff;
142 j = 0;
143 }
144 }
145
146 *nm = wwn_to_u64(wwn);
147 return 0;
148}
149
150/*
151 * This parsing logic follows drivers/scsi/scsi_transport_fc.c:
152 * store_fc_host_vport_create()
153 */
154static int tcm_qla2xxx_npiv_parse_wwn(
155 const char *name,
156 size_t count,
157 u64 *wwpn,
158 u64 *wwnn)
159{
160 unsigned int cnt = count;
161 int rc;
162
163 *wwpn = 0;
164 *wwnn = 0;
165
166 /* count may include a LF at end of string */
0e8cd71c 167 if (name[cnt-1] == '\n' || name[cnt-1] == 0)
75f8c1f6
NB
168 cnt--;
169
170 /* validate we have enough characters for WWPN */
171 if ((cnt != (16+1+16)) || (name[16] != ':'))
172 return -EINVAL;
173
174 rc = tcm_qla2xxx_npiv_extract_wwn(&name[0], wwpn);
175 if (rc != 0)
176 return rc;
177
178 rc = tcm_qla2xxx_npiv_extract_wwn(&name[17], wwnn);
179 if (rc != 0)
180 return rc;
181
182 return 0;
183}
184
75f8c1f6
NB
185static char *tcm_qla2xxx_npiv_get_fabric_name(void)
186{
187 return "qla2xxx_npiv";
188}
189
75f8c1f6
NB
190static char *tcm_qla2xxx_get_fabric_wwn(struct se_portal_group *se_tpg)
191{
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;
195
c046aa0f 196 return lport->lport_naa_name;
75f8c1f6
NB
197}
198
75f8c1f6
NB
199static u16 tcm_qla2xxx_get_tag(struct se_portal_group *se_tpg)
200{
201 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
202 struct tcm_qla2xxx_tpg, se_tpg);
203 return tpg->lport_tpgt;
204}
205
75f8c1f6
NB
206static int tcm_qla2xxx_check_demo_mode(struct se_portal_group *se_tpg)
207{
208 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
209 struct tcm_qla2xxx_tpg, se_tpg);
210
a309f489 211 return tpg->tpg_attrib.generate_node_acls;
75f8c1f6
NB
212}
213
214static int tcm_qla2xxx_check_demo_mode_cache(struct se_portal_group *se_tpg)
215{
216 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
217 struct tcm_qla2xxx_tpg, se_tpg);
218
a309f489 219 return tpg->tpg_attrib.cache_dynamic_acls;
75f8c1f6
NB
220}
221
222static int tcm_qla2xxx_check_demo_write_protect(struct se_portal_group *se_tpg)
223{
224 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
225 struct tcm_qla2xxx_tpg, se_tpg);
226
a309f489 227 return tpg->tpg_attrib.demo_mode_write_protect;
75f8c1f6
NB
228}
229
230static int tcm_qla2xxx_check_prod_write_protect(struct se_portal_group *se_tpg)
231{
232 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
233 struct tcm_qla2xxx_tpg, se_tpg);
234
a309f489 235 return tpg->tpg_attrib.prod_mode_write_protect;
75f8c1f6
NB
236}
237
de04a8aa
AG
238static int tcm_qla2xxx_check_demo_mode_login_only(struct se_portal_group *se_tpg)
239{
240 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
241 struct tcm_qla2xxx_tpg, se_tpg);
242
a309f489 243 return tpg->tpg_attrib.demo_mode_login_only;
de04a8aa
AG
244}
245
64b16887
NB
246static int tcm_qla2xxx_check_prot_fabric_only(struct se_portal_group *se_tpg)
247{
248 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
249 struct tcm_qla2xxx_tpg, se_tpg);
250
251 return tpg->tpg_attrib.fabric_prot_type;
252}
253
75f8c1f6
NB
254static u32 tcm_qla2xxx_tpg_get_inst_index(struct se_portal_group *se_tpg)
255{
256 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
257 struct tcm_qla2xxx_tpg, se_tpg);
258
259 return tpg->lport_tpgt;
260}
261
262static void tcm_qla2xxx_complete_mcmd(struct work_struct *work)
263{
264 struct qla_tgt_mgmt_cmd *mcmd = container_of(work,
265 struct qla_tgt_mgmt_cmd, free_work);
266
267 transport_generic_free_cmd(&mcmd->se_cmd, 0);
268}
269
270/*
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
274 */
275static void tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd *mcmd)
276{
277 INIT_WORK(&mcmd->free_work, tcm_qla2xxx_complete_mcmd);
278 queue_work(tcm_qla2xxx_free_wq, &mcmd->free_work);
279}
280
281static void tcm_qla2xxx_complete_free(struct work_struct *work)
282{
283 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
284
e07f8f65
SK
285 cmd->cmd_in_wq = 0;
286
287 WARN_ON(cmd->cmd_flags & BIT_16);
288
289 cmd->cmd_flags |= BIT_16;
75f8c1f6
NB
290 transport_generic_free_cmd(&cmd->se_cmd, 0);
291}
292
293/*
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
297 */
298static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd *cmd)
299{
e07f8f65 300 cmd->cmd_in_wq = 1;
75f8c1f6
NB
301 INIT_WORK(&cmd->work, tcm_qla2xxx_complete_free);
302 queue_work(tcm_qla2xxx_free_wq, &cmd->work);
303}
304
305/*
306 * Called from struct target_core_fabric_ops->check_stop_free() context
307 */
308static int tcm_qla2xxx_check_stop_free(struct se_cmd *se_cmd)
309{
e07f8f65
SK
310 struct qla_tgt_cmd *cmd;
311
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;
315 }
316
afc16604 317 return target_put_sess_cmd(se_cmd);
75f8c1f6
NB
318}
319
320/* tcm_qla2xxx_release_cmd - Callback from TCM Core to release underlying
321 * fabric descriptor @se_cmd command to release
322 */
323static void tcm_qla2xxx_release_cmd(struct se_cmd *se_cmd)
324{
325 struct qla_tgt_cmd *cmd;
326
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);
330 qlt_free_mcmd(mcmd);
331 return;
332 }
333
334 cmd = container_of(se_cmd, struct qla_tgt_cmd, se_cmd);
335 qlt_free_cmd(cmd);
336}
337
338static int tcm_qla2xxx_shutdown_session(struct se_session *se_sess)
339{
340 struct qla_tgt_sess *sess = se_sess->fabric_sess_ptr;
341 struct scsi_qla_host *vha;
342 unsigned long flags;
343
344 BUG_ON(!sess);
345 vha = sess->vha;
346
347 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
1c7b13fe 348 target_sess_cmd_list_set_waiting(se_sess);
75f8c1f6
NB
349 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
350
351 return 1;
352}
353
354static void tcm_qla2xxx_close_session(struct se_session *se_sess)
355{
356 struct qla_tgt_sess *sess = se_sess->fabric_sess_ptr;
357 struct scsi_qla_host *vha;
358 unsigned long flags;
359
360 BUG_ON(!sess);
361 vha = sess->vha;
362
363 spin_lock_irqsave(&vha->hw->hardware_lock, flags);
364 qlt_unreg_sess(sess);
365 spin_unlock_irqrestore(&vha->hw->hardware_lock, flags);
366}
367
368static u32 tcm_qla2xxx_sess_get_index(struct se_session *se_sess)
369{
370 return 0;
371}
372
75f8c1f6
NB
373static int tcm_qla2xxx_write_pending(struct se_cmd *se_cmd)
374{
375 struct qla_tgt_cmd *cmd = container_of(se_cmd,
376 struct qla_tgt_cmd, se_cmd);
377
378 cmd->bufflen = se_cmd->data_length;
b3faa2e8 379 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
75f8c1f6
NB
380
381 cmd->sg_cnt = se_cmd->t_data_nents;
382 cmd->sg = se_cmd->t_data_sg;
383
f83adb61
QT
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;
387 se_cmd->pi_err = 0;
388
75f8c1f6
NB
389 /*
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.
392 */
393 return qlt_rdy_to_xfer(cmd);
394}
395
396static int tcm_qla2xxx_write_pending_status(struct se_cmd *se_cmd)
397{
398 unsigned long flags;
399 /*
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().
402 */
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,
408 3000);
409 return 0;
410 }
411 spin_unlock_irqrestore(&se_cmd->t_state_lock, flags);
412
413 return 0;
414}
415
416static void tcm_qla2xxx_set_default_node_attrs(struct se_node_acl *nacl)
417{
418 return;
419}
420
75f8c1f6
NB
421static int tcm_qla2xxx_get_cmd_state(struct se_cmd *se_cmd)
422{
423 return 0;
424}
425
426/*
427 * Called from process context in qla_target.c:qlt_do_work() code
428 */
429static 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)
432{
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;
437
438 if (bidi)
439 flags |= TARGET_SCF_BIDI_OP;
440
441 sess = cmd->sess;
442 if (!sess) {
443 pr_err("Unable to locate struct qla_tgt_sess from qla_tgt_cmd\n");
444 return -EINVAL;
445 }
446
447 se_sess = sess->se_sess;
448 if (!se_sess) {
449 pr_err("Unable to locate active struct se_session\n");
450 return -EINVAL;
451 }
452
d6dfc868 453 return target_submit_cmd(se_cmd, se_sess, cdb, &cmd->sense_buffer[0],
75f8c1f6
NB
454 cmd->unpacked_lun, data_length, fcp_task_attr,
455 data_dir, flags);
75f8c1f6
NB
456}
457
43381ce8 458static void tcm_qla2xxx_handle_data_work(struct work_struct *work)
75f8c1f6
NB
459{
460 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
75f8c1f6 461
75f8c1f6
NB
462 /*
463 * Ensure that the complete FCP WRITE payload has been received.
464 * Otherwise return an exception via CHECK_CONDITION status.
465 */
e07f8f65
SK
466 cmd->cmd_in_wq = 0;
467 cmd->cmd_flags |= BIT_11;
75f8c1f6
NB
468 if (!cmd->write_data_transferred) {
469 /*
470 * Check if se_cmd has already been aborted via LUN_RESET, and
471 * waiting upon completion in tcm_qla2xxx_write_pending_status()
472 */
43381ce8
CH
473 if (cmd->se_cmd.transport_state & CMD_T_ABORTED) {
474 complete(&cmd->se_cmd.t_transport_stop_comp);
475 return;
75f8c1f6 476 }
75f8c1f6 477
f83adb61
QT
478 if (cmd->se_cmd.pi_err)
479 transport_generic_request_failure(&cmd->se_cmd,
480 cmd->se_cmd.pi_err);
481 else
482 transport_generic_request_failure(&cmd->se_cmd,
483 TCM_CHECK_CONDITION_ABORT_CMD);
484
43381ce8 485 return;
75f8c1f6 486 }
43381ce8
CH
487
488 return target_execute_cmd(&cmd->se_cmd);
489}
490
491/*
492 * Called from qla_target.c:qlt_do_ctio_completion()
493 */
494static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd *cmd)
495{
e07f8f65
SK
496 cmd->cmd_flags |= BIT_10;
497 cmd->cmd_in_wq = 1;
43381ce8
CH
498 INIT_WORK(&cmd->work, tcm_qla2xxx_handle_data_work);
499 queue_work(tcm_qla2xxx_free_wq, &cmd->work);
75f8c1f6
NB
500}
501
f83adb61
QT
502static void tcm_qla2xxx_handle_dif_work(struct work_struct *work)
503{
504 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
505
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.
509 */
510 kref_get(&cmd->se_cmd.cmd_kref);
511 transport_generic_request_failure(&cmd->se_cmd, cmd->se_cmd.pi_err);
512}
513
514/*
515 * Called from qla_target.c:qlt_do_ctio_completion()
516 */
517static void tcm_qla2xxx_handle_dif_err(struct qla_tgt_cmd *cmd)
518{
519 INIT_WORK(&cmd->work, tcm_qla2xxx_handle_dif_work);
520 queue_work(tcm_qla2xxx_free_wq, &cmd->work);
521}
522
75f8c1f6
NB
523/*
524 * Called from qla_target.c:qlt_issue_task_mgmt()
525 */
9389c3c9
RD
526static int tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd *mcmd, uint32_t lun,
527 uint8_t tmr_func, uint32_t tag)
75f8c1f6
NB
528{
529 struct qla_tgt_sess *sess = mcmd->sess;
530 struct se_cmd *se_cmd = &mcmd->se_cmd;
531
532 return target_submit_tmr(se_cmd, sess->se_sess, NULL, lun, mcmd,
533 tmr_func, GFP_ATOMIC, tag, TARGET_SCF_ACK_KREF);
534}
535
536static int tcm_qla2xxx_queue_data_in(struct se_cmd *se_cmd)
537{
538 struct qla_tgt_cmd *cmd = container_of(se_cmd,
539 struct qla_tgt_cmd, se_cmd);
540
e07f8f65 541 cmd->cmd_flags |= BIT_4;
75f8c1f6 542 cmd->bufflen = se_cmd->data_length;
b3faa2e8 543 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
75f8c1f6
NB
544 cmd->aborted = (se_cmd->transport_state & CMD_T_ABORTED);
545
546 cmd->sg_cnt = se_cmd->t_data_nents;
547 cmd->sg = se_cmd->t_data_sg;
548 cmd->offset = 0;
e07f8f65 549 cmd->cmd_flags |= BIT_3;
75f8c1f6 550
f83adb61
QT
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;
554 se_cmd->pi_err = 0;
555
75f8c1f6
NB
556 /*
557 * Now queue completed DATA_IN the qla2xxx LLD and response ring
558 */
559 return qlt_xmit_response(cmd, QLA_TGT_XMIT_DATA|QLA_TGT_XMIT_STATUS,
560 se_cmd->scsi_status);
561}
562
563static int tcm_qla2xxx_queue_status(struct se_cmd *se_cmd)
564{
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;
568
569 cmd->bufflen = se_cmd->data_length;
570 cmd->sg = NULL;
571 cmd->sg_cnt = 0;
572 cmd->offset = 0;
b3faa2e8 573 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
75f8c1f6 574 cmd->aborted = (se_cmd->transport_state & CMD_T_ABORTED);
e07f8f65
SK
575 if (cmd->cmd_flags & BIT_5) {
576 pr_crit("Bit_5 already set for cmd = %p.\n", cmd);
577 dump_stack();
578 }
579 cmd->cmd_flags |= BIT_5;
75f8c1f6
NB
580
581 if (se_cmd->data_direction == DMA_FROM_DEVICE) {
582 /*
583 * For FCP_READ with CHECK_CONDITION status, clear cmd->bufflen
584 * for qla_tgt_xmit_response LLD code
585 */
b5aff3d2
RD
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;
589 }
75f8c1f6 590 se_cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
b5aff3d2 591 se_cmd->residual_count += se_cmd->data_length;
75f8c1f6
NB
592
593 cmd->bufflen = 0;
594 }
595 /*
596 * Now queue status response to qla2xxx LLD code and response ring
597 */
598 return qlt_xmit_response(cmd, xmit_type, se_cmd->scsi_status);
599}
600
b79fafac 601static void tcm_qla2xxx_queue_tm_rsp(struct se_cmd *se_cmd)
75f8c1f6
NB
602{
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);
606
607 pr_debug("queue_tm_rsp: mcmd: %p func: 0x%02x response: 0x%02x\n",
608 mcmd, se_tmr->function, se_tmr->response);
609 /*
610 * Do translation between TCM TM response codes and
611 * QLA2xxx FC TM response codes.
612 */
613 switch (se_tmr->response) {
614 case TMR_FUNCTION_COMPLETE:
615 mcmd->fc_tm_rsp = FC_TM_SUCCESS;
616 break;
617 case TMR_TASK_DOES_NOT_EXIST:
618 mcmd->fc_tm_rsp = FC_TM_BAD_CMD;
619 break;
620 case TMR_FUNCTION_REJECTED:
621 mcmd->fc_tm_rsp = FC_TM_REJECT;
622 break;
623 case TMR_LUN_DOES_NOT_EXIST:
624 default:
625 mcmd->fc_tm_rsp = FC_TM_FAILED;
626 break;
627 }
628 /*
629 * Queue the TM response to QLA2xxx LLD to build a
630 * CTIO response packet.
631 */
632 qlt_xmit_tm_rsp(mcmd);
75f8c1f6
NB
633}
634
131e6abc
NB
635static void tcm_qla2xxx_aborted_task(struct se_cmd *se_cmd)
636{
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;
641
642 if (!cmd->sg_mapped)
643 return;
644
645 pci_unmap_sg(ha->pdev, cmd->sg, cmd->sg_cnt, cmd->dma_data_direction);
646 cmd->sg_mapped = 0;
647}
648
f2d5d9b9
NB
649static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *,
650 struct tcm_qla2xxx_nacl *, struct qla_tgt_sess *);
75f8c1f6
NB
651/*
652 * Expected to be called with struct qla_hw_data->hardware_lock held
653 */
654static void tcm_qla2xxx_clear_nacl_from_fcport_map(struct qla_tgt_sess *sess)
655{
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);
663 void *node;
664
665 pr_debug("fc_rport domain: port_id 0x%06x\n", nacl->nport_id);
666
667 node = btree_remove32(&lport->lport_fcport_map, nacl->nport_id);
f4c24db1
JE
668 if (WARN_ON(node && (node != se_nacl))) {
669 /*
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.
674 */
675 btree_insert32(&lport->lport_fcport_map, nacl->nport_id,
676 node, GFP_ATOMIC);
677 }
75f8c1f6
NB
678
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);
f2d5d9b9
NB
681 /*
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.
684 *
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.
689 */
690 tcm_qla2xxx_clear_sess_lookup(lport, nacl, sess);
75f8c1f6
NB
691}
692
aaf68b75
JE
693static void tcm_qla2xxx_release_session(struct kref *kref)
694{
695 struct se_session *se_sess = container_of(kref,
696 struct se_session, sess_kref);
697
698 qlt_unreg_sess(se_sess->fabric_sess_ptr);
699}
700
75f8c1f6
NB
701static void tcm_qla2xxx_put_sess(struct qla_tgt_sess *sess)
702{
0e8cd71c
SK
703 if (!sess)
704 return;
705
08234e3a
JE
706 assert_spin_locked(&sess->vha->hw->hardware_lock);
707 kref_put(&sess->se_sess->sess_kref, tcm_qla2xxx_release_session);
75f8c1f6
NB
708}
709
710static void tcm_qla2xxx_shutdown_sess(struct qla_tgt_sess *sess)
711{
08234e3a
JE
712 assert_spin_locked(&sess->vha->hw->hardware_lock);
713 target_sess_cmd_list_set_waiting(sess->se_sess);
75f8c1f6
NB
714}
715
c7d6a803
CH
716static int tcm_qla2xxx_init_nodeacl(struct se_node_acl *se_nacl,
717 const char *name)
75f8c1f6 718{
c7d6a803
CH
719 struct tcm_qla2xxx_nacl *nacl =
720 container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
75f8c1f6 721 u64 wwnn;
75f8c1f6
NB
722
723 if (tcm_qla2xxx_parse_wwn(name, &wwnn, 1) < 0)
c7d6a803 724 return -EINVAL;
75f8c1f6 725
75f8c1f6
NB
726 nacl->nport_wwnn = wwnn;
727 tcm_qla2xxx_format_wwn(&nacl->nport_name[0], TCM_QLA2XXX_NAMELEN, wwnn);
75f8c1f6 728
c7d6a803 729 return 0;
75f8c1f6
NB
730}
731
732/* Start items for tcm_qla2xxx_tpg_attrib_cit */
733
734#define DEF_QLA_TPG_ATTRIB(name) \
735 \
736static ssize_t tcm_qla2xxx_tpg_attrib_show_##name( \
737 struct se_portal_group *se_tpg, \
738 char *page) \
739{ \
740 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
741 struct tcm_qla2xxx_tpg, se_tpg); \
742 \
a309f489 743 return sprintf(page, "%u\n", tpg->tpg_attrib.name); \
75f8c1f6
NB
744} \
745 \
746static ssize_t tcm_qla2xxx_tpg_attrib_store_##name( \
747 struct se_portal_group *se_tpg, \
748 const char *page, \
749 size_t count) \
750{ \
751 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
752 struct tcm_qla2xxx_tpg, se_tpg); \
753 unsigned long val; \
754 int ret; \
755 \
756 ret = kstrtoul(page, 0, &val); \
757 if (ret < 0) { \
758 pr_err("kstrtoul() failed with" \
759 " ret: %d\n", ret); \
760 return -EINVAL; \
761 } \
762 ret = tcm_qla2xxx_set_attrib_##name(tpg, val); \
763 \
764 return (!ret) ? count : -EINVAL; \
765}
766
767#define DEF_QLA_TPG_ATTR_BOOL(_name) \
768 \
769static int tcm_qla2xxx_set_attrib_##_name( \
770 struct tcm_qla2xxx_tpg *tpg, \
771 unsigned long val) \
772{ \
773 struct tcm_qla2xxx_tpg_attrib *a = &tpg->tpg_attrib; \
774 \
775 if ((val != 0) && (val != 1)) { \
776 pr_err("Illegal boolean value %lu\n", val); \
777 return -EINVAL; \
778 } \
779 \
780 a->_name = val; \
781 return 0; \
782}
783
784#define QLA_TPG_ATTR(_name, _mode) \
785 TF_TPG_ATTRIB_ATTR(tcm_qla2xxx, _name, _mode);
786
787/*
788 * Define tcm_qla2xxx_tpg_attrib_s_generate_node_acls
789 */
790DEF_QLA_TPG_ATTR_BOOL(generate_node_acls);
791DEF_QLA_TPG_ATTRIB(generate_node_acls);
792QLA_TPG_ATTR(generate_node_acls, S_IRUGO | S_IWUSR);
793
794/*
795 Define tcm_qla2xxx_attrib_s_cache_dynamic_acls
796 */
797DEF_QLA_TPG_ATTR_BOOL(cache_dynamic_acls);
798DEF_QLA_TPG_ATTRIB(cache_dynamic_acls);
799QLA_TPG_ATTR(cache_dynamic_acls, S_IRUGO | S_IWUSR);
800
801/*
802 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_write_protect
803 */
804DEF_QLA_TPG_ATTR_BOOL(demo_mode_write_protect);
805DEF_QLA_TPG_ATTRIB(demo_mode_write_protect);
806QLA_TPG_ATTR(demo_mode_write_protect, S_IRUGO | S_IWUSR);
807
808/*
809 * Define tcm_qla2xxx_tpg_attrib_s_prod_mode_write_protect
810 */
811DEF_QLA_TPG_ATTR_BOOL(prod_mode_write_protect);
812DEF_QLA_TPG_ATTRIB(prod_mode_write_protect);
813QLA_TPG_ATTR(prod_mode_write_protect, S_IRUGO | S_IWUSR);
814
de04a8aa
AG
815/*
816 * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_login_only
817 */
818DEF_QLA_TPG_ATTR_BOOL(demo_mode_login_only);
819DEF_QLA_TPG_ATTRIB(demo_mode_login_only);
820QLA_TPG_ATTR(demo_mode_login_only, S_IRUGO | S_IWUSR);
821
75f8c1f6
NB
822static 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,
de04a8aa 827 &tcm_qla2xxx_tpg_attrib_demo_mode_login_only.attr,
75f8c1f6
NB
828 NULL,
829};
830
831/* End items for tcm_qla2xxx_tpg_attrib_cit */
832
833static ssize_t tcm_qla2xxx_tpg_show_enable(
834 struct se_portal_group *se_tpg,
835 char *page)
836{
837 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
838 struct tcm_qla2xxx_tpg, se_tpg);
839
840 return snprintf(page, PAGE_SIZE, "%d\n",
841 atomic_read(&tpg->lport_tpg_enabled));
842}
843
7474f52a
NB
844static void tcm_qla2xxx_depend_tpg(struct work_struct *work)
845{
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;
850
d588cf8f 851 if (!target_depend_item(&se_tpg->tpg_group.cg_item)) {
7474f52a
NB
852 atomic_set(&base_tpg->lport_tpg_enabled, 1);
853 qlt_enable_vha(base_vha);
854 }
855 complete(&base_tpg->tpg_base_comp);
856}
857
858static void tcm_qla2xxx_undepend_tpg(struct work_struct *work)
859{
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;
864
865 if (!qlt_stop_phase1(base_vha->vha_tgt.qla_tgt)) {
866 atomic_set(&base_tpg->lport_tpg_enabled, 0);
d588cf8f 867 target_undepend_item(&se_tpg->tpg_group.cg_item);
7474f52a
NB
868 }
869 complete(&base_tpg->tpg_base_comp);
870}
871
75f8c1f6
NB
872static ssize_t tcm_qla2xxx_tpg_store_enable(
873 struct se_portal_group *se_tpg,
874 const char *page,
875 size_t count)
876{
75f8c1f6
NB
877 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
878 struct tcm_qla2xxx_tpg, se_tpg);
879 unsigned long op;
880 int rc;
881
882 rc = kstrtoul(page, 0, &op);
883 if (rc < 0) {
884 pr_err("kstrtoul() returned %d\n", rc);
885 return -EINVAL;
886 }
887 if ((op != 1) && (op != 0)) {
888 pr_err("Illegal value for tpg_enable: %lu\n", op);
889 return -EINVAL;
890 }
75f8c1f6 891 if (op) {
7474f52a
NB
892 if (atomic_read(&tpg->lport_tpg_enabled))
893 return -EEXIST;
894
895 INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_depend_tpg);
75f8c1f6 896 } else {
7474f52a
NB
897 if (!atomic_read(&tpg->lport_tpg_enabled))
898 return count;
899
900 INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_undepend_tpg);
75f8c1f6 901 }
7474f52a
NB
902 init_completion(&tpg->tpg_base_comp);
903 schedule_work(&tpg->tpg_base_work);
904 wait_for_completion(&tpg->tpg_base_comp);
75f8c1f6 905
7474f52a
NB
906 if (op) {
907 if (!atomic_read(&tpg->lport_tpg_enabled))
908 return -ENODEV;
909 } else {
910 if (atomic_read(&tpg->lport_tpg_enabled))
911 return -EPERM;
912 }
75f8c1f6
NB
913 return count;
914}
915
916TF_TPG_BASE_ATTR(tcm_qla2xxx, enable, S_IRUGO | S_IWUSR);
917
d23dbaaa
NB
918static ssize_t tcm_qla2xxx_tpg_show_dynamic_sessions(
919 struct se_portal_group *se_tpg,
920 char *page)
921{
922 return target_show_dynamic_sessions(se_tpg, page);
923}
924
925TF_TPG_BASE_ATTR_RO(tcm_qla2xxx, dynamic_sessions);
926
64b16887
NB
927static ssize_t tcm_qla2xxx_tpg_store_fabric_prot_type(
928 struct se_portal_group *se_tpg,
929 const char *page,
930 size_t count)
931{
932 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
933 struct tcm_qla2xxx_tpg, se_tpg);
934 unsigned long val;
935 int ret = kstrtoul(page, 0, &val);
936
937 if (ret) {
938 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret);
939 return ret;
940 }
941 if (val != 0 && val != 1 && val != 3) {
942 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val);
943 return -EINVAL;
944 }
945 tpg->tpg_attrib.fabric_prot_type = val;
946
947 return count;
948}
949
950static ssize_t tcm_qla2xxx_tpg_show_fabric_prot_type(
951 struct se_portal_group *se_tpg,
952 char *page)
953{
954 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
955 struct tcm_qla2xxx_tpg, se_tpg);
956
957 return sprintf(page, "%d\n", tpg->tpg_attrib.fabric_prot_type);
958}
959TF_TPG_BASE_ATTR(tcm_qla2xxx, fabric_prot_type, S_IRUGO | S_IWUSR);
960
75f8c1f6
NB
961static struct configfs_attribute *tcm_qla2xxx_tpg_attrs[] = {
962 &tcm_qla2xxx_tpg_enable.attr,
d23dbaaa 963 &tcm_qla2xxx_tpg_dynamic_sessions.attr,
64b16887 964 &tcm_qla2xxx_tpg_fabric_prot_type.attr,
75f8c1f6
NB
965 NULL,
966};
967
968static struct se_portal_group *tcm_qla2xxx_make_tpg(
969 struct se_wwn *wwn,
970 struct config_group *group,
971 const char *name)
972{
973 struct tcm_qla2xxx_lport *lport = container_of(wwn,
974 struct tcm_qla2xxx_lport, lport_wwn);
975 struct tcm_qla2xxx_tpg *tpg;
976 unsigned long tpgt;
977 int ret;
978
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);
983
0e8cd71c 984 if ((tpgt != 1)) {
75f8c1f6
NB
985 pr_err("In non NPIV mode, a single TPG=1 is used for HW port mappings\n");
986 return ERR_PTR(-ENOSYS);
987 }
988
989 tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL);
990 if (!tpg) {
991 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
992 return ERR_PTR(-ENOMEM);
993 }
994 tpg->lport = lport;
995 tpg->lport_tpgt = tpgt;
996 /*
997 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
998 * NodeACLs
999 */
a309f489
AG
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;
75f8c1f6 1004
bc0c94b1 1005 ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP);
75f8c1f6
NB
1006 if (ret < 0) {
1007 kfree(tpg);
1008 return NULL;
1009 }
0e8cd71c
SK
1010
1011 lport->tpg_1 = tpg;
75f8c1f6
NB
1012
1013 return &tpg->se_tpg;
1014}
1015
1016static void tcm_qla2xxx_drop_tpg(struct se_portal_group *se_tpg)
1017{
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;
75f8c1f6
NB
1022 /*
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
1025 */
0e8cd71c
SK
1026 if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stop)
1027 qlt_stop_phase1(vha->vha_tgt.qla_tgt);
75f8c1f6
NB
1028
1029 core_tpg_deregister(se_tpg);
1030 /*
1031 * Clear local TPG=1 pointer for non NPIV mode.
1032 */
394d62ba 1033 lport->tpg_1 = NULL;
75f8c1f6
NB
1034 kfree(tpg);
1035}
1036
394d62ba
NB
1037static ssize_t tcm_qla2xxx_npiv_tpg_show_enable(
1038 struct se_portal_group *se_tpg,
1039 char *page)
1040{
1041 return tcm_qla2xxx_tpg_show_enable(se_tpg, page);
1042}
1043
1044static ssize_t tcm_qla2xxx_npiv_tpg_store_enable(
1045 struct se_portal_group *se_tpg,
1046 const char *page,
1047 size_t count)
1048{
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);
1055 unsigned long op;
1056 int rc;
1057
1058 rc = kstrtoul(page, 0, &op);
1059 if (rc < 0) {
1060 pr_err("kstrtoul() returned %d\n", rc);
1061 return -EINVAL;
1062 }
1063 if ((op != 1) && (op != 0)) {
1064 pr_err("Illegal value for tpg_enable: %lu\n", op);
1065 return -EINVAL;
1066 }
1067 if (op) {
1068 if (atomic_read(&tpg->lport_tpg_enabled))
1069 return -EEXIST;
1070
1071 atomic_set(&tpg->lport_tpg_enabled, 1);
1072 qlt_enable_vha(vha);
1073 } else {
1074 if (!atomic_read(&tpg->lport_tpg_enabled))
1075 return count;
1076
1077 atomic_set(&tpg->lport_tpg_enabled, 0);
1078 qlt_stop_phase1(vha->vha_tgt.qla_tgt);
1079 }
1080
1081 return count;
1082}
1083
1084TF_TPG_BASE_ATTR(tcm_qla2xxx_npiv, enable, S_IRUGO | S_IWUSR);
1085
1086static struct configfs_attribute *tcm_qla2xxx_npiv_tpg_attrs[] = {
1087 &tcm_qla2xxx_npiv_tpg_enable.attr,
1088 NULL,
1089};
1090
75f8c1f6
NB
1091static struct se_portal_group *tcm_qla2xxx_npiv_make_tpg(
1092 struct se_wwn *wwn,
1093 struct config_group *group,
1094 const char *name)
1095{
1096 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1097 struct tcm_qla2xxx_lport, lport_wwn);
1098 struct tcm_qla2xxx_tpg *tpg;
1099 unsigned long tpgt;
1100 int ret;
1101
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);
1106
1107 tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL);
1108 if (!tpg) {
1109 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1110 return ERR_PTR(-ENOMEM);
1111 }
1112 tpg->lport = lport;
1113 tpg->lport_tpgt = tpgt;
1114
0e8cd71c
SK
1115 /*
1116 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1117 * NodeACLs
1118 */
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;
1123
bc0c94b1 1124 ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP);
75f8c1f6
NB
1125 if (ret < 0) {
1126 kfree(tpg);
1127 return NULL;
1128 }
0e8cd71c 1129 lport->tpg_1 = tpg;
75f8c1f6
NB
1130 return &tpg->se_tpg;
1131}
1132
1133/*
1134 * Expected to be called with struct qla_hw_data->hardware_lock held
1135 */
1136static struct qla_tgt_sess *tcm_qla2xxx_find_sess_by_s_id(
1137 scsi_qla_host_t *vha,
1138 const uint8_t *s_id)
1139{
75f8c1f6
NB
1140 struct tcm_qla2xxx_lport *lport;
1141 struct se_node_acl *se_nacl;
1142 struct tcm_qla2xxx_nacl *nacl;
1143 u32 key;
1144
0e8cd71c 1145 lport = vha->vha_tgt.target_lport_ptr;
75f8c1f6
NB
1146 if (!lport) {
1147 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1148 dump_stack();
1149 return NULL;
1150 }
1151
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);
1156
1157 se_nacl = btree_lookup32(&lport->lport_fcport_map, key);
1158 if (!se_nacl) {
1159 pr_debug("Unable to locate s_id: 0x%06x\n", key);
1160 return NULL;
1161 }
1162 pr_debug("find_sess_by_s_id: located se_nacl: %p, initiatorname: %s\n",
1163 se_nacl, se_nacl->initiatorname);
1164
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");
1168 return NULL;
1169 }
1170
1171 return nacl->qla_tgt_sess;
1172}
1173
1174/*
1175 * Expected to be called with struct qla_hw_data->hardware_lock held
1176 */
1177static 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,
1183 uint8_t *s_id)
1184{
1185 u32 key;
1186 void *slot;
1187 int rc;
1188
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);
1193
1194 slot = btree_lookup32(&lport->lport_fcport_map, key);
1195 if (!slot) {
1196 if (new_se_nacl) {
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);
1201 if (rc)
1202 printk(KERN_ERR "Unable to insert s_id into fcport_map: %06x\n",
1203 (int)key);
1204 } else {
1205 pr_debug("Wiping nonexisting fc_port entry\n");
1206 }
1207
1208 qla_tgt_sess->se_sess = se_sess;
1209 nacl->qla_tgt_sess = qla_tgt_sess;
1210 return;
1211 }
1212
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;
1218 return;
1219 }
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;
1224 return;
1225 }
1226
1227 if (new_se_nacl == NULL) {
1228 pr_debug("Clearing existing fc_port entry\n");
1229 btree_remove32(&lport->lport_fcport_map, key);
1230 return;
1231 }
1232
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;
1237
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);
1240}
1241
1242/*
1243 * Expected to be called with struct qla_hw_data->hardware_lock held
1244 */
1245static struct qla_tgt_sess *tcm_qla2xxx_find_sess_by_loop_id(
1246 scsi_qla_host_t *vha,
1247 const uint16_t loop_id)
1248{
75f8c1f6
NB
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;
1253
0e8cd71c 1254 lport = vha->vha_tgt.target_lport_ptr;
75f8c1f6
NB
1255 if (!lport) {
1256 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1257 dump_stack();
1258 return NULL;
1259 }
1260
1261 pr_debug("find_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id);
1262
1263 fc_loopid = lport->lport_loopid_map + loop_id;
1264 se_nacl = fc_loopid->se_nacl;
1265 if (!se_nacl) {
1266 pr_debug("Unable to locate se_nacl by loop_id: 0x%04x\n",
1267 loop_id);
1268 return NULL;
1269 }
1270
1271 nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
1272
1273 if (!nacl->qla_tgt_sess) {
1274 pr_err("Unable to locate struct qla_tgt_sess\n");
1275 return NULL;
1276 }
1277
1278 return nacl->qla_tgt_sess;
1279}
1280
1281/*
1282 * Expected to be called with struct qla_hw_data->hardware_lock held
1283 */
1284static 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,
1290 uint16_t loop_id)
1291{
1292 struct se_node_acl *saved_nacl;
1293 struct tcm_qla2xxx_fc_loopid *fc_loopid;
1294
1295 pr_debug("set_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id);
1296
1297 fc_loopid = &((struct tcm_qla2xxx_fc_loopid *)
1298 lport->lport_loopid_map)[loop_id];
1299
1300 saved_nacl = fc_loopid->se_nacl;
1301 if (!saved_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;
1308 return;
1309 }
1310
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;
1316 return;
1317 }
1318
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;
1325 return;
1326 }
1327
1328 if (new_se_nacl == NULL) {
1329 pr_debug("Clearing fc_loopid->se_nacl\n");
1330 fc_loopid->se_nacl = NULL;
1331 return;
1332 }
1333
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;
1340
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);
1343}
1344
f2d5d9b9
NB
1345/*
1346 * Should always be called with qla_hw_data->hardware_lock held.
1347 */
1348static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *lport,
1349 struct tcm_qla2xxx_nacl *nacl, struct qla_tgt_sess *sess)
1350{
1351 struct se_session *se_sess = sess->se_sess;
1352 unsigned char be_sid[3];
1353
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;
1357
1358 tcm_qla2xxx_set_sess_by_s_id(lport, NULL, nacl, se_sess,
1359 sess, be_sid);
1360 tcm_qla2xxx_set_sess_by_loop_id(lport, NULL, nacl, se_sess,
1361 sess, sess->loop_id);
1362}
1363
75f8c1f6
NB
1364static void tcm_qla2xxx_free_session(struct qla_tgt_sess *sess)
1365{
1366 struct qla_tgt *tgt = sess->tgt;
1367 struct qla_hw_data *ha = tgt->ha;
0e8cd71c 1368 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
75f8c1f6 1369 struct se_session *se_sess;
75f8c1f6 1370 struct tcm_qla2xxx_lport *lport;
75f8c1f6
NB
1371
1372 BUG_ON(in_interrupt());
1373
1374 se_sess = sess->se_sess;
1375 if (!se_sess) {
1376 pr_err("struct qla_tgt_sess->se_sess is NULL\n");
1377 dump_stack();
1378 return;
1379 }
75f8c1f6 1380
0e8cd71c 1381 lport = vha->vha_tgt.target_lport_ptr;
75f8c1f6
NB
1382 if (!lport) {
1383 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1384 dump_stack();
1385 return;
1386 }
be646c2d 1387 target_wait_for_sess_cmds(se_sess);
75f8c1f6
NB
1388
1389 transport_deregister_session_configfs(sess->se_sess);
1390 transport_deregister_session(sess->se_sess);
1391}
1392
1393/*
1394 * Called via qlt_create_sess():ha->qla2x_tmpl->check_initiator_node_acl()
1395 * to locate struct se_node_acl
1396 */
1397static int tcm_qla2xxx_check_initiator_node_acl(
1398 scsi_qla_host_t *vha,
1399 unsigned char *fc_wwpn,
1400 void *qla_tgt_sess,
1401 uint8_t *s_id,
1402 uint16_t loop_id)
1403{
1404 struct qla_hw_data *ha = vha->hw;
1405 struct tcm_qla2xxx_lport *lport;
1406 struct tcm_qla2xxx_tpg *tpg;
1407 struct tcm_qla2xxx_nacl *nacl;
1408 struct se_portal_group *se_tpg;
1409 struct se_node_acl *se_nacl;
1410 struct se_session *se_sess;
1411 struct qla_tgt_sess *sess = qla_tgt_sess;
1412 unsigned char port_name[36];
1413 unsigned long flags;
51a07f84
NB
1414 int num_tags = (ha->fw_xcb_count) ? ha->fw_xcb_count :
1415 TCM_QLA2XXX_DEFAULT_TAGS;
75f8c1f6 1416
0e8cd71c 1417 lport = vha->vha_tgt.target_lport_ptr;
75f8c1f6
NB
1418 if (!lport) {
1419 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1420 dump_stack();
1421 return -EINVAL;
1422 }
1423 /*
1424 * Locate the TPG=1 reference..
1425 */
1426 tpg = lport->tpg_1;
1427 if (!tpg) {
1428 pr_err("Unable to lcoate struct tcm_qla2xxx_lport->tpg_1\n");
1429 return -EINVAL;
1430 }
1431 se_tpg = &tpg->se_tpg;
1432
51a07f84
NB
1433 se_sess = transport_init_session_tags(num_tags,
1434 sizeof(struct qla_tgt_cmd),
59bb0ff5 1435 TARGET_PROT_ALL);
75f8c1f6
NB
1436 if (IS_ERR(se_sess)) {
1437 pr_err("Unable to initialize struct se_session\n");
1438 return PTR_ERR(se_sess);
1439 }
1440 /*
1441 * Format the FCP Initiator port_name into colon seperated values to
1442 * match the format by tcm_qla2xxx explict ConfigFS NodeACLs.
1443 */
1444 memset(&port_name, 0, 36);
3c9786e5 1445 snprintf(port_name, sizeof(port_name), "%8phC", fc_wwpn);
75f8c1f6
NB
1446 /*
1447 * Locate our struct se_node_acl either from an explict NodeACL created
1448 * via ConfigFS, or via running in TPG demo mode.
1449 */
1450 se_sess->se_node_acl = core_tpg_check_initiator_node_acl(se_tpg,
1451 port_name);
1452 if (!se_sess->se_node_acl) {
1453 transport_free_session(se_sess);
1454 return -EINVAL;
1455 }
1456 se_nacl = se_sess->se_node_acl;
1457 nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
1458 /*
1459 * And now setup the new se_nacl and session pointers into our HW lport
1460 * mappings for fabric S_ID and LOOP_ID.
1461 */
1462 spin_lock_irqsave(&ha->hardware_lock, flags);
1463 tcm_qla2xxx_set_sess_by_s_id(lport, se_nacl, nacl, se_sess,
1464 qla_tgt_sess, s_id);
1465 tcm_qla2xxx_set_sess_by_loop_id(lport, se_nacl, nacl, se_sess,
1466 qla_tgt_sess, loop_id);
1467 spin_unlock_irqrestore(&ha->hardware_lock, flags);
1468 /*
1469 * Finally register the new FC Nexus with TCM
1470 */
75c3d0bf 1471 transport_register_session(se_nacl->se_tpg, se_nacl, se_sess, sess);
75f8c1f6
NB
1472
1473 return 0;
1474}
1475
c8292d1d
RD
1476static void tcm_qla2xxx_update_sess(struct qla_tgt_sess *sess, port_id_t s_id,
1477 uint16_t loop_id, bool conf_compl_supported)
1478{
1479 struct qla_tgt *tgt = sess->tgt;
1480 struct qla_hw_data *ha = tgt->ha;
0e8cd71c
SK
1481 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1482 struct tcm_qla2xxx_lport *lport = vha->vha_tgt.target_lport_ptr;
c8292d1d
RD
1483 struct se_node_acl *se_nacl = sess->se_sess->se_node_acl;
1484 struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl,
1485 struct tcm_qla2xxx_nacl, se_node_acl);
1486 u32 key;
1487
1488
1489 if (sess->loop_id != loop_id || sess->s_id.b24 != s_id.b24)
7b833558
OK
1490 pr_info("Updating session %p from port %8phC loop_id %d -> %d s_id %x:%x:%x -> %x:%x:%x\n",
1491 sess, sess->port_name,
1492 sess->loop_id, loop_id, sess->s_id.b.domain,
1493 sess->s_id.b.area, sess->s_id.b.al_pa, s_id.b.domain,
1494 s_id.b.area, s_id.b.al_pa);
c8292d1d
RD
1495
1496 if (sess->loop_id != loop_id) {
1497 /*
1498 * Because we can shuffle loop IDs around and we
1499 * update different sessions non-atomically, we might
1500 * have overwritten this session's old loop ID
1501 * already, and we might end up overwriting some other
1502 * session that will be updated later. So we have to
1503 * be extra careful and we can't warn about those things...
1504 */
1505 if (lport->lport_loopid_map[sess->loop_id].se_nacl == se_nacl)
1506 lport->lport_loopid_map[sess->loop_id].se_nacl = NULL;
1507
1508 lport->lport_loopid_map[loop_id].se_nacl = se_nacl;
1509
1510 sess->loop_id = loop_id;
1511 }
1512
1513 if (sess->s_id.b24 != s_id.b24) {
1514 key = (((u32) sess->s_id.b.domain << 16) |
1515 ((u32) sess->s_id.b.area << 8) |
1516 ((u32) sess->s_id.b.al_pa));
1517
1518 if (btree_lookup32(&lport->lport_fcport_map, key))
1519 WARN(btree_remove32(&lport->lport_fcport_map, key) != se_nacl,
1520 "Found wrong se_nacl when updating s_id %x:%x:%x\n",
1521 sess->s_id.b.domain, sess->s_id.b.area, sess->s_id.b.al_pa);
1522 else
1523 WARN(1, "No lport_fcport_map entry for s_id %x:%x:%x\n",
1524 sess->s_id.b.domain, sess->s_id.b.area, sess->s_id.b.al_pa);
1525
1526 key = (((u32) s_id.b.domain << 16) |
1527 ((u32) s_id.b.area << 8) |
1528 ((u32) s_id.b.al_pa));
1529
1530 if (btree_lookup32(&lport->lport_fcport_map, key)) {
1531 WARN(1, "Already have lport_fcport_map entry for s_id %x:%x:%x\n",
1532 s_id.b.domain, s_id.b.area, s_id.b.al_pa);
1533 btree_update32(&lport->lport_fcport_map, key, se_nacl);
1534 } else {
1535 btree_insert32(&lport->lport_fcport_map, key, se_nacl, GFP_ATOMIC);
1536 }
1537
1538 sess->s_id = s_id;
1539 nacl->nport_id = key;
1540 }
1541
1542 sess->conf_compl_supported = conf_compl_supported;
1543}
1544
75f8c1f6
NB
1545/*
1546 * Calls into tcm_qla2xxx used by qla2xxx LLD I/O path.
1547 */
1548static struct qla_tgt_func_tmpl tcm_qla2xxx_template = {
1549 .handle_cmd = tcm_qla2xxx_handle_cmd,
1550 .handle_data = tcm_qla2xxx_handle_data,
f83adb61 1551 .handle_dif_err = tcm_qla2xxx_handle_dif_err,
75f8c1f6
NB
1552 .handle_tmr = tcm_qla2xxx_handle_tmr,
1553 .free_cmd = tcm_qla2xxx_free_cmd,
1554 .free_mcmd = tcm_qla2xxx_free_mcmd,
1555 .free_session = tcm_qla2xxx_free_session,
c8292d1d 1556 .update_sess = tcm_qla2xxx_update_sess,
75f8c1f6
NB
1557 .check_initiator_node_acl = tcm_qla2xxx_check_initiator_node_acl,
1558 .find_sess_by_s_id = tcm_qla2xxx_find_sess_by_s_id,
1559 .find_sess_by_loop_id = tcm_qla2xxx_find_sess_by_loop_id,
1560 .clear_nacl_from_fcport_map = tcm_qla2xxx_clear_nacl_from_fcport_map,
1561 .put_sess = tcm_qla2xxx_put_sess,
1562 .shutdown_sess = tcm_qla2xxx_shutdown_sess,
1563};
1564
1565static int tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport *lport)
1566{
1567 int rc;
1568
1569 rc = btree_init32(&lport->lport_fcport_map);
1570 if (rc) {
1571 pr_err("Unable to initialize lport->lport_fcport_map btree\n");
1572 return rc;
1573 }
1574
1575 lport->lport_loopid_map = vmalloc(sizeof(struct tcm_qla2xxx_fc_loopid) *
1576 65536);
1577 if (!lport->lport_loopid_map) {
1578 pr_err("Unable to allocate lport->lport_loopid_map of %zu bytes\n",
1579 sizeof(struct tcm_qla2xxx_fc_loopid) * 65536);
1580 btree_destroy32(&lport->lport_fcport_map);
1581 return -ENOMEM;
1582 }
1583 memset(lport->lport_loopid_map, 0, sizeof(struct tcm_qla2xxx_fc_loopid)
1584 * 65536);
1585 pr_debug("qla2xxx: Allocated lport_loopid_map of %zu bytes\n",
1586 sizeof(struct tcm_qla2xxx_fc_loopid) * 65536);
1587 return 0;
1588}
1589
49a47f2c
NB
1590static int tcm_qla2xxx_lport_register_cb(struct scsi_qla_host *vha,
1591 void *target_lport_ptr,
1592 u64 npiv_wwpn, u64 npiv_wwnn)
75f8c1f6 1593{
49a47f2c
NB
1594 struct qla_hw_data *ha = vha->hw;
1595 struct tcm_qla2xxx_lport *lport =
1596 (struct tcm_qla2xxx_lport *)target_lport_ptr;
75f8c1f6 1597 /*
49a47f2c 1598 * Setup tgt_ops, local pointer to vha and target_lport_ptr
75f8c1f6 1599 */
49a47f2c
NB
1600 ha->tgt.tgt_ops = &tcm_qla2xxx_template;
1601 vha->vha_tgt.target_lport_ptr = target_lport_ptr;
75f8c1f6
NB
1602 lport->qla_vha = vha;
1603
1604 return 0;
1605}
1606
1607static struct se_wwn *tcm_qla2xxx_make_lport(
1608 struct target_fabric_configfs *tf,
1609 struct config_group *group,
1610 const char *name)
1611{
1612 struct tcm_qla2xxx_lport *lport;
1613 u64 wwpn;
1614 int ret = -ENODEV;
1615
1616 if (tcm_qla2xxx_parse_wwn(name, &wwpn, 1) < 0)
1617 return ERR_PTR(-EINVAL);
1618
1619 lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL);
1620 if (!lport) {
1621 pr_err("Unable to allocate struct tcm_qla2xxx_lport\n");
1622 return ERR_PTR(-ENOMEM);
1623 }
1624 lport->lport_wwpn = wwpn;
1625 tcm_qla2xxx_format_wwn(&lport->lport_name[0], TCM_QLA2XXX_NAMELEN,
1626 wwpn);
c046aa0f 1627 sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) wwpn);
75f8c1f6
NB
1628
1629 ret = tcm_qla2xxx_init_lport(lport);
1630 if (ret != 0)
1631 goto out;
1632
49a47f2c
NB
1633 ret = qlt_lport_register(lport, wwpn, 0, 0,
1634 tcm_qla2xxx_lport_register_cb);
75f8c1f6
NB
1635 if (ret != 0)
1636 goto out_lport;
1637
1638 return &lport->lport_wwn;
1639out_lport:
1640 vfree(lport->lport_loopid_map);
1641 btree_destroy32(&lport->lport_fcport_map);
1642out:
1643 kfree(lport);
1644 return ERR_PTR(ret);
1645}
1646
1647static void tcm_qla2xxx_drop_lport(struct se_wwn *wwn)
1648{
1649 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1650 struct tcm_qla2xxx_lport, lport_wwn);
1651 struct scsi_qla_host *vha = lport->qla_vha;
75f8c1f6
NB
1652 struct se_node_acl *node;
1653 u32 key = 0;
1654
1655 /*
1656 * Call into qla2x_target.c LLD logic to complete the
1657 * shutdown of struct qla_tgt after the call to
1658 * qlt_stop_phase1() from tcm_qla2xxx_drop_tpg() above..
1659 */
0e8cd71c
SK
1660 if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stopped)
1661 qlt_stop_phase2(vha->vha_tgt.qla_tgt);
75f8c1f6
NB
1662
1663 qlt_lport_deregister(vha);
1664
1665 vfree(lport->lport_loopid_map);
1666 btree_for_each_safe32(&lport->lport_fcport_map, key, node)
1667 btree_remove32(&lport->lport_fcport_map, key);
1668 btree_destroy32(&lport->lport_fcport_map);
1669 kfree(lport);
1670}
1671
49a47f2c
NB
1672static int tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host *base_vha,
1673 void *target_lport_ptr,
1674 u64 npiv_wwpn, u64 npiv_wwnn)
1675{
1676 struct fc_vport *vport;
1677 struct Scsi_Host *sh = base_vha->host;
1678 struct scsi_qla_host *npiv_vha;
1679 struct tcm_qla2xxx_lport *lport =
1680 (struct tcm_qla2xxx_lport *)target_lport_ptr;
7474f52a
NB
1681 struct tcm_qla2xxx_lport *base_lport =
1682 (struct tcm_qla2xxx_lport *)base_vha->vha_tgt.target_lport_ptr;
49a47f2c
NB
1683 struct fc_vport_identifiers vport_id;
1684
1685 if (!qla_tgt_mode_enabled(base_vha)) {
1686 pr_err("qla2xxx base_vha not enabled for target mode\n");
1687 return -EPERM;
1688 }
1689
7474f52a
NB
1690 if (!base_lport || !base_lport->tpg_1 ||
1691 !atomic_read(&base_lport->tpg_1->lport_tpg_enabled)) {
1692 pr_err("qla2xxx base_lport or tpg_1 not available\n");
1693 return -EPERM;
1694 }
7474f52a 1695
49a47f2c
NB
1696 memset(&vport_id, 0, sizeof(vport_id));
1697 vport_id.port_name = npiv_wwpn;
1698 vport_id.node_name = npiv_wwnn;
1699 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
1700 vport_id.vport_type = FC_PORTTYPE_NPIV;
1701 vport_id.disable = false;
1702
1703 vport = fc_vport_create(sh, 0, &vport_id);
1704 if (!vport) {
1705 pr_err("fc_vport_create failed for qla2xxx_npiv\n");
1706 return -ENODEV;
1707 }
1708 /*
1709 * Setup local pointer to NPIV vhba + target_lport_ptr
1710 */
1711 npiv_vha = (struct scsi_qla_host *)vport->dd_data;
1712 npiv_vha->vha_tgt.target_lport_ptr = target_lport_ptr;
1713 lport->qla_vha = npiv_vha;
49a47f2c
NB
1714 scsi_host_get(npiv_vha->host);
1715 return 0;
1716}
1717
1718
75f8c1f6
NB
1719static struct se_wwn *tcm_qla2xxx_npiv_make_lport(
1720 struct target_fabric_configfs *tf,
1721 struct config_group *group,
1722 const char *name)
1723{
1724 struct tcm_qla2xxx_lport *lport;
49a47f2c
NB
1725 u64 phys_wwpn, npiv_wwpn, npiv_wwnn;
1726 char *p, tmp[128];
75f8c1f6
NB
1727 int ret;
1728
49a47f2c
NB
1729 snprintf(tmp, 128, "%s", name);
1730
1731 p = strchr(tmp, '@');
1732 if (!p) {
1733 pr_err("Unable to locate NPIV '@' seperator\n");
1734 return ERR_PTR(-EINVAL);
1735 }
1736 *p++ = '\0';
1737
1738 if (tcm_qla2xxx_parse_wwn(tmp, &phys_wwpn, 1) < 0)
1739 return ERR_PTR(-EINVAL);
1740
1741 if (tcm_qla2xxx_npiv_parse_wwn(p, strlen(p)+1,
1742 &npiv_wwpn, &npiv_wwnn) < 0)
75f8c1f6
NB
1743 return ERR_PTR(-EINVAL);
1744
1745 lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL);
1746 if (!lport) {
1747 pr_err("Unable to allocate struct tcm_qla2xxx_lport for NPIV\n");
1748 return ERR_PTR(-ENOMEM);
1749 }
1750 lport->lport_npiv_wwpn = npiv_wwpn;
1751 lport->lport_npiv_wwnn = npiv_wwnn;
c046aa0f 1752 sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) npiv_wwpn);
75f8c1f6 1753
0e8cd71c 1754 ret = tcm_qla2xxx_init_lport(lport);
75f8c1f6
NB
1755 if (ret != 0)
1756 goto out;
1757
49a47f2c
NB
1758 ret = qlt_lport_register(lport, phys_wwpn, npiv_wwpn, npiv_wwnn,
1759 tcm_qla2xxx_lport_register_npiv_cb);
0e8cd71c
SK
1760 if (ret != 0)
1761 goto out_lport;
1762
75f8c1f6 1763 return &lport->lport_wwn;
0e8cd71c
SK
1764out_lport:
1765 vfree(lport->lport_loopid_map);
1766 btree_destroy32(&lport->lport_fcport_map);
75f8c1f6
NB
1767out:
1768 kfree(lport);
1769 return ERR_PTR(ret);
1770}
1771
1772static void tcm_qla2xxx_npiv_drop_lport(struct se_wwn *wwn)
1773{
1774 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1775 struct tcm_qla2xxx_lport, lport_wwn);
49a47f2c
NB
1776 struct scsi_qla_host *npiv_vha = lport->qla_vha;
1777 struct qla_hw_data *ha = npiv_vha->hw;
1778 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1779
1780 scsi_host_put(npiv_vha->host);
75f8c1f6 1781 /*
0e8cd71c 1782 * Notify libfc that we want to release the vha->fc_vport
75f8c1f6 1783 */
49a47f2c
NB
1784 fc_vport_terminate(npiv_vha->fc_vport);
1785 scsi_host_put(base_vha->host);
75f8c1f6
NB
1786 kfree(lport);
1787}
1788
1789
1790static ssize_t tcm_qla2xxx_wwn_show_attr_version(
1791 struct target_fabric_configfs *tf,
1792 char *page)
1793{
1794 return sprintf(page,
1795 "TCM QLOGIC QLA2XXX NPIV capable fabric module %s on %s/%s on "
1796 UTS_RELEASE"\n", TCM_QLA2XXX_VERSION, utsname()->sysname,
1797 utsname()->machine);
1798}
1799
1800TF_WWN_ATTR_RO(tcm_qla2xxx, version);
1801
1802static struct configfs_attribute *tcm_qla2xxx_wwn_attrs[] = {
1803 &tcm_qla2xxx_wwn_version.attr,
1804 NULL,
1805};
1806
9ac8928e
CH
1807static const struct target_core_fabric_ops tcm_qla2xxx_ops = {
1808 .module = THIS_MODULE,
1809 .name = "qla2xxx",
144bc4c2 1810 .node_acl_size = sizeof(struct tcm_qla2xxx_nacl),
75f8c1f6 1811 .get_fabric_name = tcm_qla2xxx_get_fabric_name,
75f8c1f6
NB
1812 .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn,
1813 .tpg_get_tag = tcm_qla2xxx_get_tag,
75f8c1f6
NB
1814 .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode,
1815 .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache,
1816 .tpg_check_demo_mode_write_protect =
1817 tcm_qla2xxx_check_demo_write_protect,
1818 .tpg_check_prod_mode_write_protect =
1819 tcm_qla2xxx_check_prod_write_protect,
64b16887 1820 .tpg_check_prot_fabric_only = tcm_qla2xxx_check_prot_fabric_only,
de04a8aa 1821 .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only,
75f8c1f6 1822 .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index,
75f8c1f6
NB
1823 .check_stop_free = tcm_qla2xxx_check_stop_free,
1824 .release_cmd = tcm_qla2xxx_release_cmd,
1825 .shutdown_session = tcm_qla2xxx_shutdown_session,
1826 .close_session = tcm_qla2xxx_close_session,
1827 .sess_get_index = tcm_qla2xxx_sess_get_index,
1828 .sess_get_initiator_sid = NULL,
1829 .write_pending = tcm_qla2xxx_write_pending,
1830 .write_pending_status = tcm_qla2xxx_write_pending_status,
1831 .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs,
75f8c1f6
NB
1832 .get_cmd_state = tcm_qla2xxx_get_cmd_state,
1833 .queue_data_in = tcm_qla2xxx_queue_data_in,
1834 .queue_status = tcm_qla2xxx_queue_status,
1835 .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp,
131e6abc 1836 .aborted_task = tcm_qla2xxx_aborted_task,
75f8c1f6
NB
1837 /*
1838 * Setup function pointers for generic logic in
1839 * target_core_fabric_configfs.c
1840 */
1841 .fabric_make_wwn = tcm_qla2xxx_make_lport,
1842 .fabric_drop_wwn = tcm_qla2xxx_drop_lport,
1843 .fabric_make_tpg = tcm_qla2xxx_make_tpg,
1844 .fabric_drop_tpg = tcm_qla2xxx_drop_tpg,
c7d6a803 1845 .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl,
9ac8928e
CH
1846
1847 .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs,
1848 .tfc_tpg_base_attrs = tcm_qla2xxx_tpg_attrs,
1849 .tfc_tpg_attrib_attrs = tcm_qla2xxx_tpg_attrib_attrs,
75f8c1f6
NB
1850};
1851
9ac8928e
CH
1852static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops = {
1853 .module = THIS_MODULE,
1854 .name = "qla2xxx_npiv",
144bc4c2 1855 .node_acl_size = sizeof(struct tcm_qla2xxx_nacl),
75f8c1f6 1856 .get_fabric_name = tcm_qla2xxx_npiv_get_fabric_name,
84197a36 1857 .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn,
75f8c1f6 1858 .tpg_get_tag = tcm_qla2xxx_get_tag,
0e8cd71c
SK
1859 .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode,
1860 .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache,
1861 .tpg_check_demo_mode_write_protect = tcm_qla2xxx_check_demo_mode,
1862 .tpg_check_prod_mode_write_protect =
1863 tcm_qla2xxx_check_prod_write_protect,
de04a8aa 1864 .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only,
75f8c1f6 1865 .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index,
0e8cd71c 1866 .check_stop_free = tcm_qla2xxx_check_stop_free,
75f8c1f6
NB
1867 .release_cmd = tcm_qla2xxx_release_cmd,
1868 .shutdown_session = tcm_qla2xxx_shutdown_session,
1869 .close_session = tcm_qla2xxx_close_session,
1870 .sess_get_index = tcm_qla2xxx_sess_get_index,
1871 .sess_get_initiator_sid = NULL,
1872 .write_pending = tcm_qla2xxx_write_pending,
1873 .write_pending_status = tcm_qla2xxx_write_pending_status,
1874 .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs,
75f8c1f6
NB
1875 .get_cmd_state = tcm_qla2xxx_get_cmd_state,
1876 .queue_data_in = tcm_qla2xxx_queue_data_in,
1877 .queue_status = tcm_qla2xxx_queue_status,
1878 .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp,
131e6abc 1879 .aborted_task = tcm_qla2xxx_aborted_task,
75f8c1f6
NB
1880 /*
1881 * Setup function pointers for generic logic in
1882 * target_core_fabric_configfs.c
1883 */
1884 .fabric_make_wwn = tcm_qla2xxx_npiv_make_lport,
1885 .fabric_drop_wwn = tcm_qla2xxx_npiv_drop_lport,
1886 .fabric_make_tpg = tcm_qla2xxx_npiv_make_tpg,
1887 .fabric_drop_tpg = tcm_qla2xxx_drop_tpg,
c7d6a803 1888 .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl,
9ac8928e
CH
1889
1890 .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs,
1891 .tfc_tpg_base_attrs = tcm_qla2xxx_npiv_tpg_attrs,
75f8c1f6
NB
1892};
1893
1894static int tcm_qla2xxx_register_configfs(void)
1895{
75f8c1f6
NB
1896 int ret;
1897
1898 pr_debug("TCM QLOGIC QLA2XXX fabric module %s on %s/%s on "
1899 UTS_RELEASE"\n", TCM_QLA2XXX_VERSION, utsname()->sysname,
1900 utsname()->machine);
9ac8928e
CH
1901
1902 ret = target_register_template(&tcm_qla2xxx_ops);
1903 if (ret)
75f8c1f6 1904 return ret;
75f8c1f6 1905
9ac8928e
CH
1906 ret = target_register_template(&tcm_qla2xxx_npiv_ops);
1907 if (ret)
75f8c1f6 1908 goto out_fabric;
75f8c1f6
NB
1909
1910 tcm_qla2xxx_free_wq = alloc_workqueue("tcm_qla2xxx_free",
1911 WQ_MEM_RECLAIM, 0);
1912 if (!tcm_qla2xxx_free_wq) {
1913 ret = -ENOMEM;
1914 goto out_fabric_npiv;
1915 }
1916
1917 tcm_qla2xxx_cmd_wq = alloc_workqueue("tcm_qla2xxx_cmd", 0, 0);
1918 if (!tcm_qla2xxx_cmd_wq) {
1919 ret = -ENOMEM;
1920 goto out_free_wq;
1921 }
1922
1923 return 0;
1924
1925out_free_wq:
1926 destroy_workqueue(tcm_qla2xxx_free_wq);
1927out_fabric_npiv:
9ac8928e 1928 target_unregister_template(&tcm_qla2xxx_npiv_ops);
75f8c1f6 1929out_fabric:
9ac8928e 1930 target_unregister_template(&tcm_qla2xxx_ops);
75f8c1f6
NB
1931 return ret;
1932}
1933
1934static void tcm_qla2xxx_deregister_configfs(void)
1935{
1936 destroy_workqueue(tcm_qla2xxx_cmd_wq);
1937 destroy_workqueue(tcm_qla2xxx_free_wq);
1938
9ac8928e
CH
1939 target_unregister_template(&tcm_qla2xxx_ops);
1940 target_unregister_template(&tcm_qla2xxx_npiv_ops);
75f8c1f6
NB
1941}
1942
1943static int __init tcm_qla2xxx_init(void)
1944{
1945 int ret;
1946
1947 ret = tcm_qla2xxx_register_configfs();
1948 if (ret < 0)
1949 return ret;
1950
1951 return 0;
1952}
1953
1954static void __exit tcm_qla2xxx_exit(void)
1955{
1956 tcm_qla2xxx_deregister_configfs();
1957}
1958
1959MODULE_DESCRIPTION("TCM QLA2XXX series NPIV enabled fabric driver");
1960MODULE_LICENSE("GPL");
1961module_init(tcm_qla2xxx_init);
1962module_exit(tcm_qla2xxx_exit);