1 /*******************************************************************************
2 * Filename: target_core_fabric_configfs.c
4 * This file contains generic fabric module configfs infrastructure for
7 * (c) Copyright 2010-2012 RisingTide Systems LLC.
9 * Nicholas A. Bellinger <nab@linux-iscsi.org>
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 ****************************************************************************/
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/utsname.h>
25 #include <linux/init.h>
27 #include <linux/namei.h>
28 #include <linux/slab.h>
29 #include <linux/types.h>
30 #include <linux/delay.h>
31 #include <linux/unistd.h>
32 #include <linux/string.h>
33 #include <linux/syscalls.h>
34 #include <linux/configfs.h>
36 #include <target/target_core_base.h>
37 #include <target/target_core_fabric.h>
38 #include <target/target_core_fabric_configfs.h>
39 #include <target/target_core_configfs.h>
40 #include <target/configfs_macros.h>
42 #include "target_core_internal.h"
43 #include "target_core_alua.h"
44 #include "target_core_pr.h"
46 #define TF_CIT_SETUP(_name, _item_ops, _group_ops, _attrs) \
47 static void target_fabric_setup_##_name##_cit(struct target_fabric_configfs *tf) \
49 struct target_fabric_configfs_template *tfc = &tf->tf_cit_tmpl; \
50 struct config_item_type *cit = &tfc->tfc_##_name##_cit; \
52 cit->ct_item_ops = _item_ops; \
53 cit->ct_group_ops = _group_ops; \
54 cit->ct_attrs = _attrs; \
55 cit->ct_owner = tf->tf_module; \
56 pr_debug("Setup generic %s\n", __stringify(_name)); \
59 /* Start of tfc_tpg_mappedlun_cit */
61 static int target_fabric_mappedlun_link(
62 struct config_item
*lun_acl_ci
,
63 struct config_item
*lun_ci
)
65 struct se_dev_entry
*deve
;
66 struct se_lun
*lun
= container_of(to_config_group(lun_ci
),
67 struct se_lun
, lun_group
);
68 struct se_lun_acl
*lacl
= container_of(to_config_group(lun_acl_ci
),
69 struct se_lun_acl
, se_lun_group
);
70 struct se_portal_group
*se_tpg
;
71 struct config_item
*nacl_ci
, *tpg_ci
, *tpg_ci_s
, *wwn_ci
, *wwn_ci_s
;
72 int ret
= 0, lun_access
;
74 if (lun
->lun_link_magic
!= SE_LUN_LINK_MAGIC
) {
75 pr_err("Bad lun->lun_link_magic, not a valid lun_ci pointer:"
76 " %p to struct lun: %p\n", lun_ci
, lun
);
80 * Ensure that the source port exists
82 if (!lun
->lun_sep
|| !lun
->lun_sep
->sep_tpg
) {
83 pr_err("Source se_lun->lun_sep or lun->lun_sep->sep"
84 "_tpg does not exist\n");
87 se_tpg
= lun
->lun_sep
->sep_tpg
;
89 nacl_ci
= &lun_acl_ci
->ci_parent
->ci_group
->cg_item
;
90 tpg_ci
= &nacl_ci
->ci_group
->cg_item
;
91 wwn_ci
= &tpg_ci
->ci_group
->cg_item
;
92 tpg_ci_s
= &lun_ci
->ci_parent
->ci_group
->cg_item
;
93 wwn_ci_s
= &tpg_ci_s
->ci_group
->cg_item
;
95 * Make sure the SymLink is going to the same $FABRIC/$WWN/tpgt_$TPGT
97 if (strcmp(config_item_name(wwn_ci
), config_item_name(wwn_ci_s
))) {
98 pr_err("Illegal Initiator ACL SymLink outside of %s\n",
99 config_item_name(wwn_ci
));
102 if (strcmp(config_item_name(tpg_ci
), config_item_name(tpg_ci_s
))) {
103 pr_err("Illegal Initiator ACL Symlink outside of %s"
104 " TPGT: %s\n", config_item_name(wwn_ci
),
105 config_item_name(tpg_ci
));
109 * If this struct se_node_acl was dynamically generated with
110 * tpg_1/attrib/generate_node_acls=1, use the existing deve->lun_flags,
111 * which be will write protected (READ-ONLY) when
112 * tpg_1/attrib/demo_mode_write_protect=1
114 spin_lock_irq(&lacl
->se_lun_nacl
->device_list_lock
);
115 deve
= lacl
->se_lun_nacl
->device_list
[lacl
->mapped_lun
];
116 if (deve
->lun_flags
& TRANSPORT_LUNFLAGS_INITIATOR_ACCESS
)
117 lun_access
= deve
->lun_flags
;
120 (se_tpg
->se_tpg_tfo
->tpg_check_prod_mode_write_protect(
121 se_tpg
)) ? TRANSPORT_LUNFLAGS_READ_ONLY
:
122 TRANSPORT_LUNFLAGS_READ_WRITE
;
123 spin_unlock_irq(&lacl
->se_lun_nacl
->device_list_lock
);
125 * Determine the actual mapped LUN value user wants..
127 * This value is what the SCSI Initiator actually sees the
128 * iscsi/$IQN/$TPGT/lun/lun_* as on their SCSI Initiator Ports.
130 ret
= core_dev_add_initiator_node_lun_acl(se_tpg
, lacl
,
131 lun
->unpacked_lun
, lun_access
);
133 return (ret
< 0) ? -EINVAL
: 0;
136 static int target_fabric_mappedlun_unlink(
137 struct config_item
*lun_acl_ci
,
138 struct config_item
*lun_ci
)
141 struct se_lun_acl
*lacl
= container_of(to_config_group(lun_acl_ci
),
142 struct se_lun_acl
, se_lun_group
);
143 struct se_node_acl
*nacl
= lacl
->se_lun_nacl
;
144 struct se_dev_entry
*deve
= nacl
->device_list
[lacl
->mapped_lun
];
145 struct se_portal_group
*se_tpg
;
147 * Determine if the underlying MappedLUN has already been released..
152 lun
= container_of(to_config_group(lun_ci
), struct se_lun
, lun_group
);
153 se_tpg
= lun
->lun_sep
->sep_tpg
;
155 core_dev_del_initiator_node_lun_acl(se_tpg
, lun
, lacl
);
159 CONFIGFS_EATTR_STRUCT(target_fabric_mappedlun
, se_lun_acl
);
160 #define TCM_MAPPEDLUN_ATTR(_name, _mode) \
161 static struct target_fabric_mappedlun_attribute target_fabric_mappedlun_##_name = \
162 __CONFIGFS_EATTR(_name, _mode, \
163 target_fabric_mappedlun_show_##_name, \
164 target_fabric_mappedlun_store_##_name);
166 static ssize_t
target_fabric_mappedlun_show_write_protect(
167 struct se_lun_acl
*lacl
,
170 struct se_node_acl
*se_nacl
= lacl
->se_lun_nacl
;
171 struct se_dev_entry
*deve
;
174 spin_lock_irq(&se_nacl
->device_list_lock
);
175 deve
= se_nacl
->device_list
[lacl
->mapped_lun
];
176 len
= sprintf(page
, "%d\n",
177 (deve
->lun_flags
& TRANSPORT_LUNFLAGS_READ_ONLY
) ?
179 spin_unlock_irq(&se_nacl
->device_list_lock
);
184 static ssize_t
target_fabric_mappedlun_store_write_protect(
185 struct se_lun_acl
*lacl
,
189 struct se_node_acl
*se_nacl
= lacl
->se_lun_nacl
;
190 struct se_portal_group
*se_tpg
= se_nacl
->se_tpg
;
193 if (strict_strtoul(page
, 0, &op
))
196 if ((op
!= 1) && (op
!= 0))
199 core_update_device_list_access(lacl
->mapped_lun
, (op
) ?
200 TRANSPORT_LUNFLAGS_READ_ONLY
:
201 TRANSPORT_LUNFLAGS_READ_WRITE
,
204 pr_debug("%s_ConfigFS: Changed Initiator ACL: %s"
205 " Mapped LUN: %u Write Protect bit to %s\n",
206 se_tpg
->se_tpg_tfo
->get_fabric_name(),
207 lacl
->initiatorname
, lacl
->mapped_lun
, (op
) ? "ON" : "OFF");
213 TCM_MAPPEDLUN_ATTR(write_protect
, S_IRUGO
| S_IWUSR
);
215 CONFIGFS_EATTR_OPS(target_fabric_mappedlun
, se_lun_acl
, se_lun_group
);
217 static void target_fabric_mappedlun_release(struct config_item
*item
)
219 struct se_lun_acl
*lacl
= container_of(to_config_group(item
),
220 struct se_lun_acl
, se_lun_group
);
221 struct se_portal_group
*se_tpg
= lacl
->se_lun_nacl
->se_tpg
;
223 core_dev_free_initiator_node_lun_acl(se_tpg
, lacl
);
226 static struct configfs_attribute
*target_fabric_mappedlun_attrs
[] = {
227 &target_fabric_mappedlun_write_protect
.attr
,
231 static struct configfs_item_operations target_fabric_mappedlun_item_ops
= {
232 .release
= target_fabric_mappedlun_release
,
233 .show_attribute
= target_fabric_mappedlun_attr_show
,
234 .store_attribute
= target_fabric_mappedlun_attr_store
,
235 .allow_link
= target_fabric_mappedlun_link
,
236 .drop_link
= target_fabric_mappedlun_unlink
,
239 TF_CIT_SETUP(tpg_mappedlun
, &target_fabric_mappedlun_item_ops
, NULL
,
240 target_fabric_mappedlun_attrs
);
242 /* End of tfc_tpg_mappedlun_cit */
244 /* Start of tfc_tpg_mappedlun_port_cit */
246 static struct config_group
*target_core_mappedlun_stat_mkdir(
247 struct config_group
*group
,
250 return ERR_PTR(-ENOSYS
);
253 static void target_core_mappedlun_stat_rmdir(
254 struct config_group
*group
,
255 struct config_item
*item
)
260 static struct configfs_group_operations target_fabric_mappedlun_stat_group_ops
= {
261 .make_group
= target_core_mappedlun_stat_mkdir
,
262 .drop_item
= target_core_mappedlun_stat_rmdir
,
265 TF_CIT_SETUP(tpg_mappedlun_stat
, NULL
, &target_fabric_mappedlun_stat_group_ops
,
268 /* End of tfc_tpg_mappedlun_port_cit */
270 /* Start of tfc_tpg_nacl_attrib_cit */
272 CONFIGFS_EATTR_OPS(target_fabric_nacl_attrib
, se_node_acl
, acl_attrib_group
);
274 static struct configfs_item_operations target_fabric_nacl_attrib_item_ops
= {
275 .show_attribute
= target_fabric_nacl_attrib_attr_show
,
276 .store_attribute
= target_fabric_nacl_attrib_attr_store
,
279 TF_CIT_SETUP(tpg_nacl_attrib
, &target_fabric_nacl_attrib_item_ops
, NULL
, NULL
);
281 /* End of tfc_tpg_nacl_attrib_cit */
283 /* Start of tfc_tpg_nacl_auth_cit */
285 CONFIGFS_EATTR_OPS(target_fabric_nacl_auth
, se_node_acl
, acl_auth_group
);
287 static struct configfs_item_operations target_fabric_nacl_auth_item_ops
= {
288 .show_attribute
= target_fabric_nacl_auth_attr_show
,
289 .store_attribute
= target_fabric_nacl_auth_attr_store
,
292 TF_CIT_SETUP(tpg_nacl_auth
, &target_fabric_nacl_auth_item_ops
, NULL
, NULL
);
294 /* End of tfc_tpg_nacl_auth_cit */
296 /* Start of tfc_tpg_nacl_param_cit */
298 CONFIGFS_EATTR_OPS(target_fabric_nacl_param
, se_node_acl
, acl_param_group
);
300 static struct configfs_item_operations target_fabric_nacl_param_item_ops
= {
301 .show_attribute
= target_fabric_nacl_param_attr_show
,
302 .store_attribute
= target_fabric_nacl_param_attr_store
,
305 TF_CIT_SETUP(tpg_nacl_param
, &target_fabric_nacl_param_item_ops
, NULL
, NULL
);
307 /* End of tfc_tpg_nacl_param_cit */
309 /* Start of tfc_tpg_nacl_base_cit */
311 CONFIGFS_EATTR_OPS(target_fabric_nacl_base
, se_node_acl
, acl_group
);
313 static struct config_group
*target_fabric_make_mappedlun(
314 struct config_group
*group
,
317 struct se_node_acl
*se_nacl
= container_of(group
,
318 struct se_node_acl
, acl_group
);
319 struct se_portal_group
*se_tpg
= se_nacl
->se_tpg
;
320 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
321 struct se_lun_acl
*lacl
;
322 struct config_item
*acl_ci
;
323 struct config_group
*lacl_cg
= NULL
, *ml_stat_grp
= NULL
;
325 unsigned long mapped_lun
;
328 acl_ci
= &group
->cg_item
;
330 pr_err("Unable to locatel acl_ci\n");
334 buf
= kzalloc(strlen(name
) + 1, GFP_KERNEL
);
336 pr_err("Unable to allocate memory for name buf\n");
337 return ERR_PTR(-ENOMEM
);
339 snprintf(buf
, strlen(name
) + 1, "%s", name
);
341 * Make sure user is creating iscsi/$IQN/$TPGT/acls/$INITIATOR/lun_$ID.
343 if (strstr(buf
, "lun_") != buf
) {
344 pr_err("Unable to locate \"lun_\" from buf: %s"
345 " name: %s\n", buf
, name
);
350 * Determine the Mapped LUN value. This is what the SCSI Initiator
351 * Port will actually see.
353 if (strict_strtoul(buf
+ 4, 0, &mapped_lun
) || mapped_lun
> UINT_MAX
) {
357 if (mapped_lun
> (TRANSPORT_MAX_LUNS_PER_TPG
-1)) {
358 pr_err("Mapped LUN: %lu exceeds TRANSPORT_MAX_LUNS_PER_TPG"
359 "-1: %u for Target Portal Group: %u\n", mapped_lun
,
360 TRANSPORT_MAX_LUNS_PER_TPG
-1,
361 se_tpg
->se_tpg_tfo
->tpg_get_tag(se_tpg
));
366 lacl
= core_dev_init_initiator_node_lun_acl(se_tpg
, se_nacl
,
373 lacl_cg
= &lacl
->se_lun_group
;
374 lacl_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
376 if (!lacl_cg
->default_groups
) {
377 pr_err("Unable to allocate lacl_cg->default_groups\n");
382 config_group_init_type_name(&lacl
->se_lun_group
, name
,
383 &TF_CIT_TMPL(tf
)->tfc_tpg_mappedlun_cit
);
384 config_group_init_type_name(&lacl
->ml_stat_grps
.stat_group
,
385 "statistics", &TF_CIT_TMPL(tf
)->tfc_tpg_mappedlun_stat_cit
);
386 lacl_cg
->default_groups
[0] = &lacl
->ml_stat_grps
.stat_group
;
387 lacl_cg
->default_groups
[1] = NULL
;
389 ml_stat_grp
= &lacl
->ml_stat_grps
.stat_group
;
390 ml_stat_grp
->default_groups
= kmalloc(sizeof(struct config_group
*) * 3,
392 if (!ml_stat_grp
->default_groups
) {
393 pr_err("Unable to allocate ml_stat_grp->default_groups\n");
397 target_stat_setup_mappedlun_default_groups(lacl
);
400 return &lacl
->se_lun_group
;
403 kfree(lacl_cg
->default_groups
);
408 static void target_fabric_drop_mappedlun(
409 struct config_group
*group
,
410 struct config_item
*item
)
412 struct se_lun_acl
*lacl
= container_of(to_config_group(item
),
413 struct se_lun_acl
, se_lun_group
);
414 struct config_item
*df_item
;
415 struct config_group
*lacl_cg
= NULL
, *ml_stat_grp
= NULL
;
418 ml_stat_grp
= &lacl
->ml_stat_grps
.stat_group
;
419 for (i
= 0; ml_stat_grp
->default_groups
[i
]; i
++) {
420 df_item
= &ml_stat_grp
->default_groups
[i
]->cg_item
;
421 ml_stat_grp
->default_groups
[i
] = NULL
;
422 config_item_put(df_item
);
424 kfree(ml_stat_grp
->default_groups
);
426 lacl_cg
= &lacl
->se_lun_group
;
427 for (i
= 0; lacl_cg
->default_groups
[i
]; i
++) {
428 df_item
= &lacl_cg
->default_groups
[i
]->cg_item
;
429 lacl_cg
->default_groups
[i
] = NULL
;
430 config_item_put(df_item
);
432 kfree(lacl_cg
->default_groups
);
434 config_item_put(item
);
437 static void target_fabric_nacl_base_release(struct config_item
*item
)
439 struct se_node_acl
*se_nacl
= container_of(to_config_group(item
),
440 struct se_node_acl
, acl_group
);
441 struct se_portal_group
*se_tpg
= se_nacl
->se_tpg
;
442 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
444 tf
->tf_ops
.fabric_drop_nodeacl(se_nacl
);
447 static struct configfs_item_operations target_fabric_nacl_base_item_ops
= {
448 .release
= target_fabric_nacl_base_release
,
449 .show_attribute
= target_fabric_nacl_base_attr_show
,
450 .store_attribute
= target_fabric_nacl_base_attr_store
,
453 static struct configfs_group_operations target_fabric_nacl_base_group_ops
= {
454 .make_group
= target_fabric_make_mappedlun
,
455 .drop_item
= target_fabric_drop_mappedlun
,
458 TF_CIT_SETUP(tpg_nacl_base
, &target_fabric_nacl_base_item_ops
,
459 &target_fabric_nacl_base_group_ops
, NULL
);
461 /* End of tfc_tpg_nacl_base_cit */
463 /* Start of tfc_node_fabric_stats_cit */
465 * This is used as a placeholder for struct se_node_acl->acl_fabric_stat_group
466 * to allow fabrics access to ->acl_fabric_stat_group->default_groups[]
468 TF_CIT_SETUP(tpg_nacl_stat
, NULL
, NULL
, NULL
);
470 /* End of tfc_wwn_fabric_stats_cit */
472 /* Start of tfc_tpg_nacl_cit */
474 static struct config_group
*target_fabric_make_nodeacl(
475 struct config_group
*group
,
478 struct se_portal_group
*se_tpg
= container_of(group
,
479 struct se_portal_group
, tpg_acl_group
);
480 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
481 struct se_node_acl
*se_nacl
;
482 struct config_group
*nacl_cg
;
484 if (!tf
->tf_ops
.fabric_make_nodeacl
) {
485 pr_err("tf->tf_ops.fabric_make_nodeacl is NULL\n");
486 return ERR_PTR(-ENOSYS
);
489 se_nacl
= tf
->tf_ops
.fabric_make_nodeacl(se_tpg
, group
, name
);
491 return ERR_CAST(se_nacl
);
493 nacl_cg
= &se_nacl
->acl_group
;
494 nacl_cg
->default_groups
= se_nacl
->acl_default_groups
;
495 nacl_cg
->default_groups
[0] = &se_nacl
->acl_attrib_group
;
496 nacl_cg
->default_groups
[1] = &se_nacl
->acl_auth_group
;
497 nacl_cg
->default_groups
[2] = &se_nacl
->acl_param_group
;
498 nacl_cg
->default_groups
[3] = &se_nacl
->acl_fabric_stat_group
;
499 nacl_cg
->default_groups
[4] = NULL
;
501 config_group_init_type_name(&se_nacl
->acl_group
, name
,
502 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_base_cit
);
503 config_group_init_type_name(&se_nacl
->acl_attrib_group
, "attrib",
504 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_attrib_cit
);
505 config_group_init_type_name(&se_nacl
->acl_auth_group
, "auth",
506 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_auth_cit
);
507 config_group_init_type_name(&se_nacl
->acl_param_group
, "param",
508 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_param_cit
);
509 config_group_init_type_name(&se_nacl
->acl_fabric_stat_group
,
511 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_stat_cit
);
513 return &se_nacl
->acl_group
;
516 static void target_fabric_drop_nodeacl(
517 struct config_group
*group
,
518 struct config_item
*item
)
520 struct se_node_acl
*se_nacl
= container_of(to_config_group(item
),
521 struct se_node_acl
, acl_group
);
522 struct config_item
*df_item
;
523 struct config_group
*nacl_cg
;
526 nacl_cg
= &se_nacl
->acl_group
;
527 for (i
= 0; nacl_cg
->default_groups
[i
]; i
++) {
528 df_item
= &nacl_cg
->default_groups
[i
]->cg_item
;
529 nacl_cg
->default_groups
[i
] = NULL
;
530 config_item_put(df_item
);
533 * struct se_node_acl free is done in target_fabric_nacl_base_release()
535 config_item_put(item
);
538 static struct configfs_group_operations target_fabric_nacl_group_ops
= {
539 .make_group
= target_fabric_make_nodeacl
,
540 .drop_item
= target_fabric_drop_nodeacl
,
543 TF_CIT_SETUP(tpg_nacl
, NULL
, &target_fabric_nacl_group_ops
, NULL
);
545 /* End of tfc_tpg_nacl_cit */
547 /* Start of tfc_tpg_np_base_cit */
549 CONFIGFS_EATTR_OPS(target_fabric_np_base
, se_tpg_np
, tpg_np_group
);
551 static void target_fabric_np_base_release(struct config_item
*item
)
553 struct se_tpg_np
*se_tpg_np
= container_of(to_config_group(item
),
554 struct se_tpg_np
, tpg_np_group
);
555 struct se_portal_group
*se_tpg
= se_tpg_np
->tpg_np_parent
;
556 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
558 tf
->tf_ops
.fabric_drop_np(se_tpg_np
);
561 static struct configfs_item_operations target_fabric_np_base_item_ops
= {
562 .release
= target_fabric_np_base_release
,
563 .show_attribute
= target_fabric_np_base_attr_show
,
564 .store_attribute
= target_fabric_np_base_attr_store
,
567 TF_CIT_SETUP(tpg_np_base
, &target_fabric_np_base_item_ops
, NULL
, NULL
);
569 /* End of tfc_tpg_np_base_cit */
571 /* Start of tfc_tpg_np_cit */
573 static struct config_group
*target_fabric_make_np(
574 struct config_group
*group
,
577 struct se_portal_group
*se_tpg
= container_of(group
,
578 struct se_portal_group
, tpg_np_group
);
579 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
580 struct se_tpg_np
*se_tpg_np
;
582 if (!tf
->tf_ops
.fabric_make_np
) {
583 pr_err("tf->tf_ops.fabric_make_np is NULL\n");
584 return ERR_PTR(-ENOSYS
);
587 se_tpg_np
= tf
->tf_ops
.fabric_make_np(se_tpg
, group
, name
);
588 if (!se_tpg_np
|| IS_ERR(se_tpg_np
))
589 return ERR_PTR(-EINVAL
);
591 se_tpg_np
->tpg_np_parent
= se_tpg
;
592 config_group_init_type_name(&se_tpg_np
->tpg_np_group
, name
,
593 &TF_CIT_TMPL(tf
)->tfc_tpg_np_base_cit
);
595 return &se_tpg_np
->tpg_np_group
;
598 static void target_fabric_drop_np(
599 struct config_group
*group
,
600 struct config_item
*item
)
603 * struct se_tpg_np is released via target_fabric_np_base_release()
605 config_item_put(item
);
608 static struct configfs_group_operations target_fabric_np_group_ops
= {
609 .make_group
= &target_fabric_make_np
,
610 .drop_item
= &target_fabric_drop_np
,
613 TF_CIT_SETUP(tpg_np
, NULL
, &target_fabric_np_group_ops
, NULL
);
615 /* End of tfc_tpg_np_cit */
617 /* Start of tfc_tpg_port_cit */
619 CONFIGFS_EATTR_STRUCT(target_fabric_port
, se_lun
);
620 #define TCM_PORT_ATTR(_name, _mode) \
621 static struct target_fabric_port_attribute target_fabric_port_##_name = \
622 __CONFIGFS_EATTR(_name, _mode, \
623 target_fabric_port_show_attr_##_name, \
624 target_fabric_port_store_attr_##_name);
626 #define TCM_PORT_ATTOR_RO(_name) \
627 __CONFIGFS_EATTR_RO(_name, \
628 target_fabric_port_show_attr_##_name);
633 static ssize_t
target_fabric_port_show_attr_alua_tg_pt_gp(
637 if (!lun
|| !lun
->lun_sep
)
640 return core_alua_show_tg_pt_gp_info(lun
->lun_sep
, page
);
643 static ssize_t
target_fabric_port_store_attr_alua_tg_pt_gp(
648 if (!lun
|| !lun
->lun_sep
)
651 return core_alua_store_tg_pt_gp_info(lun
->lun_sep
, page
, count
);
654 TCM_PORT_ATTR(alua_tg_pt_gp
, S_IRUGO
| S_IWUSR
);
659 static ssize_t
target_fabric_port_show_attr_alua_tg_pt_offline(
663 if (!lun
|| !lun
->lun_sep
)
666 return core_alua_show_offline_bit(lun
, page
);
669 static ssize_t
target_fabric_port_store_attr_alua_tg_pt_offline(
674 if (!lun
|| !lun
->lun_sep
)
677 return core_alua_store_offline_bit(lun
, page
, count
);
680 TCM_PORT_ATTR(alua_tg_pt_offline
, S_IRUGO
| S_IWUSR
);
685 static ssize_t
target_fabric_port_show_attr_alua_tg_pt_status(
689 if (!lun
|| !lun
->lun_sep
)
692 return core_alua_show_secondary_status(lun
, page
);
695 static ssize_t
target_fabric_port_store_attr_alua_tg_pt_status(
700 if (!lun
|| !lun
->lun_sep
)
703 return core_alua_store_secondary_status(lun
, page
, count
);
706 TCM_PORT_ATTR(alua_tg_pt_status
, S_IRUGO
| S_IWUSR
);
709 * alua_tg_pt_write_md
711 static ssize_t
target_fabric_port_show_attr_alua_tg_pt_write_md(
715 if (!lun
|| !lun
->lun_sep
)
718 return core_alua_show_secondary_write_metadata(lun
, page
);
721 static ssize_t
target_fabric_port_store_attr_alua_tg_pt_write_md(
726 if (!lun
|| !lun
->lun_sep
)
729 return core_alua_store_secondary_write_metadata(lun
, page
, count
);
732 TCM_PORT_ATTR(alua_tg_pt_write_md
, S_IRUGO
| S_IWUSR
);
735 static struct configfs_attribute
*target_fabric_port_attrs
[] = {
736 &target_fabric_port_alua_tg_pt_gp
.attr
,
737 &target_fabric_port_alua_tg_pt_offline
.attr
,
738 &target_fabric_port_alua_tg_pt_status
.attr
,
739 &target_fabric_port_alua_tg_pt_write_md
.attr
,
743 CONFIGFS_EATTR_OPS(target_fabric_port
, se_lun
, lun_group
);
745 static int target_fabric_port_link(
746 struct config_item
*lun_ci
,
747 struct config_item
*se_dev_ci
)
749 struct config_item
*tpg_ci
;
750 struct se_lun
*lun
= container_of(to_config_group(lun_ci
),
751 struct se_lun
, lun_group
);
752 struct se_lun
*lun_p
;
753 struct se_portal_group
*se_tpg
;
754 struct se_device
*dev
=
755 container_of(to_config_group(se_dev_ci
), struct se_device
, dev_group
);
756 struct target_fabric_configfs
*tf
;
759 if (dev
->dev_link_magic
!= SE_DEV_LINK_MAGIC
) {
760 pr_err("Bad dev->dev_link_magic, not a valid se_dev_ci pointer:"
761 " %p to struct se_device: %p\n", se_dev_ci
, dev
);
765 if (!(dev
->dev_flags
& DF_CONFIGURED
)) {
766 pr_err("se_device not configured yet, cannot port link\n");
770 tpg_ci
= &lun_ci
->ci_parent
->ci_group
->cg_item
;
771 se_tpg
= container_of(to_config_group(tpg_ci
),
772 struct se_portal_group
, tpg_group
);
773 tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
775 if (lun
->lun_se_dev
!= NULL
) {
776 pr_err("Port Symlink already exists\n");
780 lun_p
= core_dev_add_lun(se_tpg
, dev
, lun
->unpacked_lun
);
782 pr_err("core_dev_add_lun() failed\n");
783 ret
= PTR_ERR(lun_p
);
787 if (tf
->tf_ops
.fabric_post_link
) {
789 * Call the optional fabric_post_link() to allow a
790 * fabric module to setup any additional state once
791 * core_dev_add_lun() has been called..
793 tf
->tf_ops
.fabric_post_link(se_tpg
, lun
);
801 static int target_fabric_port_unlink(
802 struct config_item
*lun_ci
,
803 struct config_item
*se_dev_ci
)
805 struct se_lun
*lun
= container_of(to_config_group(lun_ci
),
806 struct se_lun
, lun_group
);
807 struct se_portal_group
*se_tpg
= lun
->lun_sep
->sep_tpg
;
808 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
810 if (tf
->tf_ops
.fabric_pre_unlink
) {
812 * Call the optional fabric_pre_unlink() to allow a
813 * fabric module to release any additional stat before
814 * core_dev_del_lun() is called.
816 tf
->tf_ops
.fabric_pre_unlink(se_tpg
, lun
);
819 core_dev_del_lun(se_tpg
, lun
->unpacked_lun
);
823 static struct configfs_item_operations target_fabric_port_item_ops
= {
824 .show_attribute
= target_fabric_port_attr_show
,
825 .store_attribute
= target_fabric_port_attr_store
,
826 .allow_link
= target_fabric_port_link
,
827 .drop_link
= target_fabric_port_unlink
,
830 TF_CIT_SETUP(tpg_port
, &target_fabric_port_item_ops
, NULL
, target_fabric_port_attrs
);
832 /* End of tfc_tpg_port_cit */
834 /* Start of tfc_tpg_port_stat_cit */
836 static struct config_group
*target_core_port_stat_mkdir(
837 struct config_group
*group
,
840 return ERR_PTR(-ENOSYS
);
843 static void target_core_port_stat_rmdir(
844 struct config_group
*group
,
845 struct config_item
*item
)
850 static struct configfs_group_operations target_fabric_port_stat_group_ops
= {
851 .make_group
= target_core_port_stat_mkdir
,
852 .drop_item
= target_core_port_stat_rmdir
,
855 TF_CIT_SETUP(tpg_port_stat
, NULL
, &target_fabric_port_stat_group_ops
, NULL
);
857 /* End of tfc_tpg_port_stat_cit */
859 /* Start of tfc_tpg_lun_cit */
861 static struct config_group
*target_fabric_make_lun(
862 struct config_group
*group
,
866 struct se_portal_group
*se_tpg
= container_of(group
,
867 struct se_portal_group
, tpg_lun_group
);
868 struct target_fabric_configfs
*tf
= se_tpg
->se_tpg_wwn
->wwn_tf
;
869 struct config_group
*lun_cg
= NULL
, *port_stat_grp
= NULL
;
870 unsigned long unpacked_lun
;
873 if (strstr(name
, "lun_") != name
) {
874 pr_err("Unable to locate \'_\" in"
875 " \"lun_$LUN_NUMBER\"\n");
876 return ERR_PTR(-EINVAL
);
878 if (strict_strtoul(name
+ 4, 0, &unpacked_lun
) || unpacked_lun
> UINT_MAX
)
879 return ERR_PTR(-EINVAL
);
881 lun
= core_get_lun_from_tpg(se_tpg
, unpacked_lun
);
883 return ERR_PTR(-EINVAL
);
885 lun_cg
= &lun
->lun_group
;
886 lun_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
888 if (!lun_cg
->default_groups
) {
889 pr_err("Unable to allocate lun_cg->default_groups\n");
890 return ERR_PTR(-ENOMEM
);
893 config_group_init_type_name(&lun
->lun_group
, name
,
894 &TF_CIT_TMPL(tf
)->tfc_tpg_port_cit
);
895 config_group_init_type_name(&lun
->port_stat_grps
.stat_group
,
896 "statistics", &TF_CIT_TMPL(tf
)->tfc_tpg_port_stat_cit
);
897 lun_cg
->default_groups
[0] = &lun
->port_stat_grps
.stat_group
;
898 lun_cg
->default_groups
[1] = NULL
;
900 port_stat_grp
= &lun
->port_stat_grps
.stat_group
;
901 port_stat_grp
->default_groups
= kzalloc(sizeof(struct config_group
) * 3,
903 if (!port_stat_grp
->default_groups
) {
904 pr_err("Unable to allocate port_stat_grp->default_groups\n");
908 target_stat_setup_port_default_groups(lun
);
910 return &lun
->lun_group
;
913 kfree(lun_cg
->default_groups
);
914 return ERR_PTR(errno
);
917 static void target_fabric_drop_lun(
918 struct config_group
*group
,
919 struct config_item
*item
)
921 struct se_lun
*lun
= container_of(to_config_group(item
),
922 struct se_lun
, lun_group
);
923 struct config_item
*df_item
;
924 struct config_group
*lun_cg
, *port_stat_grp
;
927 port_stat_grp
= &lun
->port_stat_grps
.stat_group
;
928 for (i
= 0; port_stat_grp
->default_groups
[i
]; i
++) {
929 df_item
= &port_stat_grp
->default_groups
[i
]->cg_item
;
930 port_stat_grp
->default_groups
[i
] = NULL
;
931 config_item_put(df_item
);
933 kfree(port_stat_grp
->default_groups
);
935 lun_cg
= &lun
->lun_group
;
936 for (i
= 0; lun_cg
->default_groups
[i
]; i
++) {
937 df_item
= &lun_cg
->default_groups
[i
]->cg_item
;
938 lun_cg
->default_groups
[i
] = NULL
;
939 config_item_put(df_item
);
941 kfree(lun_cg
->default_groups
);
943 config_item_put(item
);
946 static struct configfs_group_operations target_fabric_lun_group_ops
= {
947 .make_group
= &target_fabric_make_lun
,
948 .drop_item
= &target_fabric_drop_lun
,
951 TF_CIT_SETUP(tpg_lun
, NULL
, &target_fabric_lun_group_ops
, NULL
);
953 /* End of tfc_tpg_lun_cit */
955 /* Start of tfc_tpg_attrib_cit */
957 CONFIGFS_EATTR_OPS(target_fabric_tpg_attrib
, se_portal_group
, tpg_attrib_group
);
959 static struct configfs_item_operations target_fabric_tpg_attrib_item_ops
= {
960 .show_attribute
= target_fabric_tpg_attrib_attr_show
,
961 .store_attribute
= target_fabric_tpg_attrib_attr_store
,
964 TF_CIT_SETUP(tpg_attrib
, &target_fabric_tpg_attrib_item_ops
, NULL
, NULL
);
966 /* End of tfc_tpg_attrib_cit */
968 /* Start of tfc_tpg_param_cit */
970 CONFIGFS_EATTR_OPS(target_fabric_tpg_param
, se_portal_group
, tpg_param_group
);
972 static struct configfs_item_operations target_fabric_tpg_param_item_ops
= {
973 .show_attribute
= target_fabric_tpg_param_attr_show
,
974 .store_attribute
= target_fabric_tpg_param_attr_store
,
977 TF_CIT_SETUP(tpg_param
, &target_fabric_tpg_param_item_ops
, NULL
, NULL
);
979 /* End of tfc_tpg_param_cit */
981 /* Start of tfc_tpg_base_cit */
983 * For use with TF_TPG_ATTR() and TF_TPG_ATTR_RO()
985 CONFIGFS_EATTR_OPS(target_fabric_tpg
, se_portal_group
, tpg_group
);
987 static void target_fabric_tpg_release(struct config_item
*item
)
989 struct se_portal_group
*se_tpg
= container_of(to_config_group(item
),
990 struct se_portal_group
, tpg_group
);
991 struct se_wwn
*wwn
= se_tpg
->se_tpg_wwn
;
992 struct target_fabric_configfs
*tf
= wwn
->wwn_tf
;
994 tf
->tf_ops
.fabric_drop_tpg(se_tpg
);
997 static struct configfs_item_operations target_fabric_tpg_base_item_ops
= {
998 .release
= target_fabric_tpg_release
,
999 .show_attribute
= target_fabric_tpg_attr_show
,
1000 .store_attribute
= target_fabric_tpg_attr_store
,
1003 TF_CIT_SETUP(tpg_base
, &target_fabric_tpg_base_item_ops
, NULL
, NULL
);
1005 /* End of tfc_tpg_base_cit */
1007 /* Start of tfc_tpg_cit */
1009 static struct config_group
*target_fabric_make_tpg(
1010 struct config_group
*group
,
1013 struct se_wwn
*wwn
= container_of(group
, struct se_wwn
, wwn_group
);
1014 struct target_fabric_configfs
*tf
= wwn
->wwn_tf
;
1015 struct se_portal_group
*se_tpg
;
1017 if (!tf
->tf_ops
.fabric_make_tpg
) {
1018 pr_err("tf->tf_ops.fabric_make_tpg is NULL\n");
1019 return ERR_PTR(-ENOSYS
);
1022 se_tpg
= tf
->tf_ops
.fabric_make_tpg(wwn
, group
, name
);
1023 if (!se_tpg
|| IS_ERR(se_tpg
))
1024 return ERR_PTR(-EINVAL
);
1026 * Setup default groups from pre-allocated se_tpg->tpg_default_groups
1028 se_tpg
->tpg_group
.default_groups
= se_tpg
->tpg_default_groups
;
1029 se_tpg
->tpg_group
.default_groups
[0] = &se_tpg
->tpg_lun_group
;
1030 se_tpg
->tpg_group
.default_groups
[1] = &se_tpg
->tpg_np_group
;
1031 se_tpg
->tpg_group
.default_groups
[2] = &se_tpg
->tpg_acl_group
;
1032 se_tpg
->tpg_group
.default_groups
[3] = &se_tpg
->tpg_attrib_group
;
1033 se_tpg
->tpg_group
.default_groups
[4] = &se_tpg
->tpg_param_group
;
1034 se_tpg
->tpg_group
.default_groups
[5] = NULL
;
1036 config_group_init_type_name(&se_tpg
->tpg_group
, name
,
1037 &TF_CIT_TMPL(tf
)->tfc_tpg_base_cit
);
1038 config_group_init_type_name(&se_tpg
->tpg_lun_group
, "lun",
1039 &TF_CIT_TMPL(tf
)->tfc_tpg_lun_cit
);
1040 config_group_init_type_name(&se_tpg
->tpg_np_group
, "np",
1041 &TF_CIT_TMPL(tf
)->tfc_tpg_np_cit
);
1042 config_group_init_type_name(&se_tpg
->tpg_acl_group
, "acls",
1043 &TF_CIT_TMPL(tf
)->tfc_tpg_nacl_cit
);
1044 config_group_init_type_name(&se_tpg
->tpg_attrib_group
, "attrib",
1045 &TF_CIT_TMPL(tf
)->tfc_tpg_attrib_cit
);
1046 config_group_init_type_name(&se_tpg
->tpg_param_group
, "param",
1047 &TF_CIT_TMPL(tf
)->tfc_tpg_param_cit
);
1049 return &se_tpg
->tpg_group
;
1052 static void target_fabric_drop_tpg(
1053 struct config_group
*group
,
1054 struct config_item
*item
)
1056 struct se_portal_group
*se_tpg
= container_of(to_config_group(item
),
1057 struct se_portal_group
, tpg_group
);
1058 struct config_group
*tpg_cg
= &se_tpg
->tpg_group
;
1059 struct config_item
*df_item
;
1062 * Release default groups, but do not release tpg_cg->default_groups
1063 * memory as it is statically allocated at se_tpg->tpg_default_groups.
1065 for (i
= 0; tpg_cg
->default_groups
[i
]; i
++) {
1066 df_item
= &tpg_cg
->default_groups
[i
]->cg_item
;
1067 tpg_cg
->default_groups
[i
] = NULL
;
1068 config_item_put(df_item
);
1071 config_item_put(item
);
1074 static void target_fabric_release_wwn(struct config_item
*item
)
1076 struct se_wwn
*wwn
= container_of(to_config_group(item
),
1077 struct se_wwn
, wwn_group
);
1078 struct target_fabric_configfs
*tf
= wwn
->wwn_tf
;
1080 tf
->tf_ops
.fabric_drop_wwn(wwn
);
1083 static struct configfs_item_operations target_fabric_tpg_item_ops
= {
1084 .release
= target_fabric_release_wwn
,
1087 static struct configfs_group_operations target_fabric_tpg_group_ops
= {
1088 .make_group
= target_fabric_make_tpg
,
1089 .drop_item
= target_fabric_drop_tpg
,
1092 TF_CIT_SETUP(tpg
, &target_fabric_tpg_item_ops
, &target_fabric_tpg_group_ops
,
1095 /* End of tfc_tpg_cit */
1097 /* Start of tfc_wwn_fabric_stats_cit */
1099 * This is used as a placeholder for struct se_wwn->fabric_stat_group
1100 * to allow fabrics access to ->fabric_stat_group->default_groups[]
1102 TF_CIT_SETUP(wwn_fabric_stats
, NULL
, NULL
, NULL
);
1104 /* End of tfc_wwn_fabric_stats_cit */
1106 /* Start of tfc_wwn_cit */
1108 static struct config_group
*target_fabric_make_wwn(
1109 struct config_group
*group
,
1112 struct target_fabric_configfs
*tf
= container_of(group
,
1113 struct target_fabric_configfs
, tf_group
);
1116 if (!tf
->tf_ops
.fabric_make_wwn
) {
1117 pr_err("tf->tf_ops.fabric_make_wwn is NULL\n");
1118 return ERR_PTR(-ENOSYS
);
1121 wwn
= tf
->tf_ops
.fabric_make_wwn(tf
, group
, name
);
1122 if (!wwn
|| IS_ERR(wwn
))
1123 return ERR_PTR(-EINVAL
);
1127 * Setup default groups from pre-allocated wwn->wwn_default_groups
1129 wwn
->wwn_group
.default_groups
= wwn
->wwn_default_groups
;
1130 wwn
->wwn_group
.default_groups
[0] = &wwn
->fabric_stat_group
;
1131 wwn
->wwn_group
.default_groups
[1] = NULL
;
1133 config_group_init_type_name(&wwn
->wwn_group
, name
,
1134 &TF_CIT_TMPL(tf
)->tfc_tpg_cit
);
1135 config_group_init_type_name(&wwn
->fabric_stat_group
, "fabric_statistics",
1136 &TF_CIT_TMPL(tf
)->tfc_wwn_fabric_stats_cit
);
1138 return &wwn
->wwn_group
;
1141 static void target_fabric_drop_wwn(
1142 struct config_group
*group
,
1143 struct config_item
*item
)
1145 struct se_wwn
*wwn
= container_of(to_config_group(item
),
1146 struct se_wwn
, wwn_group
);
1147 struct config_item
*df_item
;
1148 struct config_group
*cg
= &wwn
->wwn_group
;
1151 for (i
= 0; cg
->default_groups
[i
]; i
++) {
1152 df_item
= &cg
->default_groups
[i
]->cg_item
;
1153 cg
->default_groups
[i
] = NULL
;
1154 config_item_put(df_item
);
1157 config_item_put(item
);
1160 static struct configfs_group_operations target_fabric_wwn_group_ops
= {
1161 .make_group
= target_fabric_make_wwn
,
1162 .drop_item
= target_fabric_drop_wwn
,
1165 * For use with TF_WWN_ATTR() and TF_WWN_ATTR_RO()
1167 CONFIGFS_EATTR_OPS(target_fabric_wwn
, target_fabric_configfs
, tf_group
);
1169 static struct configfs_item_operations target_fabric_wwn_item_ops
= {
1170 .show_attribute
= target_fabric_wwn_attr_show
,
1171 .store_attribute
= target_fabric_wwn_attr_store
,
1174 TF_CIT_SETUP(wwn
, &target_fabric_wwn_item_ops
, &target_fabric_wwn_group_ops
, NULL
);
1176 /* End of tfc_wwn_cit */
1178 /* Start of tfc_discovery_cit */
1180 CONFIGFS_EATTR_OPS(target_fabric_discovery
, target_fabric_configfs
,
1183 static struct configfs_item_operations target_fabric_discovery_item_ops
= {
1184 .show_attribute
= target_fabric_discovery_attr_show
,
1185 .store_attribute
= target_fabric_discovery_attr_store
,
1188 TF_CIT_SETUP(discovery
, &target_fabric_discovery_item_ops
, NULL
, NULL
);
1190 /* End of tfc_discovery_cit */
1192 int target_fabric_setup_cits(struct target_fabric_configfs
*tf
)
1194 target_fabric_setup_discovery_cit(tf
);
1195 target_fabric_setup_wwn_cit(tf
);
1196 target_fabric_setup_wwn_fabric_stats_cit(tf
);
1197 target_fabric_setup_tpg_cit(tf
);
1198 target_fabric_setup_tpg_base_cit(tf
);
1199 target_fabric_setup_tpg_port_cit(tf
);
1200 target_fabric_setup_tpg_port_stat_cit(tf
);
1201 target_fabric_setup_tpg_lun_cit(tf
);
1202 target_fabric_setup_tpg_np_cit(tf
);
1203 target_fabric_setup_tpg_np_base_cit(tf
);
1204 target_fabric_setup_tpg_attrib_cit(tf
);
1205 target_fabric_setup_tpg_param_cit(tf
);
1206 target_fabric_setup_tpg_nacl_cit(tf
);
1207 target_fabric_setup_tpg_nacl_base_cit(tf
);
1208 target_fabric_setup_tpg_nacl_attrib_cit(tf
);
1209 target_fabric_setup_tpg_nacl_auth_cit(tf
);
1210 target_fabric_setup_tpg_nacl_param_cit(tf
);
1211 target_fabric_setup_tpg_nacl_stat_cit(tf
);
1212 target_fabric_setup_tpg_mappedlun_cit(tf
);
1213 target_fabric_setup_tpg_mappedlun_stat_cit(tf
);