1 /*******************************************************************************
2 * Filename: target_core_configfs.c
4 * This file contains ConfigFS logic for the Generic Target Engine project.
6 * (c) Copyright 2008-2013 Datera, Inc.
8 * Nicholas A. Bellinger <nab@kernel.org>
10 * based on configfs Copyright (C) 2005 Oracle. All rights reserved.
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 ****************************************************************************/
23 #include <linux/module.h>
24 #include <linux/moduleparam.h>
25 #include <generated/utsrelease.h>
26 #include <linux/utsname.h>
27 #include <linux/init.h>
29 #include <linux/namei.h>
30 #include <linux/slab.h>
31 #include <linux/types.h>
32 #include <linux/delay.h>
33 #include <linux/unistd.h>
34 #include <linux/string.h>
35 #include <linux/parser.h>
36 #include <linux/syscalls.h>
37 #include <linux/configfs.h>
38 #include <linux/spinlock.h>
40 #include <target/target_core_base.h>
41 #include <target/target_core_backend.h>
42 #include <target/target_core_fabric.h>
43 #include <target/target_core_fabric_configfs.h>
44 #include <target/target_core_configfs.h>
45 #include <target/configfs_macros.h>
47 #include "target_core_internal.h"
48 #include "target_core_alua.h"
49 #include "target_core_pr.h"
50 #include "target_core_rd.h"
51 #include "target_core_xcopy.h"
53 extern struct t10_alua_lu_gp
*default_lu_gp
;
55 static LIST_HEAD(g_tf_list
);
56 static DEFINE_MUTEX(g_tf_lock
);
58 struct target_core_configfs_attribute
{
59 struct configfs_attribute attr
;
60 ssize_t (*show
)(void *, char *);
61 ssize_t (*store
)(void *, const char *, size_t);
64 static struct config_group target_core_hbagroup
;
65 static struct config_group alua_group
;
66 static struct config_group alua_lu_gps_group
;
68 static inline struct se_hba
*
69 item_to_hba(struct config_item
*item
)
71 return container_of(to_config_group(item
), struct se_hba
, hba_group
);
75 * Attributes for /sys/kernel/config/target/
77 static ssize_t
target_core_attr_show(struct config_item
*item
,
78 struct configfs_attribute
*attr
,
81 return sprintf(page
, "Target Engine Core ConfigFS Infrastructure %s"
82 " on %s/%s on "UTS_RELEASE
"\n", TARGET_CORE_CONFIGFS_VERSION
,
83 utsname()->sysname
, utsname()->machine
);
86 static struct configfs_item_operations target_core_fabric_item_ops
= {
87 .show_attribute
= target_core_attr_show
,
90 static struct configfs_attribute target_core_item_attr_version
= {
91 .ca_owner
= THIS_MODULE
,
96 static struct target_fabric_configfs
*target_core_get_fabric(
99 struct target_fabric_configfs
*tf
;
104 mutex_lock(&g_tf_lock
);
105 list_for_each_entry(tf
, &g_tf_list
, tf_list
) {
106 if (!strcmp(tf
->tf_name
, name
)) {
107 atomic_inc(&tf
->tf_access_cnt
);
108 mutex_unlock(&g_tf_lock
);
112 mutex_unlock(&g_tf_lock
);
118 * Called from struct target_core_group_ops->make_group()
120 static struct config_group
*target_core_register_fabric(
121 struct config_group
*group
,
124 struct target_fabric_configfs
*tf
;
127 pr_debug("Target_Core_ConfigFS: REGISTER -> group: %p name:"
128 " %s\n", group
, name
);
130 * Below are some hardcoded request_module() calls to automatically
131 * local fabric modules when the following is called:
133 * mkdir -p /sys/kernel/config/target/$MODULE_NAME
135 * Note that this does not limit which TCM fabric module can be
136 * registered, but simply provids auto loading logic for modules with
137 * mkdir(2) system calls with known TCM fabric modules.
139 if (!strncmp(name
, "iscsi", 5)) {
141 * Automatically load the LIO Target fabric module when the
142 * following is called:
144 * mkdir -p $CONFIGFS/target/iscsi
146 ret
= request_module("iscsi_target_mod");
148 pr_err("request_module() failed for"
149 " iscsi_target_mod.ko: %d\n", ret
);
150 return ERR_PTR(-EINVAL
);
152 } else if (!strncmp(name
, "loopback", 8)) {
154 * Automatically load the tcm_loop fabric module when the
155 * following is called:
157 * mkdir -p $CONFIGFS/target/loopback
159 ret
= request_module("tcm_loop");
161 pr_err("request_module() failed for"
162 " tcm_loop.ko: %d\n", ret
);
163 return ERR_PTR(-EINVAL
);
167 tf
= target_core_get_fabric(name
);
169 pr_err("target_core_get_fabric() failed for %s\n",
171 return ERR_PTR(-EINVAL
);
173 pr_debug("Target_Core_ConfigFS: REGISTER -> Located fabric:"
174 " %s\n", tf
->tf_name
);
176 * On a successful target_core_get_fabric() look, the returned
177 * struct target_fabric_configfs *tf will contain a usage reference.
179 pr_debug("Target_Core_ConfigFS: REGISTER tfc_wwn_cit -> %p\n",
180 &tf
->tf_cit_tmpl
.tfc_wwn_cit
);
182 tf
->tf_group
.default_groups
= tf
->tf_default_groups
;
183 tf
->tf_group
.default_groups
[0] = &tf
->tf_disc_group
;
184 tf
->tf_group
.default_groups
[1] = NULL
;
186 config_group_init_type_name(&tf
->tf_group
, name
,
187 &tf
->tf_cit_tmpl
.tfc_wwn_cit
);
188 config_group_init_type_name(&tf
->tf_disc_group
, "discovery_auth",
189 &tf
->tf_cit_tmpl
.tfc_discovery_cit
);
191 pr_debug("Target_Core_ConfigFS: REGISTER -> Allocated Fabric:"
192 " %s\n", tf
->tf_group
.cg_item
.ci_name
);
194 * Setup tf_ops.tf_subsys pointer for usage with configfs_depend_item()
196 tf
->tf_ops
.tf_subsys
= tf
->tf_subsys
;
197 tf
->tf_fabric
= &tf
->tf_group
.cg_item
;
198 pr_debug("Target_Core_ConfigFS: REGISTER -> Set tf->tf_fabric"
201 return &tf
->tf_group
;
205 * Called from struct target_core_group_ops->drop_item()
207 static void target_core_deregister_fabric(
208 struct config_group
*group
,
209 struct config_item
*item
)
211 struct target_fabric_configfs
*tf
= container_of(
212 to_config_group(item
), struct target_fabric_configfs
, tf_group
);
213 struct config_group
*tf_group
;
214 struct config_item
*df_item
;
217 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Looking up %s in"
218 " tf list\n", config_item_name(item
));
220 pr_debug("Target_Core_ConfigFS: DEREGISTER -> located fabric:"
221 " %s\n", tf
->tf_name
);
222 atomic_dec(&tf
->tf_access_cnt
);
224 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing"
225 " tf->tf_fabric for %s\n", tf
->tf_name
);
226 tf
->tf_fabric
= NULL
;
228 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing ci"
229 " %s\n", config_item_name(item
));
231 tf_group
= &tf
->tf_group
;
232 for (i
= 0; tf_group
->default_groups
[i
]; i
++) {
233 df_item
= &tf_group
->default_groups
[i
]->cg_item
;
234 tf_group
->default_groups
[i
] = NULL
;
235 config_item_put(df_item
);
237 config_item_put(item
);
240 static struct configfs_group_operations target_core_fabric_group_ops
= {
241 .make_group
= &target_core_register_fabric
,
242 .drop_item
= &target_core_deregister_fabric
,
246 * All item attributes appearing in /sys/kernel/target/ appear here.
248 static struct configfs_attribute
*target_core_fabric_item_attrs
[] = {
249 &target_core_item_attr_version
,
254 * Provides Fabrics Groups and Item Attributes for /sys/kernel/config/target/
256 static struct config_item_type target_core_fabrics_item
= {
257 .ct_item_ops
= &target_core_fabric_item_ops
,
258 .ct_group_ops
= &target_core_fabric_group_ops
,
259 .ct_attrs
= target_core_fabric_item_attrs
,
260 .ct_owner
= THIS_MODULE
,
263 static struct configfs_subsystem target_core_fabrics
= {
266 .ci_namebuf
= "target",
267 .ci_type
= &target_core_fabrics_item
,
272 struct configfs_subsystem
*target_core_subsystem
[] = {
273 &target_core_fabrics
,
277 /*##############################################################################
278 // Start functions called by external Target Fabrics Modules
279 //############################################################################*/
282 * First function called by fabric modules to:
284 * 1) Allocate a struct target_fabric_configfs and save the *fabric_cit pointer.
285 * 2) Add struct target_fabric_configfs to g_tf_list
286 * 3) Return struct target_fabric_configfs to fabric module to be passed
287 * into target_fabric_configfs_register().
289 struct target_fabric_configfs
*target_fabric_configfs_init(
290 struct module
*fabric_mod
,
293 struct target_fabric_configfs
*tf
;
296 pr_err("Unable to locate passed fabric name\n");
297 return ERR_PTR(-EINVAL
);
299 if (strlen(name
) >= TARGET_FABRIC_NAME_SIZE
) {
300 pr_err("Passed name: %s exceeds TARGET_FABRIC"
301 "_NAME_SIZE\n", name
);
302 return ERR_PTR(-EINVAL
);
305 tf
= kzalloc(sizeof(struct target_fabric_configfs
), GFP_KERNEL
);
307 return ERR_PTR(-ENOMEM
);
309 INIT_LIST_HEAD(&tf
->tf_list
);
310 atomic_set(&tf
->tf_access_cnt
, 0);
312 * Setup the default generic struct config_item_type's (cits) in
313 * struct target_fabric_configfs->tf_cit_tmpl
315 tf
->tf_module
= fabric_mod
;
316 target_fabric_setup_cits(tf
);
318 tf
->tf_subsys
= target_core_subsystem
[0];
319 snprintf(tf
->tf_name
, TARGET_FABRIC_NAME_SIZE
, "%s", name
);
321 mutex_lock(&g_tf_lock
);
322 list_add_tail(&tf
->tf_list
, &g_tf_list
);
323 mutex_unlock(&g_tf_lock
);
325 pr_debug("<<<<<<<<<<<<<<<<<<<<<< BEGIN FABRIC API >>>>>>>>"
327 pr_debug("Initialized struct target_fabric_configfs: %p for"
328 " %s\n", tf
, tf
->tf_name
);
331 EXPORT_SYMBOL(target_fabric_configfs_init
);
334 * Called by fabric plugins after FAILED target_fabric_configfs_register() call.
336 void target_fabric_configfs_free(
337 struct target_fabric_configfs
*tf
)
339 mutex_lock(&g_tf_lock
);
340 list_del(&tf
->tf_list
);
341 mutex_unlock(&g_tf_lock
);
345 EXPORT_SYMBOL(target_fabric_configfs_free
);
348 * Perform a sanity check of the passed tf->tf_ops before completing
349 * TCM fabric module registration.
351 static int target_fabric_tf_ops_check(
352 struct target_fabric_configfs
*tf
)
354 struct target_core_fabric_ops
*tfo
= &tf
->tf_ops
;
356 if (!tfo
->get_fabric_name
) {
357 pr_err("Missing tfo->get_fabric_name()\n");
360 if (!tfo
->get_fabric_proto_ident
) {
361 pr_err("Missing tfo->get_fabric_proto_ident()\n");
364 if (!tfo
->tpg_get_wwn
) {
365 pr_err("Missing tfo->tpg_get_wwn()\n");
368 if (!tfo
->tpg_get_tag
) {
369 pr_err("Missing tfo->tpg_get_tag()\n");
372 if (!tfo
->tpg_get_default_depth
) {
373 pr_err("Missing tfo->tpg_get_default_depth()\n");
376 if (!tfo
->tpg_get_pr_transport_id
) {
377 pr_err("Missing tfo->tpg_get_pr_transport_id()\n");
380 if (!tfo
->tpg_get_pr_transport_id_len
) {
381 pr_err("Missing tfo->tpg_get_pr_transport_id_len()\n");
384 if (!tfo
->tpg_check_demo_mode
) {
385 pr_err("Missing tfo->tpg_check_demo_mode()\n");
388 if (!tfo
->tpg_check_demo_mode_cache
) {
389 pr_err("Missing tfo->tpg_check_demo_mode_cache()\n");
392 if (!tfo
->tpg_check_demo_mode_write_protect
) {
393 pr_err("Missing tfo->tpg_check_demo_mode_write_protect()\n");
396 if (!tfo
->tpg_check_prod_mode_write_protect
) {
397 pr_err("Missing tfo->tpg_check_prod_mode_write_protect()\n");
400 if (!tfo
->tpg_alloc_fabric_acl
) {
401 pr_err("Missing tfo->tpg_alloc_fabric_acl()\n");
404 if (!tfo
->tpg_release_fabric_acl
) {
405 pr_err("Missing tfo->tpg_release_fabric_acl()\n");
408 if (!tfo
->tpg_get_inst_index
) {
409 pr_err("Missing tfo->tpg_get_inst_index()\n");
412 if (!tfo
->release_cmd
) {
413 pr_err("Missing tfo->release_cmd()\n");
416 if (!tfo
->shutdown_session
) {
417 pr_err("Missing tfo->shutdown_session()\n");
420 if (!tfo
->close_session
) {
421 pr_err("Missing tfo->close_session()\n");
424 if (!tfo
->sess_get_index
) {
425 pr_err("Missing tfo->sess_get_index()\n");
428 if (!tfo
->write_pending
) {
429 pr_err("Missing tfo->write_pending()\n");
432 if (!tfo
->write_pending_status
) {
433 pr_err("Missing tfo->write_pending_status()\n");
436 if (!tfo
->set_default_node_attributes
) {
437 pr_err("Missing tfo->set_default_node_attributes()\n");
440 if (!tfo
->get_task_tag
) {
441 pr_err("Missing tfo->get_task_tag()\n");
444 if (!tfo
->get_cmd_state
) {
445 pr_err("Missing tfo->get_cmd_state()\n");
448 if (!tfo
->queue_data_in
) {
449 pr_err("Missing tfo->queue_data_in()\n");
452 if (!tfo
->queue_status
) {
453 pr_err("Missing tfo->queue_status()\n");
456 if (!tfo
->queue_tm_rsp
) {
457 pr_err("Missing tfo->queue_tm_rsp()\n");
461 * We at least require tfo->fabric_make_wwn(), tfo->fabric_drop_wwn()
462 * tfo->fabric_make_tpg() and tfo->fabric_drop_tpg() in
463 * target_core_fabric_configfs.c WWN+TPG group context code.
465 if (!tfo
->fabric_make_wwn
) {
466 pr_err("Missing tfo->fabric_make_wwn()\n");
469 if (!tfo
->fabric_drop_wwn
) {
470 pr_err("Missing tfo->fabric_drop_wwn()\n");
473 if (!tfo
->fabric_make_tpg
) {
474 pr_err("Missing tfo->fabric_make_tpg()\n");
477 if (!tfo
->fabric_drop_tpg
) {
478 pr_err("Missing tfo->fabric_drop_tpg()\n");
486 * Called 2nd from fabric module with returned parameter of
487 * struct target_fabric_configfs * from target_fabric_configfs_init().
489 * Upon a successful registration, the new fabric's struct config_item is
490 * return. Also, a pointer to this struct is set in the passed
491 * struct target_fabric_configfs.
493 int target_fabric_configfs_register(
494 struct target_fabric_configfs
*tf
)
499 pr_err("Unable to locate target_fabric_configfs"
503 if (!tf
->tf_subsys
) {
504 pr_err("Unable to target struct config_subsystem"
508 ret
= target_fabric_tf_ops_check(tf
);
512 pr_debug("<<<<<<<<<<<<<<<<<<<<<< END FABRIC API >>>>>>>>>>>>"
516 EXPORT_SYMBOL(target_fabric_configfs_register
);
518 void target_fabric_configfs_deregister(
519 struct target_fabric_configfs
*tf
)
521 struct configfs_subsystem
*su
;
524 pr_err("Unable to locate passed target_fabric_"
530 pr_err("Unable to locate passed tf->tf_subsys"
534 pr_debug("<<<<<<<<<<<<<<<<<<<<<< BEGIN FABRIC API >>>>>>>>>>"
536 mutex_lock(&g_tf_lock
);
537 if (atomic_read(&tf
->tf_access_cnt
)) {
538 mutex_unlock(&g_tf_lock
);
539 pr_err("Non zero tf->tf_access_cnt for fabric %s\n",
543 list_del(&tf
->tf_list
);
544 mutex_unlock(&g_tf_lock
);
546 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing tf:"
547 " %s\n", tf
->tf_name
);
548 tf
->tf_module
= NULL
;
549 tf
->tf_subsys
= NULL
;
552 pr_debug("<<<<<<<<<<<<<<<<<<<<<< END FABRIC API >>>>>>>>>>>>>>>>>"
555 EXPORT_SYMBOL(target_fabric_configfs_deregister
);
557 /*##############################################################################
558 // Stop functions called by external Target Fabrics Modules
559 //############################################################################*/
561 /* Start functions for struct config_item_type target_core_dev_attrib_cit */
563 #define DEF_DEV_ATTRIB_SHOW(_name) \
564 static ssize_t target_core_dev_show_attr_##_name( \
565 struct se_dev_attrib *da, \
568 return snprintf(page, PAGE_SIZE, "%u\n", \
569 (u32)da->da_dev->dev_attrib._name); \
572 #define DEF_DEV_ATTRIB_STORE(_name) \
573 static ssize_t target_core_dev_store_attr_##_name( \
574 struct se_dev_attrib *da, \
581 ret = kstrtoul(page, 0, &val); \
583 pr_err("kstrtoul() failed with" \
584 " ret: %d\n", ret); \
587 ret = se_dev_set_##_name(da->da_dev, (u32)val); \
589 return (!ret) ? count : -EINVAL; \
592 #define DEF_DEV_ATTRIB(_name) \
593 DEF_DEV_ATTRIB_SHOW(_name); \
594 DEF_DEV_ATTRIB_STORE(_name);
596 #define DEF_DEV_ATTRIB_RO(_name) \
597 DEF_DEV_ATTRIB_SHOW(_name);
599 CONFIGFS_EATTR_STRUCT(target_core_dev_attrib
, se_dev_attrib
);
600 #define SE_DEV_ATTR(_name, _mode) \
601 static struct target_core_dev_attrib_attribute \
602 target_core_dev_attrib_##_name = \
603 __CONFIGFS_EATTR(_name, _mode, \
604 target_core_dev_show_attr_##_name, \
605 target_core_dev_store_attr_##_name);
607 #define SE_DEV_ATTR_RO(_name); \
608 static struct target_core_dev_attrib_attribute \
609 target_core_dev_attrib_##_name = \
610 __CONFIGFS_EATTR_RO(_name, \
611 target_core_dev_show_attr_##_name);
613 DEF_DEV_ATTRIB(emulate_model_alias
);
614 SE_DEV_ATTR(emulate_model_alias
, S_IRUGO
| S_IWUSR
);
616 DEF_DEV_ATTRIB(emulate_dpo
);
617 SE_DEV_ATTR(emulate_dpo
, S_IRUGO
| S_IWUSR
);
619 DEF_DEV_ATTRIB(emulate_fua_write
);
620 SE_DEV_ATTR(emulate_fua_write
, S_IRUGO
| S_IWUSR
);
622 DEF_DEV_ATTRIB(emulate_fua_read
);
623 SE_DEV_ATTR(emulate_fua_read
, S_IRUGO
| S_IWUSR
);
625 DEF_DEV_ATTRIB(emulate_write_cache
);
626 SE_DEV_ATTR(emulate_write_cache
, S_IRUGO
| S_IWUSR
);
628 DEF_DEV_ATTRIB(emulate_ua_intlck_ctrl
);
629 SE_DEV_ATTR(emulate_ua_intlck_ctrl
, S_IRUGO
| S_IWUSR
);
631 DEF_DEV_ATTRIB(emulate_tas
);
632 SE_DEV_ATTR(emulate_tas
, S_IRUGO
| S_IWUSR
);
634 DEF_DEV_ATTRIB(emulate_tpu
);
635 SE_DEV_ATTR(emulate_tpu
, S_IRUGO
| S_IWUSR
);
637 DEF_DEV_ATTRIB(emulate_tpws
);
638 SE_DEV_ATTR(emulate_tpws
, S_IRUGO
| S_IWUSR
);
640 DEF_DEV_ATTRIB(emulate_caw
);
641 SE_DEV_ATTR(emulate_caw
, S_IRUGO
| S_IWUSR
);
643 DEF_DEV_ATTRIB(emulate_3pc
);
644 SE_DEV_ATTR(emulate_3pc
, S_IRUGO
| S_IWUSR
);
646 DEF_DEV_ATTRIB(pi_prot_type
);
647 SE_DEV_ATTR(pi_prot_type
, S_IRUGO
| S_IWUSR
);
649 DEF_DEV_ATTRIB_RO(hw_pi_prot_type
);
650 SE_DEV_ATTR_RO(hw_pi_prot_type
);
652 DEF_DEV_ATTRIB(pi_prot_format
);
653 SE_DEV_ATTR(pi_prot_format
, S_IRUGO
| S_IWUSR
);
655 DEF_DEV_ATTRIB(enforce_pr_isids
);
656 SE_DEV_ATTR(enforce_pr_isids
, S_IRUGO
| S_IWUSR
);
658 DEF_DEV_ATTRIB(is_nonrot
);
659 SE_DEV_ATTR(is_nonrot
, S_IRUGO
| S_IWUSR
);
661 DEF_DEV_ATTRIB(emulate_rest_reord
);
662 SE_DEV_ATTR(emulate_rest_reord
, S_IRUGO
| S_IWUSR
);
664 DEF_DEV_ATTRIB_RO(hw_block_size
);
665 SE_DEV_ATTR_RO(hw_block_size
);
667 DEF_DEV_ATTRIB(block_size
);
668 SE_DEV_ATTR(block_size
, S_IRUGO
| S_IWUSR
);
670 DEF_DEV_ATTRIB_RO(hw_max_sectors
);
671 SE_DEV_ATTR_RO(hw_max_sectors
);
673 DEF_DEV_ATTRIB(fabric_max_sectors
);
674 SE_DEV_ATTR(fabric_max_sectors
, S_IRUGO
| S_IWUSR
);
676 DEF_DEV_ATTRIB(optimal_sectors
);
677 SE_DEV_ATTR(optimal_sectors
, S_IRUGO
| S_IWUSR
);
679 DEF_DEV_ATTRIB_RO(hw_queue_depth
);
680 SE_DEV_ATTR_RO(hw_queue_depth
);
682 DEF_DEV_ATTRIB(queue_depth
);
683 SE_DEV_ATTR(queue_depth
, S_IRUGO
| S_IWUSR
);
685 DEF_DEV_ATTRIB(max_unmap_lba_count
);
686 SE_DEV_ATTR(max_unmap_lba_count
, S_IRUGO
| S_IWUSR
);
688 DEF_DEV_ATTRIB(max_unmap_block_desc_count
);
689 SE_DEV_ATTR(max_unmap_block_desc_count
, S_IRUGO
| S_IWUSR
);
691 DEF_DEV_ATTRIB(unmap_granularity
);
692 SE_DEV_ATTR(unmap_granularity
, S_IRUGO
| S_IWUSR
);
694 DEF_DEV_ATTRIB(unmap_granularity_alignment
);
695 SE_DEV_ATTR(unmap_granularity_alignment
, S_IRUGO
| S_IWUSR
);
697 DEF_DEV_ATTRIB(max_write_same_len
);
698 SE_DEV_ATTR(max_write_same_len
, S_IRUGO
| S_IWUSR
);
700 CONFIGFS_EATTR_OPS(target_core_dev_attrib
, se_dev_attrib
, da_group
);
702 static struct configfs_attribute
*target_core_dev_attrib_attrs
[] = {
703 &target_core_dev_attrib_emulate_model_alias
.attr
,
704 &target_core_dev_attrib_emulate_dpo
.attr
,
705 &target_core_dev_attrib_emulate_fua_write
.attr
,
706 &target_core_dev_attrib_emulate_fua_read
.attr
,
707 &target_core_dev_attrib_emulate_write_cache
.attr
,
708 &target_core_dev_attrib_emulate_ua_intlck_ctrl
.attr
,
709 &target_core_dev_attrib_emulate_tas
.attr
,
710 &target_core_dev_attrib_emulate_tpu
.attr
,
711 &target_core_dev_attrib_emulate_tpws
.attr
,
712 &target_core_dev_attrib_emulate_caw
.attr
,
713 &target_core_dev_attrib_emulate_3pc
.attr
,
714 &target_core_dev_attrib_pi_prot_type
.attr
,
715 &target_core_dev_attrib_hw_pi_prot_type
.attr
,
716 &target_core_dev_attrib_pi_prot_format
.attr
,
717 &target_core_dev_attrib_enforce_pr_isids
.attr
,
718 &target_core_dev_attrib_is_nonrot
.attr
,
719 &target_core_dev_attrib_emulate_rest_reord
.attr
,
720 &target_core_dev_attrib_hw_block_size
.attr
,
721 &target_core_dev_attrib_block_size
.attr
,
722 &target_core_dev_attrib_hw_max_sectors
.attr
,
723 &target_core_dev_attrib_fabric_max_sectors
.attr
,
724 &target_core_dev_attrib_optimal_sectors
.attr
,
725 &target_core_dev_attrib_hw_queue_depth
.attr
,
726 &target_core_dev_attrib_queue_depth
.attr
,
727 &target_core_dev_attrib_max_unmap_lba_count
.attr
,
728 &target_core_dev_attrib_max_unmap_block_desc_count
.attr
,
729 &target_core_dev_attrib_unmap_granularity
.attr
,
730 &target_core_dev_attrib_unmap_granularity_alignment
.attr
,
731 &target_core_dev_attrib_max_write_same_len
.attr
,
735 static struct configfs_item_operations target_core_dev_attrib_ops
= {
736 .show_attribute
= target_core_dev_attrib_attr_show
,
737 .store_attribute
= target_core_dev_attrib_attr_store
,
740 static struct config_item_type target_core_dev_attrib_cit
= {
741 .ct_item_ops
= &target_core_dev_attrib_ops
,
742 .ct_attrs
= target_core_dev_attrib_attrs
,
743 .ct_owner
= THIS_MODULE
,
746 /* End functions for struct config_item_type target_core_dev_attrib_cit */
748 /* Start functions for struct config_item_type target_core_dev_wwn_cit */
750 CONFIGFS_EATTR_STRUCT(target_core_dev_wwn
, t10_wwn
);
751 #define SE_DEV_WWN_ATTR(_name, _mode) \
752 static struct target_core_dev_wwn_attribute target_core_dev_wwn_##_name = \
753 __CONFIGFS_EATTR(_name, _mode, \
754 target_core_dev_wwn_show_attr_##_name, \
755 target_core_dev_wwn_store_attr_##_name);
757 #define SE_DEV_WWN_ATTR_RO(_name); \
759 static struct target_core_dev_wwn_attribute \
760 target_core_dev_wwn_##_name = \
761 __CONFIGFS_EATTR_RO(_name, \
762 target_core_dev_wwn_show_attr_##_name); \
766 * VPD page 0x80 Unit serial
768 static ssize_t
target_core_dev_wwn_show_attr_vpd_unit_serial(
769 struct t10_wwn
*t10_wwn
,
772 return sprintf(page
, "T10 VPD Unit Serial Number: %s\n",
773 &t10_wwn
->unit_serial
[0]);
776 static ssize_t
target_core_dev_wwn_store_attr_vpd_unit_serial(
777 struct t10_wwn
*t10_wwn
,
781 struct se_device
*dev
= t10_wwn
->t10_dev
;
782 unsigned char buf
[INQUIRY_VPD_SERIAL_LEN
];
785 * If Linux/SCSI subsystem_api_t plugin got a VPD Unit Serial
786 * from the struct scsi_device level firmware, do not allow
787 * VPD Unit Serial to be emulated.
789 * Note this struct scsi_device could also be emulating VPD
790 * information from its drivers/scsi LLD. But for now we assume
791 * it is doing 'the right thing' wrt a world wide unique
792 * VPD Unit Serial Number that OS dependent multipath can depend on.
794 if (dev
->dev_flags
& DF_FIRMWARE_VPD_UNIT_SERIAL
) {
795 pr_err("Underlying SCSI device firmware provided VPD"
796 " Unit Serial, ignoring request\n");
800 if (strlen(page
) >= INQUIRY_VPD_SERIAL_LEN
) {
801 pr_err("Emulated VPD Unit Serial exceeds"
802 " INQUIRY_VPD_SERIAL_LEN: %d\n", INQUIRY_VPD_SERIAL_LEN
);
806 * Check to see if any active $FABRIC_MOD exports exist. If they
807 * do exist, fail here as changing this information on the fly
808 * (underneath the initiator side OS dependent multipath code)
809 * could cause negative effects.
811 if (dev
->export_count
) {
812 pr_err("Unable to set VPD Unit Serial while"
813 " active %d $FABRIC_MOD exports exist\n",
819 * This currently assumes ASCII encoding for emulated VPD Unit Serial.
821 * Also, strip any newline added from the userspace
822 * echo $UUID > $TARGET/$HBA/$STORAGE_OBJECT/wwn/vpd_unit_serial
824 memset(buf
, 0, INQUIRY_VPD_SERIAL_LEN
);
825 snprintf(buf
, INQUIRY_VPD_SERIAL_LEN
, "%s", page
);
826 snprintf(dev
->t10_wwn
.unit_serial
, INQUIRY_VPD_SERIAL_LEN
,
827 "%s", strstrip(buf
));
828 dev
->dev_flags
|= DF_EMULATED_VPD_UNIT_SERIAL
;
830 pr_debug("Target_Core_ConfigFS: Set emulated VPD Unit Serial:"
831 " %s\n", dev
->t10_wwn
.unit_serial
);
836 SE_DEV_WWN_ATTR(vpd_unit_serial
, S_IRUGO
| S_IWUSR
);
839 * VPD page 0x83 Protocol Identifier
841 static ssize_t
target_core_dev_wwn_show_attr_vpd_protocol_identifier(
842 struct t10_wwn
*t10_wwn
,
846 unsigned char buf
[VPD_TMP_BUF_SIZE
];
849 memset(buf
, 0, VPD_TMP_BUF_SIZE
);
851 spin_lock(&t10_wwn
->t10_vpd_lock
);
852 list_for_each_entry(vpd
, &t10_wwn
->t10_vpd_list
, vpd_list
) {
853 if (!vpd
->protocol_identifier_set
)
856 transport_dump_vpd_proto_id(vpd
, buf
, VPD_TMP_BUF_SIZE
);
858 if (len
+ strlen(buf
) >= PAGE_SIZE
)
861 len
+= sprintf(page
+len
, "%s", buf
);
863 spin_unlock(&t10_wwn
->t10_vpd_lock
);
868 static ssize_t
target_core_dev_wwn_store_attr_vpd_protocol_identifier(
869 struct t10_wwn
*t10_wwn
,
876 SE_DEV_WWN_ATTR(vpd_protocol_identifier
, S_IRUGO
| S_IWUSR
);
879 * Generic wrapper for dumping VPD identifiers by association.
881 #define DEF_DEV_WWN_ASSOC_SHOW(_name, _assoc) \
882 static ssize_t target_core_dev_wwn_show_attr_##_name( \
883 struct t10_wwn *t10_wwn, \
886 struct t10_vpd *vpd; \
887 unsigned char buf[VPD_TMP_BUF_SIZE]; \
890 spin_lock(&t10_wwn->t10_vpd_lock); \
891 list_for_each_entry(vpd, &t10_wwn->t10_vpd_list, vpd_list) { \
892 if (vpd->association != _assoc) \
895 memset(buf, 0, VPD_TMP_BUF_SIZE); \
896 transport_dump_vpd_assoc(vpd, buf, VPD_TMP_BUF_SIZE); \
897 if (len + strlen(buf) >= PAGE_SIZE) \
899 len += sprintf(page+len, "%s", buf); \
901 memset(buf, 0, VPD_TMP_BUF_SIZE); \
902 transport_dump_vpd_ident_type(vpd, buf, VPD_TMP_BUF_SIZE); \
903 if (len + strlen(buf) >= PAGE_SIZE) \
905 len += sprintf(page+len, "%s", buf); \
907 memset(buf, 0, VPD_TMP_BUF_SIZE); \
908 transport_dump_vpd_ident(vpd, buf, VPD_TMP_BUF_SIZE); \
909 if (len + strlen(buf) >= PAGE_SIZE) \
911 len += sprintf(page+len, "%s", buf); \
913 spin_unlock(&t10_wwn->t10_vpd_lock); \
919 * VPD page 0x83 Association: Logical Unit
921 DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_logical_unit
, 0x00);
923 static ssize_t
target_core_dev_wwn_store_attr_vpd_assoc_logical_unit(
924 struct t10_wwn
*t10_wwn
,
931 SE_DEV_WWN_ATTR(vpd_assoc_logical_unit
, S_IRUGO
| S_IWUSR
);
934 * VPD page 0x83 Association: Target Port
936 DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_target_port
, 0x10);
938 static ssize_t
target_core_dev_wwn_store_attr_vpd_assoc_target_port(
939 struct t10_wwn
*t10_wwn
,
946 SE_DEV_WWN_ATTR(vpd_assoc_target_port
, S_IRUGO
| S_IWUSR
);
949 * VPD page 0x83 Association: SCSI Target Device
951 DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_scsi_target_device
, 0x20);
953 static ssize_t
target_core_dev_wwn_store_attr_vpd_assoc_scsi_target_device(
954 struct t10_wwn
*t10_wwn
,
961 SE_DEV_WWN_ATTR(vpd_assoc_scsi_target_device
, S_IRUGO
| S_IWUSR
);
963 CONFIGFS_EATTR_OPS(target_core_dev_wwn
, t10_wwn
, t10_wwn_group
);
965 static struct configfs_attribute
*target_core_dev_wwn_attrs
[] = {
966 &target_core_dev_wwn_vpd_unit_serial
.attr
,
967 &target_core_dev_wwn_vpd_protocol_identifier
.attr
,
968 &target_core_dev_wwn_vpd_assoc_logical_unit
.attr
,
969 &target_core_dev_wwn_vpd_assoc_target_port
.attr
,
970 &target_core_dev_wwn_vpd_assoc_scsi_target_device
.attr
,
974 static struct configfs_item_operations target_core_dev_wwn_ops
= {
975 .show_attribute
= target_core_dev_wwn_attr_show
,
976 .store_attribute
= target_core_dev_wwn_attr_store
,
979 static struct config_item_type target_core_dev_wwn_cit
= {
980 .ct_item_ops
= &target_core_dev_wwn_ops
,
981 .ct_attrs
= target_core_dev_wwn_attrs
,
982 .ct_owner
= THIS_MODULE
,
985 /* End functions for struct config_item_type target_core_dev_wwn_cit */
987 /* Start functions for struct config_item_type target_core_dev_pr_cit */
989 CONFIGFS_EATTR_STRUCT(target_core_dev_pr
, se_device
);
990 #define SE_DEV_PR_ATTR(_name, _mode) \
991 static struct target_core_dev_pr_attribute target_core_dev_pr_##_name = \
992 __CONFIGFS_EATTR(_name, _mode, \
993 target_core_dev_pr_show_attr_##_name, \
994 target_core_dev_pr_store_attr_##_name);
996 #define SE_DEV_PR_ATTR_RO(_name); \
997 static struct target_core_dev_pr_attribute target_core_dev_pr_##_name = \
998 __CONFIGFS_EATTR_RO(_name, \
999 target_core_dev_pr_show_attr_##_name);
1001 static ssize_t
target_core_dev_pr_show_spc3_res(struct se_device
*dev
,
1004 struct se_node_acl
*se_nacl
;
1005 struct t10_pr_registration
*pr_reg
;
1006 char i_buf
[PR_REG_ISID_ID_LEN
];
1008 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1010 pr_reg
= dev
->dev_pr_res_holder
;
1012 return sprintf(page
, "No SPC-3 Reservation holder\n");
1014 se_nacl
= pr_reg
->pr_reg_nacl
;
1015 core_pr_dump_initiator_port(pr_reg
, i_buf
, PR_REG_ISID_ID_LEN
);
1017 return sprintf(page
, "SPC-3 Reservation: %s Initiator: %s%s\n",
1018 se_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
1019 se_nacl
->initiatorname
, i_buf
);
1022 static ssize_t
target_core_dev_pr_show_spc2_res(struct se_device
*dev
,
1025 struct se_node_acl
*se_nacl
;
1028 se_nacl
= dev
->dev_reserved_node_acl
;
1031 "SPC-2 Reservation: %s Initiator: %s\n",
1032 se_nacl
->se_tpg
->se_tpg_tfo
->get_fabric_name(),
1033 se_nacl
->initiatorname
);
1035 len
= sprintf(page
, "No SPC-2 Reservation holder\n");
1040 static ssize_t
target_core_dev_pr_show_attr_res_holder(struct se_device
*dev
,
1045 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
1046 return sprintf(page
, "Passthrough\n");
1048 spin_lock(&dev
->dev_reservation_lock
);
1049 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
1050 ret
= target_core_dev_pr_show_spc2_res(dev
, page
);
1052 ret
= target_core_dev_pr_show_spc3_res(dev
, page
);
1053 spin_unlock(&dev
->dev_reservation_lock
);
1057 SE_DEV_PR_ATTR_RO(res_holder
);
1059 static ssize_t
target_core_dev_pr_show_attr_res_pr_all_tgt_pts(
1060 struct se_device
*dev
, char *page
)
1064 spin_lock(&dev
->dev_reservation_lock
);
1065 if (!dev
->dev_pr_res_holder
) {
1066 len
= sprintf(page
, "No SPC-3 Reservation holder\n");
1067 } else if (dev
->dev_pr_res_holder
->pr_reg_all_tg_pt
) {
1068 len
= sprintf(page
, "SPC-3 Reservation: All Target"
1069 " Ports registration\n");
1071 len
= sprintf(page
, "SPC-3 Reservation: Single"
1072 " Target Port registration\n");
1075 spin_unlock(&dev
->dev_reservation_lock
);
1079 SE_DEV_PR_ATTR_RO(res_pr_all_tgt_pts
);
1081 static ssize_t
target_core_dev_pr_show_attr_res_pr_generation(
1082 struct se_device
*dev
, char *page
)
1084 return sprintf(page
, "0x%08x\n", dev
->t10_pr
.pr_generation
);
1087 SE_DEV_PR_ATTR_RO(res_pr_generation
);
1090 * res_pr_holder_tg_port
1092 static ssize_t
target_core_dev_pr_show_attr_res_pr_holder_tg_port(
1093 struct se_device
*dev
, char *page
)
1095 struct se_node_acl
*se_nacl
;
1097 struct se_portal_group
*se_tpg
;
1098 struct t10_pr_registration
*pr_reg
;
1099 struct target_core_fabric_ops
*tfo
;
1102 spin_lock(&dev
->dev_reservation_lock
);
1103 pr_reg
= dev
->dev_pr_res_holder
;
1105 len
= sprintf(page
, "No SPC-3 Reservation holder\n");
1109 se_nacl
= pr_reg
->pr_reg_nacl
;
1110 se_tpg
= se_nacl
->se_tpg
;
1111 lun
= pr_reg
->pr_reg_tg_pt_lun
;
1112 tfo
= se_tpg
->se_tpg_tfo
;
1114 len
+= sprintf(page
+len
, "SPC-3 Reservation: %s"
1115 " Target Node Endpoint: %s\n", tfo
->get_fabric_name(),
1116 tfo
->tpg_get_wwn(se_tpg
));
1117 len
+= sprintf(page
+len
, "SPC-3 Reservation: Relative Port"
1118 " Identifier Tag: %hu %s Portal Group Tag: %hu"
1119 " %s Logical Unit: %u\n", lun
->lun_sep
->sep_rtpi
,
1120 tfo
->get_fabric_name(), tfo
->tpg_get_tag(se_tpg
),
1121 tfo
->get_fabric_name(), lun
->unpacked_lun
);
1124 spin_unlock(&dev
->dev_reservation_lock
);
1128 SE_DEV_PR_ATTR_RO(res_pr_holder_tg_port
);
1130 static ssize_t
target_core_dev_pr_show_attr_res_pr_registered_i_pts(
1131 struct se_device
*dev
, char *page
)
1133 struct target_core_fabric_ops
*tfo
;
1134 struct t10_pr_registration
*pr_reg
;
1135 unsigned char buf
[384];
1136 char i_buf
[PR_REG_ISID_ID_LEN
];
1140 len
+= sprintf(page
+len
, "SPC-3 PR Registrations:\n");
1142 spin_lock(&dev
->t10_pr
.registration_lock
);
1143 list_for_each_entry(pr_reg
, &dev
->t10_pr
.registration_list
,
1146 memset(buf
, 0, 384);
1147 memset(i_buf
, 0, PR_REG_ISID_ID_LEN
);
1148 tfo
= pr_reg
->pr_reg_nacl
->se_tpg
->se_tpg_tfo
;
1149 core_pr_dump_initiator_port(pr_reg
, i_buf
,
1150 PR_REG_ISID_ID_LEN
);
1151 sprintf(buf
, "%s Node: %s%s Key: 0x%016Lx PRgen: 0x%08x\n",
1152 tfo
->get_fabric_name(),
1153 pr_reg
->pr_reg_nacl
->initiatorname
, i_buf
, pr_reg
->pr_res_key
,
1154 pr_reg
->pr_res_generation
);
1156 if (len
+ strlen(buf
) >= PAGE_SIZE
)
1159 len
+= sprintf(page
+len
, "%s", buf
);
1162 spin_unlock(&dev
->t10_pr
.registration_lock
);
1165 len
+= sprintf(page
+len
, "None\n");
1170 SE_DEV_PR_ATTR_RO(res_pr_registered_i_pts
);
1172 static ssize_t
target_core_dev_pr_show_attr_res_pr_type(
1173 struct se_device
*dev
, char *page
)
1175 struct t10_pr_registration
*pr_reg
;
1178 spin_lock(&dev
->dev_reservation_lock
);
1179 pr_reg
= dev
->dev_pr_res_holder
;
1181 len
= sprintf(page
, "SPC-3 Reservation Type: %s\n",
1182 core_scsi3_pr_dump_type(pr_reg
->pr_res_type
));
1184 len
= sprintf(page
, "No SPC-3 Reservation holder\n");
1187 spin_unlock(&dev
->dev_reservation_lock
);
1191 SE_DEV_PR_ATTR_RO(res_pr_type
);
1193 static ssize_t
target_core_dev_pr_show_attr_res_type(
1194 struct se_device
*dev
, char *page
)
1196 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
1197 return sprintf(page
, "SPC_PASSTHROUGH\n");
1198 else if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
1199 return sprintf(page
, "SPC2_RESERVATIONS\n");
1201 return sprintf(page
, "SPC3_PERSISTENT_RESERVATIONS\n");
1204 SE_DEV_PR_ATTR_RO(res_type
);
1206 static ssize_t
target_core_dev_pr_show_attr_res_aptpl_active(
1207 struct se_device
*dev
, char *page
)
1209 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
1212 return sprintf(page
, "APTPL Bit Status: %s\n",
1213 (dev
->t10_pr
.pr_aptpl_active
) ? "Activated" : "Disabled");
1216 SE_DEV_PR_ATTR_RO(res_aptpl_active
);
1219 * res_aptpl_metadata
1221 static ssize_t
target_core_dev_pr_show_attr_res_aptpl_metadata(
1222 struct se_device
*dev
, char *page
)
1224 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
1227 return sprintf(page
, "Ready to process PR APTPL metadata..\n");
1231 Opt_initiator_fabric
, Opt_initiator_node
, Opt_initiator_sid
,
1232 Opt_sa_res_key
, Opt_res_holder
, Opt_res_type
, Opt_res_scope
,
1233 Opt_res_all_tg_pt
, Opt_mapped_lun
, Opt_target_fabric
,
1234 Opt_target_node
, Opt_tpgt
, Opt_port_rtpi
, Opt_target_lun
, Opt_err
1237 static match_table_t tokens
= {
1238 {Opt_initiator_fabric
, "initiator_fabric=%s"},
1239 {Opt_initiator_node
, "initiator_node=%s"},
1240 {Opt_initiator_sid
, "initiator_sid=%s"},
1241 {Opt_sa_res_key
, "sa_res_key=%s"},
1242 {Opt_res_holder
, "res_holder=%d"},
1243 {Opt_res_type
, "res_type=%d"},
1244 {Opt_res_scope
, "res_scope=%d"},
1245 {Opt_res_all_tg_pt
, "res_all_tg_pt=%d"},
1246 {Opt_mapped_lun
, "mapped_lun=%d"},
1247 {Opt_target_fabric
, "target_fabric=%s"},
1248 {Opt_target_node
, "target_node=%s"},
1249 {Opt_tpgt
, "tpgt=%d"},
1250 {Opt_port_rtpi
, "port_rtpi=%d"},
1251 {Opt_target_lun
, "target_lun=%d"},
1255 static ssize_t
target_core_dev_pr_store_attr_res_aptpl_metadata(
1256 struct se_device
*dev
,
1260 unsigned char *i_fabric
= NULL
, *i_port
= NULL
, *isid
= NULL
;
1261 unsigned char *t_fabric
= NULL
, *t_port
= NULL
;
1262 char *orig
, *ptr
, *arg_p
, *opts
;
1263 substring_t args
[MAX_OPT_ARGS
];
1264 unsigned long long tmp_ll
;
1266 u32 mapped_lun
= 0, target_lun
= 0;
1267 int ret
= -1, res_holder
= 0, all_tg_pt
= 0, arg
, token
;
1268 u16 port_rpti
= 0, tpgt
= 0;
1271 if (dev
->transport
->transport_type
== TRANSPORT_PLUGIN_PHBA_PDEV
)
1273 if (dev
->dev_reservation_flags
& DRF_SPC2_RESERVATIONS
)
1276 if (dev
->export_count
) {
1277 pr_debug("Unable to process APTPL metadata while"
1278 " active fabric exports exist\n");
1282 opts
= kstrdup(page
, GFP_KERNEL
);
1287 while ((ptr
= strsep(&opts
, ",\n")) != NULL
) {
1291 token
= match_token(ptr
, tokens
, args
);
1293 case Opt_initiator_fabric
:
1294 i_fabric
= match_strdup(&args
[0]);
1300 case Opt_initiator_node
:
1301 i_port
= match_strdup(&args
[0]);
1306 if (strlen(i_port
) >= PR_APTPL_MAX_IPORT_LEN
) {
1307 pr_err("APTPL metadata initiator_node="
1308 " exceeds PR_APTPL_MAX_IPORT_LEN: %d\n",
1309 PR_APTPL_MAX_IPORT_LEN
);
1314 case Opt_initiator_sid
:
1315 isid
= match_strdup(&args
[0]);
1320 if (strlen(isid
) >= PR_REG_ISID_LEN
) {
1321 pr_err("APTPL metadata initiator_isid"
1322 "= exceeds PR_REG_ISID_LEN: %d\n",
1328 case Opt_sa_res_key
:
1329 arg_p
= match_strdup(&args
[0]);
1334 ret
= kstrtoull(arg_p
, 0, &tmp_ll
);
1336 pr_err("kstrtoull() failed for"
1340 sa_res_key
= (u64
)tmp_ll
;
1343 * PR APTPL Metadata for Reservation
1345 case Opt_res_holder
:
1346 match_int(args
, &arg
);
1350 match_int(args
, &arg
);
1354 match_int(args
, &arg
);
1357 case Opt_res_all_tg_pt
:
1358 match_int(args
, &arg
);
1359 all_tg_pt
= (int)arg
;
1361 case Opt_mapped_lun
:
1362 match_int(args
, &arg
);
1363 mapped_lun
= (u32
)arg
;
1366 * PR APTPL Metadata for Target Port
1368 case Opt_target_fabric
:
1369 t_fabric
= match_strdup(&args
[0]);
1375 case Opt_target_node
:
1376 t_port
= match_strdup(&args
[0]);
1381 if (strlen(t_port
) >= PR_APTPL_MAX_TPORT_LEN
) {
1382 pr_err("APTPL metadata target_node="
1383 " exceeds PR_APTPL_MAX_TPORT_LEN: %d\n",
1384 PR_APTPL_MAX_TPORT_LEN
);
1390 match_int(args
, &arg
);
1394 match_int(args
, &arg
);
1395 port_rpti
= (u16
)arg
;
1397 case Opt_target_lun
:
1398 match_int(args
, &arg
);
1399 target_lun
= (u32
)arg
;
1406 if (!i_port
|| !t_port
|| !sa_res_key
) {
1407 pr_err("Illegal parameters for APTPL registration\n");
1412 if (res_holder
&& !(type
)) {
1413 pr_err("Illegal PR type: 0x%02x for reservation"
1419 ret
= core_scsi3_alloc_aptpl_registration(&dev
->t10_pr
, sa_res_key
,
1420 i_port
, isid
, mapped_lun
, t_port
, tpgt
, target_lun
,
1421 res_holder
, all_tg_pt
, type
);
1429 return (ret
== 0) ? count
: ret
;
1432 SE_DEV_PR_ATTR(res_aptpl_metadata
, S_IRUGO
| S_IWUSR
);
1434 CONFIGFS_EATTR_OPS(target_core_dev_pr
, se_device
, dev_pr_group
);
1436 static struct configfs_attribute
*target_core_dev_pr_attrs
[] = {
1437 &target_core_dev_pr_res_holder
.attr
,
1438 &target_core_dev_pr_res_pr_all_tgt_pts
.attr
,
1439 &target_core_dev_pr_res_pr_generation
.attr
,
1440 &target_core_dev_pr_res_pr_holder_tg_port
.attr
,
1441 &target_core_dev_pr_res_pr_registered_i_pts
.attr
,
1442 &target_core_dev_pr_res_pr_type
.attr
,
1443 &target_core_dev_pr_res_type
.attr
,
1444 &target_core_dev_pr_res_aptpl_active
.attr
,
1445 &target_core_dev_pr_res_aptpl_metadata
.attr
,
1449 static struct configfs_item_operations target_core_dev_pr_ops
= {
1450 .show_attribute
= target_core_dev_pr_attr_show
,
1451 .store_attribute
= target_core_dev_pr_attr_store
,
1454 static struct config_item_type target_core_dev_pr_cit
= {
1455 .ct_item_ops
= &target_core_dev_pr_ops
,
1456 .ct_attrs
= target_core_dev_pr_attrs
,
1457 .ct_owner
= THIS_MODULE
,
1460 /* End functions for struct config_item_type target_core_dev_pr_cit */
1462 /* Start functions for struct config_item_type target_core_dev_cit */
1464 static ssize_t
target_core_show_dev_info(void *p
, char *page
)
1466 struct se_device
*dev
= p
;
1467 struct se_subsystem_api
*t
= dev
->transport
;
1469 ssize_t read_bytes
= 0;
1471 transport_dump_dev_state(dev
, page
, &bl
);
1473 read_bytes
+= t
->show_configfs_dev_params(dev
, page
+read_bytes
);
1477 static struct target_core_configfs_attribute target_core_attr_dev_info
= {
1478 .attr
= { .ca_owner
= THIS_MODULE
,
1480 .ca_mode
= S_IRUGO
},
1481 .show
= target_core_show_dev_info
,
1485 static ssize_t
target_core_store_dev_control(
1490 struct se_device
*dev
= p
;
1491 struct se_subsystem_api
*t
= dev
->transport
;
1493 return t
->set_configfs_dev_params(dev
, page
, count
);
1496 static struct target_core_configfs_attribute target_core_attr_dev_control
= {
1497 .attr
= { .ca_owner
= THIS_MODULE
,
1498 .ca_name
= "control",
1499 .ca_mode
= S_IWUSR
},
1501 .store
= target_core_store_dev_control
,
1504 static ssize_t
target_core_show_dev_alias(void *p
, char *page
)
1506 struct se_device
*dev
= p
;
1508 if (!(dev
->dev_flags
& DF_USING_ALIAS
))
1511 return snprintf(page
, PAGE_SIZE
, "%s\n", dev
->dev_alias
);
1514 static ssize_t
target_core_store_dev_alias(
1519 struct se_device
*dev
= p
;
1520 struct se_hba
*hba
= dev
->se_hba
;
1523 if (count
> (SE_DEV_ALIAS_LEN
-1)) {
1524 pr_err("alias count: %d exceeds"
1525 " SE_DEV_ALIAS_LEN-1: %u\n", (int)count
,
1526 SE_DEV_ALIAS_LEN
-1);
1530 read_bytes
= snprintf(&dev
->dev_alias
[0], SE_DEV_ALIAS_LEN
, "%s", page
);
1533 if (dev
->dev_alias
[read_bytes
- 1] == '\n')
1534 dev
->dev_alias
[read_bytes
- 1] = '\0';
1536 dev
->dev_flags
|= DF_USING_ALIAS
;
1538 pr_debug("Target_Core_ConfigFS: %s/%s set alias: %s\n",
1539 config_item_name(&hba
->hba_group
.cg_item
),
1540 config_item_name(&dev
->dev_group
.cg_item
),
1546 static struct target_core_configfs_attribute target_core_attr_dev_alias
= {
1547 .attr
= { .ca_owner
= THIS_MODULE
,
1549 .ca_mode
= S_IRUGO
| S_IWUSR
},
1550 .show
= target_core_show_dev_alias
,
1551 .store
= target_core_store_dev_alias
,
1554 static ssize_t
target_core_show_dev_udev_path(void *p
, char *page
)
1556 struct se_device
*dev
= p
;
1558 if (!(dev
->dev_flags
& DF_USING_UDEV_PATH
))
1561 return snprintf(page
, PAGE_SIZE
, "%s\n", dev
->udev_path
);
1564 static ssize_t
target_core_store_dev_udev_path(
1569 struct se_device
*dev
= p
;
1570 struct se_hba
*hba
= dev
->se_hba
;
1573 if (count
> (SE_UDEV_PATH_LEN
-1)) {
1574 pr_err("udev_path count: %d exceeds"
1575 " SE_UDEV_PATH_LEN-1: %u\n", (int)count
,
1576 SE_UDEV_PATH_LEN
-1);
1580 read_bytes
= snprintf(&dev
->udev_path
[0], SE_UDEV_PATH_LEN
,
1584 if (dev
->udev_path
[read_bytes
- 1] == '\n')
1585 dev
->udev_path
[read_bytes
- 1] = '\0';
1587 dev
->dev_flags
|= DF_USING_UDEV_PATH
;
1589 pr_debug("Target_Core_ConfigFS: %s/%s set udev_path: %s\n",
1590 config_item_name(&hba
->hba_group
.cg_item
),
1591 config_item_name(&dev
->dev_group
.cg_item
),
1597 static struct target_core_configfs_attribute target_core_attr_dev_udev_path
= {
1598 .attr
= { .ca_owner
= THIS_MODULE
,
1599 .ca_name
= "udev_path",
1600 .ca_mode
= S_IRUGO
| S_IWUSR
},
1601 .show
= target_core_show_dev_udev_path
,
1602 .store
= target_core_store_dev_udev_path
,
1605 static ssize_t
target_core_show_dev_enable(void *p
, char *page
)
1607 struct se_device
*dev
= p
;
1609 return snprintf(page
, PAGE_SIZE
, "%d\n", !!(dev
->dev_flags
& DF_CONFIGURED
));
1612 static ssize_t
target_core_store_dev_enable(
1617 struct se_device
*dev
= p
;
1621 ptr
= strstr(page
, "1");
1623 pr_err("For dev_enable ops, only valid value"
1628 ret
= target_configure_device(dev
);
1634 static struct target_core_configfs_attribute target_core_attr_dev_enable
= {
1635 .attr
= { .ca_owner
= THIS_MODULE
,
1636 .ca_name
= "enable",
1637 .ca_mode
= S_IRUGO
| S_IWUSR
},
1638 .show
= target_core_show_dev_enable
,
1639 .store
= target_core_store_dev_enable
,
1642 static ssize_t
target_core_show_alua_lu_gp(void *p
, char *page
)
1644 struct se_device
*dev
= p
;
1645 struct config_item
*lu_ci
;
1646 struct t10_alua_lu_gp
*lu_gp
;
1647 struct t10_alua_lu_gp_member
*lu_gp_mem
;
1650 lu_gp_mem
= dev
->dev_alua_lu_gp_mem
;
1654 spin_lock(&lu_gp_mem
->lu_gp_mem_lock
);
1655 lu_gp
= lu_gp_mem
->lu_gp
;
1657 lu_ci
= &lu_gp
->lu_gp_group
.cg_item
;
1658 len
+= sprintf(page
, "LU Group Alias: %s\nLU Group ID: %hu\n",
1659 config_item_name(lu_ci
), lu_gp
->lu_gp_id
);
1661 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
1666 static ssize_t
target_core_store_alua_lu_gp(
1671 struct se_device
*dev
= p
;
1672 struct se_hba
*hba
= dev
->se_hba
;
1673 struct t10_alua_lu_gp
*lu_gp
= NULL
, *lu_gp_new
= NULL
;
1674 struct t10_alua_lu_gp_member
*lu_gp_mem
;
1675 unsigned char buf
[LU_GROUP_NAME_BUF
];
1678 lu_gp_mem
= dev
->dev_alua_lu_gp_mem
;
1682 if (count
> LU_GROUP_NAME_BUF
) {
1683 pr_err("ALUA LU Group Alias too large!\n");
1686 memset(buf
, 0, LU_GROUP_NAME_BUF
);
1687 memcpy(buf
, page
, count
);
1689 * Any ALUA logical unit alias besides "NULL" means we will be
1690 * making a new group association.
1692 if (strcmp(strstrip(buf
), "NULL")) {
1694 * core_alua_get_lu_gp_by_name() will increment reference to
1695 * struct t10_alua_lu_gp. This reference is released with
1696 * core_alua_get_lu_gp_by_name below().
1698 lu_gp_new
= core_alua_get_lu_gp_by_name(strstrip(buf
));
1703 spin_lock(&lu_gp_mem
->lu_gp_mem_lock
);
1704 lu_gp
= lu_gp_mem
->lu_gp
;
1707 * Clearing an existing lu_gp association, and replacing
1711 pr_debug("Target_Core_ConfigFS: Releasing %s/%s"
1712 " from ALUA LU Group: core/alua/lu_gps/%s, ID:"
1714 config_item_name(&hba
->hba_group
.cg_item
),
1715 config_item_name(&dev
->dev_group
.cg_item
),
1716 config_item_name(&lu_gp
->lu_gp_group
.cg_item
),
1719 __core_alua_drop_lu_gp_mem(lu_gp_mem
, lu_gp
);
1720 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
1725 * Removing existing association of lu_gp_mem with lu_gp
1727 __core_alua_drop_lu_gp_mem(lu_gp_mem
, lu_gp
);
1731 * Associate lu_gp_mem with lu_gp_new.
1733 __core_alua_attach_lu_gp_mem(lu_gp_mem
, lu_gp_new
);
1734 spin_unlock(&lu_gp_mem
->lu_gp_mem_lock
);
1736 pr_debug("Target_Core_ConfigFS: %s %s/%s to ALUA LU Group:"
1737 " core/alua/lu_gps/%s, ID: %hu\n",
1738 (move
) ? "Moving" : "Adding",
1739 config_item_name(&hba
->hba_group
.cg_item
),
1740 config_item_name(&dev
->dev_group
.cg_item
),
1741 config_item_name(&lu_gp_new
->lu_gp_group
.cg_item
),
1742 lu_gp_new
->lu_gp_id
);
1744 core_alua_put_lu_gp_from_name(lu_gp_new
);
1748 static struct target_core_configfs_attribute target_core_attr_dev_alua_lu_gp
= {
1749 .attr
= { .ca_owner
= THIS_MODULE
,
1750 .ca_name
= "alua_lu_gp",
1751 .ca_mode
= S_IRUGO
| S_IWUSR
},
1752 .show
= target_core_show_alua_lu_gp
,
1753 .store
= target_core_store_alua_lu_gp
,
1756 static ssize_t
target_core_show_dev_lba_map(void *p
, char *page
)
1758 struct se_device
*dev
= p
;
1759 struct t10_alua_lba_map
*map
;
1760 struct t10_alua_lba_map_member
*mem
;
1765 spin_lock(&dev
->t10_alua
.lba_map_lock
);
1766 if (!list_empty(&dev
->t10_alua
.lba_map_list
))
1767 bl
+= sprintf(b
+ bl
, "%u %u\n",
1768 dev
->t10_alua
.lba_map_segment_size
,
1769 dev
->t10_alua
.lba_map_segment_multiplier
);
1770 list_for_each_entry(map
, &dev
->t10_alua
.lba_map_list
, lba_map_list
) {
1771 bl
+= sprintf(b
+ bl
, "%llu %llu",
1772 map
->lba_map_first_lba
, map
->lba_map_last_lba
);
1773 list_for_each_entry(mem
, &map
->lba_map_mem_list
,
1775 switch (mem
->lba_map_mem_alua_state
) {
1776 case ALUA_ACCESS_STATE_ACTIVE_OPTIMIZED
:
1779 case ALUA_ACCESS_STATE_ACTIVE_NON_OPTIMIZED
:
1782 case ALUA_ACCESS_STATE_STANDBY
:
1785 case ALUA_ACCESS_STATE_UNAVAILABLE
:
1792 bl
+= sprintf(b
+ bl
, " %d:%c",
1793 mem
->lba_map_mem_alua_pg_id
, state
);
1795 bl
+= sprintf(b
+ bl
, "\n");
1797 spin_unlock(&dev
->t10_alua
.lba_map_lock
);
1801 static ssize_t
target_core_store_dev_lba_map(
1806 struct se_device
*dev
= p
;
1807 struct t10_alua_lba_map
*lba_map
= NULL
;
1808 struct list_head lba_list
;
1809 char *map_entries
, *ptr
;
1811 int pg_num
= -1, pg
;
1812 int ret
= 0, num
= 0, pg_id
, alua_state
;
1813 unsigned long start_lba
= -1, end_lba
= -1;
1814 unsigned long segment_size
= -1, segment_mult
= -1;
1816 map_entries
= kstrdup(page
, GFP_KERNEL
);
1820 INIT_LIST_HEAD(&lba_list
);
1821 while ((ptr
= strsep(&map_entries
, "\n")) != NULL
) {
1826 if (sscanf(ptr
, "%lu %lu\n",
1827 &segment_size
, &segment_mult
) != 2) {
1828 pr_err("Invalid line %d\n", num
);
1835 if (sscanf(ptr
, "%lu %lu", &start_lba
, &end_lba
) != 2) {
1836 pr_err("Invalid line %d\n", num
);
1840 ptr
= strchr(ptr
, ' ');
1842 pr_err("Invalid line %d, missing end lba\n", num
);
1847 ptr
= strchr(ptr
, ' ');
1849 pr_err("Invalid line %d, missing state definitions\n",
1855 lba_map
= core_alua_allocate_lba_map(&lba_list
,
1856 start_lba
, end_lba
);
1857 if (IS_ERR(lba_map
)) {
1858 ret
= PTR_ERR(lba_map
);
1862 while (sscanf(ptr
, "%d:%c", &pg_id
, &state
) == 2) {
1865 alua_state
= ALUA_ACCESS_STATE_ACTIVE_OPTIMIZED
;
1868 alua_state
= ALUA_ACCESS_STATE_ACTIVE_NON_OPTIMIZED
;
1871 alua_state
= ALUA_ACCESS_STATE_STANDBY
;
1874 alua_state
= ALUA_ACCESS_STATE_UNAVAILABLE
;
1877 pr_err("Invalid ALUA state '%c'\n", state
);
1882 ret
= core_alua_allocate_lba_map_mem(lba_map
,
1885 pr_err("Invalid target descriptor %d:%c "
1891 ptr
= strchr(ptr
, ' ');
1899 else if (pg
!= pg_num
) {
1900 pr_err("Only %d from %d port groups definitions "
1901 "at line %d\n", pg
, pg_num
, num
);
1909 core_alua_free_lba_map(&lba_list
);
1912 core_alua_set_lba_map(dev
, &lba_list
,
1913 segment_size
, segment_mult
);
1918 static struct target_core_configfs_attribute target_core_attr_dev_lba_map
= {
1919 .attr
= { .ca_owner
= THIS_MODULE
,
1920 .ca_name
= "lba_map",
1921 .ca_mode
= S_IRUGO
| S_IWUSR
},
1922 .show
= target_core_show_dev_lba_map
,
1923 .store
= target_core_store_dev_lba_map
,
1926 static struct configfs_attribute
*lio_core_dev_attrs
[] = {
1927 &target_core_attr_dev_info
.attr
,
1928 &target_core_attr_dev_control
.attr
,
1929 &target_core_attr_dev_alias
.attr
,
1930 &target_core_attr_dev_udev_path
.attr
,
1931 &target_core_attr_dev_enable
.attr
,
1932 &target_core_attr_dev_alua_lu_gp
.attr
,
1933 &target_core_attr_dev_lba_map
.attr
,
1937 static void target_core_dev_release(struct config_item
*item
)
1939 struct config_group
*dev_cg
= to_config_group(item
);
1940 struct se_device
*dev
=
1941 container_of(dev_cg
, struct se_device
, dev_group
);
1943 kfree(dev_cg
->default_groups
);
1944 target_free_device(dev
);
1947 static ssize_t
target_core_dev_show(struct config_item
*item
,
1948 struct configfs_attribute
*attr
,
1951 struct config_group
*dev_cg
= to_config_group(item
);
1952 struct se_device
*dev
=
1953 container_of(dev_cg
, struct se_device
, dev_group
);
1954 struct target_core_configfs_attribute
*tc_attr
= container_of(
1955 attr
, struct target_core_configfs_attribute
, attr
);
1960 return tc_attr
->show(dev
, page
);
1963 static ssize_t
target_core_dev_store(struct config_item
*item
,
1964 struct configfs_attribute
*attr
,
1965 const char *page
, size_t count
)
1967 struct config_group
*dev_cg
= to_config_group(item
);
1968 struct se_device
*dev
=
1969 container_of(dev_cg
, struct se_device
, dev_group
);
1970 struct target_core_configfs_attribute
*tc_attr
= container_of(
1971 attr
, struct target_core_configfs_attribute
, attr
);
1973 if (!tc_attr
->store
)
1976 return tc_attr
->store(dev
, page
, count
);
1979 static struct configfs_item_operations target_core_dev_item_ops
= {
1980 .release
= target_core_dev_release
,
1981 .show_attribute
= target_core_dev_show
,
1982 .store_attribute
= target_core_dev_store
,
1985 static struct config_item_type target_core_dev_cit
= {
1986 .ct_item_ops
= &target_core_dev_item_ops
,
1987 .ct_attrs
= lio_core_dev_attrs
,
1988 .ct_owner
= THIS_MODULE
,
1991 /* End functions for struct config_item_type target_core_dev_cit */
1993 /* Start functions for struct config_item_type target_core_alua_lu_gp_cit */
1995 CONFIGFS_EATTR_STRUCT(target_core_alua_lu_gp
, t10_alua_lu_gp
);
1996 #define SE_DEV_ALUA_LU_ATTR(_name, _mode) \
1997 static struct target_core_alua_lu_gp_attribute \
1998 target_core_alua_lu_gp_##_name = \
1999 __CONFIGFS_EATTR(_name, _mode, \
2000 target_core_alua_lu_gp_show_attr_##_name, \
2001 target_core_alua_lu_gp_store_attr_##_name);
2003 #define SE_DEV_ALUA_LU_ATTR_RO(_name) \
2004 static struct target_core_alua_lu_gp_attribute \
2005 target_core_alua_lu_gp_##_name = \
2006 __CONFIGFS_EATTR_RO(_name, \
2007 target_core_alua_lu_gp_show_attr_##_name);
2012 static ssize_t
target_core_alua_lu_gp_show_attr_lu_gp_id(
2013 struct t10_alua_lu_gp
*lu_gp
,
2016 if (!lu_gp
->lu_gp_valid_id
)
2019 return sprintf(page
, "%hu\n", lu_gp
->lu_gp_id
);
2022 static ssize_t
target_core_alua_lu_gp_store_attr_lu_gp_id(
2023 struct t10_alua_lu_gp
*lu_gp
,
2027 struct config_group
*alua_lu_gp_cg
= &lu_gp
->lu_gp_group
;
2028 unsigned long lu_gp_id
;
2031 ret
= kstrtoul(page
, 0, &lu_gp_id
);
2033 pr_err("kstrtoul() returned %d for"
2034 " lu_gp_id\n", ret
);
2037 if (lu_gp_id
> 0x0000ffff) {
2038 pr_err("ALUA lu_gp_id: %lu exceeds maximum:"
2039 " 0x0000ffff\n", lu_gp_id
);
2043 ret
= core_alua_set_lu_gp_id(lu_gp
, (u16
)lu_gp_id
);
2047 pr_debug("Target_Core_ConfigFS: Set ALUA Logical Unit"
2048 " Group: core/alua/lu_gps/%s to ID: %hu\n",
2049 config_item_name(&alua_lu_gp_cg
->cg_item
),
2055 SE_DEV_ALUA_LU_ATTR(lu_gp_id
, S_IRUGO
| S_IWUSR
);
2060 static ssize_t
target_core_alua_lu_gp_show_attr_members(
2061 struct t10_alua_lu_gp
*lu_gp
,
2064 struct se_device
*dev
;
2066 struct t10_alua_lu_gp_member
*lu_gp_mem
;
2067 ssize_t len
= 0, cur_len
;
2068 unsigned char buf
[LU_GROUP_NAME_BUF
];
2070 memset(buf
, 0, LU_GROUP_NAME_BUF
);
2072 spin_lock(&lu_gp
->lu_gp_lock
);
2073 list_for_each_entry(lu_gp_mem
, &lu_gp
->lu_gp_mem_list
, lu_gp_mem_list
) {
2074 dev
= lu_gp_mem
->lu_gp_mem_dev
;
2077 cur_len
= snprintf(buf
, LU_GROUP_NAME_BUF
, "%s/%s\n",
2078 config_item_name(&hba
->hba_group
.cg_item
),
2079 config_item_name(&dev
->dev_group
.cg_item
));
2080 cur_len
++; /* Extra byte for NULL terminator */
2082 if ((cur_len
+ len
) > PAGE_SIZE
) {
2083 pr_warn("Ran out of lu_gp_show_attr"
2084 "_members buffer\n");
2087 memcpy(page
+len
, buf
, cur_len
);
2090 spin_unlock(&lu_gp
->lu_gp_lock
);
2095 SE_DEV_ALUA_LU_ATTR_RO(members
);
2097 CONFIGFS_EATTR_OPS(target_core_alua_lu_gp
, t10_alua_lu_gp
, lu_gp_group
);
2099 static struct configfs_attribute
*target_core_alua_lu_gp_attrs
[] = {
2100 &target_core_alua_lu_gp_lu_gp_id
.attr
,
2101 &target_core_alua_lu_gp_members
.attr
,
2105 static void target_core_alua_lu_gp_release(struct config_item
*item
)
2107 struct t10_alua_lu_gp
*lu_gp
= container_of(to_config_group(item
),
2108 struct t10_alua_lu_gp
, lu_gp_group
);
2110 core_alua_free_lu_gp(lu_gp
);
2113 static struct configfs_item_operations target_core_alua_lu_gp_ops
= {
2114 .release
= target_core_alua_lu_gp_release
,
2115 .show_attribute
= target_core_alua_lu_gp_attr_show
,
2116 .store_attribute
= target_core_alua_lu_gp_attr_store
,
2119 static struct config_item_type target_core_alua_lu_gp_cit
= {
2120 .ct_item_ops
= &target_core_alua_lu_gp_ops
,
2121 .ct_attrs
= target_core_alua_lu_gp_attrs
,
2122 .ct_owner
= THIS_MODULE
,
2125 /* End functions for struct config_item_type target_core_alua_lu_gp_cit */
2127 /* Start functions for struct config_item_type target_core_alua_lu_gps_cit */
2129 static struct config_group
*target_core_alua_create_lu_gp(
2130 struct config_group
*group
,
2133 struct t10_alua_lu_gp
*lu_gp
;
2134 struct config_group
*alua_lu_gp_cg
= NULL
;
2135 struct config_item
*alua_lu_gp_ci
= NULL
;
2137 lu_gp
= core_alua_allocate_lu_gp(name
, 0);
2141 alua_lu_gp_cg
= &lu_gp
->lu_gp_group
;
2142 alua_lu_gp_ci
= &alua_lu_gp_cg
->cg_item
;
2144 config_group_init_type_name(alua_lu_gp_cg
, name
,
2145 &target_core_alua_lu_gp_cit
);
2147 pr_debug("Target_Core_ConfigFS: Allocated ALUA Logical Unit"
2148 " Group: core/alua/lu_gps/%s\n",
2149 config_item_name(alua_lu_gp_ci
));
2151 return alua_lu_gp_cg
;
2155 static void target_core_alua_drop_lu_gp(
2156 struct config_group
*group
,
2157 struct config_item
*item
)
2159 struct t10_alua_lu_gp
*lu_gp
= container_of(to_config_group(item
),
2160 struct t10_alua_lu_gp
, lu_gp_group
);
2162 pr_debug("Target_Core_ConfigFS: Releasing ALUA Logical Unit"
2163 " Group: core/alua/lu_gps/%s, ID: %hu\n",
2164 config_item_name(item
), lu_gp
->lu_gp_id
);
2166 * core_alua_free_lu_gp() is called from target_core_alua_lu_gp_ops->release()
2167 * -> target_core_alua_lu_gp_release()
2169 config_item_put(item
);
2172 static struct configfs_group_operations target_core_alua_lu_gps_group_ops
= {
2173 .make_group
= &target_core_alua_create_lu_gp
,
2174 .drop_item
= &target_core_alua_drop_lu_gp
,
2177 static struct config_item_type target_core_alua_lu_gps_cit
= {
2178 .ct_item_ops
= NULL
,
2179 .ct_group_ops
= &target_core_alua_lu_gps_group_ops
,
2180 .ct_owner
= THIS_MODULE
,
2183 /* End functions for struct config_item_type target_core_alua_lu_gps_cit */
2185 /* Start functions for struct config_item_type target_core_alua_tg_pt_gp_cit */
2187 CONFIGFS_EATTR_STRUCT(target_core_alua_tg_pt_gp
, t10_alua_tg_pt_gp
);
2188 #define SE_DEV_ALUA_TG_PT_ATTR(_name, _mode) \
2189 static struct target_core_alua_tg_pt_gp_attribute \
2190 target_core_alua_tg_pt_gp_##_name = \
2191 __CONFIGFS_EATTR(_name, _mode, \
2192 target_core_alua_tg_pt_gp_show_attr_##_name, \
2193 target_core_alua_tg_pt_gp_store_attr_##_name);
2195 #define SE_DEV_ALUA_TG_PT_ATTR_RO(_name) \
2196 static struct target_core_alua_tg_pt_gp_attribute \
2197 target_core_alua_tg_pt_gp_##_name = \
2198 __CONFIGFS_EATTR_RO(_name, \
2199 target_core_alua_tg_pt_gp_show_attr_##_name);
2204 static ssize_t
target_core_alua_tg_pt_gp_show_attr_alua_access_state(
2205 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2208 return sprintf(page
, "%d\n",
2209 atomic_read(&tg_pt_gp
->tg_pt_gp_alua_access_state
));
2212 static ssize_t
target_core_alua_tg_pt_gp_store_attr_alua_access_state(
2213 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2217 struct se_device
*dev
= tg_pt_gp
->tg_pt_gp_dev
;
2221 if (!tg_pt_gp
->tg_pt_gp_valid_id
) {
2222 pr_err("Unable to do implicit ALUA on non valid"
2223 " tg_pt_gp ID: %hu\n", tg_pt_gp
->tg_pt_gp_valid_id
);
2227 ret
= kstrtoul(page
, 0, &tmp
);
2229 pr_err("Unable to extract new ALUA access state from"
2233 new_state
= (int)tmp
;
2235 if (!(tg_pt_gp
->tg_pt_gp_alua_access_type
& TPGS_IMPLICIT_ALUA
)) {
2236 pr_err("Unable to process implicit configfs ALUA"
2237 " transition while TPGS_IMPLICIT_ALUA is disabled\n");
2240 if (tg_pt_gp
->tg_pt_gp_alua_access_type
& TPGS_EXPLICIT_ALUA
&&
2241 new_state
== ALUA_ACCESS_STATE_LBA_DEPENDENT
) {
2242 /* LBA DEPENDENT is only allowed with implicit ALUA */
2243 pr_err("Unable to process implicit configfs ALUA transition"
2244 " while explicit ALUA management is enabled\n");
2248 ret
= core_alua_do_port_transition(tg_pt_gp
, dev
,
2249 NULL
, NULL
, new_state
, 0);
2250 return (!ret
) ? count
: -EINVAL
;
2253 SE_DEV_ALUA_TG_PT_ATTR(alua_access_state
, S_IRUGO
| S_IWUSR
);
2256 * alua_access_status
2258 static ssize_t
target_core_alua_tg_pt_gp_show_attr_alua_access_status(
2259 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2262 return sprintf(page
, "%s\n",
2263 core_alua_dump_status(tg_pt_gp
->tg_pt_gp_alua_access_status
));
2266 static ssize_t
target_core_alua_tg_pt_gp_store_attr_alua_access_status(
2267 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2272 int new_status
, ret
;
2274 if (!tg_pt_gp
->tg_pt_gp_valid_id
) {
2275 pr_err("Unable to do set ALUA access status on non"
2276 " valid tg_pt_gp ID: %hu\n",
2277 tg_pt_gp
->tg_pt_gp_valid_id
);
2281 ret
= kstrtoul(page
, 0, &tmp
);
2283 pr_err("Unable to extract new ALUA access status"
2284 " from %s\n", page
);
2287 new_status
= (int)tmp
;
2289 if ((new_status
!= ALUA_STATUS_NONE
) &&
2290 (new_status
!= ALUA_STATUS_ALTERED_BY_EXPLICIT_STPG
) &&
2291 (new_status
!= ALUA_STATUS_ALTERED_BY_IMPLICIT_ALUA
)) {
2292 pr_err("Illegal ALUA access status: 0x%02x\n",
2297 tg_pt_gp
->tg_pt_gp_alua_access_status
= new_status
;
2301 SE_DEV_ALUA_TG_PT_ATTR(alua_access_status
, S_IRUGO
| S_IWUSR
);
2306 static ssize_t
target_core_alua_tg_pt_gp_show_attr_alua_access_type(
2307 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2310 return core_alua_show_access_type(tg_pt_gp
, page
);
2313 static ssize_t
target_core_alua_tg_pt_gp_store_attr_alua_access_type(
2314 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2318 return core_alua_store_access_type(tg_pt_gp
, page
, count
);
2321 SE_DEV_ALUA_TG_PT_ATTR(alua_access_type
, S_IRUGO
| S_IWUSR
);
2324 * alua_supported_states
2327 #define SE_DEV_ALUA_SUPPORT_STATE_SHOW(_name, _var, _bit) \
2328 static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_support_##_name( \
2329 struct t10_alua_tg_pt_gp *t, char *p) \
2331 return sprintf(p, "%d\n", !!(t->_var & _bit)); \
2334 #define SE_DEV_ALUA_SUPPORT_STATE_STORE(_name, _var, _bit) \
2335 static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_support_##_name(\
2336 struct t10_alua_tg_pt_gp *t, const char *p, size_t c) \
2338 unsigned long tmp; \
2341 if (!t->tg_pt_gp_valid_id) { \
2342 pr_err("Unable to do set ##_name ALUA state on non" \
2343 " valid tg_pt_gp ID: %hu\n", \
2344 t->tg_pt_gp_valid_id); \
2348 ret = kstrtoul(p, 0, &tmp); \
2350 pr_err("Invalid value '%s', must be '0' or '1'\n", p); \
2354 pr_err("Invalid value '%ld', must be '0' or '1'\n", tmp); \
2365 SE_DEV_ALUA_SUPPORT_STATE_SHOW(transitioning
,
2366 tg_pt_gp_alua_supported_states
, ALUA_T_SUP
);
2367 SE_DEV_ALUA_SUPPORT_STATE_STORE(transitioning
,
2368 tg_pt_gp_alua_supported_states
, ALUA_T_SUP
);
2369 SE_DEV_ALUA_TG_PT_ATTR(alua_support_transitioning
, S_IRUGO
| S_IWUSR
);
2371 SE_DEV_ALUA_SUPPORT_STATE_SHOW(offline
,
2372 tg_pt_gp_alua_supported_states
, ALUA_O_SUP
);
2373 SE_DEV_ALUA_SUPPORT_STATE_STORE(offline
,
2374 tg_pt_gp_alua_supported_states
, ALUA_O_SUP
);
2375 SE_DEV_ALUA_TG_PT_ATTR(alua_support_offline
, S_IRUGO
| S_IWUSR
);
2377 SE_DEV_ALUA_SUPPORT_STATE_SHOW(lba_dependent
,
2378 tg_pt_gp_alua_supported_states
, ALUA_LBD_SUP
);
2379 SE_DEV_ALUA_SUPPORT_STATE_STORE(lba_dependent
,
2380 tg_pt_gp_alua_supported_states
, ALUA_LBD_SUP
);
2381 SE_DEV_ALUA_TG_PT_ATTR(alua_support_lba_dependent
, S_IRUGO
);
2383 SE_DEV_ALUA_SUPPORT_STATE_SHOW(unavailable
,
2384 tg_pt_gp_alua_supported_states
, ALUA_U_SUP
);
2385 SE_DEV_ALUA_SUPPORT_STATE_STORE(unavailable
,
2386 tg_pt_gp_alua_supported_states
, ALUA_U_SUP
);
2387 SE_DEV_ALUA_TG_PT_ATTR(alua_support_unavailable
, S_IRUGO
| S_IWUSR
);
2389 SE_DEV_ALUA_SUPPORT_STATE_SHOW(standby
,
2390 tg_pt_gp_alua_supported_states
, ALUA_S_SUP
);
2391 SE_DEV_ALUA_SUPPORT_STATE_STORE(standby
,
2392 tg_pt_gp_alua_supported_states
, ALUA_S_SUP
);
2393 SE_DEV_ALUA_TG_PT_ATTR(alua_support_standby
, S_IRUGO
| S_IWUSR
);
2395 SE_DEV_ALUA_SUPPORT_STATE_SHOW(active_optimized
,
2396 tg_pt_gp_alua_supported_states
, ALUA_AO_SUP
);
2397 SE_DEV_ALUA_SUPPORT_STATE_STORE(active_optimized
,
2398 tg_pt_gp_alua_supported_states
, ALUA_AO_SUP
);
2399 SE_DEV_ALUA_TG_PT_ATTR(alua_support_active_optimized
, S_IRUGO
| S_IWUSR
);
2401 SE_DEV_ALUA_SUPPORT_STATE_SHOW(active_nonoptimized
,
2402 tg_pt_gp_alua_supported_states
, ALUA_AN_SUP
);
2403 SE_DEV_ALUA_SUPPORT_STATE_STORE(active_nonoptimized
,
2404 tg_pt_gp_alua_supported_states
, ALUA_AN_SUP
);
2405 SE_DEV_ALUA_TG_PT_ATTR(alua_support_active_nonoptimized
, S_IRUGO
| S_IWUSR
);
2408 * alua_write_metadata
2410 static ssize_t
target_core_alua_tg_pt_gp_show_attr_alua_write_metadata(
2411 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2414 return sprintf(page
, "%d\n", tg_pt_gp
->tg_pt_gp_write_metadata
);
2417 static ssize_t
target_core_alua_tg_pt_gp_store_attr_alua_write_metadata(
2418 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2425 ret
= kstrtoul(page
, 0, &tmp
);
2427 pr_err("Unable to extract alua_write_metadata\n");
2431 if ((tmp
!= 0) && (tmp
!= 1)) {
2432 pr_err("Illegal value for alua_write_metadata:"
2436 tg_pt_gp
->tg_pt_gp_write_metadata
= (int)tmp
;
2441 SE_DEV_ALUA_TG_PT_ATTR(alua_write_metadata
, S_IRUGO
| S_IWUSR
);
2448 static ssize_t
target_core_alua_tg_pt_gp_show_attr_nonop_delay_msecs(
2449 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2452 return core_alua_show_nonop_delay_msecs(tg_pt_gp
, page
);
2456 static ssize_t
target_core_alua_tg_pt_gp_store_attr_nonop_delay_msecs(
2457 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2461 return core_alua_store_nonop_delay_msecs(tg_pt_gp
, page
, count
);
2464 SE_DEV_ALUA_TG_PT_ATTR(nonop_delay_msecs
, S_IRUGO
| S_IWUSR
);
2469 static ssize_t
target_core_alua_tg_pt_gp_show_attr_trans_delay_msecs(
2470 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2473 return core_alua_show_trans_delay_msecs(tg_pt_gp
, page
);
2476 static ssize_t
target_core_alua_tg_pt_gp_store_attr_trans_delay_msecs(
2477 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2481 return core_alua_store_trans_delay_msecs(tg_pt_gp
, page
, count
);
2484 SE_DEV_ALUA_TG_PT_ATTR(trans_delay_msecs
, S_IRUGO
| S_IWUSR
);
2487 * implicit_trans_secs
2489 static ssize_t
target_core_alua_tg_pt_gp_show_attr_implicit_trans_secs(
2490 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2493 return core_alua_show_implicit_trans_secs(tg_pt_gp
, page
);
2496 static ssize_t
target_core_alua_tg_pt_gp_store_attr_implicit_trans_secs(
2497 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2501 return core_alua_store_implicit_trans_secs(tg_pt_gp
, page
, count
);
2504 SE_DEV_ALUA_TG_PT_ATTR(implicit_trans_secs
, S_IRUGO
| S_IWUSR
);
2510 static ssize_t
target_core_alua_tg_pt_gp_show_attr_preferred(
2511 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2514 return core_alua_show_preferred_bit(tg_pt_gp
, page
);
2517 static ssize_t
target_core_alua_tg_pt_gp_store_attr_preferred(
2518 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2522 return core_alua_store_preferred_bit(tg_pt_gp
, page
, count
);
2525 SE_DEV_ALUA_TG_PT_ATTR(preferred
, S_IRUGO
| S_IWUSR
);
2530 static ssize_t
target_core_alua_tg_pt_gp_show_attr_tg_pt_gp_id(
2531 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2534 if (!tg_pt_gp
->tg_pt_gp_valid_id
)
2537 return sprintf(page
, "%hu\n", tg_pt_gp
->tg_pt_gp_id
);
2540 static ssize_t
target_core_alua_tg_pt_gp_store_attr_tg_pt_gp_id(
2541 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2545 struct config_group
*alua_tg_pt_gp_cg
= &tg_pt_gp
->tg_pt_gp_group
;
2546 unsigned long tg_pt_gp_id
;
2549 ret
= kstrtoul(page
, 0, &tg_pt_gp_id
);
2551 pr_err("kstrtoul() returned %d for"
2552 " tg_pt_gp_id\n", ret
);
2555 if (tg_pt_gp_id
> 0x0000ffff) {
2556 pr_err("ALUA tg_pt_gp_id: %lu exceeds maximum:"
2557 " 0x0000ffff\n", tg_pt_gp_id
);
2561 ret
= core_alua_set_tg_pt_gp_id(tg_pt_gp
, (u16
)tg_pt_gp_id
);
2565 pr_debug("Target_Core_ConfigFS: Set ALUA Target Port Group: "
2566 "core/alua/tg_pt_gps/%s to ID: %hu\n",
2567 config_item_name(&alua_tg_pt_gp_cg
->cg_item
),
2568 tg_pt_gp
->tg_pt_gp_id
);
2573 SE_DEV_ALUA_TG_PT_ATTR(tg_pt_gp_id
, S_IRUGO
| S_IWUSR
);
2578 static ssize_t
target_core_alua_tg_pt_gp_show_attr_members(
2579 struct t10_alua_tg_pt_gp
*tg_pt_gp
,
2582 struct se_port
*port
;
2583 struct se_portal_group
*tpg
;
2585 struct t10_alua_tg_pt_gp_member
*tg_pt_gp_mem
;
2586 ssize_t len
= 0, cur_len
;
2587 unsigned char buf
[TG_PT_GROUP_NAME_BUF
];
2589 memset(buf
, 0, TG_PT_GROUP_NAME_BUF
);
2591 spin_lock(&tg_pt_gp
->tg_pt_gp_lock
);
2592 list_for_each_entry(tg_pt_gp_mem
, &tg_pt_gp
->tg_pt_gp_mem_list
,
2593 tg_pt_gp_mem_list
) {
2594 port
= tg_pt_gp_mem
->tg_pt
;
2595 tpg
= port
->sep_tpg
;
2596 lun
= port
->sep_lun
;
2598 cur_len
= snprintf(buf
, TG_PT_GROUP_NAME_BUF
, "%s/%s/tpgt_%hu"
2599 "/%s\n", tpg
->se_tpg_tfo
->get_fabric_name(),
2600 tpg
->se_tpg_tfo
->tpg_get_wwn(tpg
),
2601 tpg
->se_tpg_tfo
->tpg_get_tag(tpg
),
2602 config_item_name(&lun
->lun_group
.cg_item
));
2603 cur_len
++; /* Extra byte for NULL terminator */
2605 if ((cur_len
+ len
) > PAGE_SIZE
) {
2606 pr_warn("Ran out of lu_gp_show_attr"
2607 "_members buffer\n");
2610 memcpy(page
+len
, buf
, cur_len
);
2613 spin_unlock(&tg_pt_gp
->tg_pt_gp_lock
);
2618 SE_DEV_ALUA_TG_PT_ATTR_RO(members
);
2620 CONFIGFS_EATTR_OPS(target_core_alua_tg_pt_gp
, t10_alua_tg_pt_gp
,
2623 static struct configfs_attribute
*target_core_alua_tg_pt_gp_attrs
[] = {
2624 &target_core_alua_tg_pt_gp_alua_access_state
.attr
,
2625 &target_core_alua_tg_pt_gp_alua_access_status
.attr
,
2626 &target_core_alua_tg_pt_gp_alua_access_type
.attr
,
2627 &target_core_alua_tg_pt_gp_alua_support_transitioning
.attr
,
2628 &target_core_alua_tg_pt_gp_alua_support_offline
.attr
,
2629 &target_core_alua_tg_pt_gp_alua_support_lba_dependent
.attr
,
2630 &target_core_alua_tg_pt_gp_alua_support_unavailable
.attr
,
2631 &target_core_alua_tg_pt_gp_alua_support_standby
.attr
,
2632 &target_core_alua_tg_pt_gp_alua_support_active_nonoptimized
.attr
,
2633 &target_core_alua_tg_pt_gp_alua_support_active_optimized
.attr
,
2634 &target_core_alua_tg_pt_gp_alua_write_metadata
.attr
,
2635 &target_core_alua_tg_pt_gp_nonop_delay_msecs
.attr
,
2636 &target_core_alua_tg_pt_gp_trans_delay_msecs
.attr
,
2637 &target_core_alua_tg_pt_gp_implicit_trans_secs
.attr
,
2638 &target_core_alua_tg_pt_gp_preferred
.attr
,
2639 &target_core_alua_tg_pt_gp_tg_pt_gp_id
.attr
,
2640 &target_core_alua_tg_pt_gp_members
.attr
,
2644 static void target_core_alua_tg_pt_gp_release(struct config_item
*item
)
2646 struct t10_alua_tg_pt_gp
*tg_pt_gp
= container_of(to_config_group(item
),
2647 struct t10_alua_tg_pt_gp
, tg_pt_gp_group
);
2649 core_alua_free_tg_pt_gp(tg_pt_gp
);
2652 static struct configfs_item_operations target_core_alua_tg_pt_gp_ops
= {
2653 .release
= target_core_alua_tg_pt_gp_release
,
2654 .show_attribute
= target_core_alua_tg_pt_gp_attr_show
,
2655 .store_attribute
= target_core_alua_tg_pt_gp_attr_store
,
2658 static struct config_item_type target_core_alua_tg_pt_gp_cit
= {
2659 .ct_item_ops
= &target_core_alua_tg_pt_gp_ops
,
2660 .ct_attrs
= target_core_alua_tg_pt_gp_attrs
,
2661 .ct_owner
= THIS_MODULE
,
2664 /* End functions for struct config_item_type target_core_alua_tg_pt_gp_cit */
2666 /* Start functions for struct config_item_type target_core_alua_tg_pt_gps_cit */
2668 static struct config_group
*target_core_alua_create_tg_pt_gp(
2669 struct config_group
*group
,
2672 struct t10_alua
*alua
= container_of(group
, struct t10_alua
,
2673 alua_tg_pt_gps_group
);
2674 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
2675 struct config_group
*alua_tg_pt_gp_cg
= NULL
;
2676 struct config_item
*alua_tg_pt_gp_ci
= NULL
;
2678 tg_pt_gp
= core_alua_allocate_tg_pt_gp(alua
->t10_dev
, name
, 0);
2682 alua_tg_pt_gp_cg
= &tg_pt_gp
->tg_pt_gp_group
;
2683 alua_tg_pt_gp_ci
= &alua_tg_pt_gp_cg
->cg_item
;
2685 config_group_init_type_name(alua_tg_pt_gp_cg
, name
,
2686 &target_core_alua_tg_pt_gp_cit
);
2688 pr_debug("Target_Core_ConfigFS: Allocated ALUA Target Port"
2689 " Group: alua/tg_pt_gps/%s\n",
2690 config_item_name(alua_tg_pt_gp_ci
));
2692 return alua_tg_pt_gp_cg
;
2695 static void target_core_alua_drop_tg_pt_gp(
2696 struct config_group
*group
,
2697 struct config_item
*item
)
2699 struct t10_alua_tg_pt_gp
*tg_pt_gp
= container_of(to_config_group(item
),
2700 struct t10_alua_tg_pt_gp
, tg_pt_gp_group
);
2702 pr_debug("Target_Core_ConfigFS: Releasing ALUA Target Port"
2703 " Group: alua/tg_pt_gps/%s, ID: %hu\n",
2704 config_item_name(item
), tg_pt_gp
->tg_pt_gp_id
);
2706 * core_alua_free_tg_pt_gp() is called from target_core_alua_tg_pt_gp_ops->release()
2707 * -> target_core_alua_tg_pt_gp_release().
2709 config_item_put(item
);
2712 static struct configfs_group_operations target_core_alua_tg_pt_gps_group_ops
= {
2713 .make_group
= &target_core_alua_create_tg_pt_gp
,
2714 .drop_item
= &target_core_alua_drop_tg_pt_gp
,
2717 static struct config_item_type target_core_alua_tg_pt_gps_cit
= {
2718 .ct_group_ops
= &target_core_alua_tg_pt_gps_group_ops
,
2719 .ct_owner
= THIS_MODULE
,
2722 /* End functions for struct config_item_type target_core_alua_tg_pt_gps_cit */
2724 /* Start functions for struct config_item_type target_core_alua_cit */
2727 * target_core_alua_cit is a ConfigFS group that lives under
2728 * /sys/kernel/config/target/core/alua. There are default groups
2729 * core/alua/lu_gps and core/alua/tg_pt_gps that are attached to
2730 * target_core_alua_cit in target_core_init_configfs() below.
2732 static struct config_item_type target_core_alua_cit
= {
2733 .ct_item_ops
= NULL
,
2735 .ct_owner
= THIS_MODULE
,
2738 /* End functions for struct config_item_type target_core_alua_cit */
2740 /* Start functions for struct config_item_type target_core_stat_cit */
2742 static struct config_group
*target_core_stat_mkdir(
2743 struct config_group
*group
,
2746 return ERR_PTR(-ENOSYS
);
2749 static void target_core_stat_rmdir(
2750 struct config_group
*group
,
2751 struct config_item
*item
)
2756 static struct configfs_group_operations target_core_stat_group_ops
= {
2757 .make_group
= &target_core_stat_mkdir
,
2758 .drop_item
= &target_core_stat_rmdir
,
2761 static struct config_item_type target_core_stat_cit
= {
2762 .ct_group_ops
= &target_core_stat_group_ops
,
2763 .ct_owner
= THIS_MODULE
,
2766 /* End functions for struct config_item_type target_core_stat_cit */
2768 /* Start functions for struct config_item_type target_core_hba_cit */
2770 static struct config_group
*target_core_make_subdev(
2771 struct config_group
*group
,
2774 struct t10_alua_tg_pt_gp
*tg_pt_gp
;
2775 struct se_subsystem_api
*t
;
2776 struct config_item
*hba_ci
= &group
->cg_item
;
2777 struct se_hba
*hba
= item_to_hba(hba_ci
);
2778 struct se_device
*dev
;
2779 struct config_group
*dev_cg
= NULL
, *tg_pt_gp_cg
= NULL
;
2780 struct config_group
*dev_stat_grp
= NULL
;
2781 int errno
= -ENOMEM
, ret
;
2783 ret
= mutex_lock_interruptible(&hba
->hba_access_mutex
);
2785 return ERR_PTR(ret
);
2787 * Locate the struct se_subsystem_api from parent's struct se_hba.
2791 dev
= target_alloc_device(hba
, name
);
2795 dev_cg
= &dev
->dev_group
;
2797 dev_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 6,
2799 if (!dev_cg
->default_groups
)
2800 goto out_free_device
;
2802 config_group_init_type_name(dev_cg
, name
, &target_core_dev_cit
);
2803 config_group_init_type_name(&dev
->dev_attrib
.da_group
, "attrib",
2804 &target_core_dev_attrib_cit
);
2805 config_group_init_type_name(&dev
->dev_pr_group
, "pr",
2806 &target_core_dev_pr_cit
);
2807 config_group_init_type_name(&dev
->t10_wwn
.t10_wwn_group
, "wwn",
2808 &target_core_dev_wwn_cit
);
2809 config_group_init_type_name(&dev
->t10_alua
.alua_tg_pt_gps_group
,
2810 "alua", &target_core_alua_tg_pt_gps_cit
);
2811 config_group_init_type_name(&dev
->dev_stat_grps
.stat_group
,
2812 "statistics", &target_core_stat_cit
);
2814 dev_cg
->default_groups
[0] = &dev
->dev_attrib
.da_group
;
2815 dev_cg
->default_groups
[1] = &dev
->dev_pr_group
;
2816 dev_cg
->default_groups
[2] = &dev
->t10_wwn
.t10_wwn_group
;
2817 dev_cg
->default_groups
[3] = &dev
->t10_alua
.alua_tg_pt_gps_group
;
2818 dev_cg
->default_groups
[4] = &dev
->dev_stat_grps
.stat_group
;
2819 dev_cg
->default_groups
[5] = NULL
;
2821 * Add core/$HBA/$DEV/alua/default_tg_pt_gp
2823 tg_pt_gp
= core_alua_allocate_tg_pt_gp(dev
, "default_tg_pt_gp", 1);
2825 goto out_free_dev_cg_default_groups
;
2826 dev
->t10_alua
.default_tg_pt_gp
= tg_pt_gp
;
2828 tg_pt_gp_cg
= &dev
->t10_alua
.alua_tg_pt_gps_group
;
2829 tg_pt_gp_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
2831 if (!tg_pt_gp_cg
->default_groups
) {
2832 pr_err("Unable to allocate tg_pt_gp_cg->"
2833 "default_groups\n");
2834 goto out_free_tg_pt_gp
;
2837 config_group_init_type_name(&tg_pt_gp
->tg_pt_gp_group
,
2838 "default_tg_pt_gp", &target_core_alua_tg_pt_gp_cit
);
2839 tg_pt_gp_cg
->default_groups
[0] = &tg_pt_gp
->tg_pt_gp_group
;
2840 tg_pt_gp_cg
->default_groups
[1] = NULL
;
2842 * Add core/$HBA/$DEV/statistics/ default groups
2844 dev_stat_grp
= &dev
->dev_stat_grps
.stat_group
;
2845 dev_stat_grp
->default_groups
= kmalloc(sizeof(struct config_group
*) * 4,
2847 if (!dev_stat_grp
->default_groups
) {
2848 pr_err("Unable to allocate dev_stat_grp->default_groups\n");
2849 goto out_free_tg_pt_gp_cg_default_groups
;
2851 target_stat_setup_dev_default_groups(dev
);
2853 mutex_unlock(&hba
->hba_access_mutex
);
2856 out_free_tg_pt_gp_cg_default_groups
:
2857 kfree(tg_pt_gp_cg
->default_groups
);
2859 core_alua_free_tg_pt_gp(tg_pt_gp
);
2860 out_free_dev_cg_default_groups
:
2861 kfree(dev_cg
->default_groups
);
2863 target_free_device(dev
);
2865 mutex_unlock(&hba
->hba_access_mutex
);
2866 return ERR_PTR(errno
);
2869 static void target_core_drop_subdev(
2870 struct config_group
*group
,
2871 struct config_item
*item
)
2873 struct config_group
*dev_cg
= to_config_group(item
);
2874 struct se_device
*dev
=
2875 container_of(dev_cg
, struct se_device
, dev_group
);
2877 struct config_item
*df_item
;
2878 struct config_group
*tg_pt_gp_cg
, *dev_stat_grp
;
2881 hba
= item_to_hba(&dev
->se_hba
->hba_group
.cg_item
);
2883 mutex_lock(&hba
->hba_access_mutex
);
2885 dev_stat_grp
= &dev
->dev_stat_grps
.stat_group
;
2886 for (i
= 0; dev_stat_grp
->default_groups
[i
]; i
++) {
2887 df_item
= &dev_stat_grp
->default_groups
[i
]->cg_item
;
2888 dev_stat_grp
->default_groups
[i
] = NULL
;
2889 config_item_put(df_item
);
2891 kfree(dev_stat_grp
->default_groups
);
2893 tg_pt_gp_cg
= &dev
->t10_alua
.alua_tg_pt_gps_group
;
2894 for (i
= 0; tg_pt_gp_cg
->default_groups
[i
]; i
++) {
2895 df_item
= &tg_pt_gp_cg
->default_groups
[i
]->cg_item
;
2896 tg_pt_gp_cg
->default_groups
[i
] = NULL
;
2897 config_item_put(df_item
);
2899 kfree(tg_pt_gp_cg
->default_groups
);
2901 * core_alua_free_tg_pt_gp() is called from ->default_tg_pt_gp
2902 * directly from target_core_alua_tg_pt_gp_release().
2904 dev
->t10_alua
.default_tg_pt_gp
= NULL
;
2906 for (i
= 0; dev_cg
->default_groups
[i
]; i
++) {
2907 df_item
= &dev_cg
->default_groups
[i
]->cg_item
;
2908 dev_cg
->default_groups
[i
] = NULL
;
2909 config_item_put(df_item
);
2912 * se_dev is released from target_core_dev_item_ops->release()
2914 config_item_put(item
);
2915 mutex_unlock(&hba
->hba_access_mutex
);
2918 static struct configfs_group_operations target_core_hba_group_ops
= {
2919 .make_group
= target_core_make_subdev
,
2920 .drop_item
= target_core_drop_subdev
,
2923 CONFIGFS_EATTR_STRUCT(target_core_hba
, se_hba
);
2924 #define SE_HBA_ATTR(_name, _mode) \
2925 static struct target_core_hba_attribute \
2926 target_core_hba_##_name = \
2927 __CONFIGFS_EATTR(_name, _mode, \
2928 target_core_hba_show_attr_##_name, \
2929 target_core_hba_store_attr_##_name);
2931 #define SE_HBA_ATTR_RO(_name) \
2932 static struct target_core_hba_attribute \
2933 target_core_hba_##_name = \
2934 __CONFIGFS_EATTR_RO(_name, \
2935 target_core_hba_show_attr_##_name);
2937 static ssize_t
target_core_hba_show_attr_hba_info(
2941 return sprintf(page
, "HBA Index: %d plugin: %s version: %s\n",
2942 hba
->hba_id
, hba
->transport
->name
,
2943 TARGET_CORE_CONFIGFS_VERSION
);
2946 SE_HBA_ATTR_RO(hba_info
);
2948 static ssize_t
target_core_hba_show_attr_hba_mode(struct se_hba
*hba
,
2953 if (hba
->hba_flags
& HBA_FLAGS_PSCSI_MODE
)
2956 return sprintf(page
, "%d\n", hba_mode
);
2959 static ssize_t
target_core_hba_store_attr_hba_mode(struct se_hba
*hba
,
2960 const char *page
, size_t count
)
2962 struct se_subsystem_api
*transport
= hba
->transport
;
2963 unsigned long mode_flag
;
2966 if (transport
->pmode_enable_hba
== NULL
)
2969 ret
= kstrtoul(page
, 0, &mode_flag
);
2971 pr_err("Unable to extract hba mode flag: %d\n", ret
);
2975 if (hba
->dev_count
) {
2976 pr_err("Unable to set hba_mode with active devices\n");
2980 ret
= transport
->pmode_enable_hba(hba
, mode_flag
);
2984 hba
->hba_flags
|= HBA_FLAGS_PSCSI_MODE
;
2986 hba
->hba_flags
&= ~HBA_FLAGS_PSCSI_MODE
;
2991 SE_HBA_ATTR(hba_mode
, S_IRUGO
| S_IWUSR
);
2993 CONFIGFS_EATTR_OPS(target_core_hba
, se_hba
, hba_group
);
2995 static void target_core_hba_release(struct config_item
*item
)
2997 struct se_hba
*hba
= container_of(to_config_group(item
),
2998 struct se_hba
, hba_group
);
2999 core_delete_hba(hba
);
3002 static struct configfs_attribute
*target_core_hba_attrs
[] = {
3003 &target_core_hba_hba_info
.attr
,
3004 &target_core_hba_hba_mode
.attr
,
3008 static struct configfs_item_operations target_core_hba_item_ops
= {
3009 .release
= target_core_hba_release
,
3010 .show_attribute
= target_core_hba_attr_show
,
3011 .store_attribute
= target_core_hba_attr_store
,
3014 static struct config_item_type target_core_hba_cit
= {
3015 .ct_item_ops
= &target_core_hba_item_ops
,
3016 .ct_group_ops
= &target_core_hba_group_ops
,
3017 .ct_attrs
= target_core_hba_attrs
,
3018 .ct_owner
= THIS_MODULE
,
3021 static struct config_group
*target_core_call_addhbatotarget(
3022 struct config_group
*group
,
3025 char *se_plugin_str
, *str
, *str2
;
3027 char buf
[TARGET_CORE_NAME_MAX_LEN
];
3028 unsigned long plugin_dep_id
= 0;
3031 memset(buf
, 0, TARGET_CORE_NAME_MAX_LEN
);
3032 if (strlen(name
) >= TARGET_CORE_NAME_MAX_LEN
) {
3033 pr_err("Passed *name strlen(): %d exceeds"
3034 " TARGET_CORE_NAME_MAX_LEN: %d\n", (int)strlen(name
),
3035 TARGET_CORE_NAME_MAX_LEN
);
3036 return ERR_PTR(-ENAMETOOLONG
);
3038 snprintf(buf
, TARGET_CORE_NAME_MAX_LEN
, "%s", name
);
3040 str
= strstr(buf
, "_");
3042 pr_err("Unable to locate \"_\" for $SUBSYSTEM_PLUGIN_$HOST_ID\n");
3043 return ERR_PTR(-EINVAL
);
3045 se_plugin_str
= buf
;
3047 * Special case for subsystem plugins that have "_" in their names.
3048 * Namely rd_direct and rd_mcp..
3050 str2
= strstr(str
+1, "_");
3052 *str2
= '\0'; /* Terminate for *se_plugin_str */
3053 str2
++; /* Skip to start of plugin dependent ID */
3056 *str
= '\0'; /* Terminate for *se_plugin_str */
3057 str
++; /* Skip to start of plugin dependent ID */
3060 ret
= kstrtoul(str
, 0, &plugin_dep_id
);
3062 pr_err("kstrtoul() returned %d for"
3063 " plugin_dep_id\n", ret
);
3064 return ERR_PTR(ret
);
3067 * Load up TCM subsystem plugins if they have not already been loaded.
3069 transport_subsystem_check_init();
3071 hba
= core_alloc_hba(se_plugin_str
, plugin_dep_id
, 0);
3073 return ERR_CAST(hba
);
3075 config_group_init_type_name(&hba
->hba_group
, name
,
3076 &target_core_hba_cit
);
3078 return &hba
->hba_group
;
3081 static void target_core_call_delhbafromtarget(
3082 struct config_group
*group
,
3083 struct config_item
*item
)
3086 * core_delete_hba() is called from target_core_hba_item_ops->release()
3087 * -> target_core_hba_release()
3089 config_item_put(item
);
3092 static struct configfs_group_operations target_core_group_ops
= {
3093 .make_group
= target_core_call_addhbatotarget
,
3094 .drop_item
= target_core_call_delhbafromtarget
,
3097 static struct config_item_type target_core_cit
= {
3098 .ct_item_ops
= NULL
,
3099 .ct_group_ops
= &target_core_group_ops
,
3101 .ct_owner
= THIS_MODULE
,
3104 /* Stop functions for struct config_item_type target_core_hba_cit */
3106 static int __init
target_core_init_configfs(void)
3108 struct config_group
*target_cg
, *hba_cg
= NULL
, *alua_cg
= NULL
;
3109 struct config_group
*lu_gp_cg
= NULL
;
3110 struct configfs_subsystem
*subsys
;
3111 struct t10_alua_lu_gp
*lu_gp
;
3114 pr_debug("TARGET_CORE[0]: Loading Generic Kernel Storage"
3115 " Engine: %s on %s/%s on "UTS_RELEASE
"\n",
3116 TARGET_CORE_VERSION
, utsname()->sysname
, utsname()->machine
);
3118 subsys
= target_core_subsystem
[0];
3119 config_group_init(&subsys
->su_group
);
3120 mutex_init(&subsys
->su_mutex
);
3122 ret
= init_se_kmem_caches();
3126 * Create $CONFIGFS/target/core default group for HBA <-> Storage Object
3127 * and ALUA Logical Unit Group and Target Port Group infrastructure.
3129 target_cg
= &subsys
->su_group
;
3130 target_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
3132 if (!target_cg
->default_groups
) {
3133 pr_err("Unable to allocate target_cg->default_groups\n");
3138 config_group_init_type_name(&target_core_hbagroup
,
3139 "core", &target_core_cit
);
3140 target_cg
->default_groups
[0] = &target_core_hbagroup
;
3141 target_cg
->default_groups
[1] = NULL
;
3143 * Create ALUA infrastructure under /sys/kernel/config/target/core/alua/
3145 hba_cg
= &target_core_hbagroup
;
3146 hba_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
3148 if (!hba_cg
->default_groups
) {
3149 pr_err("Unable to allocate hba_cg->default_groups\n");
3153 config_group_init_type_name(&alua_group
,
3154 "alua", &target_core_alua_cit
);
3155 hba_cg
->default_groups
[0] = &alua_group
;
3156 hba_cg
->default_groups
[1] = NULL
;
3158 * Add ALUA Logical Unit Group and Target Port Group ConfigFS
3159 * groups under /sys/kernel/config/target/core/alua/
3161 alua_cg
= &alua_group
;
3162 alua_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
3164 if (!alua_cg
->default_groups
) {
3165 pr_err("Unable to allocate alua_cg->default_groups\n");
3170 config_group_init_type_name(&alua_lu_gps_group
,
3171 "lu_gps", &target_core_alua_lu_gps_cit
);
3172 alua_cg
->default_groups
[0] = &alua_lu_gps_group
;
3173 alua_cg
->default_groups
[1] = NULL
;
3175 * Add core/alua/lu_gps/default_lu_gp
3177 lu_gp
= core_alua_allocate_lu_gp("default_lu_gp", 1);
3178 if (IS_ERR(lu_gp
)) {
3183 lu_gp_cg
= &alua_lu_gps_group
;
3184 lu_gp_cg
->default_groups
= kmalloc(sizeof(struct config_group
*) * 2,
3186 if (!lu_gp_cg
->default_groups
) {
3187 pr_err("Unable to allocate lu_gp_cg->default_groups\n");
3192 config_group_init_type_name(&lu_gp
->lu_gp_group
, "default_lu_gp",
3193 &target_core_alua_lu_gp_cit
);
3194 lu_gp_cg
->default_groups
[0] = &lu_gp
->lu_gp_group
;
3195 lu_gp_cg
->default_groups
[1] = NULL
;
3196 default_lu_gp
= lu_gp
;
3198 * Register the target_core_mod subsystem with configfs.
3200 ret
= configfs_register_subsystem(subsys
);
3202 pr_err("Error %d while registering subsystem %s\n",
3203 ret
, subsys
->su_group
.cg_item
.ci_namebuf
);
3206 pr_debug("TARGET_CORE[0]: Initialized ConfigFS Fabric"
3207 " Infrastructure: "TARGET_CORE_CONFIGFS_VERSION
" on %s/%s"
3208 " on "UTS_RELEASE
"\n", utsname()->sysname
, utsname()->machine
);
3210 * Register built-in RAMDISK subsystem logic for virtual LUN 0
3212 ret
= rd_module_init();
3216 ret
= core_dev_setup_virtual_lun0();
3220 ret
= target_xcopy_setup_pt();
3227 configfs_unregister_subsystem(subsys
);
3228 core_dev_release_virtual_lun0();
3231 if (default_lu_gp
) {
3232 core_alua_free_lu_gp(default_lu_gp
);
3233 default_lu_gp
= NULL
;
3236 kfree(lu_gp_cg
->default_groups
);
3238 kfree(alua_cg
->default_groups
);
3240 kfree(hba_cg
->default_groups
);
3241 kfree(target_cg
->default_groups
);
3242 release_se_kmem_caches();
3246 static void __exit
target_core_exit_configfs(void)
3248 struct configfs_subsystem
*subsys
;
3249 struct config_group
*hba_cg
, *alua_cg
, *lu_gp_cg
;
3250 struct config_item
*item
;
3253 subsys
= target_core_subsystem
[0];
3255 lu_gp_cg
= &alua_lu_gps_group
;
3256 for (i
= 0; lu_gp_cg
->default_groups
[i
]; i
++) {
3257 item
= &lu_gp_cg
->default_groups
[i
]->cg_item
;
3258 lu_gp_cg
->default_groups
[i
] = NULL
;
3259 config_item_put(item
);
3261 kfree(lu_gp_cg
->default_groups
);
3262 lu_gp_cg
->default_groups
= NULL
;
3264 alua_cg
= &alua_group
;
3265 for (i
= 0; alua_cg
->default_groups
[i
]; i
++) {
3266 item
= &alua_cg
->default_groups
[i
]->cg_item
;
3267 alua_cg
->default_groups
[i
] = NULL
;
3268 config_item_put(item
);
3270 kfree(alua_cg
->default_groups
);
3271 alua_cg
->default_groups
= NULL
;
3273 hba_cg
= &target_core_hbagroup
;
3274 for (i
= 0; hba_cg
->default_groups
[i
]; i
++) {
3275 item
= &hba_cg
->default_groups
[i
]->cg_item
;
3276 hba_cg
->default_groups
[i
] = NULL
;
3277 config_item_put(item
);
3279 kfree(hba_cg
->default_groups
);
3280 hba_cg
->default_groups
= NULL
;
3282 * We expect subsys->su_group.default_groups to be released
3283 * by configfs subsystem provider logic..
3285 configfs_unregister_subsystem(subsys
);
3286 kfree(subsys
->su_group
.default_groups
);
3288 core_alua_free_lu_gp(default_lu_gp
);
3289 default_lu_gp
= NULL
;
3291 pr_debug("TARGET_CORE[0]: Released ConfigFS Fabric"
3292 " Infrastructure\n");
3294 core_dev_release_virtual_lun0();
3296 target_xcopy_release_pt();
3297 release_se_kmem_caches();
3300 MODULE_DESCRIPTION("Target_Core_Mod/ConfigFS");
3301 MODULE_AUTHOR("nab@Linux-iSCSI.org");
3302 MODULE_LICENSE("GPL");
3304 module_init(target_core_init_configfs
);
3305 module_exit(target_core_exit_configfs
);