1 /*******************************************************************************
2 * This file contains tcm implementation using v4 configfs fabric infrastructure
3 * for QLogic target mode HBAs
4 *
5 * (c) Copyright 2010-2013 Datera, Inc.
6 *
7 * Author: Nicholas A. Bellinger <nab@daterainc.com>
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 <linux/utsname.h>
29 #include <linux/vmalloc.h>
30 #include <linux/init.h>
31 #include <linux/list.h>
32 #include <linux/slab.h>
33 #include <linux/kthread.h>
34 #include <linux/types.h>
35 #include <linux/string.h>
36 #include <linux/configfs.h>
37 #include <linux/ctype.h>
38 #include <asm/unaligned.h>
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_host.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_cmnd.h>
43 #include <target/target_core_base.h>
44 #include <target/target_core_fabric.h>
45
46 #include "qla_def.h"
47 #include "qla_target.h"
48 #include "tcm_qla2xxx.h"
49
50 static struct workqueue_struct *tcm_qla2xxx_free_wq;
51
52 /*
53 * Parse WWN.
54 * If strict, we require lower-case hex and colon separators to be sure
55 * the name is the same as what would be generated by ft_format_wwn()
56 * so the name and wwn are mapped one-to-one.
57 */
tcm_qla2xxx_parse_wwn(const char * name,u64 * wwn,int strict)58 static ssize_t tcm_qla2xxx_parse_wwn(const char *name, u64 *wwn, int strict)
59 {
60 const char *cp;
61 char c;
62 u32 nibble;
63 u32 byte = 0;
64 u32 pos = 0;
65 u32 err;
66
67 *wwn = 0;
68 for (cp = name; cp < &name[TCM_QLA2XXX_NAMELEN - 1]; cp++) {
69 c = *cp;
70 if (c == '\n' && cp[1] == '\0')
71 continue;
72 if (strict && pos++ == 2 && byte++ < 7) {
73 pos = 0;
74 if (c == ':')
75 continue;
76 err = 1;
77 goto fail;
78 }
79 if (c == '\0') {
80 err = 2;
81 if (strict && byte != 8)
82 goto fail;
83 return cp - name;
84 }
85 err = 3;
86 if (isdigit(c))
87 nibble = c - '0';
88 else if (isxdigit(c) && (islower(c) || !strict))
89 nibble = tolower(c) - 'a' + 10;
90 else
91 goto fail;
92 *wwn = (*wwn << 4) | nibble;
93 }
94 err = 4;
95 fail:
96 pr_debug("err %u len %zu pos %u byte %u\n",
97 err, cp - name, pos, byte);
98 return -1;
99 }
100
tcm_qla2xxx_format_wwn(char * buf,size_t len,u64 wwn)101 static ssize_t tcm_qla2xxx_format_wwn(char *buf, size_t len, u64 wwn)
102 {
103 u8 b[8];
104
105 put_unaligned_be64(wwn, b);
106 return snprintf(buf, len,
107 "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
108 b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7]);
109 }
110
tcm_qla2xxx_get_fabric_name(void)111 static char *tcm_qla2xxx_get_fabric_name(void)
112 {
113 return "qla2xxx";
114 }
115
116 /*
117 * From drivers/scsi/scsi_transport_fc.c:fc_parse_wwn
118 */
tcm_qla2xxx_npiv_extract_wwn(const char * ns,u64 * nm)119 static int tcm_qla2xxx_npiv_extract_wwn(const char *ns, u64 *nm)
120 {
121 unsigned int i, j;
122 u8 wwn[8];
123
124 memset(wwn, 0, sizeof(wwn));
125
126 /* Validate and store the new name */
127 for (i = 0, j = 0; i < 16; i++) {
128 int value;
129
130 value = hex_to_bin(*ns++);
131 if (value >= 0)
132 j = (j << 4) | value;
133 else
134 return -EINVAL;
135
136 if (i % 2) {
137 wwn[i/2] = j & 0xff;
138 j = 0;
139 }
140 }
141
142 *nm = wwn_to_u64(wwn);
143 return 0;
144 }
145
146 /*
147 * This parsing logic follows drivers/scsi/scsi_transport_fc.c:
148 * store_fc_host_vport_create()
149 */
tcm_qla2xxx_npiv_parse_wwn(const char * name,size_t count,u64 * wwpn,u64 * wwnn)150 static int tcm_qla2xxx_npiv_parse_wwn(
151 const char *name,
152 size_t count,
153 u64 *wwpn,
154 u64 *wwnn)
155 {
156 unsigned int cnt = count;
157 int rc;
158
159 *wwpn = 0;
160 *wwnn = 0;
161
162 /* count may include a LF at end of string */
163 if (name[cnt-1] == '\n' || name[cnt-1] == 0)
164 cnt--;
165
166 /* validate we have enough characters for WWPN */
167 if ((cnt != (16+1+16)) || (name[16] != ':'))
168 return -EINVAL;
169
170 rc = tcm_qla2xxx_npiv_extract_wwn(&name[0], wwpn);
171 if (rc != 0)
172 return rc;
173
174 rc = tcm_qla2xxx_npiv_extract_wwn(&name[17], wwnn);
175 if (rc != 0)
176 return rc;
177
178 return 0;
179 }
180
tcm_qla2xxx_npiv_get_fabric_name(void)181 static char *tcm_qla2xxx_npiv_get_fabric_name(void)
182 {
183 return "qla2xxx_npiv";
184 }
185
tcm_qla2xxx_get_fabric_wwn(struct se_portal_group * se_tpg)186 static char *tcm_qla2xxx_get_fabric_wwn(struct se_portal_group *se_tpg)
187 {
188 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
189 struct tcm_qla2xxx_tpg, se_tpg);
190 struct tcm_qla2xxx_lport *lport = tpg->lport;
191
192 return lport->lport_naa_name;
193 }
194
tcm_qla2xxx_get_tag(struct se_portal_group * se_tpg)195 static u16 tcm_qla2xxx_get_tag(struct se_portal_group *se_tpg)
196 {
197 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
198 struct tcm_qla2xxx_tpg, se_tpg);
199 return tpg->lport_tpgt;
200 }
201
tcm_qla2xxx_check_demo_mode(struct se_portal_group * se_tpg)202 static int tcm_qla2xxx_check_demo_mode(struct se_portal_group *se_tpg)
203 {
204 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
205 struct tcm_qla2xxx_tpg, se_tpg);
206
207 return tpg->tpg_attrib.generate_node_acls;
208 }
209
tcm_qla2xxx_check_demo_mode_cache(struct se_portal_group * se_tpg)210 static int tcm_qla2xxx_check_demo_mode_cache(struct se_portal_group *se_tpg)
211 {
212 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
213 struct tcm_qla2xxx_tpg, se_tpg);
214
215 return tpg->tpg_attrib.cache_dynamic_acls;
216 }
217
tcm_qla2xxx_check_demo_write_protect(struct se_portal_group * se_tpg)218 static int tcm_qla2xxx_check_demo_write_protect(struct se_portal_group *se_tpg)
219 {
220 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
221 struct tcm_qla2xxx_tpg, se_tpg);
222
223 return tpg->tpg_attrib.demo_mode_write_protect;
224 }
225
tcm_qla2xxx_check_prod_write_protect(struct se_portal_group * se_tpg)226 static int tcm_qla2xxx_check_prod_write_protect(struct se_portal_group *se_tpg)
227 {
228 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
229 struct tcm_qla2xxx_tpg, se_tpg);
230
231 return tpg->tpg_attrib.prod_mode_write_protect;
232 }
233
tcm_qla2xxx_check_demo_mode_login_only(struct se_portal_group * se_tpg)234 static int tcm_qla2xxx_check_demo_mode_login_only(struct se_portal_group *se_tpg)
235 {
236 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
237 struct tcm_qla2xxx_tpg, se_tpg);
238
239 return tpg->tpg_attrib.demo_mode_login_only;
240 }
241
tcm_qla2xxx_check_prot_fabric_only(struct se_portal_group * se_tpg)242 static int tcm_qla2xxx_check_prot_fabric_only(struct se_portal_group *se_tpg)
243 {
244 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
245 struct tcm_qla2xxx_tpg, se_tpg);
246
247 return tpg->tpg_attrib.fabric_prot_type;
248 }
249
tcm_qla2xxx_tpg_get_inst_index(struct se_portal_group * se_tpg)250 static u32 tcm_qla2xxx_tpg_get_inst_index(struct se_portal_group *se_tpg)
251 {
252 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
253 struct tcm_qla2xxx_tpg, se_tpg);
254
255 return tpg->lport_tpgt;
256 }
257
tcm_qla2xxx_complete_mcmd(struct work_struct * work)258 static void tcm_qla2xxx_complete_mcmd(struct work_struct *work)
259 {
260 struct qla_tgt_mgmt_cmd *mcmd = container_of(work,
261 struct qla_tgt_mgmt_cmd, free_work);
262
263 transport_generic_free_cmd(&mcmd->se_cmd, 0);
264 }
265
266 /*
267 * Called from qla_target_template->free_mcmd(), and will call
268 * tcm_qla2xxx_release_cmd() via normal struct target_core_fabric_ops
269 * release callback. qla_hw_data->hardware_lock is expected to be held
270 */
tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd * mcmd)271 static void tcm_qla2xxx_free_mcmd(struct qla_tgt_mgmt_cmd *mcmd)
272 {
273 INIT_WORK(&mcmd->free_work, tcm_qla2xxx_complete_mcmd);
274 queue_work(tcm_qla2xxx_free_wq, &mcmd->free_work);
275 }
276
tcm_qla2xxx_complete_free(struct work_struct * work)277 static void tcm_qla2xxx_complete_free(struct work_struct *work)
278 {
279 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
280
281 cmd->cmd_in_wq = 0;
282
283 WARN_ON(cmd->trc_flags & TRC_CMD_FREE);
284
285 cmd->qpair->tgt_counters.qla_core_ret_sta_ctio++;
286 cmd->trc_flags |= TRC_CMD_FREE;
287 transport_generic_free_cmd(&cmd->se_cmd, 0);
288 }
289
290 /*
291 * Called from qla_target_template->free_cmd(), and will call
292 * tcm_qla2xxx_release_cmd via normal struct target_core_fabric_ops
293 * release callback. qla_hw_data->hardware_lock is expected to be held
294 */
tcm_qla2xxx_free_cmd(struct qla_tgt_cmd * cmd)295 static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd *cmd)
296 {
297 cmd->qpair->tgt_counters.core_qla_free_cmd++;
298 cmd->cmd_in_wq = 1;
299
300 WARN_ON(cmd->trc_flags & TRC_CMD_DONE);
301 cmd->trc_flags |= TRC_CMD_DONE;
302
303 INIT_WORK(&cmd->work, tcm_qla2xxx_complete_free);
304 queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work);
305 }
306
307 /*
308 * Called from struct target_core_fabric_ops->check_stop_free() context
309 */
tcm_qla2xxx_check_stop_free(struct se_cmd * se_cmd)310 static int tcm_qla2xxx_check_stop_free(struct se_cmd *se_cmd)
311 {
312 struct qla_tgt_cmd *cmd;
313
314 if ((se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB) == 0) {
315 cmd = container_of(se_cmd, struct qla_tgt_cmd, se_cmd);
316 cmd->trc_flags |= TRC_CMD_CHK_STOP;
317 }
318
319 return target_put_sess_cmd(se_cmd);
320 }
321
322 /* tcm_qla2xxx_release_cmd - Callback from TCM Core to release underlying
323 * fabric descriptor @se_cmd command to release
324 */
tcm_qla2xxx_release_cmd(struct se_cmd * se_cmd)325 static void tcm_qla2xxx_release_cmd(struct se_cmd *se_cmd)
326 {
327 struct qla_tgt_cmd *cmd;
328
329 if (se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB) {
330 struct qla_tgt_mgmt_cmd *mcmd = container_of(se_cmd,
331 struct qla_tgt_mgmt_cmd, se_cmd);
332 qlt_free_mcmd(mcmd);
333 return;
334 }
335
336 cmd = container_of(se_cmd, struct qla_tgt_cmd, se_cmd);
337 qlt_free_cmd(cmd);
338 }
339
tcm_qla2xxx_release_session(struct kref * kref)340 static void tcm_qla2xxx_release_session(struct kref *kref)
341 {
342 struct fc_port *sess = container_of(kref,
343 struct fc_port, sess_kref);
344
345 qlt_unreg_sess(sess);
346 }
347
tcm_qla2xxx_put_sess(struct fc_port * sess)348 static void tcm_qla2xxx_put_sess(struct fc_port *sess)
349 {
350 if (!sess)
351 return;
352
353 assert_spin_locked(&sess->vha->hw->tgt.sess_lock);
354 kref_put(&sess->sess_kref, tcm_qla2xxx_release_session);
355 }
356
tcm_qla2xxx_close_session(struct se_session * se_sess)357 static void tcm_qla2xxx_close_session(struct se_session *se_sess)
358 {
359 struct fc_port *sess = se_sess->fabric_sess_ptr;
360 struct scsi_qla_host *vha;
361 unsigned long flags;
362
363 BUG_ON(!sess);
364 vha = sess->vha;
365
366 spin_lock_irqsave(&vha->hw->tgt.sess_lock, flags);
367 target_sess_cmd_list_set_waiting(se_sess);
368 tcm_qla2xxx_put_sess(sess);
369 spin_unlock_irqrestore(&vha->hw->tgt.sess_lock, flags);
370 }
371
tcm_qla2xxx_sess_get_index(struct se_session * se_sess)372 static u32 tcm_qla2xxx_sess_get_index(struct se_session *se_sess)
373 {
374 return 0;
375 }
376
tcm_qla2xxx_write_pending(struct se_cmd * se_cmd)377 static int tcm_qla2xxx_write_pending(struct se_cmd *se_cmd)
378 {
379 struct qla_tgt_cmd *cmd = container_of(se_cmd,
380 struct qla_tgt_cmd, se_cmd);
381
382 if (cmd->aborted) {
383 /* Cmd can loop during Q-full. tcm_qla2xxx_aborted_task
384 * can get ahead of this cmd. tcm_qla2xxx_aborted_task
385 * already kick start the free.
386 */
387 pr_debug("write_pending aborted cmd[%p] refcount %d "
388 "transport_state %x, t_state %x, se_cmd_flags %x\n",
389 cmd, kref_read(&cmd->se_cmd.cmd_kref),
390 cmd->se_cmd.transport_state,
391 cmd->se_cmd.t_state,
392 cmd->se_cmd.se_cmd_flags);
393 return 0;
394 }
395 cmd->trc_flags |= TRC_XFR_RDY;
396 cmd->bufflen = se_cmd->data_length;
397 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
398
399 cmd->sg_cnt = se_cmd->t_data_nents;
400 cmd->sg = se_cmd->t_data_sg;
401
402 cmd->prot_sg_cnt = se_cmd->t_prot_nents;
403 cmd->prot_sg = se_cmd->t_prot_sg;
404 cmd->blk_sz = se_cmd->se_dev->dev_attrib.block_size;
405 se_cmd->pi_err = 0;
406
407 /*
408 * qla_target.c:qlt_rdy_to_xfer() will call pci_map_sg() to setup
409 * the SGL mappings into PCIe memory for incoming FCP WRITE data.
410 */
411 return qlt_rdy_to_xfer(cmd);
412 }
413
tcm_qla2xxx_write_pending_status(struct se_cmd * se_cmd)414 static int tcm_qla2xxx_write_pending_status(struct se_cmd *se_cmd)
415 {
416 unsigned long flags;
417 /*
418 * Check for WRITE_PENDING status to determine if we need to wait for
419 * CTIO aborts to be posted via hardware in tcm_qla2xxx_handle_data().
420 */
421 spin_lock_irqsave(&se_cmd->t_state_lock, flags);
422 if (se_cmd->t_state == TRANSPORT_WRITE_PENDING ||
423 se_cmd->t_state == TRANSPORT_COMPLETE_QF_WP) {
424 spin_unlock_irqrestore(&se_cmd->t_state_lock, flags);
425 wait_for_completion_timeout(&se_cmd->t_transport_stop_comp,
426 50);
427 return 0;
428 }
429 spin_unlock_irqrestore(&se_cmd->t_state_lock, flags);
430
431 return 0;
432 }
433
tcm_qla2xxx_set_default_node_attrs(struct se_node_acl * nacl)434 static void tcm_qla2xxx_set_default_node_attrs(struct se_node_acl *nacl)
435 {
436 return;
437 }
438
tcm_qla2xxx_get_cmd_state(struct se_cmd * se_cmd)439 static int tcm_qla2xxx_get_cmd_state(struct se_cmd *se_cmd)
440 {
441 if (!(se_cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
442 struct qla_tgt_cmd *cmd = container_of(se_cmd,
443 struct qla_tgt_cmd, se_cmd);
444 return cmd->state;
445 }
446
447 return 0;
448 }
449
450 /*
451 * Called from process context in qla_target.c:qlt_do_work() code
452 */
tcm_qla2xxx_handle_cmd(scsi_qla_host_t * vha,struct qla_tgt_cmd * cmd,unsigned char * cdb,uint32_t data_length,int fcp_task_attr,int data_dir,int bidi)453 static int tcm_qla2xxx_handle_cmd(scsi_qla_host_t *vha, struct qla_tgt_cmd *cmd,
454 unsigned char *cdb, uint32_t data_length, int fcp_task_attr,
455 int data_dir, int bidi)
456 {
457 struct se_cmd *se_cmd = &cmd->se_cmd;
458 struct se_session *se_sess;
459 struct fc_port *sess;
460 #ifdef CONFIG_TCM_QLA2XXX_DEBUG
461 struct se_portal_group *se_tpg;
462 struct tcm_qla2xxx_tpg *tpg;
463 #endif
464 int flags = TARGET_SCF_ACK_KREF;
465
466 if (bidi)
467 flags |= TARGET_SCF_BIDI_OP;
468
469 if (se_cmd->cpuid != WORK_CPU_UNBOUND)
470 flags |= TARGET_SCF_USE_CPUID;
471
472 sess = cmd->sess;
473 if (!sess) {
474 pr_err("Unable to locate struct fc_port from qla_tgt_cmd\n");
475 return -EINVAL;
476 }
477
478 se_sess = sess->se_sess;
479 if (!se_sess) {
480 pr_err("Unable to locate active struct se_session\n");
481 return -EINVAL;
482 }
483
484 #ifdef CONFIG_TCM_QLA2XXX_DEBUG
485 se_tpg = se_sess->se_tpg;
486 tpg = container_of(se_tpg, struct tcm_qla2xxx_tpg, se_tpg);
487 if (unlikely(tpg->tpg_attrib.jam_host)) {
488 /* return, and dont run target_submit_cmd,discarding command */
489 return 0;
490 }
491 #endif
492
493 cmd->qpair->tgt_counters.qla_core_sbt_cmd++;
494 return target_submit_cmd(se_cmd, se_sess, cdb, &cmd->sense_buffer[0],
495 cmd->unpacked_lun, data_length, fcp_task_attr,
496 data_dir, flags);
497 }
498
tcm_qla2xxx_handle_data_work(struct work_struct * work)499 static void tcm_qla2xxx_handle_data_work(struct work_struct *work)
500 {
501 struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work);
502
503 /*
504 * Ensure that the complete FCP WRITE payload has been received.
505 * Otherwise return an exception via CHECK_CONDITION status.
506 */
507 cmd->cmd_in_wq = 0;
508
509 cmd->qpair->tgt_counters.qla_core_ret_ctio++;
510 if (!cmd->write_data_transferred) {
511 /*
512 * Check if se_cmd has already been aborted via LUN_RESET, and
513 * waiting upon completion in tcm_qla2xxx_write_pending_status()
514 */
515 if (cmd->se_cmd.transport_state & CMD_T_ABORTED) {
516 complete(&cmd->se_cmd.t_transport_stop_comp);
517 return;
518 }
519
520 switch (cmd->dif_err_code) {
521 case DIF_ERR_GRD:
522 cmd->se_cmd.pi_err =
523 TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED;
524 break;
525 case DIF_ERR_REF:
526 cmd->se_cmd.pi_err =
527 TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED;
528 break;
529 case DIF_ERR_APP:
530 cmd->se_cmd.pi_err =
531 TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED;
532 break;
533 case DIF_ERR_NONE:
534 default:
535 break;
536 }
537
538 if (cmd->se_cmd.pi_err)
539 transport_generic_request_failure(&cmd->se_cmd,
540 cmd->se_cmd.pi_err);
541 else
542 transport_generic_request_failure(&cmd->se_cmd,
543 TCM_CHECK_CONDITION_ABORT_CMD);
544
545 return;
546 }
547
548 return target_execute_cmd(&cmd->se_cmd);
549 }
550
551 /*
552 * Called from qla_target.c:qlt_do_ctio_completion()
553 */
tcm_qla2xxx_handle_data(struct qla_tgt_cmd * cmd)554 static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd *cmd)
555 {
556 cmd->trc_flags |= TRC_DATA_IN;
557 cmd->cmd_in_wq = 1;
558 INIT_WORK(&cmd->work, tcm_qla2xxx_handle_data_work);
559 queue_work_on(smp_processor_id(), tcm_qla2xxx_free_wq, &cmd->work);
560 }
561
tcm_qla2xxx_chk_dif_tags(uint32_t tag)562 static int tcm_qla2xxx_chk_dif_tags(uint32_t tag)
563 {
564 return 0;
565 }
566
tcm_qla2xxx_dif_tags(struct qla_tgt_cmd * cmd,uint16_t * pfw_prot_opts)567 static int tcm_qla2xxx_dif_tags(struct qla_tgt_cmd *cmd,
568 uint16_t *pfw_prot_opts)
569 {
570 struct se_cmd *se_cmd = &cmd->se_cmd;
571
572 if (!(se_cmd->prot_checks & TARGET_DIF_CHECK_GUARD))
573 *pfw_prot_opts |= PO_DISABLE_GUARD_CHECK;
574
575 if (!(se_cmd->prot_checks & TARGET_DIF_CHECK_APPTAG))
576 *pfw_prot_opts |= PO_DIS_APP_TAG_VALD;
577
578 return 0;
579 }
580
581 /*
582 * Called from qla_target.c:qlt_issue_task_mgmt()
583 */
tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd * mcmd,u64 lun,uint16_t tmr_func,uint32_t tag)584 static int tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd *mcmd, u64 lun,
585 uint16_t tmr_func, uint32_t tag)
586 {
587 struct fc_port *sess = mcmd->sess;
588 struct se_cmd *se_cmd = &mcmd->se_cmd;
589 int transl_tmr_func = 0;
590 int flags = TARGET_SCF_ACK_KREF;
591
592 switch (tmr_func) {
593 case QLA_TGT_ABTS:
594 pr_debug("%ld: ABTS received\n", sess->vha->host_no);
595 transl_tmr_func = TMR_ABORT_TASK;
596 flags |= TARGET_SCF_LOOKUP_LUN_FROM_TAG;
597 break;
598 case QLA_TGT_2G_ABORT_TASK:
599 pr_debug("%ld: 2G Abort Task received\n", sess->vha->host_no);
600 transl_tmr_func = TMR_ABORT_TASK;
601 break;
602 case QLA_TGT_CLEAR_ACA:
603 pr_debug("%ld: CLEAR_ACA received\n", sess->vha->host_no);
604 transl_tmr_func = TMR_CLEAR_ACA;
605 break;
606 case QLA_TGT_TARGET_RESET:
607 pr_debug("%ld: TARGET_RESET received\n", sess->vha->host_no);
608 transl_tmr_func = TMR_TARGET_WARM_RESET;
609 break;
610 case QLA_TGT_LUN_RESET:
611 pr_debug("%ld: LUN_RESET received\n", sess->vha->host_no);
612 transl_tmr_func = TMR_LUN_RESET;
613 break;
614 case QLA_TGT_CLEAR_TS:
615 pr_debug("%ld: CLEAR_TS received\n", sess->vha->host_no);
616 transl_tmr_func = TMR_CLEAR_TASK_SET;
617 break;
618 case QLA_TGT_ABORT_TS:
619 pr_debug("%ld: ABORT_TS received\n", sess->vha->host_no);
620 transl_tmr_func = TMR_ABORT_TASK_SET;
621 break;
622 default:
623 pr_debug("%ld: Unknown task mgmt fn 0x%x\n",
624 sess->vha->host_no, tmr_func);
625 return -ENOSYS;
626 }
627
628 return target_submit_tmr(se_cmd, sess->se_sess, NULL, lun, mcmd,
629 transl_tmr_func, GFP_ATOMIC, tag, flags);
630 }
631
tcm_qla2xxx_find_cmd_by_tag(struct fc_port * sess,uint64_t tag)632 static struct qla_tgt_cmd *tcm_qla2xxx_find_cmd_by_tag(struct fc_port *sess,
633 uint64_t tag)
634 {
635 struct qla_tgt_cmd *cmd = NULL;
636 struct se_cmd *secmd;
637 unsigned long flags;
638
639 if (!sess->se_sess)
640 return NULL;
641
642 spin_lock_irqsave(&sess->se_sess->sess_cmd_lock, flags);
643 list_for_each_entry(secmd, &sess->se_sess->sess_cmd_list, se_cmd_list) {
644 /* skip task management functions, including tmr->task_cmd */
645 if (secmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
646 continue;
647
648 if (secmd->tag == tag) {
649 cmd = container_of(secmd, struct qla_tgt_cmd, se_cmd);
650 break;
651 }
652 }
653 spin_unlock_irqrestore(&sess->se_sess->sess_cmd_lock, flags);
654
655 return cmd;
656 }
657
tcm_qla2xxx_queue_data_in(struct se_cmd * se_cmd)658 static int tcm_qla2xxx_queue_data_in(struct se_cmd *se_cmd)
659 {
660 struct qla_tgt_cmd *cmd = container_of(se_cmd,
661 struct qla_tgt_cmd, se_cmd);
662
663 if (cmd->aborted) {
664 /* Cmd can loop during Q-full. tcm_qla2xxx_aborted_task
665 * can get ahead of this cmd. tcm_qla2xxx_aborted_task
666 * already kick start the free.
667 */
668 pr_debug("queue_data_in aborted cmd[%p] refcount %d "
669 "transport_state %x, t_state %x, se_cmd_flags %x\n",
670 cmd, kref_read(&cmd->se_cmd.cmd_kref),
671 cmd->se_cmd.transport_state,
672 cmd->se_cmd.t_state,
673 cmd->se_cmd.se_cmd_flags);
674 return 0;
675 }
676
677 cmd->trc_flags |= TRC_XMIT_DATA;
678 cmd->bufflen = se_cmd->data_length;
679 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
680
681 cmd->sg_cnt = se_cmd->t_data_nents;
682 cmd->sg = se_cmd->t_data_sg;
683 cmd->offset = 0;
684
685 cmd->prot_sg_cnt = se_cmd->t_prot_nents;
686 cmd->prot_sg = se_cmd->t_prot_sg;
687 cmd->blk_sz = se_cmd->se_dev->dev_attrib.block_size;
688 se_cmd->pi_err = 0;
689
690 /*
691 * Now queue completed DATA_IN the qla2xxx LLD and response ring
692 */
693 return qlt_xmit_response(cmd, QLA_TGT_XMIT_DATA|QLA_TGT_XMIT_STATUS,
694 se_cmd->scsi_status);
695 }
696
tcm_qla2xxx_queue_status(struct se_cmd * se_cmd)697 static int tcm_qla2xxx_queue_status(struct se_cmd *se_cmd)
698 {
699 struct qla_tgt_cmd *cmd = container_of(se_cmd,
700 struct qla_tgt_cmd, se_cmd);
701 int xmit_type = QLA_TGT_XMIT_STATUS;
702
703 if (cmd->aborted) {
704 /*
705 * Cmd can loop during Q-full. tcm_qla2xxx_aborted_task
706 * can get ahead of this cmd. tcm_qla2xxx_aborted_task
707 * already kick start the free.
708 */
709 pr_debug(
710 "queue_data_in aborted cmd[%p] refcount %d transport_state %x, t_state %x, se_cmd_flags %x\n",
711 cmd, kref_read(&cmd->se_cmd.cmd_kref),
712 cmd->se_cmd.transport_state, cmd->se_cmd.t_state,
713 cmd->se_cmd.se_cmd_flags);
714 return 0;
715 }
716 cmd->bufflen = se_cmd->data_length;
717 cmd->sg = NULL;
718 cmd->sg_cnt = 0;
719 cmd->offset = 0;
720 cmd->dma_data_direction = target_reverse_dma_direction(se_cmd);
721 if (cmd->trc_flags & TRC_XMIT_STATUS) {
722 pr_crit("Multiple calls for status = %p.\n", cmd);
723 dump_stack();
724 }
725 cmd->trc_flags |= TRC_XMIT_STATUS;
726
727 if (se_cmd->data_direction == DMA_FROM_DEVICE) {
728 /*
729 * For FCP_READ with CHECK_CONDITION status, clear cmd->bufflen
730 * for qla_tgt_xmit_response LLD code
731 */
732 if (se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
733 se_cmd->se_cmd_flags &= ~SCF_OVERFLOW_BIT;
734 se_cmd->residual_count = 0;
735 }
736 se_cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
737 se_cmd->residual_count += se_cmd->data_length;
738
739 cmd->bufflen = 0;
740 }
741 /*
742 * Now queue status response to qla2xxx LLD code and response ring
743 */
744 return qlt_xmit_response(cmd, xmit_type, se_cmd->scsi_status);
745 }
746
tcm_qla2xxx_queue_tm_rsp(struct se_cmd * se_cmd)747 static void tcm_qla2xxx_queue_tm_rsp(struct se_cmd *se_cmd)
748 {
749 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
750 struct qla_tgt_mgmt_cmd *mcmd = container_of(se_cmd,
751 struct qla_tgt_mgmt_cmd, se_cmd);
752
753 pr_debug("queue_tm_rsp: mcmd: %p func: 0x%02x response: 0x%02x\n",
754 mcmd, se_tmr->function, se_tmr->response);
755 /*
756 * Do translation between TCM TM response codes and
757 * QLA2xxx FC TM response codes.
758 */
759 switch (se_tmr->response) {
760 case TMR_FUNCTION_COMPLETE:
761 mcmd->fc_tm_rsp = FC_TM_SUCCESS;
762 break;
763 case TMR_TASK_DOES_NOT_EXIST:
764 mcmd->fc_tm_rsp = FC_TM_BAD_CMD;
765 break;
766 case TMR_FUNCTION_REJECTED:
767 mcmd->fc_tm_rsp = FC_TM_REJECT;
768 break;
769 case TMR_LUN_DOES_NOT_EXIST:
770 default:
771 mcmd->fc_tm_rsp = FC_TM_FAILED;
772 break;
773 }
774 /*
775 * Queue the TM response to QLA2xxx LLD to build a
776 * CTIO response packet.
777 */
778 qlt_xmit_tm_rsp(mcmd);
779 }
780
tcm_qla2xxx_aborted_task(struct se_cmd * se_cmd)781 static void tcm_qla2xxx_aborted_task(struct se_cmd *se_cmd)
782 {
783 struct qla_tgt_cmd *cmd = container_of(se_cmd,
784 struct qla_tgt_cmd, se_cmd);
785
786 if (qlt_abort_cmd(cmd))
787 return;
788 }
789
790 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *,
791 struct tcm_qla2xxx_nacl *, struct fc_port *);
792 /*
793 * Expected to be called with struct qla_hw_data->tgt.sess_lock held
794 */
tcm_qla2xxx_clear_nacl_from_fcport_map(struct fc_port * sess)795 static void tcm_qla2xxx_clear_nacl_from_fcport_map(struct fc_port *sess)
796 {
797 struct se_node_acl *se_nacl = sess->se_sess->se_node_acl;
798 struct se_portal_group *se_tpg = se_nacl->se_tpg;
799 struct se_wwn *se_wwn = se_tpg->se_tpg_wwn;
800 struct tcm_qla2xxx_lport *lport = container_of(se_wwn,
801 struct tcm_qla2xxx_lport, lport_wwn);
802 struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl,
803 struct tcm_qla2xxx_nacl, se_node_acl);
804 void *node;
805
806 pr_debug("fc_rport domain: port_id 0x%06x\n", nacl->nport_id);
807
808 node = btree_remove32(&lport->lport_fcport_map, nacl->nport_id);
809 if (WARN_ON(node && (node != se_nacl))) {
810 /*
811 * The nacl no longer matches what we think it should be.
812 * Most likely a new dynamic acl has been added while
813 * someone dropped the hardware lock. It clearly is a
814 * bug elsewhere, but this bit can't make things worse.
815 */
816 btree_insert32(&lport->lport_fcport_map, nacl->nport_id,
817 node, GFP_ATOMIC);
818 }
819
820 pr_debug("Removed from fcport_map: %p for WWNN: 0x%016LX, port_id: 0x%06x\n",
821 se_nacl, nacl->nport_wwnn, nacl->nport_id);
822 /*
823 * Now clear the se_nacl and session pointers from our HW lport lookup
824 * table mapping for this initiator's fabric S_ID and LOOP_ID entries.
825 *
826 * This is done ahead of callbacks into tcm_qla2xxx_free_session() ->
827 * target_wait_for_sess_cmds() before the session waits for outstanding
828 * I/O to complete, to avoid a race between session shutdown execution
829 * and incoming ATIOs or TMRs picking up a stale se_node_act reference.
830 */
831 tcm_qla2xxx_clear_sess_lookup(lport, nacl, sess);
832 }
833
tcm_qla2xxx_shutdown_sess(struct fc_port * sess)834 static void tcm_qla2xxx_shutdown_sess(struct fc_port *sess)
835 {
836 assert_spin_locked(&sess->vha->hw->tgt.sess_lock);
837 target_sess_cmd_list_set_waiting(sess->se_sess);
838 }
839
tcm_qla2xxx_init_nodeacl(struct se_node_acl * se_nacl,const char * name)840 static int tcm_qla2xxx_init_nodeacl(struct se_node_acl *se_nacl,
841 const char *name)
842 {
843 struct tcm_qla2xxx_nacl *nacl =
844 container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
845 u64 wwnn;
846
847 if (tcm_qla2xxx_parse_wwn(name, &wwnn, 1) < 0)
848 return -EINVAL;
849
850 nacl->nport_wwnn = wwnn;
851 tcm_qla2xxx_format_wwn(&nacl->nport_name[0], TCM_QLA2XXX_NAMELEN, wwnn);
852
853 return 0;
854 }
855
856 /* Start items for tcm_qla2xxx_tpg_attrib_cit */
857
858 #define DEF_QLA_TPG_ATTRIB(name) \
859 \
860 static ssize_t tcm_qla2xxx_tpg_attrib_##name##_show( \
861 struct config_item *item, char *page) \
862 { \
863 struct se_portal_group *se_tpg = attrib_to_tpg(item); \
864 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
865 struct tcm_qla2xxx_tpg, se_tpg); \
866 \
867 return sprintf(page, "%u\n", tpg->tpg_attrib.name); \
868 } \
869 \
870 static ssize_t tcm_qla2xxx_tpg_attrib_##name##_store( \
871 struct config_item *item, const char *page, size_t count) \
872 { \
873 struct se_portal_group *se_tpg = attrib_to_tpg(item); \
874 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \
875 struct tcm_qla2xxx_tpg, se_tpg); \
876 struct tcm_qla2xxx_tpg_attrib *a = &tpg->tpg_attrib; \
877 unsigned long val; \
878 int ret; \
879 \
880 ret = kstrtoul(page, 0, &val); \
881 if (ret < 0) { \
882 pr_err("kstrtoul() failed with" \
883 " ret: %d\n", ret); \
884 return -EINVAL; \
885 } \
886 \
887 if ((val != 0) && (val != 1)) { \
888 pr_err("Illegal boolean value %lu\n", val); \
889 return -EINVAL; \
890 } \
891 \
892 a->name = val; \
893 \
894 return count; \
895 } \
896 CONFIGFS_ATTR(tcm_qla2xxx_tpg_attrib_, name)
897
898 DEF_QLA_TPG_ATTRIB(generate_node_acls);
899 DEF_QLA_TPG_ATTRIB(cache_dynamic_acls);
900 DEF_QLA_TPG_ATTRIB(demo_mode_write_protect);
901 DEF_QLA_TPG_ATTRIB(prod_mode_write_protect);
902 DEF_QLA_TPG_ATTRIB(demo_mode_login_only);
903 #ifdef CONFIG_TCM_QLA2XXX_DEBUG
904 DEF_QLA_TPG_ATTRIB(jam_host);
905 #endif
906
907 static struct configfs_attribute *tcm_qla2xxx_tpg_attrib_attrs[] = {
908 &tcm_qla2xxx_tpg_attrib_attr_generate_node_acls,
909 &tcm_qla2xxx_tpg_attrib_attr_cache_dynamic_acls,
910 &tcm_qla2xxx_tpg_attrib_attr_demo_mode_write_protect,
911 &tcm_qla2xxx_tpg_attrib_attr_prod_mode_write_protect,
912 &tcm_qla2xxx_tpg_attrib_attr_demo_mode_login_only,
913 #ifdef CONFIG_TCM_QLA2XXX_DEBUG
914 &tcm_qla2xxx_tpg_attrib_attr_jam_host,
915 #endif
916 NULL,
917 };
918
919 /* End items for tcm_qla2xxx_tpg_attrib_cit */
920
tcm_qla2xxx_tpg_enable_show(struct config_item * item,char * page)921 static ssize_t tcm_qla2xxx_tpg_enable_show(struct config_item *item,
922 char *page)
923 {
924 struct se_portal_group *se_tpg = to_tpg(item);
925 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
926 struct tcm_qla2xxx_tpg, se_tpg);
927
928 return snprintf(page, PAGE_SIZE, "%d\n",
929 atomic_read(&tpg->lport_tpg_enabled));
930 }
931
tcm_qla2xxx_depend_tpg(struct work_struct * work)932 static void tcm_qla2xxx_depend_tpg(struct work_struct *work)
933 {
934 struct tcm_qla2xxx_tpg *base_tpg = container_of(work,
935 struct tcm_qla2xxx_tpg, tpg_base_work);
936 struct se_portal_group *se_tpg = &base_tpg->se_tpg;
937 struct scsi_qla_host *base_vha = base_tpg->lport->qla_vha;
938
939 if (!target_depend_item(&se_tpg->tpg_group.cg_item)) {
940 atomic_set(&base_tpg->lport_tpg_enabled, 1);
941 qlt_enable_vha(base_vha);
942 }
943 complete(&base_tpg->tpg_base_comp);
944 }
945
tcm_qla2xxx_undepend_tpg(struct work_struct * work)946 static void tcm_qla2xxx_undepend_tpg(struct work_struct *work)
947 {
948 struct tcm_qla2xxx_tpg *base_tpg = container_of(work,
949 struct tcm_qla2xxx_tpg, tpg_base_work);
950 struct se_portal_group *se_tpg = &base_tpg->se_tpg;
951 struct scsi_qla_host *base_vha = base_tpg->lport->qla_vha;
952
953 if (!qlt_stop_phase1(base_vha->vha_tgt.qla_tgt)) {
954 atomic_set(&base_tpg->lport_tpg_enabled, 0);
955 target_undepend_item(&se_tpg->tpg_group.cg_item);
956 }
957 complete(&base_tpg->tpg_base_comp);
958 }
959
tcm_qla2xxx_tpg_enable_store(struct config_item * item,const char * page,size_t count)960 static ssize_t tcm_qla2xxx_tpg_enable_store(struct config_item *item,
961 const char *page, size_t count)
962 {
963 struct se_portal_group *se_tpg = to_tpg(item);
964 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
965 struct tcm_qla2xxx_tpg, se_tpg);
966 unsigned long op;
967 int rc;
968
969 rc = kstrtoul(page, 0, &op);
970 if (rc < 0) {
971 pr_err("kstrtoul() returned %d\n", rc);
972 return -EINVAL;
973 }
974 if ((op != 1) && (op != 0)) {
975 pr_err("Illegal value for tpg_enable: %lu\n", op);
976 return -EINVAL;
977 }
978 if (op) {
979 if (atomic_read(&tpg->lport_tpg_enabled))
980 return -EEXIST;
981
982 INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_depend_tpg);
983 } else {
984 if (!atomic_read(&tpg->lport_tpg_enabled))
985 return count;
986
987 INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_undepend_tpg);
988 }
989 init_completion(&tpg->tpg_base_comp);
990 schedule_work(&tpg->tpg_base_work);
991 wait_for_completion(&tpg->tpg_base_comp);
992
993 if (op) {
994 if (!atomic_read(&tpg->lport_tpg_enabled))
995 return -ENODEV;
996 } else {
997 if (atomic_read(&tpg->lport_tpg_enabled))
998 return -EPERM;
999 }
1000 return count;
1001 }
1002
tcm_qla2xxx_tpg_dynamic_sessions_show(struct config_item * item,char * page)1003 static ssize_t tcm_qla2xxx_tpg_dynamic_sessions_show(struct config_item *item,
1004 char *page)
1005 {
1006 return target_show_dynamic_sessions(to_tpg(item), page);
1007 }
1008
tcm_qla2xxx_tpg_fabric_prot_type_store(struct config_item * item,const char * page,size_t count)1009 static ssize_t tcm_qla2xxx_tpg_fabric_prot_type_store(struct config_item *item,
1010 const char *page, size_t count)
1011 {
1012 struct se_portal_group *se_tpg = to_tpg(item);
1013 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
1014 struct tcm_qla2xxx_tpg, se_tpg);
1015 unsigned long val;
1016 int ret = kstrtoul(page, 0, &val);
1017
1018 if (ret) {
1019 pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret);
1020 return ret;
1021 }
1022 if (val != 0 && val != 1 && val != 3) {
1023 pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val);
1024 return -EINVAL;
1025 }
1026 tpg->tpg_attrib.fabric_prot_type = val;
1027
1028 return count;
1029 }
1030
tcm_qla2xxx_tpg_fabric_prot_type_show(struct config_item * item,char * page)1031 static ssize_t tcm_qla2xxx_tpg_fabric_prot_type_show(struct config_item *item,
1032 char *page)
1033 {
1034 struct se_portal_group *se_tpg = to_tpg(item);
1035 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
1036 struct tcm_qla2xxx_tpg, se_tpg);
1037
1038 return sprintf(page, "%d\n", tpg->tpg_attrib.fabric_prot_type);
1039 }
1040
1041 CONFIGFS_ATTR(tcm_qla2xxx_tpg_, enable);
1042 CONFIGFS_ATTR_RO(tcm_qla2xxx_tpg_, dynamic_sessions);
1043 CONFIGFS_ATTR(tcm_qla2xxx_tpg_, fabric_prot_type);
1044
1045 static struct configfs_attribute *tcm_qla2xxx_tpg_attrs[] = {
1046 &tcm_qla2xxx_tpg_attr_enable,
1047 &tcm_qla2xxx_tpg_attr_dynamic_sessions,
1048 &tcm_qla2xxx_tpg_attr_fabric_prot_type,
1049 NULL,
1050 };
1051
tcm_qla2xxx_make_tpg(struct se_wwn * wwn,const char * name)1052 static struct se_portal_group *tcm_qla2xxx_make_tpg(struct se_wwn *wwn,
1053 const char *name)
1054 {
1055 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1056 struct tcm_qla2xxx_lport, lport_wwn);
1057 struct tcm_qla2xxx_tpg *tpg;
1058 unsigned long tpgt;
1059 int ret;
1060
1061 if (strstr(name, "tpgt_") != name)
1062 return ERR_PTR(-EINVAL);
1063 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > USHRT_MAX)
1064 return ERR_PTR(-EINVAL);
1065
1066 if ((tpgt != 1)) {
1067 pr_err("In non NPIV mode, a single TPG=1 is used for HW port mappings\n");
1068 return ERR_PTR(-ENOSYS);
1069 }
1070
1071 tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL);
1072 if (!tpg) {
1073 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1074 return ERR_PTR(-ENOMEM);
1075 }
1076 tpg->lport = lport;
1077 tpg->lport_tpgt = tpgt;
1078 /*
1079 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1080 * NodeACLs
1081 */
1082 tpg->tpg_attrib.generate_node_acls = 1;
1083 tpg->tpg_attrib.demo_mode_write_protect = 1;
1084 tpg->tpg_attrib.cache_dynamic_acls = 1;
1085 tpg->tpg_attrib.demo_mode_login_only = 1;
1086 tpg->tpg_attrib.jam_host = 0;
1087
1088 ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP);
1089 if (ret < 0) {
1090 kfree(tpg);
1091 return NULL;
1092 }
1093
1094 lport->tpg_1 = tpg;
1095
1096 return &tpg->se_tpg;
1097 }
1098
tcm_qla2xxx_drop_tpg(struct se_portal_group * se_tpg)1099 static void tcm_qla2xxx_drop_tpg(struct se_portal_group *se_tpg)
1100 {
1101 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
1102 struct tcm_qla2xxx_tpg, se_tpg);
1103 struct tcm_qla2xxx_lport *lport = tpg->lport;
1104 struct scsi_qla_host *vha = lport->qla_vha;
1105 /*
1106 * Call into qla2x_target.c LLD logic to shutdown the active
1107 * FC Nexuses and disable target mode operation for this qla_hw_data
1108 */
1109 if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stop)
1110 qlt_stop_phase1(vha->vha_tgt.qla_tgt);
1111
1112 core_tpg_deregister(se_tpg);
1113 /*
1114 * Clear local TPG=1 pointer for non NPIV mode.
1115 */
1116 lport->tpg_1 = NULL;
1117 kfree(tpg);
1118 }
1119
tcm_qla2xxx_npiv_tpg_enable_show(struct config_item * item,char * page)1120 static ssize_t tcm_qla2xxx_npiv_tpg_enable_show(struct config_item *item,
1121 char *page)
1122 {
1123 return tcm_qla2xxx_tpg_enable_show(item, page);
1124 }
1125
tcm_qla2xxx_npiv_tpg_enable_store(struct config_item * item,const char * page,size_t count)1126 static ssize_t tcm_qla2xxx_npiv_tpg_enable_store(struct config_item *item,
1127 const char *page, size_t count)
1128 {
1129 struct se_portal_group *se_tpg = to_tpg(item);
1130 struct se_wwn *se_wwn = se_tpg->se_tpg_wwn;
1131 struct tcm_qla2xxx_lport *lport = container_of(se_wwn,
1132 struct tcm_qla2xxx_lport, lport_wwn);
1133 struct scsi_qla_host *vha = lport->qla_vha;
1134 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
1135 struct tcm_qla2xxx_tpg, se_tpg);
1136 unsigned long op;
1137 int rc;
1138
1139 rc = kstrtoul(page, 0, &op);
1140 if (rc < 0) {
1141 pr_err("kstrtoul() returned %d\n", rc);
1142 return -EINVAL;
1143 }
1144 if ((op != 1) && (op != 0)) {
1145 pr_err("Illegal value for tpg_enable: %lu\n", op);
1146 return -EINVAL;
1147 }
1148 if (op) {
1149 if (atomic_read(&tpg->lport_tpg_enabled))
1150 return -EEXIST;
1151
1152 atomic_set(&tpg->lport_tpg_enabled, 1);
1153 qlt_enable_vha(vha);
1154 } else {
1155 if (!atomic_read(&tpg->lport_tpg_enabled))
1156 return count;
1157
1158 atomic_set(&tpg->lport_tpg_enabled, 0);
1159 qlt_stop_phase1(vha->vha_tgt.qla_tgt);
1160 }
1161
1162 return count;
1163 }
1164
1165 CONFIGFS_ATTR(tcm_qla2xxx_npiv_tpg_, enable);
1166
1167 static struct configfs_attribute *tcm_qla2xxx_npiv_tpg_attrs[] = {
1168 &tcm_qla2xxx_npiv_tpg_attr_enable,
1169 NULL,
1170 };
1171
tcm_qla2xxx_npiv_make_tpg(struct se_wwn * wwn,const char * name)1172 static struct se_portal_group *tcm_qla2xxx_npiv_make_tpg(struct se_wwn *wwn,
1173 const char *name)
1174 {
1175 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1176 struct tcm_qla2xxx_lport, lport_wwn);
1177 struct tcm_qla2xxx_tpg *tpg;
1178 unsigned long tpgt;
1179 int ret;
1180
1181 if (strstr(name, "tpgt_") != name)
1182 return ERR_PTR(-EINVAL);
1183 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > USHRT_MAX)
1184 return ERR_PTR(-EINVAL);
1185
1186 tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL);
1187 if (!tpg) {
1188 pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n");
1189 return ERR_PTR(-ENOMEM);
1190 }
1191 tpg->lport = lport;
1192 tpg->lport_tpgt = tpgt;
1193
1194 /*
1195 * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic
1196 * NodeACLs
1197 */
1198 tpg->tpg_attrib.generate_node_acls = 1;
1199 tpg->tpg_attrib.demo_mode_write_protect = 1;
1200 tpg->tpg_attrib.cache_dynamic_acls = 1;
1201 tpg->tpg_attrib.demo_mode_login_only = 1;
1202
1203 ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP);
1204 if (ret < 0) {
1205 kfree(tpg);
1206 return NULL;
1207 }
1208 lport->tpg_1 = tpg;
1209 return &tpg->se_tpg;
1210 }
1211
1212 /*
1213 * Expected to be called with struct qla_hw_data->tgt.sess_lock held
1214 */
tcm_qla2xxx_find_sess_by_s_id(scsi_qla_host_t * vha,const uint8_t * s_id)1215 static struct fc_port *tcm_qla2xxx_find_sess_by_s_id(
1216 scsi_qla_host_t *vha,
1217 const uint8_t *s_id)
1218 {
1219 struct tcm_qla2xxx_lport *lport;
1220 struct se_node_acl *se_nacl;
1221 struct tcm_qla2xxx_nacl *nacl;
1222 u32 key;
1223
1224 lport = vha->vha_tgt.target_lport_ptr;
1225 if (!lport) {
1226 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1227 dump_stack();
1228 return NULL;
1229 }
1230
1231 key = sid_to_key(s_id);
1232 pr_debug("find_sess_by_s_id: 0x%06x\n", key);
1233
1234 se_nacl = btree_lookup32(&lport->lport_fcport_map, key);
1235 if (!se_nacl) {
1236 pr_debug("Unable to locate s_id: 0x%06x\n", key);
1237 return NULL;
1238 }
1239 pr_debug("find_sess_by_s_id: located se_nacl: %p, initiatorname: %s\n",
1240 se_nacl, se_nacl->initiatorname);
1241
1242 nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
1243 if (!nacl->fc_port) {
1244 pr_err("Unable to locate struct fc_port\n");
1245 return NULL;
1246 }
1247
1248 return nacl->fc_port;
1249 }
1250
1251 /*
1252 * Expected to be called with struct qla_hw_data->tgt.sess_lock held
1253 */
tcm_qla2xxx_set_sess_by_s_id(struct tcm_qla2xxx_lport * lport,struct se_node_acl * new_se_nacl,struct tcm_qla2xxx_nacl * nacl,struct se_session * se_sess,struct fc_port * fc_port,uint8_t * s_id)1254 static void tcm_qla2xxx_set_sess_by_s_id(
1255 struct tcm_qla2xxx_lport *lport,
1256 struct se_node_acl *new_se_nacl,
1257 struct tcm_qla2xxx_nacl *nacl,
1258 struct se_session *se_sess,
1259 struct fc_port *fc_port,
1260 uint8_t *s_id)
1261 {
1262 u32 key;
1263 void *slot;
1264 int rc;
1265
1266 key = sid_to_key(s_id);
1267 pr_debug("set_sess_by_s_id: %06x\n", key);
1268
1269 slot = btree_lookup32(&lport->lport_fcport_map, key);
1270 if (!slot) {
1271 if (new_se_nacl) {
1272 pr_debug("Setting up new fc_port entry to new_se_nacl\n");
1273 nacl->nport_id = key;
1274 rc = btree_insert32(&lport->lport_fcport_map, key,
1275 new_se_nacl, GFP_ATOMIC);
1276 if (rc)
1277 printk(KERN_ERR "Unable to insert s_id into fcport_map: %06x\n",
1278 (int)key);
1279 } else {
1280 pr_debug("Wiping nonexisting fc_port entry\n");
1281 }
1282
1283 fc_port->se_sess = se_sess;
1284 nacl->fc_port = fc_port;
1285 return;
1286 }
1287
1288 if (nacl->fc_port) {
1289 if (new_se_nacl == NULL) {
1290 pr_debug("Clearing existing nacl->fc_port and fc_port entry\n");
1291 btree_remove32(&lport->lport_fcport_map, key);
1292 nacl->fc_port = NULL;
1293 return;
1294 }
1295 pr_debug("Replacing existing nacl->fc_port and fc_port entry\n");
1296 btree_update32(&lport->lport_fcport_map, key, new_se_nacl);
1297 fc_port->se_sess = se_sess;
1298 nacl->fc_port = fc_port;
1299 return;
1300 }
1301
1302 if (new_se_nacl == NULL) {
1303 pr_debug("Clearing existing fc_port entry\n");
1304 btree_remove32(&lport->lport_fcport_map, key);
1305 return;
1306 }
1307
1308 pr_debug("Replacing existing fc_port entry w/o active nacl->fc_port\n");
1309 btree_update32(&lport->lport_fcport_map, key, new_se_nacl);
1310 fc_port->se_sess = se_sess;
1311 nacl->fc_port = fc_port;
1312
1313 pr_debug("Setup nacl->fc_port %p by s_id for se_nacl: %p, initiatorname: %s\n",
1314 nacl->fc_port, new_se_nacl, new_se_nacl->initiatorname);
1315 }
1316
1317 /*
1318 * Expected to be called with struct qla_hw_data->tgt.sess_lock held
1319 */
tcm_qla2xxx_find_sess_by_loop_id(scsi_qla_host_t * vha,const uint16_t loop_id)1320 static struct fc_port *tcm_qla2xxx_find_sess_by_loop_id(
1321 scsi_qla_host_t *vha,
1322 const uint16_t loop_id)
1323 {
1324 struct tcm_qla2xxx_lport *lport;
1325 struct se_node_acl *se_nacl;
1326 struct tcm_qla2xxx_nacl *nacl;
1327 struct tcm_qla2xxx_fc_loopid *fc_loopid;
1328
1329 lport = vha->vha_tgt.target_lport_ptr;
1330 if (!lport) {
1331 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1332 dump_stack();
1333 return NULL;
1334 }
1335
1336 pr_debug("find_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id);
1337
1338 fc_loopid = lport->lport_loopid_map + loop_id;
1339 se_nacl = fc_loopid->se_nacl;
1340 if (!se_nacl) {
1341 pr_debug("Unable to locate se_nacl by loop_id: 0x%04x\n",
1342 loop_id);
1343 return NULL;
1344 }
1345
1346 nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl);
1347
1348 if (!nacl->fc_port) {
1349 pr_err("Unable to locate struct fc_port\n");
1350 return NULL;
1351 }
1352
1353 return nacl->fc_port;
1354 }
1355
1356 /*
1357 * Expected to be called with struct qla_hw_data->tgt.sess_lock held
1358 */
tcm_qla2xxx_set_sess_by_loop_id(struct tcm_qla2xxx_lport * lport,struct se_node_acl * new_se_nacl,struct tcm_qla2xxx_nacl * nacl,struct se_session * se_sess,struct fc_port * fc_port,uint16_t loop_id)1359 static void tcm_qla2xxx_set_sess_by_loop_id(
1360 struct tcm_qla2xxx_lport *lport,
1361 struct se_node_acl *new_se_nacl,
1362 struct tcm_qla2xxx_nacl *nacl,
1363 struct se_session *se_sess,
1364 struct fc_port *fc_port,
1365 uint16_t loop_id)
1366 {
1367 struct se_node_acl *saved_nacl;
1368 struct tcm_qla2xxx_fc_loopid *fc_loopid;
1369
1370 pr_debug("set_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id);
1371
1372 fc_loopid = &((struct tcm_qla2xxx_fc_loopid *)
1373 lport->lport_loopid_map)[loop_id];
1374
1375 saved_nacl = fc_loopid->se_nacl;
1376 if (!saved_nacl) {
1377 pr_debug("Setting up new fc_loopid->se_nacl to new_se_nacl\n");
1378 fc_loopid->se_nacl = new_se_nacl;
1379 if (fc_port->se_sess != se_sess)
1380 fc_port->se_sess = se_sess;
1381 if (nacl->fc_port != fc_port)
1382 nacl->fc_port = fc_port;
1383 return;
1384 }
1385
1386 if (nacl->fc_port) {
1387 if (new_se_nacl == NULL) {
1388 pr_debug("Clearing nacl->fc_port and fc_loopid->se_nacl\n");
1389 fc_loopid->se_nacl = NULL;
1390 nacl->fc_port = NULL;
1391 return;
1392 }
1393
1394 pr_debug("Replacing existing nacl->fc_port and fc_loopid->se_nacl\n");
1395 fc_loopid->se_nacl = new_se_nacl;
1396 if (fc_port->se_sess != se_sess)
1397 fc_port->se_sess = se_sess;
1398 if (nacl->fc_port != fc_port)
1399 nacl->fc_port = fc_port;
1400 return;
1401 }
1402
1403 if (new_se_nacl == NULL) {
1404 pr_debug("Clearing fc_loopid->se_nacl\n");
1405 fc_loopid->se_nacl = NULL;
1406 return;
1407 }
1408
1409 pr_debug("Replacing existing fc_loopid->se_nacl w/o active nacl->fc_port\n");
1410 fc_loopid->se_nacl = new_se_nacl;
1411 if (fc_port->se_sess != se_sess)
1412 fc_port->se_sess = se_sess;
1413 if (nacl->fc_port != fc_port)
1414 nacl->fc_port = fc_port;
1415
1416 pr_debug("Setup nacl->fc_port %p by loop_id for se_nacl: %p, initiatorname: %s\n",
1417 nacl->fc_port, new_se_nacl, new_se_nacl->initiatorname);
1418 }
1419
1420 /*
1421 * Should always be called with qla_hw_data->tgt.sess_lock held.
1422 */
tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport * lport,struct tcm_qla2xxx_nacl * nacl,struct fc_port * sess)1423 static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *lport,
1424 struct tcm_qla2xxx_nacl *nacl, struct fc_port *sess)
1425 {
1426 struct se_session *se_sess = sess->se_sess;
1427 unsigned char be_sid[3];
1428
1429 be_sid[0] = sess->d_id.b.domain;
1430 be_sid[1] = sess->d_id.b.area;
1431 be_sid[2] = sess->d_id.b.al_pa;
1432
1433 tcm_qla2xxx_set_sess_by_s_id(lport, NULL, nacl, se_sess,
1434 sess, be_sid);
1435 tcm_qla2xxx_set_sess_by_loop_id(lport, NULL, nacl, se_sess,
1436 sess, sess->loop_id);
1437 }
1438
tcm_qla2xxx_free_session(struct fc_port * sess)1439 static void tcm_qla2xxx_free_session(struct fc_port *sess)
1440 {
1441 struct qla_tgt *tgt = sess->tgt;
1442 struct qla_hw_data *ha = tgt->ha;
1443 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1444 struct se_session *se_sess;
1445 struct tcm_qla2xxx_lport *lport;
1446
1447 BUG_ON(in_interrupt());
1448
1449 se_sess = sess->se_sess;
1450 if (!se_sess) {
1451 pr_err("struct fc_port->se_sess is NULL\n");
1452 dump_stack();
1453 return;
1454 }
1455
1456 lport = vha->vha_tgt.target_lport_ptr;
1457 if (!lport) {
1458 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1459 dump_stack();
1460 return;
1461 }
1462 target_wait_for_sess_cmds(se_sess);
1463
1464 target_remove_session(se_sess);
1465 }
1466
tcm_qla2xxx_session_cb(struct se_portal_group * se_tpg,struct se_session * se_sess,void * p)1467 static int tcm_qla2xxx_session_cb(struct se_portal_group *se_tpg,
1468 struct se_session *se_sess, void *p)
1469 {
1470 struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg,
1471 struct tcm_qla2xxx_tpg, se_tpg);
1472 struct tcm_qla2xxx_lport *lport = tpg->lport;
1473 struct qla_hw_data *ha = lport->qla_vha->hw;
1474 struct se_node_acl *se_nacl = se_sess->se_node_acl;
1475 struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl,
1476 struct tcm_qla2xxx_nacl, se_node_acl);
1477 struct fc_port *qlat_sess = p;
1478 uint16_t loop_id = qlat_sess->loop_id;
1479 unsigned long flags;
1480 unsigned char be_sid[3];
1481
1482 be_sid[0] = qlat_sess->d_id.b.domain;
1483 be_sid[1] = qlat_sess->d_id.b.area;
1484 be_sid[2] = qlat_sess->d_id.b.al_pa;
1485
1486 /*
1487 * And now setup se_nacl and session pointers into HW lport internal
1488 * mappings for fabric S_ID and LOOP_ID.
1489 */
1490 spin_lock_irqsave(&ha->tgt.sess_lock, flags);
1491 tcm_qla2xxx_set_sess_by_s_id(lport, se_nacl, nacl,
1492 se_sess, qlat_sess, be_sid);
1493 tcm_qla2xxx_set_sess_by_loop_id(lport, se_nacl, nacl,
1494 se_sess, qlat_sess, loop_id);
1495 spin_unlock_irqrestore(&ha->tgt.sess_lock, flags);
1496
1497 return 0;
1498 }
1499
1500 /*
1501 * Called via qlt_create_sess():ha->qla2x_tmpl->check_initiator_node_acl()
1502 * to locate struct se_node_acl
1503 */
tcm_qla2xxx_check_initiator_node_acl(scsi_qla_host_t * vha,unsigned char * fc_wwpn,struct fc_port * qlat_sess)1504 static int tcm_qla2xxx_check_initiator_node_acl(
1505 scsi_qla_host_t *vha,
1506 unsigned char *fc_wwpn,
1507 struct fc_port *qlat_sess)
1508 {
1509 struct qla_hw_data *ha = vha->hw;
1510 struct tcm_qla2xxx_lport *lport;
1511 struct tcm_qla2xxx_tpg *tpg;
1512 struct se_session *se_sess;
1513 unsigned char port_name[36];
1514 int num_tags = (ha->cur_fw_xcb_count) ? ha->cur_fw_xcb_count :
1515 TCM_QLA2XXX_DEFAULT_TAGS;
1516
1517 lport = vha->vha_tgt.target_lport_ptr;
1518 if (!lport) {
1519 pr_err("Unable to locate struct tcm_qla2xxx_lport\n");
1520 dump_stack();
1521 return -EINVAL;
1522 }
1523 /*
1524 * Locate the TPG=1 reference..
1525 */
1526 tpg = lport->tpg_1;
1527 if (!tpg) {
1528 pr_err("Unable to lcoate struct tcm_qla2xxx_lport->tpg_1\n");
1529 return -EINVAL;
1530 }
1531 /*
1532 * Format the FCP Initiator port_name into colon seperated values to
1533 * match the format by tcm_qla2xxx explict ConfigFS NodeACLs.
1534 */
1535 memset(&port_name, 0, 36);
1536 snprintf(port_name, sizeof(port_name), "%8phC", fc_wwpn);
1537 /*
1538 * Locate our struct se_node_acl either from an explict NodeACL created
1539 * via ConfigFS, or via running in TPG demo mode.
1540 */
1541 se_sess = target_setup_session(&tpg->se_tpg, num_tags,
1542 sizeof(struct qla_tgt_cmd),
1543 TARGET_PROT_ALL, port_name,
1544 qlat_sess, tcm_qla2xxx_session_cb);
1545 if (IS_ERR(se_sess))
1546 return PTR_ERR(se_sess);
1547
1548 return 0;
1549 }
1550
tcm_qla2xxx_update_sess(struct fc_port * sess,port_id_t s_id,uint16_t loop_id,bool conf_compl_supported)1551 static void tcm_qla2xxx_update_sess(struct fc_port *sess, port_id_t s_id,
1552 uint16_t loop_id, bool conf_compl_supported)
1553 {
1554 struct qla_tgt *tgt = sess->tgt;
1555 struct qla_hw_data *ha = tgt->ha;
1556 scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev);
1557 struct tcm_qla2xxx_lport *lport = vha->vha_tgt.target_lport_ptr;
1558 struct se_node_acl *se_nacl = sess->se_sess->se_node_acl;
1559 struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl,
1560 struct tcm_qla2xxx_nacl, se_node_acl);
1561 u32 key;
1562
1563
1564 if (sess->loop_id != loop_id || sess->d_id.b24 != s_id.b24)
1565 pr_info("Updating session %p from port %8phC loop_id %d -> %d s_id %x:%x:%x -> %x:%x:%x\n",
1566 sess, sess->port_name,
1567 sess->loop_id, loop_id, sess->d_id.b.domain,
1568 sess->d_id.b.area, sess->d_id.b.al_pa, s_id.b.domain,
1569 s_id.b.area, s_id.b.al_pa);
1570
1571 if (sess->loop_id != loop_id) {
1572 /*
1573 * Because we can shuffle loop IDs around and we
1574 * update different sessions non-atomically, we might
1575 * have overwritten this session's old loop ID
1576 * already, and we might end up overwriting some other
1577 * session that will be updated later. So we have to
1578 * be extra careful and we can't warn about those things...
1579 */
1580 if (lport->lport_loopid_map[sess->loop_id].se_nacl == se_nacl)
1581 lport->lport_loopid_map[sess->loop_id].se_nacl = NULL;
1582
1583 lport->lport_loopid_map[loop_id].se_nacl = se_nacl;
1584
1585 sess->loop_id = loop_id;
1586 }
1587
1588 if (sess->d_id.b24 != s_id.b24) {
1589 key = (((u32) sess->d_id.b.domain << 16) |
1590 ((u32) sess->d_id.b.area << 8) |
1591 ((u32) sess->d_id.b.al_pa));
1592
1593 if (btree_lookup32(&lport->lport_fcport_map, key))
1594 WARN(btree_remove32(&lport->lport_fcport_map, key) !=
1595 se_nacl, "Found wrong se_nacl when updating s_id %x:%x:%x\n",
1596 sess->d_id.b.domain, sess->d_id.b.area,
1597 sess->d_id.b.al_pa);
1598 else
1599 WARN(1, "No lport_fcport_map entry for s_id %x:%x:%x\n",
1600 sess->d_id.b.domain, sess->d_id.b.area,
1601 sess->d_id.b.al_pa);
1602
1603 key = (((u32) s_id.b.domain << 16) |
1604 ((u32) s_id.b.area << 8) |
1605 ((u32) s_id.b.al_pa));
1606
1607 if (btree_lookup32(&lport->lport_fcport_map, key)) {
1608 WARN(1, "Already have lport_fcport_map entry for s_id %x:%x:%x\n",
1609 s_id.b.domain, s_id.b.area, s_id.b.al_pa);
1610 btree_update32(&lport->lport_fcport_map, key, se_nacl);
1611 } else {
1612 btree_insert32(&lport->lport_fcport_map, key, se_nacl,
1613 GFP_ATOMIC);
1614 }
1615
1616 sess->d_id = s_id;
1617 nacl->nport_id = key;
1618 }
1619
1620 sess->conf_compl_supported = conf_compl_supported;
1621
1622 }
1623
1624 /*
1625 * Calls into tcm_qla2xxx used by qla2xxx LLD I/O path.
1626 */
1627 static struct qla_tgt_func_tmpl tcm_qla2xxx_template = {
1628 .find_cmd_by_tag = tcm_qla2xxx_find_cmd_by_tag,
1629 .handle_cmd = tcm_qla2xxx_handle_cmd,
1630 .handle_data = tcm_qla2xxx_handle_data,
1631 .handle_tmr = tcm_qla2xxx_handle_tmr,
1632 .free_cmd = tcm_qla2xxx_free_cmd,
1633 .free_mcmd = tcm_qla2xxx_free_mcmd,
1634 .free_session = tcm_qla2xxx_free_session,
1635 .update_sess = tcm_qla2xxx_update_sess,
1636 .check_initiator_node_acl = tcm_qla2xxx_check_initiator_node_acl,
1637 .find_sess_by_s_id = tcm_qla2xxx_find_sess_by_s_id,
1638 .find_sess_by_loop_id = tcm_qla2xxx_find_sess_by_loop_id,
1639 .clear_nacl_from_fcport_map = tcm_qla2xxx_clear_nacl_from_fcport_map,
1640 .put_sess = tcm_qla2xxx_put_sess,
1641 .shutdown_sess = tcm_qla2xxx_shutdown_sess,
1642 .get_dif_tags = tcm_qla2xxx_dif_tags,
1643 .chk_dif_tags = tcm_qla2xxx_chk_dif_tags,
1644 };
1645
tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport * lport)1646 static int tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport *lport)
1647 {
1648 int rc;
1649
1650 rc = btree_init32(&lport->lport_fcport_map);
1651 if (rc) {
1652 pr_err("Unable to initialize lport->lport_fcport_map btree\n");
1653 return rc;
1654 }
1655
1656 lport->lport_loopid_map =
1657 vzalloc(array_size(65536,
1658 sizeof(struct tcm_qla2xxx_fc_loopid)));
1659 if (!lport->lport_loopid_map) {
1660 pr_err("Unable to allocate lport->lport_loopid_map of %zu bytes\n",
1661 sizeof(struct tcm_qla2xxx_fc_loopid) * 65536);
1662 btree_destroy32(&lport->lport_fcport_map);
1663 return -ENOMEM;
1664 }
1665 pr_debug("qla2xxx: Allocated lport_loopid_map of %zu bytes\n",
1666 sizeof(struct tcm_qla2xxx_fc_loopid) * 65536);
1667 return 0;
1668 }
1669
tcm_qla2xxx_lport_register_cb(struct scsi_qla_host * vha,void * target_lport_ptr,u64 npiv_wwpn,u64 npiv_wwnn)1670 static int tcm_qla2xxx_lport_register_cb(struct scsi_qla_host *vha,
1671 void *target_lport_ptr,
1672 u64 npiv_wwpn, u64 npiv_wwnn)
1673 {
1674 struct qla_hw_data *ha = vha->hw;
1675 struct tcm_qla2xxx_lport *lport =
1676 (struct tcm_qla2xxx_lport *)target_lport_ptr;
1677 /*
1678 * Setup tgt_ops, local pointer to vha and target_lport_ptr
1679 */
1680 ha->tgt.tgt_ops = &tcm_qla2xxx_template;
1681 vha->vha_tgt.target_lport_ptr = target_lport_ptr;
1682 lport->qla_vha = vha;
1683
1684 return 0;
1685 }
1686
tcm_qla2xxx_make_lport(struct target_fabric_configfs * tf,struct config_group * group,const char * name)1687 static struct se_wwn *tcm_qla2xxx_make_lport(
1688 struct target_fabric_configfs *tf,
1689 struct config_group *group,
1690 const char *name)
1691 {
1692 struct tcm_qla2xxx_lport *lport;
1693 u64 wwpn;
1694 int ret = -ENODEV;
1695
1696 if (tcm_qla2xxx_parse_wwn(name, &wwpn, 1) < 0)
1697 return ERR_PTR(-EINVAL);
1698
1699 lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL);
1700 if (!lport) {
1701 pr_err("Unable to allocate struct tcm_qla2xxx_lport\n");
1702 return ERR_PTR(-ENOMEM);
1703 }
1704 lport->lport_wwpn = wwpn;
1705 tcm_qla2xxx_format_wwn(&lport->lport_name[0], TCM_QLA2XXX_NAMELEN,
1706 wwpn);
1707 sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) wwpn);
1708
1709 ret = tcm_qla2xxx_init_lport(lport);
1710 if (ret != 0)
1711 goto out;
1712
1713 ret = qlt_lport_register(lport, wwpn, 0, 0,
1714 tcm_qla2xxx_lport_register_cb);
1715 if (ret != 0)
1716 goto out_lport;
1717
1718 return &lport->lport_wwn;
1719 out_lport:
1720 vfree(lport->lport_loopid_map);
1721 btree_destroy32(&lport->lport_fcport_map);
1722 out:
1723 kfree(lport);
1724 return ERR_PTR(ret);
1725 }
1726
tcm_qla2xxx_drop_lport(struct se_wwn * wwn)1727 static void tcm_qla2xxx_drop_lport(struct se_wwn *wwn)
1728 {
1729 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1730 struct tcm_qla2xxx_lport, lport_wwn);
1731 struct scsi_qla_host *vha = lport->qla_vha;
1732 struct se_node_acl *node;
1733 u32 key = 0;
1734
1735 /*
1736 * Call into qla2x_target.c LLD logic to complete the
1737 * shutdown of struct qla_tgt after the call to
1738 * qlt_stop_phase1() from tcm_qla2xxx_drop_tpg() above..
1739 */
1740 if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stopped)
1741 qlt_stop_phase2(vha->vha_tgt.qla_tgt);
1742
1743 qlt_lport_deregister(vha);
1744
1745 vfree(lport->lport_loopid_map);
1746 btree_for_each_safe32(&lport->lport_fcport_map, key, node)
1747 btree_remove32(&lport->lport_fcport_map, key);
1748 btree_destroy32(&lport->lport_fcport_map);
1749 kfree(lport);
1750 }
1751
tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host * base_vha,void * target_lport_ptr,u64 npiv_wwpn,u64 npiv_wwnn)1752 static int tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host *base_vha,
1753 void *target_lport_ptr,
1754 u64 npiv_wwpn, u64 npiv_wwnn)
1755 {
1756 struct fc_vport *vport;
1757 struct Scsi_Host *sh = base_vha->host;
1758 struct scsi_qla_host *npiv_vha;
1759 struct tcm_qla2xxx_lport *lport =
1760 (struct tcm_qla2xxx_lport *)target_lport_ptr;
1761 struct tcm_qla2xxx_lport *base_lport =
1762 (struct tcm_qla2xxx_lport *)base_vha->vha_tgt.target_lport_ptr;
1763 struct fc_vport_identifiers vport_id;
1764
1765 if (qla_ini_mode_enabled(base_vha)) {
1766 pr_err("qla2xxx base_vha not enabled for target mode\n");
1767 return -EPERM;
1768 }
1769
1770 if (!base_lport || !base_lport->tpg_1 ||
1771 !atomic_read(&base_lport->tpg_1->lport_tpg_enabled)) {
1772 pr_err("qla2xxx base_lport or tpg_1 not available\n");
1773 return -EPERM;
1774 }
1775
1776 memset(&vport_id, 0, sizeof(vport_id));
1777 vport_id.port_name = npiv_wwpn;
1778 vport_id.node_name = npiv_wwnn;
1779 vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR;
1780 vport_id.vport_type = FC_PORTTYPE_NPIV;
1781 vport_id.disable = false;
1782
1783 vport = fc_vport_create(sh, 0, &vport_id);
1784 if (!vport) {
1785 pr_err("fc_vport_create failed for qla2xxx_npiv\n");
1786 return -ENODEV;
1787 }
1788 /*
1789 * Setup local pointer to NPIV vhba + target_lport_ptr
1790 */
1791 npiv_vha = (struct scsi_qla_host *)vport->dd_data;
1792 npiv_vha->vha_tgt.target_lport_ptr = target_lport_ptr;
1793 lport->qla_vha = npiv_vha;
1794 scsi_host_get(npiv_vha->host);
1795 return 0;
1796 }
1797
1798
tcm_qla2xxx_npiv_make_lport(struct target_fabric_configfs * tf,struct config_group * group,const char * name)1799 static struct se_wwn *tcm_qla2xxx_npiv_make_lport(
1800 struct target_fabric_configfs *tf,
1801 struct config_group *group,
1802 const char *name)
1803 {
1804 struct tcm_qla2xxx_lport *lport;
1805 u64 phys_wwpn, npiv_wwpn, npiv_wwnn;
1806 char *p, tmp[128];
1807 int ret;
1808
1809 snprintf(tmp, 128, "%s", name);
1810
1811 p = strchr(tmp, '@');
1812 if (!p) {
1813 pr_err("Unable to locate NPIV '@' separator\n");
1814 return ERR_PTR(-EINVAL);
1815 }
1816 *p++ = '\0';
1817
1818 if (tcm_qla2xxx_parse_wwn(tmp, &phys_wwpn, 1) < 0)
1819 return ERR_PTR(-EINVAL);
1820
1821 if (tcm_qla2xxx_npiv_parse_wwn(p, strlen(p)+1,
1822 &npiv_wwpn, &npiv_wwnn) < 0)
1823 return ERR_PTR(-EINVAL);
1824
1825 lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL);
1826 if (!lport) {
1827 pr_err("Unable to allocate struct tcm_qla2xxx_lport for NPIV\n");
1828 return ERR_PTR(-ENOMEM);
1829 }
1830 lport->lport_npiv_wwpn = npiv_wwpn;
1831 lport->lport_npiv_wwnn = npiv_wwnn;
1832 sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) npiv_wwpn);
1833
1834 ret = tcm_qla2xxx_init_lport(lport);
1835 if (ret != 0)
1836 goto out;
1837
1838 ret = qlt_lport_register(lport, phys_wwpn, npiv_wwpn, npiv_wwnn,
1839 tcm_qla2xxx_lport_register_npiv_cb);
1840 if (ret != 0)
1841 goto out_lport;
1842
1843 return &lport->lport_wwn;
1844 out_lport:
1845 vfree(lport->lport_loopid_map);
1846 btree_destroy32(&lport->lport_fcport_map);
1847 out:
1848 kfree(lport);
1849 return ERR_PTR(ret);
1850 }
1851
tcm_qla2xxx_npiv_drop_lport(struct se_wwn * wwn)1852 static void tcm_qla2xxx_npiv_drop_lport(struct se_wwn *wwn)
1853 {
1854 struct tcm_qla2xxx_lport *lport = container_of(wwn,
1855 struct tcm_qla2xxx_lport, lport_wwn);
1856 struct scsi_qla_host *npiv_vha = lport->qla_vha;
1857 struct qla_hw_data *ha = npiv_vha->hw;
1858 scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev);
1859
1860 scsi_host_put(npiv_vha->host);
1861 /*
1862 * Notify libfc that we want to release the vha->fc_vport
1863 */
1864 fc_vport_terminate(npiv_vha->fc_vport);
1865 scsi_host_put(base_vha->host);
1866 kfree(lport);
1867 }
1868
1869
tcm_qla2xxx_wwn_version_show(struct config_item * item,char * page)1870 static ssize_t tcm_qla2xxx_wwn_version_show(struct config_item *item,
1871 char *page)
1872 {
1873 return sprintf(page,
1874 "TCM QLOGIC QLA2XXX NPIV capable fabric module %s on %s/%s on %s\n",
1875 QLA2XXX_VERSION, utsname()->sysname,
1876 utsname()->machine, utsname()->release);
1877 }
1878
1879 CONFIGFS_ATTR_RO(tcm_qla2xxx_wwn_, version);
1880
1881 static struct configfs_attribute *tcm_qla2xxx_wwn_attrs[] = {
1882 &tcm_qla2xxx_wwn_attr_version,
1883 NULL,
1884 };
1885
1886 static const struct target_core_fabric_ops tcm_qla2xxx_ops = {
1887 .module = THIS_MODULE,
1888 .name = "qla2xxx",
1889 .node_acl_size = sizeof(struct tcm_qla2xxx_nacl),
1890 /*
1891 * XXX: Limit assumes single page per scatter-gather-list entry.
1892 * Current maximum is ~4.9 MB per se_cmd->t_data_sg with PAGE_SIZE=4096
1893 */
1894 .max_data_sg_nents = 1200,
1895 .get_fabric_name = tcm_qla2xxx_get_fabric_name,
1896 .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn,
1897 .tpg_get_tag = tcm_qla2xxx_get_tag,
1898 .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode,
1899 .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache,
1900 .tpg_check_demo_mode_write_protect =
1901 tcm_qla2xxx_check_demo_write_protect,
1902 .tpg_check_prod_mode_write_protect =
1903 tcm_qla2xxx_check_prod_write_protect,
1904 .tpg_check_prot_fabric_only = tcm_qla2xxx_check_prot_fabric_only,
1905 .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only,
1906 .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index,
1907 .check_stop_free = tcm_qla2xxx_check_stop_free,
1908 .release_cmd = tcm_qla2xxx_release_cmd,
1909 .close_session = tcm_qla2xxx_close_session,
1910 .sess_get_index = tcm_qla2xxx_sess_get_index,
1911 .sess_get_initiator_sid = NULL,
1912 .write_pending = tcm_qla2xxx_write_pending,
1913 .write_pending_status = tcm_qla2xxx_write_pending_status,
1914 .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs,
1915 .get_cmd_state = tcm_qla2xxx_get_cmd_state,
1916 .queue_data_in = tcm_qla2xxx_queue_data_in,
1917 .queue_status = tcm_qla2xxx_queue_status,
1918 .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp,
1919 .aborted_task = tcm_qla2xxx_aborted_task,
1920 /*
1921 * Setup function pointers for generic logic in
1922 * target_core_fabric_configfs.c
1923 */
1924 .fabric_make_wwn = tcm_qla2xxx_make_lport,
1925 .fabric_drop_wwn = tcm_qla2xxx_drop_lport,
1926 .fabric_make_tpg = tcm_qla2xxx_make_tpg,
1927 .fabric_drop_tpg = tcm_qla2xxx_drop_tpg,
1928 .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl,
1929
1930 .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs,
1931 .tfc_tpg_base_attrs = tcm_qla2xxx_tpg_attrs,
1932 .tfc_tpg_attrib_attrs = tcm_qla2xxx_tpg_attrib_attrs,
1933 };
1934
1935 static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops = {
1936 .module = THIS_MODULE,
1937 .name = "qla2xxx_npiv",
1938 .node_acl_size = sizeof(struct tcm_qla2xxx_nacl),
1939 .get_fabric_name = tcm_qla2xxx_npiv_get_fabric_name,
1940 .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn,
1941 .tpg_get_tag = tcm_qla2xxx_get_tag,
1942 .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode,
1943 .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache,
1944 .tpg_check_demo_mode_write_protect = tcm_qla2xxx_check_demo_mode,
1945 .tpg_check_prod_mode_write_protect =
1946 tcm_qla2xxx_check_prod_write_protect,
1947 .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only,
1948 .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index,
1949 .check_stop_free = tcm_qla2xxx_check_stop_free,
1950 .release_cmd = tcm_qla2xxx_release_cmd,
1951 .close_session = tcm_qla2xxx_close_session,
1952 .sess_get_index = tcm_qla2xxx_sess_get_index,
1953 .sess_get_initiator_sid = NULL,
1954 .write_pending = tcm_qla2xxx_write_pending,
1955 .write_pending_status = tcm_qla2xxx_write_pending_status,
1956 .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs,
1957 .get_cmd_state = tcm_qla2xxx_get_cmd_state,
1958 .queue_data_in = tcm_qla2xxx_queue_data_in,
1959 .queue_status = tcm_qla2xxx_queue_status,
1960 .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp,
1961 .aborted_task = tcm_qla2xxx_aborted_task,
1962 /*
1963 * Setup function pointers for generic logic in
1964 * target_core_fabric_configfs.c
1965 */
1966 .fabric_make_wwn = tcm_qla2xxx_npiv_make_lport,
1967 .fabric_drop_wwn = tcm_qla2xxx_npiv_drop_lport,
1968 .fabric_make_tpg = tcm_qla2xxx_npiv_make_tpg,
1969 .fabric_drop_tpg = tcm_qla2xxx_drop_tpg,
1970 .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl,
1971
1972 .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs,
1973 .tfc_tpg_base_attrs = tcm_qla2xxx_npiv_tpg_attrs,
1974 };
1975
tcm_qla2xxx_register_configfs(void)1976 static int tcm_qla2xxx_register_configfs(void)
1977 {
1978 int ret;
1979
1980 pr_debug("TCM QLOGIC QLA2XXX fabric module %s on %s/%s on %s\n",
1981 QLA2XXX_VERSION, utsname()->sysname,
1982 utsname()->machine, utsname()->release);
1983
1984 ret = target_register_template(&tcm_qla2xxx_ops);
1985 if (ret)
1986 return ret;
1987
1988 ret = target_register_template(&tcm_qla2xxx_npiv_ops);
1989 if (ret)
1990 goto out_fabric;
1991
1992 tcm_qla2xxx_free_wq = alloc_workqueue("tcm_qla2xxx_free",
1993 WQ_MEM_RECLAIM, 0);
1994 if (!tcm_qla2xxx_free_wq) {
1995 ret = -ENOMEM;
1996 goto out_fabric_npiv;
1997 }
1998
1999 return 0;
2000
2001 out_fabric_npiv:
2002 target_unregister_template(&tcm_qla2xxx_npiv_ops);
2003 out_fabric:
2004 target_unregister_template(&tcm_qla2xxx_ops);
2005 return ret;
2006 }
2007
tcm_qla2xxx_deregister_configfs(void)2008 static void tcm_qla2xxx_deregister_configfs(void)
2009 {
2010 destroy_workqueue(tcm_qla2xxx_free_wq);
2011
2012 target_unregister_template(&tcm_qla2xxx_ops);
2013 target_unregister_template(&tcm_qla2xxx_npiv_ops);
2014 }
2015
tcm_qla2xxx_init(void)2016 static int __init tcm_qla2xxx_init(void)
2017 {
2018 int ret;
2019
2020 ret = tcm_qla2xxx_register_configfs();
2021 if (ret < 0)
2022 return ret;
2023
2024 return 0;
2025 }
2026
tcm_qla2xxx_exit(void)2027 static void __exit tcm_qla2xxx_exit(void)
2028 {
2029 tcm_qla2xxx_deregister_configfs();
2030 }
2031
2032 MODULE_DESCRIPTION("TCM QLA24XX+ series NPIV enabled fabric driver");
2033 MODULE_LICENSE("GPL");
2034 module_init(tcm_qla2xxx_init);
2035 module_exit(tcm_qla2xxx_exit);
2036