Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * This file contains tcm implementation using v4 configfs fabric infrastructure |
| 3 | * for QLogic target mode HBAs |
| 4 | * |
Nicholas Bellinger | 4c76251 | 2013-09-05 15:29:12 -0700 | [diff] [blame] | 5 | * (c) Copyright 2010-2013 Datera, Inc. |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 6 | * |
Nicholas Bellinger | 4c76251 | 2013-09-05 15:29:12 -0700 | [diff] [blame] | 7 | * Author: Nicholas A. Bellinger <nab@daterainc.com> |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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> |
David S. Miller | 5538d29 | 2015-05-28 11:35:41 -0700 | [diff] [blame] | 30 | #include <linux/vmalloc.h> |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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> |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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> |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 47 | #include <target/configfs_macros.h> |
| 48 | |
| 49 | #include "qla_def.h" |
| 50 | #include "qla_target.h" |
| 51 | #include "tcm_qla2xxx.h" |
| 52 | |
Himanshu Madhani | 4d6609c | 2014-09-25 06:14:43 -0400 | [diff] [blame] | 53 | static struct workqueue_struct *tcm_qla2xxx_free_wq; |
| 54 | static struct workqueue_struct *tcm_qla2xxx_cmd_wq; |
| 55 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | */ |
| 62 | static 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; |
| 99 | fail: |
| 100 | pr_debug("err %u len %zu pos %u byte %u\n", |
| 101 | err, cp - name, pos, byte); |
| 102 | return -1; |
| 103 | } |
| 104 | |
| 105 | static 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 | |
| 115 | static 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 | */ |
| 123 | static int tcm_qla2xxx_npiv_extract_wwn(const char *ns, u64 *nm) |
| 124 | { |
Roland Dreier | d4f75b5 | 2012-06-11 18:31:31 -0700 | [diff] [blame] | 125 | unsigned int i, j; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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++) { |
Roland Dreier | d4f75b5 | 2012-06-11 18:31:31 -0700 | [diff] [blame] | 132 | int value; |
| 133 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | */ |
| 154 | static 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 */ |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 167 | if (name[cnt-1] == '\n' || name[cnt-1] == 0) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 185 | static char *tcm_qla2xxx_npiv_get_fabric_name(void) |
| 186 | { |
| 187 | return "qla2xxx_npiv"; |
| 188 | } |
| 189 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 190 | static 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 | |
Roland Dreier | c046aa0 | 2012-10-11 13:41:31 -0700 | [diff] [blame] | 196 | return lport->lport_naa_name; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 197 | } |
| 198 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 199 | static 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 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 206 | static 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 | |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 211 | return tpg->tpg_attrib.generate_node_acls; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | static 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 | |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 219 | return tpg->tpg_attrib.cache_dynamic_acls; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 220 | } |
| 221 | |
| 222 | static 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 | |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 227 | return tpg->tpg_attrib.demo_mode_write_protect; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | static 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 | |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 235 | return tpg->tpg_attrib.prod_mode_write_protect; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 236 | } |
| 237 | |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 238 | static 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 | |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 243 | return tpg->tpg_attrib.demo_mode_login_only; |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Nicholas Bellinger | 64b1688 | 2015-03-27 23:30:57 -0700 | [diff] [blame] | 246 | static 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 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 254 | static 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 | |
| 262 | static 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 | */ |
| 275 | static 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 | |
| 281 | static 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 | |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 285 | cmd->cmd_in_wq = 0; |
| 286 | |
| 287 | WARN_ON(cmd->cmd_flags & BIT_16); |
| 288 | |
| 289 | cmd->cmd_flags |= BIT_16; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | */ |
| 298 | static void tcm_qla2xxx_free_cmd(struct qla_tgt_cmd *cmd) |
| 299 | { |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 300 | cmd->cmd_in_wq = 1; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | */ |
| 308 | static int tcm_qla2xxx_check_stop_free(struct se_cmd *se_cmd) |
| 309 | { |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 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 | |
Bart Van Assche | afc1660 | 2015-04-27 13:52:36 +0200 | [diff] [blame] | 317 | return target_put_sess_cmd(se_cmd); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | /* tcm_qla2xxx_release_cmd - Callback from TCM Core to release underlying |
| 321 | * fabric descriptor @se_cmd command to release |
| 322 | */ |
| 323 | static 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 | |
| 338 | static 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); |
Roland Dreier | 1c7b13f | 2012-07-16 11:04:42 -0700 | [diff] [blame] | 348 | target_sess_cmd_list_set_waiting(se_sess); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 349 | spin_unlock_irqrestore(&vha->hw->hardware_lock, flags); |
| 350 | |
| 351 | return 1; |
| 352 | } |
| 353 | |
| 354 | static 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 | |
| 368 | static u32 tcm_qla2xxx_sess_get_index(struct se_session *se_sess) |
| 369 | { |
| 370 | return 0; |
| 371 | } |
| 372 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 373 | static 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); |
Quinn Tran | e5fdee8 | 2015-06-10 11:05:21 -0400 | [diff] [blame] | 377 | cmd->cmd_flags |= BIT_3; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 378 | cmd->bufflen = se_cmd->data_length; |
Nicholas Bellinger | b3faa2e | 2013-08-21 14:54:54 -0700 | [diff] [blame] | 379 | cmd->dma_data_direction = target_reverse_dma_direction(se_cmd); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 380 | |
| 381 | cmd->sg_cnt = se_cmd->t_data_nents; |
| 382 | cmd->sg = se_cmd->t_data_sg; |
| 383 | |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 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 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | |
| 396 | static 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, |
Nicholas Mc Guire | fd4e139 | 2015-07-06 18:04:40 +0200 | [diff] [blame] | 408 | 3 * HZ); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 409 | return 0; |
| 410 | } |
| 411 | spin_unlock_irqrestore(&se_cmd->t_state_lock, flags); |
| 412 | |
| 413 | return 0; |
| 414 | } |
| 415 | |
| 416 | static void tcm_qla2xxx_set_default_node_attrs(struct se_node_acl *nacl) |
| 417 | { |
| 418 | return; |
| 419 | } |
| 420 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 421 | static 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 | */ |
| 429 | static int tcm_qla2xxx_handle_cmd(scsi_qla_host_t *vha, struct qla_tgt_cmd *cmd, |
| 430 | unsigned char *cdb, uint32_t data_length, int fcp_task_attr, |
| 431 | int data_dir, int bidi) |
| 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 | |
Roland Dreier | d6dfc86 | 2012-07-16 11:04:39 -0700 | [diff] [blame] | 453 | return target_submit_cmd(se_cmd, se_sess, cdb, &cmd->sense_buffer[0], |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 454 | cmd->unpacked_lun, data_length, fcp_task_attr, |
| 455 | data_dir, flags); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 456 | } |
| 457 | |
Christoph Hellwig | 43381ce | 2012-07-08 15:58:44 -0400 | [diff] [blame] | 458 | static void tcm_qla2xxx_handle_data_work(struct work_struct *work) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 459 | { |
| 460 | struct qla_tgt_cmd *cmd = container_of(work, struct qla_tgt_cmd, work); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 461 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 462 | /* |
| 463 | * Ensure that the complete FCP WRITE payload has been received. |
| 464 | * Otherwise return an exception via CHECK_CONDITION status. |
| 465 | */ |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 466 | cmd->cmd_in_wq = 0; |
| 467 | cmd->cmd_flags |= BIT_11; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | */ |
Christoph Hellwig | 43381ce | 2012-07-08 15:58:44 -0400 | [diff] [blame] | 473 | if (cmd->se_cmd.transport_state & CMD_T_ABORTED) { |
| 474 | complete(&cmd->se_cmd.t_transport_stop_comp); |
| 475 | return; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 476 | } |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 477 | |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 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 | |
Christoph Hellwig | 43381ce | 2012-07-08 15:58:44 -0400 | [diff] [blame] | 485 | return; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 486 | } |
Christoph Hellwig | 43381ce | 2012-07-08 15:58:44 -0400 | [diff] [blame] | 487 | |
| 488 | return target_execute_cmd(&cmd->se_cmd); |
| 489 | } |
| 490 | |
| 491 | /* |
| 492 | * Called from qla_target.c:qlt_do_ctio_completion() |
| 493 | */ |
| 494 | static void tcm_qla2xxx_handle_data(struct qla_tgt_cmd *cmd) |
| 495 | { |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 496 | cmd->cmd_flags |= BIT_10; |
| 497 | cmd->cmd_in_wq = 1; |
Christoph Hellwig | 43381ce | 2012-07-08 15:58:44 -0400 | [diff] [blame] | 498 | INIT_WORK(&cmd->work, tcm_qla2xxx_handle_data_work); |
| 499 | queue_work(tcm_qla2xxx_free_wq, &cmd->work); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 500 | } |
| 501 | |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 502 | static 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 | */ |
| 517 | static 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 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 523 | /* |
| 524 | * Called from qla_target.c:qlt_issue_task_mgmt() |
| 525 | */ |
Roland Dreier | 9389c3c | 2012-06-11 18:31:30 -0700 | [diff] [blame] | 526 | static int tcm_qla2xxx_handle_tmr(struct qla_tgt_mgmt_cmd *mcmd, uint32_t lun, |
| 527 | uint8_t tmr_func, uint32_t tag) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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 | |
| 536 | static 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 | |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 541 | cmd->cmd_flags |= BIT_4; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 542 | cmd->bufflen = se_cmd->data_length; |
Nicholas Bellinger | b3faa2e | 2013-08-21 14:54:54 -0700 | [diff] [blame] | 543 | cmd->dma_data_direction = target_reverse_dma_direction(se_cmd); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 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; |
| 549 | |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 550 | cmd->prot_sg_cnt = se_cmd->t_prot_nents; |
| 551 | cmd->prot_sg = se_cmd->t_prot_sg; |
| 552 | cmd->blk_sz = se_cmd->se_dev->dev_attrib.block_size; |
| 553 | se_cmd->pi_err = 0; |
| 554 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 555 | /* |
| 556 | * Now queue completed DATA_IN the qla2xxx LLD and response ring |
| 557 | */ |
| 558 | return qlt_xmit_response(cmd, QLA_TGT_XMIT_DATA|QLA_TGT_XMIT_STATUS, |
| 559 | se_cmd->scsi_status); |
| 560 | } |
| 561 | |
| 562 | static int tcm_qla2xxx_queue_status(struct se_cmd *se_cmd) |
| 563 | { |
| 564 | struct qla_tgt_cmd *cmd = container_of(se_cmd, |
| 565 | struct qla_tgt_cmd, se_cmd); |
| 566 | int xmit_type = QLA_TGT_XMIT_STATUS; |
| 567 | |
| 568 | cmd->bufflen = se_cmd->data_length; |
| 569 | cmd->sg = NULL; |
| 570 | cmd->sg_cnt = 0; |
| 571 | cmd->offset = 0; |
Nicholas Bellinger | b3faa2e | 2013-08-21 14:54:54 -0700 | [diff] [blame] | 572 | cmd->dma_data_direction = target_reverse_dma_direction(se_cmd); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 573 | cmd->aborted = (se_cmd->transport_state & CMD_T_ABORTED); |
Saurav Kashyap | e07f8f6 | 2014-09-25 06:14:58 -0400 | [diff] [blame] | 574 | if (cmd->cmd_flags & BIT_5) { |
| 575 | pr_crit("Bit_5 already set for cmd = %p.\n", cmd); |
| 576 | dump_stack(); |
| 577 | } |
| 578 | cmd->cmd_flags |= BIT_5; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 579 | |
| 580 | if (se_cmd->data_direction == DMA_FROM_DEVICE) { |
| 581 | /* |
| 582 | * For FCP_READ with CHECK_CONDITION status, clear cmd->bufflen |
| 583 | * for qla_tgt_xmit_response LLD code |
| 584 | */ |
Roland Dreier | b5aff3d | 2013-06-05 09:54:17 -0700 | [diff] [blame] | 585 | if (se_cmd->se_cmd_flags & SCF_OVERFLOW_BIT) { |
| 586 | se_cmd->se_cmd_flags &= ~SCF_OVERFLOW_BIT; |
| 587 | se_cmd->residual_count = 0; |
| 588 | } |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 589 | se_cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT; |
Roland Dreier | b5aff3d | 2013-06-05 09:54:17 -0700 | [diff] [blame] | 590 | se_cmd->residual_count += se_cmd->data_length; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 591 | |
| 592 | cmd->bufflen = 0; |
| 593 | } |
| 594 | /* |
| 595 | * Now queue status response to qla2xxx LLD code and response ring |
| 596 | */ |
| 597 | return qlt_xmit_response(cmd, xmit_type, se_cmd->scsi_status); |
| 598 | } |
| 599 | |
Joern Engel | b79fafa | 2013-07-03 11:22:17 -0400 | [diff] [blame] | 600 | static void tcm_qla2xxx_queue_tm_rsp(struct se_cmd *se_cmd) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 601 | { |
| 602 | struct se_tmr_req *se_tmr = se_cmd->se_tmr_req; |
| 603 | struct qla_tgt_mgmt_cmd *mcmd = container_of(se_cmd, |
| 604 | struct qla_tgt_mgmt_cmd, se_cmd); |
| 605 | |
| 606 | pr_debug("queue_tm_rsp: mcmd: %p func: 0x%02x response: 0x%02x\n", |
| 607 | mcmd, se_tmr->function, se_tmr->response); |
| 608 | /* |
| 609 | * Do translation between TCM TM response codes and |
| 610 | * QLA2xxx FC TM response codes. |
| 611 | */ |
| 612 | switch (se_tmr->response) { |
| 613 | case TMR_FUNCTION_COMPLETE: |
| 614 | mcmd->fc_tm_rsp = FC_TM_SUCCESS; |
| 615 | break; |
| 616 | case TMR_TASK_DOES_NOT_EXIST: |
| 617 | mcmd->fc_tm_rsp = FC_TM_BAD_CMD; |
| 618 | break; |
| 619 | case TMR_FUNCTION_REJECTED: |
| 620 | mcmd->fc_tm_rsp = FC_TM_REJECT; |
| 621 | break; |
| 622 | case TMR_LUN_DOES_NOT_EXIST: |
| 623 | default: |
| 624 | mcmd->fc_tm_rsp = FC_TM_FAILED; |
| 625 | break; |
| 626 | } |
| 627 | /* |
| 628 | * Queue the TM response to QLA2xxx LLD to build a |
| 629 | * CTIO response packet. |
| 630 | */ |
| 631 | qlt_xmit_tm_rsp(mcmd); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 632 | } |
| 633 | |
Nicholas Bellinger | 131e6ab | 2014-03-22 14:55:56 -0700 | [diff] [blame] | 634 | static void tcm_qla2xxx_aborted_task(struct se_cmd *se_cmd) |
| 635 | { |
| 636 | struct qla_tgt_cmd *cmd = container_of(se_cmd, |
| 637 | struct qla_tgt_cmd, se_cmd); |
| 638 | struct scsi_qla_host *vha = cmd->vha; |
| 639 | struct qla_hw_data *ha = vha->hw; |
| 640 | |
| 641 | if (!cmd->sg_mapped) |
| 642 | return; |
| 643 | |
| 644 | pci_unmap_sg(ha->pdev, cmd->sg, cmd->sg_cnt, cmd->dma_data_direction); |
| 645 | cmd->sg_mapped = 0; |
| 646 | } |
| 647 | |
Nicholas Bellinger | f2d5d9b | 2012-05-18 15:37:53 -0700 | [diff] [blame] | 648 | static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *, |
| 649 | struct tcm_qla2xxx_nacl *, struct qla_tgt_sess *); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 650 | /* |
| 651 | * Expected to be called with struct qla_hw_data->hardware_lock held |
| 652 | */ |
| 653 | static void tcm_qla2xxx_clear_nacl_from_fcport_map(struct qla_tgt_sess *sess) |
| 654 | { |
| 655 | struct se_node_acl *se_nacl = sess->se_sess->se_node_acl; |
| 656 | struct se_portal_group *se_tpg = se_nacl->se_tpg; |
| 657 | struct se_wwn *se_wwn = se_tpg->se_tpg_wwn; |
| 658 | struct tcm_qla2xxx_lport *lport = container_of(se_wwn, |
| 659 | struct tcm_qla2xxx_lport, lport_wwn); |
| 660 | struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl, |
| 661 | struct tcm_qla2xxx_nacl, se_node_acl); |
| 662 | void *node; |
| 663 | |
| 664 | pr_debug("fc_rport domain: port_id 0x%06x\n", nacl->nport_id); |
| 665 | |
| 666 | node = btree_remove32(&lport->lport_fcport_map, nacl->nport_id); |
Joern Engel | f4c24db1 | 2014-10-03 14:35:56 -0700 | [diff] [blame] | 667 | if (WARN_ON(node && (node != se_nacl))) { |
| 668 | /* |
| 669 | * The nacl no longer matches what we think it should be. |
| 670 | * Most likely a new dynamic acl has been added while |
| 671 | * someone dropped the hardware lock. It clearly is a |
| 672 | * bug elsewhere, but this bit can't make things worse. |
| 673 | */ |
| 674 | btree_insert32(&lport->lport_fcport_map, nacl->nport_id, |
| 675 | node, GFP_ATOMIC); |
| 676 | } |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 677 | |
| 678 | pr_debug("Removed from fcport_map: %p for WWNN: 0x%016LX, port_id: 0x%06x\n", |
| 679 | se_nacl, nacl->nport_wwnn, nacl->nport_id); |
Nicholas Bellinger | f2d5d9b | 2012-05-18 15:37:53 -0700 | [diff] [blame] | 680 | /* |
| 681 | * Now clear the se_nacl and session pointers from our HW lport lookup |
| 682 | * table mapping for this initiator's fabric S_ID and LOOP_ID entries. |
| 683 | * |
| 684 | * This is done ahead of callbacks into tcm_qla2xxx_free_session() -> |
| 685 | * target_wait_for_sess_cmds() before the session waits for outstanding |
| 686 | * I/O to complete, to avoid a race between session shutdown execution |
| 687 | * and incoming ATIOs or TMRs picking up a stale se_node_act reference. |
| 688 | */ |
| 689 | tcm_qla2xxx_clear_sess_lookup(lport, nacl, sess); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 690 | } |
| 691 | |
Joern Engel | aaf68b7 | 2012-05-18 13:58:23 -0700 | [diff] [blame] | 692 | static void tcm_qla2xxx_release_session(struct kref *kref) |
| 693 | { |
| 694 | struct se_session *se_sess = container_of(kref, |
| 695 | struct se_session, sess_kref); |
| 696 | |
| 697 | qlt_unreg_sess(se_sess->fabric_sess_ptr); |
| 698 | } |
| 699 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 700 | static void tcm_qla2xxx_put_sess(struct qla_tgt_sess *sess) |
| 701 | { |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 702 | if (!sess) |
| 703 | return; |
| 704 | |
Jörn Engel | 08234e3 | 2013-06-12 16:27:54 -0400 | [diff] [blame] | 705 | assert_spin_locked(&sess->vha->hw->hardware_lock); |
| 706 | kref_put(&sess->se_sess->sess_kref, tcm_qla2xxx_release_session); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | static void tcm_qla2xxx_shutdown_sess(struct qla_tgt_sess *sess) |
| 710 | { |
Jörn Engel | 08234e3 | 2013-06-12 16:27:54 -0400 | [diff] [blame] | 711 | assert_spin_locked(&sess->vha->hw->hardware_lock); |
| 712 | target_sess_cmd_list_set_waiting(sess->se_sess); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 713 | } |
| 714 | |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 715 | static int tcm_qla2xxx_init_nodeacl(struct se_node_acl *se_nacl, |
| 716 | const char *name) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 717 | { |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 718 | struct tcm_qla2xxx_nacl *nacl = |
| 719 | container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 720 | u64 wwnn; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 721 | |
| 722 | if (tcm_qla2xxx_parse_wwn(name, &wwnn, 1) < 0) |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 723 | return -EINVAL; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 724 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 725 | nacl->nport_wwnn = wwnn; |
| 726 | tcm_qla2xxx_format_wwn(&nacl->nport_name[0], TCM_QLA2XXX_NAMELEN, wwnn); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 727 | |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 728 | return 0; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | /* Start items for tcm_qla2xxx_tpg_attrib_cit */ |
| 732 | |
| 733 | #define DEF_QLA_TPG_ATTRIB(name) \ |
| 734 | \ |
| 735 | static ssize_t tcm_qla2xxx_tpg_attrib_show_##name( \ |
| 736 | struct se_portal_group *se_tpg, \ |
| 737 | char *page) \ |
| 738 | { \ |
| 739 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \ |
| 740 | struct tcm_qla2xxx_tpg, se_tpg); \ |
| 741 | \ |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 742 | return sprintf(page, "%u\n", tpg->tpg_attrib.name); \ |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 743 | } \ |
| 744 | \ |
| 745 | static ssize_t tcm_qla2xxx_tpg_attrib_store_##name( \ |
| 746 | struct se_portal_group *se_tpg, \ |
| 747 | const char *page, \ |
| 748 | size_t count) \ |
| 749 | { \ |
| 750 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, \ |
| 751 | struct tcm_qla2xxx_tpg, se_tpg); \ |
| 752 | unsigned long val; \ |
| 753 | int ret; \ |
| 754 | \ |
| 755 | ret = kstrtoul(page, 0, &val); \ |
| 756 | if (ret < 0) { \ |
| 757 | pr_err("kstrtoul() failed with" \ |
| 758 | " ret: %d\n", ret); \ |
| 759 | return -EINVAL; \ |
| 760 | } \ |
| 761 | ret = tcm_qla2xxx_set_attrib_##name(tpg, val); \ |
| 762 | \ |
| 763 | return (!ret) ? count : -EINVAL; \ |
| 764 | } |
| 765 | |
| 766 | #define DEF_QLA_TPG_ATTR_BOOL(_name) \ |
| 767 | \ |
| 768 | static int tcm_qla2xxx_set_attrib_##_name( \ |
| 769 | struct tcm_qla2xxx_tpg *tpg, \ |
| 770 | unsigned long val) \ |
| 771 | { \ |
| 772 | struct tcm_qla2xxx_tpg_attrib *a = &tpg->tpg_attrib; \ |
| 773 | \ |
| 774 | if ((val != 0) && (val != 1)) { \ |
| 775 | pr_err("Illegal boolean value %lu\n", val); \ |
| 776 | return -EINVAL; \ |
| 777 | } \ |
| 778 | \ |
| 779 | a->_name = val; \ |
| 780 | return 0; \ |
| 781 | } |
| 782 | |
| 783 | #define QLA_TPG_ATTR(_name, _mode) \ |
| 784 | TF_TPG_ATTRIB_ATTR(tcm_qla2xxx, _name, _mode); |
| 785 | |
| 786 | /* |
| 787 | * Define tcm_qla2xxx_tpg_attrib_s_generate_node_acls |
| 788 | */ |
| 789 | DEF_QLA_TPG_ATTR_BOOL(generate_node_acls); |
| 790 | DEF_QLA_TPG_ATTRIB(generate_node_acls); |
| 791 | QLA_TPG_ATTR(generate_node_acls, S_IRUGO | S_IWUSR); |
| 792 | |
| 793 | /* |
| 794 | Define tcm_qla2xxx_attrib_s_cache_dynamic_acls |
| 795 | */ |
| 796 | DEF_QLA_TPG_ATTR_BOOL(cache_dynamic_acls); |
| 797 | DEF_QLA_TPG_ATTRIB(cache_dynamic_acls); |
| 798 | QLA_TPG_ATTR(cache_dynamic_acls, S_IRUGO | S_IWUSR); |
| 799 | |
| 800 | /* |
| 801 | * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_write_protect |
| 802 | */ |
| 803 | DEF_QLA_TPG_ATTR_BOOL(demo_mode_write_protect); |
| 804 | DEF_QLA_TPG_ATTRIB(demo_mode_write_protect); |
| 805 | QLA_TPG_ATTR(demo_mode_write_protect, S_IRUGO | S_IWUSR); |
| 806 | |
| 807 | /* |
| 808 | * Define tcm_qla2xxx_tpg_attrib_s_prod_mode_write_protect |
| 809 | */ |
| 810 | DEF_QLA_TPG_ATTR_BOOL(prod_mode_write_protect); |
| 811 | DEF_QLA_TPG_ATTRIB(prod_mode_write_protect); |
| 812 | QLA_TPG_ATTR(prod_mode_write_protect, S_IRUGO | S_IWUSR); |
| 813 | |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 814 | /* |
| 815 | * Define tcm_qla2xxx_tpg_attrib_s_demo_mode_login_only |
| 816 | */ |
| 817 | DEF_QLA_TPG_ATTR_BOOL(demo_mode_login_only); |
| 818 | DEF_QLA_TPG_ATTRIB(demo_mode_login_only); |
| 819 | QLA_TPG_ATTR(demo_mode_login_only, S_IRUGO | S_IWUSR); |
| 820 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 821 | static struct configfs_attribute *tcm_qla2xxx_tpg_attrib_attrs[] = { |
| 822 | &tcm_qla2xxx_tpg_attrib_generate_node_acls.attr, |
| 823 | &tcm_qla2xxx_tpg_attrib_cache_dynamic_acls.attr, |
| 824 | &tcm_qla2xxx_tpg_attrib_demo_mode_write_protect.attr, |
| 825 | &tcm_qla2xxx_tpg_attrib_prod_mode_write_protect.attr, |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 826 | &tcm_qla2xxx_tpg_attrib_demo_mode_login_only.attr, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 827 | NULL, |
| 828 | }; |
| 829 | |
| 830 | /* End items for tcm_qla2xxx_tpg_attrib_cit */ |
| 831 | |
| 832 | static ssize_t tcm_qla2xxx_tpg_show_enable( |
| 833 | struct se_portal_group *se_tpg, |
| 834 | char *page) |
| 835 | { |
| 836 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 837 | struct tcm_qla2xxx_tpg, se_tpg); |
| 838 | |
| 839 | return snprintf(page, PAGE_SIZE, "%d\n", |
| 840 | atomic_read(&tpg->lport_tpg_enabled)); |
| 841 | } |
| 842 | |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 843 | static void tcm_qla2xxx_depend_tpg(struct work_struct *work) |
| 844 | { |
| 845 | struct tcm_qla2xxx_tpg *base_tpg = container_of(work, |
| 846 | struct tcm_qla2xxx_tpg, tpg_base_work); |
| 847 | struct se_portal_group *se_tpg = &base_tpg->se_tpg; |
| 848 | struct scsi_qla_host *base_vha = base_tpg->lport->qla_vha; |
| 849 | |
Christoph Hellwig | d588cf8 | 2015-05-03 08:50:52 +0200 | [diff] [blame] | 850 | if (!target_depend_item(&se_tpg->tpg_group.cg_item)) { |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 851 | atomic_set(&base_tpg->lport_tpg_enabled, 1); |
| 852 | qlt_enable_vha(base_vha); |
| 853 | } |
| 854 | complete(&base_tpg->tpg_base_comp); |
| 855 | } |
| 856 | |
| 857 | static void tcm_qla2xxx_undepend_tpg(struct work_struct *work) |
| 858 | { |
| 859 | struct tcm_qla2xxx_tpg *base_tpg = container_of(work, |
| 860 | struct tcm_qla2xxx_tpg, tpg_base_work); |
| 861 | struct se_portal_group *se_tpg = &base_tpg->se_tpg; |
| 862 | struct scsi_qla_host *base_vha = base_tpg->lport->qla_vha; |
| 863 | |
| 864 | if (!qlt_stop_phase1(base_vha->vha_tgt.qla_tgt)) { |
| 865 | atomic_set(&base_tpg->lport_tpg_enabled, 0); |
Christoph Hellwig | d588cf8 | 2015-05-03 08:50:52 +0200 | [diff] [blame] | 866 | target_undepend_item(&se_tpg->tpg_group.cg_item); |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 867 | } |
| 868 | complete(&base_tpg->tpg_base_comp); |
| 869 | } |
| 870 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 871 | static ssize_t tcm_qla2xxx_tpg_store_enable( |
| 872 | struct se_portal_group *se_tpg, |
| 873 | const char *page, |
| 874 | size_t count) |
| 875 | { |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 876 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 877 | struct tcm_qla2xxx_tpg, se_tpg); |
| 878 | unsigned long op; |
| 879 | int rc; |
| 880 | |
| 881 | rc = kstrtoul(page, 0, &op); |
| 882 | if (rc < 0) { |
| 883 | pr_err("kstrtoul() returned %d\n", rc); |
| 884 | return -EINVAL; |
| 885 | } |
| 886 | if ((op != 1) && (op != 0)) { |
| 887 | pr_err("Illegal value for tpg_enable: %lu\n", op); |
| 888 | return -EINVAL; |
| 889 | } |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 890 | if (op) { |
| 891 | if (atomic_read(&tpg->lport_tpg_enabled)) |
| 892 | return -EEXIST; |
| 893 | |
| 894 | INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_depend_tpg); |
| 895 | } else { |
| 896 | if (!atomic_read(&tpg->lport_tpg_enabled)) |
| 897 | return count; |
| 898 | |
| 899 | INIT_WORK(&tpg->tpg_base_work, tcm_qla2xxx_undepend_tpg); |
| 900 | } |
| 901 | init_completion(&tpg->tpg_base_comp); |
| 902 | schedule_work(&tpg->tpg_base_work); |
| 903 | wait_for_completion(&tpg->tpg_base_comp); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 904 | |
| 905 | if (op) { |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 906 | if (!atomic_read(&tpg->lport_tpg_enabled)) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 907 | return -ENODEV; |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 908 | } else { |
| 909 | if (atomic_read(&tpg->lport_tpg_enabled)) |
| 910 | return -EPERM; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 911 | } |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 912 | return count; |
| 913 | } |
| 914 | |
| 915 | TF_TPG_BASE_ATTR(tcm_qla2xxx, enable, S_IRUGO | S_IWUSR); |
| 916 | |
Nicholas Bellinger | d23dbaa | 2015-03-06 20:43:34 -0800 | [diff] [blame] | 917 | static ssize_t tcm_qla2xxx_tpg_show_dynamic_sessions( |
| 918 | struct se_portal_group *se_tpg, |
| 919 | char *page) |
| 920 | { |
| 921 | return target_show_dynamic_sessions(se_tpg, page); |
| 922 | } |
| 923 | |
| 924 | TF_TPG_BASE_ATTR_RO(tcm_qla2xxx, dynamic_sessions); |
| 925 | |
Nicholas Bellinger | 64b1688 | 2015-03-27 23:30:57 -0700 | [diff] [blame] | 926 | static ssize_t tcm_qla2xxx_tpg_store_fabric_prot_type( |
| 927 | struct se_portal_group *se_tpg, |
| 928 | const char *page, |
| 929 | size_t count) |
| 930 | { |
| 931 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 932 | struct tcm_qla2xxx_tpg, se_tpg); |
| 933 | unsigned long val; |
| 934 | int ret = kstrtoul(page, 0, &val); |
| 935 | |
| 936 | if (ret) { |
| 937 | pr_err("kstrtoul() returned %d for fabric_prot_type\n", ret); |
| 938 | return ret; |
| 939 | } |
| 940 | if (val != 0 && val != 1 && val != 3) { |
| 941 | pr_err("Invalid qla2xxx fabric_prot_type: %lu\n", val); |
| 942 | return -EINVAL; |
| 943 | } |
| 944 | tpg->tpg_attrib.fabric_prot_type = val; |
| 945 | |
| 946 | return count; |
| 947 | } |
| 948 | |
| 949 | static ssize_t tcm_qla2xxx_tpg_show_fabric_prot_type( |
| 950 | struct se_portal_group *se_tpg, |
| 951 | char *page) |
| 952 | { |
| 953 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 954 | struct tcm_qla2xxx_tpg, se_tpg); |
| 955 | |
| 956 | return sprintf(page, "%d\n", tpg->tpg_attrib.fabric_prot_type); |
| 957 | } |
| 958 | TF_TPG_BASE_ATTR(tcm_qla2xxx, fabric_prot_type, S_IRUGO | S_IWUSR); |
| 959 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 960 | static struct configfs_attribute *tcm_qla2xxx_tpg_attrs[] = { |
| 961 | &tcm_qla2xxx_tpg_enable.attr, |
Nicholas Bellinger | d23dbaa | 2015-03-06 20:43:34 -0800 | [diff] [blame] | 962 | &tcm_qla2xxx_tpg_dynamic_sessions.attr, |
Nicholas Bellinger | 64b1688 | 2015-03-27 23:30:57 -0700 | [diff] [blame] | 963 | &tcm_qla2xxx_tpg_fabric_prot_type.attr, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 964 | NULL, |
| 965 | }; |
| 966 | |
| 967 | static struct se_portal_group *tcm_qla2xxx_make_tpg( |
| 968 | struct se_wwn *wwn, |
| 969 | struct config_group *group, |
| 970 | const char *name) |
| 971 | { |
| 972 | struct tcm_qla2xxx_lport *lport = container_of(wwn, |
| 973 | struct tcm_qla2xxx_lport, lport_wwn); |
| 974 | struct tcm_qla2xxx_tpg *tpg; |
| 975 | unsigned long tpgt; |
| 976 | int ret; |
| 977 | |
| 978 | if (strstr(name, "tpgt_") != name) |
| 979 | return ERR_PTR(-EINVAL); |
| 980 | if (kstrtoul(name + 5, 10, &tpgt) || tpgt > USHRT_MAX) |
| 981 | return ERR_PTR(-EINVAL); |
| 982 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 983 | if ((tpgt != 1)) { |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 984 | pr_err("In non NPIV mode, a single TPG=1 is used for HW port mappings\n"); |
| 985 | return ERR_PTR(-ENOSYS); |
| 986 | } |
| 987 | |
| 988 | tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL); |
| 989 | if (!tpg) { |
| 990 | pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n"); |
| 991 | return ERR_PTR(-ENOMEM); |
| 992 | } |
| 993 | tpg->lport = lport; |
| 994 | tpg->lport_tpgt = tpgt; |
| 995 | /* |
| 996 | * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic |
| 997 | * NodeACLs |
| 998 | */ |
Andy Grover | a309f48 | 2013-10-09 11:05:59 -0700 | [diff] [blame] | 999 | tpg->tpg_attrib.generate_node_acls = 1; |
| 1000 | tpg->tpg_attrib.demo_mode_write_protect = 1; |
| 1001 | tpg->tpg_attrib.cache_dynamic_acls = 1; |
| 1002 | tpg->tpg_attrib.demo_mode_login_only = 1; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1003 | |
Nicholas Bellinger | bc0c94b | 2015-05-20 21:48:03 -0700 | [diff] [blame] | 1004 | ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1005 | if (ret < 0) { |
| 1006 | kfree(tpg); |
| 1007 | return NULL; |
| 1008 | } |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1009 | |
| 1010 | lport->tpg_1 = tpg; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1011 | |
| 1012 | return &tpg->se_tpg; |
| 1013 | } |
| 1014 | |
| 1015 | static void tcm_qla2xxx_drop_tpg(struct se_portal_group *se_tpg) |
| 1016 | { |
| 1017 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 1018 | struct tcm_qla2xxx_tpg, se_tpg); |
| 1019 | struct tcm_qla2xxx_lport *lport = tpg->lport; |
| 1020 | struct scsi_qla_host *vha = lport->qla_vha; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1021 | /* |
| 1022 | * Call into qla2x_target.c LLD logic to shutdown the active |
| 1023 | * FC Nexuses and disable target mode operation for this qla_hw_data |
| 1024 | */ |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1025 | if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stop) |
| 1026 | qlt_stop_phase1(vha->vha_tgt.qla_tgt); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1027 | |
| 1028 | core_tpg_deregister(se_tpg); |
| 1029 | /* |
| 1030 | * Clear local TPG=1 pointer for non NPIV mode. |
| 1031 | */ |
Nicholas Bellinger | 394d62b | 2014-02-19 16:52:15 -0800 | [diff] [blame] | 1032 | lport->tpg_1 = NULL; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1033 | kfree(tpg); |
| 1034 | } |
| 1035 | |
Nicholas Bellinger | 394d62b | 2014-02-19 16:52:15 -0800 | [diff] [blame] | 1036 | static ssize_t tcm_qla2xxx_npiv_tpg_show_enable( |
| 1037 | struct se_portal_group *se_tpg, |
| 1038 | char *page) |
| 1039 | { |
| 1040 | return tcm_qla2xxx_tpg_show_enable(se_tpg, page); |
| 1041 | } |
| 1042 | |
| 1043 | static ssize_t tcm_qla2xxx_npiv_tpg_store_enable( |
| 1044 | struct se_portal_group *se_tpg, |
| 1045 | const char *page, |
| 1046 | size_t count) |
| 1047 | { |
| 1048 | struct se_wwn *se_wwn = se_tpg->se_tpg_wwn; |
| 1049 | struct tcm_qla2xxx_lport *lport = container_of(se_wwn, |
| 1050 | struct tcm_qla2xxx_lport, lport_wwn); |
| 1051 | struct scsi_qla_host *vha = lport->qla_vha; |
| 1052 | struct tcm_qla2xxx_tpg *tpg = container_of(se_tpg, |
| 1053 | struct tcm_qla2xxx_tpg, se_tpg); |
| 1054 | unsigned long op; |
| 1055 | int rc; |
| 1056 | |
| 1057 | rc = kstrtoul(page, 0, &op); |
| 1058 | if (rc < 0) { |
| 1059 | pr_err("kstrtoul() returned %d\n", rc); |
| 1060 | return -EINVAL; |
| 1061 | } |
| 1062 | if ((op != 1) && (op != 0)) { |
| 1063 | pr_err("Illegal value for tpg_enable: %lu\n", op); |
| 1064 | return -EINVAL; |
| 1065 | } |
| 1066 | if (op) { |
| 1067 | if (atomic_read(&tpg->lport_tpg_enabled)) |
| 1068 | return -EEXIST; |
| 1069 | |
| 1070 | atomic_set(&tpg->lport_tpg_enabled, 1); |
| 1071 | qlt_enable_vha(vha); |
| 1072 | } else { |
| 1073 | if (!atomic_read(&tpg->lport_tpg_enabled)) |
| 1074 | return count; |
| 1075 | |
| 1076 | atomic_set(&tpg->lport_tpg_enabled, 0); |
| 1077 | qlt_stop_phase1(vha->vha_tgt.qla_tgt); |
| 1078 | } |
| 1079 | |
| 1080 | return count; |
| 1081 | } |
| 1082 | |
| 1083 | TF_TPG_BASE_ATTR(tcm_qla2xxx_npiv, enable, S_IRUGO | S_IWUSR); |
| 1084 | |
| 1085 | static struct configfs_attribute *tcm_qla2xxx_npiv_tpg_attrs[] = { |
| 1086 | &tcm_qla2xxx_npiv_tpg_enable.attr, |
| 1087 | NULL, |
| 1088 | }; |
| 1089 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1090 | static struct se_portal_group *tcm_qla2xxx_npiv_make_tpg( |
| 1091 | struct se_wwn *wwn, |
| 1092 | struct config_group *group, |
| 1093 | const char *name) |
| 1094 | { |
| 1095 | struct tcm_qla2xxx_lport *lport = container_of(wwn, |
| 1096 | struct tcm_qla2xxx_lport, lport_wwn); |
| 1097 | struct tcm_qla2xxx_tpg *tpg; |
| 1098 | unsigned long tpgt; |
| 1099 | int ret; |
| 1100 | |
| 1101 | if (strstr(name, "tpgt_") != name) |
| 1102 | return ERR_PTR(-EINVAL); |
| 1103 | if (kstrtoul(name + 5, 10, &tpgt) || tpgt > USHRT_MAX) |
| 1104 | return ERR_PTR(-EINVAL); |
| 1105 | |
| 1106 | tpg = kzalloc(sizeof(struct tcm_qla2xxx_tpg), GFP_KERNEL); |
| 1107 | if (!tpg) { |
| 1108 | pr_err("Unable to allocate struct tcm_qla2xxx_tpg\n"); |
| 1109 | return ERR_PTR(-ENOMEM); |
| 1110 | } |
| 1111 | tpg->lport = lport; |
| 1112 | tpg->lport_tpgt = tpgt; |
| 1113 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1114 | /* |
| 1115 | * By default allow READ-ONLY TPG demo-mode access w/ cached dynamic |
| 1116 | * NodeACLs |
| 1117 | */ |
| 1118 | tpg->tpg_attrib.generate_node_acls = 1; |
| 1119 | tpg->tpg_attrib.demo_mode_write_protect = 1; |
| 1120 | tpg->tpg_attrib.cache_dynamic_acls = 1; |
| 1121 | tpg->tpg_attrib.demo_mode_login_only = 1; |
| 1122 | |
Nicholas Bellinger | bc0c94b | 2015-05-20 21:48:03 -0700 | [diff] [blame] | 1123 | ret = core_tpg_register(wwn, &tpg->se_tpg, SCSI_PROTOCOL_FCP); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1124 | if (ret < 0) { |
| 1125 | kfree(tpg); |
| 1126 | return NULL; |
| 1127 | } |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1128 | lport->tpg_1 = tpg; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1129 | return &tpg->se_tpg; |
| 1130 | } |
| 1131 | |
| 1132 | /* |
| 1133 | * Expected to be called with struct qla_hw_data->hardware_lock held |
| 1134 | */ |
| 1135 | static struct qla_tgt_sess *tcm_qla2xxx_find_sess_by_s_id( |
| 1136 | scsi_qla_host_t *vha, |
| 1137 | const uint8_t *s_id) |
| 1138 | { |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1139 | struct tcm_qla2xxx_lport *lport; |
| 1140 | struct se_node_acl *se_nacl; |
| 1141 | struct tcm_qla2xxx_nacl *nacl; |
| 1142 | u32 key; |
| 1143 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1144 | lport = vha->vha_tgt.target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1145 | if (!lport) { |
| 1146 | pr_err("Unable to locate struct tcm_qla2xxx_lport\n"); |
| 1147 | dump_stack(); |
| 1148 | return NULL; |
| 1149 | } |
| 1150 | |
Swapnil Nagle | 8b2f5ff | 2015-07-14 16:00:43 -0400 | [diff] [blame^] | 1151 | key = sid_to_key(s_id); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1152 | pr_debug("find_sess_by_s_id: 0x%06x\n", key); |
| 1153 | |
| 1154 | se_nacl = btree_lookup32(&lport->lport_fcport_map, key); |
| 1155 | if (!se_nacl) { |
| 1156 | pr_debug("Unable to locate s_id: 0x%06x\n", key); |
| 1157 | return NULL; |
| 1158 | } |
| 1159 | pr_debug("find_sess_by_s_id: located se_nacl: %p, initiatorname: %s\n", |
| 1160 | se_nacl, se_nacl->initiatorname); |
| 1161 | |
| 1162 | nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl); |
| 1163 | if (!nacl->qla_tgt_sess) { |
| 1164 | pr_err("Unable to locate struct qla_tgt_sess\n"); |
| 1165 | return NULL; |
| 1166 | } |
| 1167 | |
| 1168 | return nacl->qla_tgt_sess; |
| 1169 | } |
| 1170 | |
| 1171 | /* |
| 1172 | * Expected to be called with struct qla_hw_data->hardware_lock held |
| 1173 | */ |
| 1174 | static void tcm_qla2xxx_set_sess_by_s_id( |
| 1175 | struct tcm_qla2xxx_lport *lport, |
| 1176 | struct se_node_acl *new_se_nacl, |
| 1177 | struct tcm_qla2xxx_nacl *nacl, |
| 1178 | struct se_session *se_sess, |
| 1179 | struct qla_tgt_sess *qla_tgt_sess, |
| 1180 | uint8_t *s_id) |
| 1181 | { |
| 1182 | u32 key; |
| 1183 | void *slot; |
| 1184 | int rc; |
| 1185 | |
Swapnil Nagle | 8b2f5ff | 2015-07-14 16:00:43 -0400 | [diff] [blame^] | 1186 | key = sid_to_key(s_id); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1187 | pr_debug("set_sess_by_s_id: %06x\n", key); |
| 1188 | |
| 1189 | slot = btree_lookup32(&lport->lport_fcport_map, key); |
| 1190 | if (!slot) { |
| 1191 | if (new_se_nacl) { |
| 1192 | pr_debug("Setting up new fc_port entry to new_se_nacl\n"); |
| 1193 | nacl->nport_id = key; |
| 1194 | rc = btree_insert32(&lport->lport_fcport_map, key, |
| 1195 | new_se_nacl, GFP_ATOMIC); |
| 1196 | if (rc) |
| 1197 | printk(KERN_ERR "Unable to insert s_id into fcport_map: %06x\n", |
| 1198 | (int)key); |
| 1199 | } else { |
| 1200 | pr_debug("Wiping nonexisting fc_port entry\n"); |
| 1201 | } |
| 1202 | |
| 1203 | qla_tgt_sess->se_sess = se_sess; |
| 1204 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1205 | return; |
| 1206 | } |
| 1207 | |
| 1208 | if (nacl->qla_tgt_sess) { |
| 1209 | if (new_se_nacl == NULL) { |
| 1210 | pr_debug("Clearing existing nacl->qla_tgt_sess and fc_port entry\n"); |
| 1211 | btree_remove32(&lport->lport_fcport_map, key); |
| 1212 | nacl->qla_tgt_sess = NULL; |
| 1213 | return; |
| 1214 | } |
| 1215 | pr_debug("Replacing existing nacl->qla_tgt_sess and fc_port entry\n"); |
| 1216 | btree_update32(&lport->lport_fcport_map, key, new_se_nacl); |
| 1217 | qla_tgt_sess->se_sess = se_sess; |
| 1218 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1219 | return; |
| 1220 | } |
| 1221 | |
| 1222 | if (new_se_nacl == NULL) { |
| 1223 | pr_debug("Clearing existing fc_port entry\n"); |
| 1224 | btree_remove32(&lport->lport_fcport_map, key); |
| 1225 | return; |
| 1226 | } |
| 1227 | |
| 1228 | pr_debug("Replacing existing fc_port entry w/o active nacl->qla_tgt_sess\n"); |
| 1229 | btree_update32(&lport->lport_fcport_map, key, new_se_nacl); |
| 1230 | qla_tgt_sess->se_sess = se_sess; |
| 1231 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1232 | |
| 1233 | pr_debug("Setup nacl->qla_tgt_sess %p by s_id for se_nacl: %p, initiatorname: %s\n", |
| 1234 | nacl->qla_tgt_sess, new_se_nacl, new_se_nacl->initiatorname); |
| 1235 | } |
| 1236 | |
| 1237 | /* |
| 1238 | * Expected to be called with struct qla_hw_data->hardware_lock held |
| 1239 | */ |
| 1240 | static struct qla_tgt_sess *tcm_qla2xxx_find_sess_by_loop_id( |
| 1241 | scsi_qla_host_t *vha, |
| 1242 | const uint16_t loop_id) |
| 1243 | { |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1244 | struct tcm_qla2xxx_lport *lport; |
| 1245 | struct se_node_acl *se_nacl; |
| 1246 | struct tcm_qla2xxx_nacl *nacl; |
| 1247 | struct tcm_qla2xxx_fc_loopid *fc_loopid; |
| 1248 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1249 | lport = vha->vha_tgt.target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1250 | if (!lport) { |
| 1251 | pr_err("Unable to locate struct tcm_qla2xxx_lport\n"); |
| 1252 | dump_stack(); |
| 1253 | return NULL; |
| 1254 | } |
| 1255 | |
| 1256 | pr_debug("find_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id); |
| 1257 | |
| 1258 | fc_loopid = lport->lport_loopid_map + loop_id; |
| 1259 | se_nacl = fc_loopid->se_nacl; |
| 1260 | if (!se_nacl) { |
| 1261 | pr_debug("Unable to locate se_nacl by loop_id: 0x%04x\n", |
| 1262 | loop_id); |
| 1263 | return NULL; |
| 1264 | } |
| 1265 | |
| 1266 | nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl); |
| 1267 | |
| 1268 | if (!nacl->qla_tgt_sess) { |
| 1269 | pr_err("Unable to locate struct qla_tgt_sess\n"); |
| 1270 | return NULL; |
| 1271 | } |
| 1272 | |
| 1273 | return nacl->qla_tgt_sess; |
| 1274 | } |
| 1275 | |
| 1276 | /* |
| 1277 | * Expected to be called with struct qla_hw_data->hardware_lock held |
| 1278 | */ |
| 1279 | static void tcm_qla2xxx_set_sess_by_loop_id( |
| 1280 | struct tcm_qla2xxx_lport *lport, |
| 1281 | struct se_node_acl *new_se_nacl, |
| 1282 | struct tcm_qla2xxx_nacl *nacl, |
| 1283 | struct se_session *se_sess, |
| 1284 | struct qla_tgt_sess *qla_tgt_sess, |
| 1285 | uint16_t loop_id) |
| 1286 | { |
| 1287 | struct se_node_acl *saved_nacl; |
| 1288 | struct tcm_qla2xxx_fc_loopid *fc_loopid; |
| 1289 | |
| 1290 | pr_debug("set_sess_by_loop_id: Using loop_id: 0x%04x\n", loop_id); |
| 1291 | |
| 1292 | fc_loopid = &((struct tcm_qla2xxx_fc_loopid *) |
| 1293 | lport->lport_loopid_map)[loop_id]; |
| 1294 | |
| 1295 | saved_nacl = fc_loopid->se_nacl; |
| 1296 | if (!saved_nacl) { |
| 1297 | pr_debug("Setting up new fc_loopid->se_nacl to new_se_nacl\n"); |
| 1298 | fc_loopid->se_nacl = new_se_nacl; |
| 1299 | if (qla_tgt_sess->se_sess != se_sess) |
| 1300 | qla_tgt_sess->se_sess = se_sess; |
| 1301 | if (nacl->qla_tgt_sess != qla_tgt_sess) |
| 1302 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1303 | return; |
| 1304 | } |
| 1305 | |
| 1306 | if (nacl->qla_tgt_sess) { |
| 1307 | if (new_se_nacl == NULL) { |
| 1308 | pr_debug("Clearing nacl->qla_tgt_sess and fc_loopid->se_nacl\n"); |
| 1309 | fc_loopid->se_nacl = NULL; |
| 1310 | nacl->qla_tgt_sess = NULL; |
| 1311 | return; |
| 1312 | } |
| 1313 | |
| 1314 | pr_debug("Replacing existing nacl->qla_tgt_sess and fc_loopid->se_nacl\n"); |
| 1315 | fc_loopid->se_nacl = new_se_nacl; |
| 1316 | if (qla_tgt_sess->se_sess != se_sess) |
| 1317 | qla_tgt_sess->se_sess = se_sess; |
| 1318 | if (nacl->qla_tgt_sess != qla_tgt_sess) |
| 1319 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1320 | return; |
| 1321 | } |
| 1322 | |
| 1323 | if (new_se_nacl == NULL) { |
| 1324 | pr_debug("Clearing fc_loopid->se_nacl\n"); |
| 1325 | fc_loopid->se_nacl = NULL; |
| 1326 | return; |
| 1327 | } |
| 1328 | |
| 1329 | pr_debug("Replacing existing fc_loopid->se_nacl w/o active nacl->qla_tgt_sess\n"); |
| 1330 | fc_loopid->se_nacl = new_se_nacl; |
| 1331 | if (qla_tgt_sess->se_sess != se_sess) |
| 1332 | qla_tgt_sess->se_sess = se_sess; |
| 1333 | if (nacl->qla_tgt_sess != qla_tgt_sess) |
| 1334 | nacl->qla_tgt_sess = qla_tgt_sess; |
| 1335 | |
| 1336 | pr_debug("Setup nacl->qla_tgt_sess %p by loop_id for se_nacl: %p, initiatorname: %s\n", |
| 1337 | nacl->qla_tgt_sess, new_se_nacl, new_se_nacl->initiatorname); |
| 1338 | } |
| 1339 | |
Nicholas Bellinger | f2d5d9b | 2012-05-18 15:37:53 -0700 | [diff] [blame] | 1340 | /* |
| 1341 | * Should always be called with qla_hw_data->hardware_lock held. |
| 1342 | */ |
| 1343 | static void tcm_qla2xxx_clear_sess_lookup(struct tcm_qla2xxx_lport *lport, |
| 1344 | struct tcm_qla2xxx_nacl *nacl, struct qla_tgt_sess *sess) |
| 1345 | { |
| 1346 | struct se_session *se_sess = sess->se_sess; |
| 1347 | unsigned char be_sid[3]; |
| 1348 | |
| 1349 | be_sid[0] = sess->s_id.b.domain; |
| 1350 | be_sid[1] = sess->s_id.b.area; |
| 1351 | be_sid[2] = sess->s_id.b.al_pa; |
| 1352 | |
| 1353 | tcm_qla2xxx_set_sess_by_s_id(lport, NULL, nacl, se_sess, |
| 1354 | sess, be_sid); |
| 1355 | tcm_qla2xxx_set_sess_by_loop_id(lport, NULL, nacl, se_sess, |
| 1356 | sess, sess->loop_id); |
| 1357 | } |
| 1358 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1359 | static void tcm_qla2xxx_free_session(struct qla_tgt_sess *sess) |
| 1360 | { |
| 1361 | struct qla_tgt *tgt = sess->tgt; |
| 1362 | struct qla_hw_data *ha = tgt->ha; |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1363 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1364 | struct se_session *se_sess; |
| 1365 | struct se_node_acl *se_nacl; |
| 1366 | struct tcm_qla2xxx_lport *lport; |
| 1367 | struct tcm_qla2xxx_nacl *nacl; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1368 | |
| 1369 | BUG_ON(in_interrupt()); |
| 1370 | |
| 1371 | se_sess = sess->se_sess; |
| 1372 | if (!se_sess) { |
| 1373 | pr_err("struct qla_tgt_sess->se_sess is NULL\n"); |
| 1374 | dump_stack(); |
| 1375 | return; |
| 1376 | } |
| 1377 | se_nacl = se_sess->se_node_acl; |
| 1378 | nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl); |
| 1379 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1380 | lport = vha->vha_tgt.target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1381 | if (!lport) { |
| 1382 | pr_err("Unable to locate struct tcm_qla2xxx_lport\n"); |
| 1383 | dump_stack(); |
| 1384 | return; |
| 1385 | } |
Joern Engel | be646c2d | 2013-05-15 00:44:07 -0700 | [diff] [blame] | 1386 | target_wait_for_sess_cmds(se_sess); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1387 | |
| 1388 | transport_deregister_session_configfs(sess->se_sess); |
| 1389 | transport_deregister_session(sess->se_sess); |
| 1390 | } |
| 1391 | |
| 1392 | /* |
| 1393 | * Called via qlt_create_sess():ha->qla2x_tmpl->check_initiator_node_acl() |
| 1394 | * to locate struct se_node_acl |
| 1395 | */ |
| 1396 | static int tcm_qla2xxx_check_initiator_node_acl( |
| 1397 | scsi_qla_host_t *vha, |
| 1398 | unsigned char *fc_wwpn, |
| 1399 | void *qla_tgt_sess, |
| 1400 | uint8_t *s_id, |
| 1401 | uint16_t loop_id) |
| 1402 | { |
| 1403 | struct qla_hw_data *ha = vha->hw; |
| 1404 | struct tcm_qla2xxx_lport *lport; |
| 1405 | struct tcm_qla2xxx_tpg *tpg; |
| 1406 | struct tcm_qla2xxx_nacl *nacl; |
| 1407 | struct se_portal_group *se_tpg; |
| 1408 | struct se_node_acl *se_nacl; |
| 1409 | struct se_session *se_sess; |
| 1410 | struct qla_tgt_sess *sess = qla_tgt_sess; |
| 1411 | unsigned char port_name[36]; |
| 1412 | unsigned long flags; |
Nicholas Bellinger | 51a07f8 | 2014-05-23 02:00:56 -0700 | [diff] [blame] | 1413 | int num_tags = (ha->fw_xcb_count) ? ha->fw_xcb_count : |
| 1414 | TCM_QLA2XXX_DEFAULT_TAGS; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1415 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1416 | lport = vha->vha_tgt.target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1417 | if (!lport) { |
| 1418 | pr_err("Unable to locate struct tcm_qla2xxx_lport\n"); |
| 1419 | dump_stack(); |
| 1420 | return -EINVAL; |
| 1421 | } |
| 1422 | /* |
| 1423 | * Locate the TPG=1 reference.. |
| 1424 | */ |
| 1425 | tpg = lport->tpg_1; |
| 1426 | if (!tpg) { |
| 1427 | pr_err("Unable to lcoate struct tcm_qla2xxx_lport->tpg_1\n"); |
| 1428 | return -EINVAL; |
| 1429 | } |
| 1430 | se_tpg = &tpg->se_tpg; |
| 1431 | |
Nicholas Bellinger | 51a07f8 | 2014-05-23 02:00:56 -0700 | [diff] [blame] | 1432 | se_sess = transport_init_session_tags(num_tags, |
| 1433 | sizeof(struct qla_tgt_cmd), |
Nicholas Bellinger | 59bb0ff | 2015-02-08 12:49:46 -0800 | [diff] [blame] | 1434 | TARGET_PROT_ALL); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1435 | if (IS_ERR(se_sess)) { |
| 1436 | pr_err("Unable to initialize struct se_session\n"); |
| 1437 | return PTR_ERR(se_sess); |
| 1438 | } |
| 1439 | /* |
| 1440 | * Format the FCP Initiator port_name into colon seperated values to |
| 1441 | * match the format by tcm_qla2xxx explict ConfigFS NodeACLs. |
| 1442 | */ |
| 1443 | memset(&port_name, 0, 36); |
Andy Shevchenko | 3c9786e | 2015-01-15 13:28:07 +0200 | [diff] [blame] | 1444 | snprintf(port_name, sizeof(port_name), "%8phC", fc_wwpn); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1445 | /* |
| 1446 | * Locate our struct se_node_acl either from an explict NodeACL created |
| 1447 | * via ConfigFS, or via running in TPG demo mode. |
| 1448 | */ |
| 1449 | se_sess->se_node_acl = core_tpg_check_initiator_node_acl(se_tpg, |
| 1450 | port_name); |
| 1451 | if (!se_sess->se_node_acl) { |
| 1452 | transport_free_session(se_sess); |
| 1453 | return -EINVAL; |
| 1454 | } |
| 1455 | se_nacl = se_sess->se_node_acl; |
| 1456 | nacl = container_of(se_nacl, struct tcm_qla2xxx_nacl, se_node_acl); |
| 1457 | /* |
| 1458 | * And now setup the new se_nacl and session pointers into our HW lport |
| 1459 | * mappings for fabric S_ID and LOOP_ID. |
| 1460 | */ |
| 1461 | spin_lock_irqsave(&ha->hardware_lock, flags); |
| 1462 | tcm_qla2xxx_set_sess_by_s_id(lport, se_nacl, nacl, se_sess, |
| 1463 | qla_tgt_sess, s_id); |
| 1464 | tcm_qla2xxx_set_sess_by_loop_id(lport, se_nacl, nacl, se_sess, |
| 1465 | qla_tgt_sess, loop_id); |
| 1466 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
| 1467 | /* |
| 1468 | * Finally register the new FC Nexus with TCM |
| 1469 | */ |
Bart Van Assche | 75c3d0b | 2015-03-19 22:25:16 -0700 | [diff] [blame] | 1470 | transport_register_session(se_nacl->se_tpg, se_nacl, se_sess, sess); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1471 | |
| 1472 | return 0; |
| 1473 | } |
| 1474 | |
Roland Dreier | c8292d1 | 2012-10-11 13:41:32 -0700 | [diff] [blame] | 1475 | static void tcm_qla2xxx_update_sess(struct qla_tgt_sess *sess, port_id_t s_id, |
| 1476 | uint16_t loop_id, bool conf_compl_supported) |
| 1477 | { |
| 1478 | struct qla_tgt *tgt = sess->tgt; |
| 1479 | struct qla_hw_data *ha = tgt->ha; |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1480 | scsi_qla_host_t *vha = pci_get_drvdata(ha->pdev); |
| 1481 | struct tcm_qla2xxx_lport *lport = vha->vha_tgt.target_lport_ptr; |
Roland Dreier | c8292d1 | 2012-10-11 13:41:32 -0700 | [diff] [blame] | 1482 | struct se_node_acl *se_nacl = sess->se_sess->se_node_acl; |
| 1483 | struct tcm_qla2xxx_nacl *nacl = container_of(se_nacl, |
| 1484 | struct tcm_qla2xxx_nacl, se_node_acl); |
| 1485 | u32 key; |
| 1486 | |
| 1487 | |
| 1488 | if (sess->loop_id != loop_id || sess->s_id.b24 != s_id.b24) |
Oleksandr Khoshaba | 7b83355 | 2013-08-27 01:37:27 -0400 | [diff] [blame] | 1489 | pr_info("Updating session %p from port %8phC loop_id %d -> %d s_id %x:%x:%x -> %x:%x:%x\n", |
| 1490 | sess, sess->port_name, |
| 1491 | sess->loop_id, loop_id, sess->s_id.b.domain, |
| 1492 | sess->s_id.b.area, sess->s_id.b.al_pa, s_id.b.domain, |
| 1493 | s_id.b.area, s_id.b.al_pa); |
Roland Dreier | c8292d1 | 2012-10-11 13:41:32 -0700 | [diff] [blame] | 1494 | |
| 1495 | if (sess->loop_id != loop_id) { |
| 1496 | /* |
| 1497 | * Because we can shuffle loop IDs around and we |
| 1498 | * update different sessions non-atomically, we might |
| 1499 | * have overwritten this session's old loop ID |
| 1500 | * already, and we might end up overwriting some other |
| 1501 | * session that will be updated later. So we have to |
| 1502 | * be extra careful and we can't warn about those things... |
| 1503 | */ |
| 1504 | if (lport->lport_loopid_map[sess->loop_id].se_nacl == se_nacl) |
| 1505 | lport->lport_loopid_map[sess->loop_id].se_nacl = NULL; |
| 1506 | |
| 1507 | lport->lport_loopid_map[loop_id].se_nacl = se_nacl; |
| 1508 | |
| 1509 | sess->loop_id = loop_id; |
| 1510 | } |
| 1511 | |
| 1512 | if (sess->s_id.b24 != s_id.b24) { |
| 1513 | key = (((u32) sess->s_id.b.domain << 16) | |
| 1514 | ((u32) sess->s_id.b.area << 8) | |
| 1515 | ((u32) sess->s_id.b.al_pa)); |
| 1516 | |
| 1517 | if (btree_lookup32(&lport->lport_fcport_map, key)) |
| 1518 | WARN(btree_remove32(&lport->lport_fcport_map, key) != se_nacl, |
| 1519 | "Found wrong se_nacl when updating s_id %x:%x:%x\n", |
| 1520 | sess->s_id.b.domain, sess->s_id.b.area, sess->s_id.b.al_pa); |
| 1521 | else |
| 1522 | WARN(1, "No lport_fcport_map entry for s_id %x:%x:%x\n", |
| 1523 | sess->s_id.b.domain, sess->s_id.b.area, sess->s_id.b.al_pa); |
| 1524 | |
| 1525 | key = (((u32) s_id.b.domain << 16) | |
| 1526 | ((u32) s_id.b.area << 8) | |
| 1527 | ((u32) s_id.b.al_pa)); |
| 1528 | |
| 1529 | if (btree_lookup32(&lport->lport_fcport_map, key)) { |
| 1530 | WARN(1, "Already have lport_fcport_map entry for s_id %x:%x:%x\n", |
| 1531 | s_id.b.domain, s_id.b.area, s_id.b.al_pa); |
| 1532 | btree_update32(&lport->lport_fcport_map, key, se_nacl); |
| 1533 | } else { |
| 1534 | btree_insert32(&lport->lport_fcport_map, key, se_nacl, GFP_ATOMIC); |
| 1535 | } |
| 1536 | |
| 1537 | sess->s_id = s_id; |
| 1538 | nacl->nport_id = key; |
| 1539 | } |
| 1540 | |
| 1541 | sess->conf_compl_supported = conf_compl_supported; |
| 1542 | } |
| 1543 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1544 | /* |
| 1545 | * Calls into tcm_qla2xxx used by qla2xxx LLD I/O path. |
| 1546 | */ |
| 1547 | static struct qla_tgt_func_tmpl tcm_qla2xxx_template = { |
| 1548 | .handle_cmd = tcm_qla2xxx_handle_cmd, |
| 1549 | .handle_data = tcm_qla2xxx_handle_data, |
Quinn Tran | f83adb6 | 2014-04-11 16:54:43 -0400 | [diff] [blame] | 1550 | .handle_dif_err = tcm_qla2xxx_handle_dif_err, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1551 | .handle_tmr = tcm_qla2xxx_handle_tmr, |
| 1552 | .free_cmd = tcm_qla2xxx_free_cmd, |
| 1553 | .free_mcmd = tcm_qla2xxx_free_mcmd, |
| 1554 | .free_session = tcm_qla2xxx_free_session, |
Roland Dreier | c8292d1 | 2012-10-11 13:41:32 -0700 | [diff] [blame] | 1555 | .update_sess = tcm_qla2xxx_update_sess, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1556 | .check_initiator_node_acl = tcm_qla2xxx_check_initiator_node_acl, |
| 1557 | .find_sess_by_s_id = tcm_qla2xxx_find_sess_by_s_id, |
| 1558 | .find_sess_by_loop_id = tcm_qla2xxx_find_sess_by_loop_id, |
| 1559 | .clear_nacl_from_fcport_map = tcm_qla2xxx_clear_nacl_from_fcport_map, |
| 1560 | .put_sess = tcm_qla2xxx_put_sess, |
| 1561 | .shutdown_sess = tcm_qla2xxx_shutdown_sess, |
| 1562 | }; |
| 1563 | |
| 1564 | static int tcm_qla2xxx_init_lport(struct tcm_qla2xxx_lport *lport) |
| 1565 | { |
| 1566 | int rc; |
| 1567 | |
| 1568 | rc = btree_init32(&lport->lport_fcport_map); |
| 1569 | if (rc) { |
| 1570 | pr_err("Unable to initialize lport->lport_fcport_map btree\n"); |
| 1571 | return rc; |
| 1572 | } |
| 1573 | |
| 1574 | lport->lport_loopid_map = vmalloc(sizeof(struct tcm_qla2xxx_fc_loopid) * |
| 1575 | 65536); |
| 1576 | if (!lport->lport_loopid_map) { |
| 1577 | pr_err("Unable to allocate lport->lport_loopid_map of %zu bytes\n", |
| 1578 | sizeof(struct tcm_qla2xxx_fc_loopid) * 65536); |
| 1579 | btree_destroy32(&lport->lport_fcport_map); |
| 1580 | return -ENOMEM; |
| 1581 | } |
| 1582 | memset(lport->lport_loopid_map, 0, sizeof(struct tcm_qla2xxx_fc_loopid) |
| 1583 | * 65536); |
| 1584 | pr_debug("qla2xxx: Allocated lport_loopid_map of %zu bytes\n", |
| 1585 | sizeof(struct tcm_qla2xxx_fc_loopid) * 65536); |
| 1586 | return 0; |
| 1587 | } |
| 1588 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1589 | static int tcm_qla2xxx_lport_register_cb(struct scsi_qla_host *vha, |
| 1590 | void *target_lport_ptr, |
| 1591 | u64 npiv_wwpn, u64 npiv_wwnn) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1592 | { |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1593 | struct qla_hw_data *ha = vha->hw; |
| 1594 | struct tcm_qla2xxx_lport *lport = |
| 1595 | (struct tcm_qla2xxx_lport *)target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1596 | /* |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1597 | * Setup tgt_ops, local pointer to vha and target_lport_ptr |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1598 | */ |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1599 | ha->tgt.tgt_ops = &tcm_qla2xxx_template; |
| 1600 | vha->vha_tgt.target_lport_ptr = target_lport_ptr; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1601 | lport->qla_vha = vha; |
| 1602 | |
| 1603 | return 0; |
| 1604 | } |
| 1605 | |
| 1606 | static struct se_wwn *tcm_qla2xxx_make_lport( |
| 1607 | struct target_fabric_configfs *tf, |
| 1608 | struct config_group *group, |
| 1609 | const char *name) |
| 1610 | { |
| 1611 | struct tcm_qla2xxx_lport *lport; |
| 1612 | u64 wwpn; |
| 1613 | int ret = -ENODEV; |
| 1614 | |
| 1615 | if (tcm_qla2xxx_parse_wwn(name, &wwpn, 1) < 0) |
| 1616 | return ERR_PTR(-EINVAL); |
| 1617 | |
| 1618 | lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL); |
| 1619 | if (!lport) { |
| 1620 | pr_err("Unable to allocate struct tcm_qla2xxx_lport\n"); |
| 1621 | return ERR_PTR(-ENOMEM); |
| 1622 | } |
| 1623 | lport->lport_wwpn = wwpn; |
| 1624 | tcm_qla2xxx_format_wwn(&lport->lport_name[0], TCM_QLA2XXX_NAMELEN, |
| 1625 | wwpn); |
Roland Dreier | c046aa0 | 2012-10-11 13:41:31 -0700 | [diff] [blame] | 1626 | sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) wwpn); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1627 | |
| 1628 | ret = tcm_qla2xxx_init_lport(lport); |
| 1629 | if (ret != 0) |
| 1630 | goto out; |
| 1631 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1632 | ret = qlt_lport_register(lport, wwpn, 0, 0, |
| 1633 | tcm_qla2xxx_lport_register_cb); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1634 | if (ret != 0) |
| 1635 | goto out_lport; |
| 1636 | |
| 1637 | return &lport->lport_wwn; |
| 1638 | out_lport: |
| 1639 | vfree(lport->lport_loopid_map); |
| 1640 | btree_destroy32(&lport->lport_fcport_map); |
| 1641 | out: |
| 1642 | kfree(lport); |
| 1643 | return ERR_PTR(ret); |
| 1644 | } |
| 1645 | |
| 1646 | static void tcm_qla2xxx_drop_lport(struct se_wwn *wwn) |
| 1647 | { |
| 1648 | struct tcm_qla2xxx_lport *lport = container_of(wwn, |
| 1649 | struct tcm_qla2xxx_lport, lport_wwn); |
| 1650 | struct scsi_qla_host *vha = lport->qla_vha; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1651 | struct se_node_acl *node; |
| 1652 | u32 key = 0; |
| 1653 | |
| 1654 | /* |
| 1655 | * Call into qla2x_target.c LLD logic to complete the |
| 1656 | * shutdown of struct qla_tgt after the call to |
| 1657 | * qlt_stop_phase1() from tcm_qla2xxx_drop_tpg() above.. |
| 1658 | */ |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1659 | if (vha->vha_tgt.qla_tgt && !vha->vha_tgt.qla_tgt->tgt_stopped) |
| 1660 | qlt_stop_phase2(vha->vha_tgt.qla_tgt); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1661 | |
| 1662 | qlt_lport_deregister(vha); |
| 1663 | |
| 1664 | vfree(lport->lport_loopid_map); |
| 1665 | btree_for_each_safe32(&lport->lport_fcport_map, key, node) |
| 1666 | btree_remove32(&lport->lport_fcport_map, key); |
| 1667 | btree_destroy32(&lport->lport_fcport_map); |
| 1668 | kfree(lport); |
| 1669 | } |
| 1670 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1671 | static int tcm_qla2xxx_lport_register_npiv_cb(struct scsi_qla_host *base_vha, |
| 1672 | void *target_lport_ptr, |
| 1673 | u64 npiv_wwpn, u64 npiv_wwnn) |
| 1674 | { |
| 1675 | struct fc_vport *vport; |
| 1676 | struct Scsi_Host *sh = base_vha->host; |
| 1677 | struct scsi_qla_host *npiv_vha; |
| 1678 | struct tcm_qla2xxx_lport *lport = |
| 1679 | (struct tcm_qla2xxx_lport *)target_lport_ptr; |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 1680 | struct tcm_qla2xxx_lport *base_lport = |
| 1681 | (struct tcm_qla2xxx_lport *)base_vha->vha_tgt.target_lport_ptr; |
| 1682 | struct tcm_qla2xxx_tpg *base_tpg; |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 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 | |
Nicholas Bellinger | 7474f52 | 2014-02-19 16:53:07 -0800 | [diff] [blame] | 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 | } |
| 1695 | base_tpg = base_lport->tpg_1; |
| 1696 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1697 | memset(&vport_id, 0, sizeof(vport_id)); |
| 1698 | vport_id.port_name = npiv_wwpn; |
| 1699 | vport_id.node_name = npiv_wwnn; |
| 1700 | vport_id.roles = FC_PORT_ROLE_FCP_INITIATOR; |
| 1701 | vport_id.vport_type = FC_PORTTYPE_NPIV; |
| 1702 | vport_id.disable = false; |
| 1703 | |
| 1704 | vport = fc_vport_create(sh, 0, &vport_id); |
| 1705 | if (!vport) { |
| 1706 | pr_err("fc_vport_create failed for qla2xxx_npiv\n"); |
| 1707 | return -ENODEV; |
| 1708 | } |
| 1709 | /* |
| 1710 | * Setup local pointer to NPIV vhba + target_lport_ptr |
| 1711 | */ |
| 1712 | npiv_vha = (struct scsi_qla_host *)vport->dd_data; |
| 1713 | npiv_vha->vha_tgt.target_lport_ptr = target_lport_ptr; |
| 1714 | lport->qla_vha = npiv_vha; |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1715 | scsi_host_get(npiv_vha->host); |
| 1716 | return 0; |
| 1717 | } |
| 1718 | |
| 1719 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1720 | static struct se_wwn *tcm_qla2xxx_npiv_make_lport( |
| 1721 | struct target_fabric_configfs *tf, |
| 1722 | struct config_group *group, |
| 1723 | const char *name) |
| 1724 | { |
| 1725 | struct tcm_qla2xxx_lport *lport; |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1726 | u64 phys_wwpn, npiv_wwpn, npiv_wwnn; |
| 1727 | char *p, tmp[128]; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1728 | int ret; |
| 1729 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1730 | snprintf(tmp, 128, "%s", name); |
| 1731 | |
| 1732 | p = strchr(tmp, '@'); |
| 1733 | if (!p) { |
| 1734 | pr_err("Unable to locate NPIV '@' seperator\n"); |
| 1735 | return ERR_PTR(-EINVAL); |
| 1736 | } |
| 1737 | *p++ = '\0'; |
| 1738 | |
| 1739 | if (tcm_qla2xxx_parse_wwn(tmp, &phys_wwpn, 1) < 0) |
| 1740 | return ERR_PTR(-EINVAL); |
| 1741 | |
| 1742 | if (tcm_qla2xxx_npiv_parse_wwn(p, strlen(p)+1, |
| 1743 | &npiv_wwpn, &npiv_wwnn) < 0) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1744 | return ERR_PTR(-EINVAL); |
| 1745 | |
| 1746 | lport = kzalloc(sizeof(struct tcm_qla2xxx_lport), GFP_KERNEL); |
| 1747 | if (!lport) { |
| 1748 | pr_err("Unable to allocate struct tcm_qla2xxx_lport for NPIV\n"); |
| 1749 | return ERR_PTR(-ENOMEM); |
| 1750 | } |
| 1751 | lport->lport_npiv_wwpn = npiv_wwpn; |
| 1752 | lport->lport_npiv_wwnn = npiv_wwnn; |
Roland Dreier | c046aa0 | 2012-10-11 13:41:31 -0700 | [diff] [blame] | 1753 | sprintf(lport->lport_naa_name, "naa.%016llx", (unsigned long long) npiv_wwpn); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1754 | |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1755 | ret = tcm_qla2xxx_init_lport(lport); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1756 | if (ret != 0) |
| 1757 | goto out; |
| 1758 | |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1759 | ret = qlt_lport_register(lport, phys_wwpn, npiv_wwpn, npiv_wwnn, |
| 1760 | tcm_qla2xxx_lport_register_npiv_cb); |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1761 | if (ret != 0) |
| 1762 | goto out_lport; |
| 1763 | |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1764 | return &lport->lport_wwn; |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1765 | out_lport: |
| 1766 | vfree(lport->lport_loopid_map); |
| 1767 | btree_destroy32(&lport->lport_fcport_map); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1768 | out: |
| 1769 | kfree(lport); |
| 1770 | return ERR_PTR(ret); |
| 1771 | } |
| 1772 | |
| 1773 | static void tcm_qla2xxx_npiv_drop_lport(struct se_wwn *wwn) |
| 1774 | { |
| 1775 | struct tcm_qla2xxx_lport *lport = container_of(wwn, |
| 1776 | struct tcm_qla2xxx_lport, lport_wwn); |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1777 | struct scsi_qla_host *npiv_vha = lport->qla_vha; |
| 1778 | struct qla_hw_data *ha = npiv_vha->hw; |
| 1779 | scsi_qla_host_t *base_vha = pci_get_drvdata(ha->pdev); |
| 1780 | |
| 1781 | scsi_host_put(npiv_vha->host); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1782 | /* |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1783 | * Notify libfc that we want to release the vha->fc_vport |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1784 | */ |
Nicholas Bellinger | 49a47f2 | 2014-01-14 20:38:58 -0800 | [diff] [blame] | 1785 | fc_vport_terminate(npiv_vha->fc_vport); |
| 1786 | scsi_host_put(base_vha->host); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1787 | kfree(lport); |
| 1788 | } |
| 1789 | |
| 1790 | |
| 1791 | static ssize_t tcm_qla2xxx_wwn_show_attr_version( |
| 1792 | struct target_fabric_configfs *tf, |
| 1793 | char *page) |
| 1794 | { |
| 1795 | return sprintf(page, |
| 1796 | "TCM QLOGIC QLA2XXX NPIV capable fabric module %s on %s/%s on " |
| 1797 | UTS_RELEASE"\n", TCM_QLA2XXX_VERSION, utsname()->sysname, |
| 1798 | utsname()->machine); |
| 1799 | } |
| 1800 | |
| 1801 | TF_WWN_ATTR_RO(tcm_qla2xxx, version); |
| 1802 | |
| 1803 | static struct configfs_attribute *tcm_qla2xxx_wwn_attrs[] = { |
| 1804 | &tcm_qla2xxx_wwn_version.attr, |
| 1805 | NULL, |
| 1806 | }; |
| 1807 | |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1808 | static const struct target_core_fabric_ops tcm_qla2xxx_ops = { |
| 1809 | .module = THIS_MODULE, |
| 1810 | .name = "qla2xxx", |
Christoph Hellwig | 144bc4c | 2015-04-13 19:51:16 +0200 | [diff] [blame] | 1811 | .node_acl_size = sizeof(struct tcm_qla2xxx_nacl), |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1812 | .get_fabric_name = tcm_qla2xxx_get_fabric_name, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1813 | .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn, |
| 1814 | .tpg_get_tag = tcm_qla2xxx_get_tag, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1815 | .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode, |
| 1816 | .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache, |
| 1817 | .tpg_check_demo_mode_write_protect = |
| 1818 | tcm_qla2xxx_check_demo_write_protect, |
| 1819 | .tpg_check_prod_mode_write_protect = |
| 1820 | tcm_qla2xxx_check_prod_write_protect, |
Nicholas Bellinger | 64b1688 | 2015-03-27 23:30:57 -0700 | [diff] [blame] | 1821 | .tpg_check_prot_fabric_only = tcm_qla2xxx_check_prot_fabric_only, |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 1822 | .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1823 | .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1824 | .check_stop_free = tcm_qla2xxx_check_stop_free, |
| 1825 | .release_cmd = tcm_qla2xxx_release_cmd, |
| 1826 | .shutdown_session = tcm_qla2xxx_shutdown_session, |
| 1827 | .close_session = tcm_qla2xxx_close_session, |
| 1828 | .sess_get_index = tcm_qla2xxx_sess_get_index, |
| 1829 | .sess_get_initiator_sid = NULL, |
| 1830 | .write_pending = tcm_qla2xxx_write_pending, |
| 1831 | .write_pending_status = tcm_qla2xxx_write_pending_status, |
| 1832 | .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1833 | .get_cmd_state = tcm_qla2xxx_get_cmd_state, |
| 1834 | .queue_data_in = tcm_qla2xxx_queue_data_in, |
| 1835 | .queue_status = tcm_qla2xxx_queue_status, |
| 1836 | .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp, |
Nicholas Bellinger | 131e6ab | 2014-03-22 14:55:56 -0700 | [diff] [blame] | 1837 | .aborted_task = tcm_qla2xxx_aborted_task, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1838 | /* |
| 1839 | * Setup function pointers for generic logic in |
| 1840 | * target_core_fabric_configfs.c |
| 1841 | */ |
| 1842 | .fabric_make_wwn = tcm_qla2xxx_make_lport, |
| 1843 | .fabric_drop_wwn = tcm_qla2xxx_drop_lport, |
| 1844 | .fabric_make_tpg = tcm_qla2xxx_make_tpg, |
| 1845 | .fabric_drop_tpg = tcm_qla2xxx_drop_tpg, |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 1846 | .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl, |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1847 | |
| 1848 | .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs, |
| 1849 | .tfc_tpg_base_attrs = tcm_qla2xxx_tpg_attrs, |
| 1850 | .tfc_tpg_attrib_attrs = tcm_qla2xxx_tpg_attrib_attrs, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1851 | }; |
| 1852 | |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1853 | static const struct target_core_fabric_ops tcm_qla2xxx_npiv_ops = { |
| 1854 | .module = THIS_MODULE, |
| 1855 | .name = "qla2xxx_npiv", |
Christoph Hellwig | 144bc4c | 2015-04-13 19:51:16 +0200 | [diff] [blame] | 1856 | .node_acl_size = sizeof(struct tcm_qla2xxx_nacl), |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1857 | .get_fabric_name = tcm_qla2xxx_npiv_get_fabric_name, |
Nicholas Bellinger | 84197a3 | 2014-01-30 09:52:21 -0800 | [diff] [blame] | 1858 | .tpg_get_wwn = tcm_qla2xxx_get_fabric_wwn, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1859 | .tpg_get_tag = tcm_qla2xxx_get_tag, |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1860 | .tpg_check_demo_mode = tcm_qla2xxx_check_demo_mode, |
| 1861 | .tpg_check_demo_mode_cache = tcm_qla2xxx_check_demo_mode_cache, |
| 1862 | .tpg_check_demo_mode_write_protect = tcm_qla2xxx_check_demo_mode, |
| 1863 | .tpg_check_prod_mode_write_protect = |
| 1864 | tcm_qla2xxx_check_prod_write_protect, |
Andy Grover | de04a8a | 2013-07-19 15:06:38 -0700 | [diff] [blame] | 1865 | .tpg_check_demo_mode_login_only = tcm_qla2xxx_check_demo_mode_login_only, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1866 | .tpg_get_inst_index = tcm_qla2xxx_tpg_get_inst_index, |
Saurav Kashyap | 0e8cd71 | 2014-01-14 20:40:38 -0800 | [diff] [blame] | 1867 | .check_stop_free = tcm_qla2xxx_check_stop_free, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1868 | .release_cmd = tcm_qla2xxx_release_cmd, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1869 | .shutdown_session = tcm_qla2xxx_shutdown_session, |
| 1870 | .close_session = tcm_qla2xxx_close_session, |
| 1871 | .sess_get_index = tcm_qla2xxx_sess_get_index, |
| 1872 | .sess_get_initiator_sid = NULL, |
| 1873 | .write_pending = tcm_qla2xxx_write_pending, |
| 1874 | .write_pending_status = tcm_qla2xxx_write_pending_status, |
| 1875 | .set_default_node_attributes = tcm_qla2xxx_set_default_node_attrs, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1876 | .get_cmd_state = tcm_qla2xxx_get_cmd_state, |
| 1877 | .queue_data_in = tcm_qla2xxx_queue_data_in, |
| 1878 | .queue_status = tcm_qla2xxx_queue_status, |
| 1879 | .queue_tm_rsp = tcm_qla2xxx_queue_tm_rsp, |
Nicholas Bellinger | 131e6ab | 2014-03-22 14:55:56 -0700 | [diff] [blame] | 1880 | .aborted_task = tcm_qla2xxx_aborted_task, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1881 | /* |
| 1882 | * Setup function pointers for generic logic in |
| 1883 | * target_core_fabric_configfs.c |
| 1884 | */ |
| 1885 | .fabric_make_wwn = tcm_qla2xxx_npiv_make_lport, |
| 1886 | .fabric_drop_wwn = tcm_qla2xxx_npiv_drop_lport, |
| 1887 | .fabric_make_tpg = tcm_qla2xxx_npiv_make_tpg, |
| 1888 | .fabric_drop_tpg = tcm_qla2xxx_drop_tpg, |
Christoph Hellwig | c7d6a80 | 2015-04-13 19:51:14 +0200 | [diff] [blame] | 1889 | .fabric_init_nodeacl = tcm_qla2xxx_init_nodeacl, |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1890 | |
| 1891 | .tfc_wwn_attrs = tcm_qla2xxx_wwn_attrs, |
| 1892 | .tfc_tpg_base_attrs = tcm_qla2xxx_npiv_tpg_attrs, |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1893 | }; |
| 1894 | |
| 1895 | static int tcm_qla2xxx_register_configfs(void) |
| 1896 | { |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1897 | int ret; |
| 1898 | |
| 1899 | pr_debug("TCM QLOGIC QLA2XXX fabric module %s on %s/%s on " |
| 1900 | UTS_RELEASE"\n", TCM_QLA2XXX_VERSION, utsname()->sysname, |
| 1901 | utsname()->machine); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1902 | |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1903 | ret = target_register_template(&tcm_qla2xxx_ops); |
| 1904 | if (ret) |
| 1905 | return ret; |
| 1906 | |
| 1907 | ret = target_register_template(&tcm_qla2xxx_npiv_ops); |
| 1908 | if (ret) |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1909 | goto out_fabric; |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1910 | |
| 1911 | tcm_qla2xxx_free_wq = alloc_workqueue("tcm_qla2xxx_free", |
| 1912 | WQ_MEM_RECLAIM, 0); |
| 1913 | if (!tcm_qla2xxx_free_wq) { |
| 1914 | ret = -ENOMEM; |
| 1915 | goto out_fabric_npiv; |
| 1916 | } |
| 1917 | |
| 1918 | tcm_qla2xxx_cmd_wq = alloc_workqueue("tcm_qla2xxx_cmd", 0, 0); |
| 1919 | if (!tcm_qla2xxx_cmd_wq) { |
| 1920 | ret = -ENOMEM; |
| 1921 | goto out_free_wq; |
| 1922 | } |
| 1923 | |
| 1924 | return 0; |
| 1925 | |
| 1926 | out_free_wq: |
| 1927 | destroy_workqueue(tcm_qla2xxx_free_wq); |
| 1928 | out_fabric_npiv: |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1929 | target_unregister_template(&tcm_qla2xxx_npiv_ops); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1930 | out_fabric: |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1931 | target_unregister_template(&tcm_qla2xxx_ops); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1932 | return ret; |
| 1933 | } |
| 1934 | |
| 1935 | static void tcm_qla2xxx_deregister_configfs(void) |
| 1936 | { |
| 1937 | destroy_workqueue(tcm_qla2xxx_cmd_wq); |
| 1938 | destroy_workqueue(tcm_qla2xxx_free_wq); |
| 1939 | |
Christoph Hellwig | 9ac8928 | 2015-04-08 20:01:35 +0200 | [diff] [blame] | 1940 | target_unregister_template(&tcm_qla2xxx_ops); |
| 1941 | target_unregister_template(&tcm_qla2xxx_npiv_ops); |
Nicholas Bellinger | 75f8c1f | 2012-05-15 14:34:29 -0400 | [diff] [blame] | 1942 | } |
| 1943 | |
| 1944 | static int __init tcm_qla2xxx_init(void) |
| 1945 | { |
| 1946 | int ret; |
| 1947 | |
| 1948 | ret = tcm_qla2xxx_register_configfs(); |
| 1949 | if (ret < 0) |
| 1950 | return ret; |
| 1951 | |
| 1952 | return 0; |
| 1953 | } |
| 1954 | |
| 1955 | static void __exit tcm_qla2xxx_exit(void) |
| 1956 | { |
| 1957 | tcm_qla2xxx_deregister_configfs(); |
| 1958 | } |
| 1959 | |
| 1960 | MODULE_DESCRIPTION("TCM QLA2XXX series NPIV enabled fabric driver"); |
| 1961 | MODULE_LICENSE("GPL"); |
| 1962 | module_init(tcm_qla2xxx_init); |
| 1963 | module_exit(tcm_qla2xxx_exit); |