blob: 272755d03e5aca23785e859c896d9f1ca71635c7 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_configfs.c
3 *
4 * This file contains ConfigFS logic for the Generic Target Engine project.
5 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2008-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * based on configfs Copyright (C) 2005 Oracle. All rights reserved.
11 *
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.
16 *
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 ****************************************************************************/
22
23#include <linux/module.h>
24#include <linux/moduleparam.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080025#include <generated/utsrelease.h>
26#include <linux/utsname.h>
27#include <linux/init.h>
28#include <linux/fs.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>
Andy Grovere3d6f902011-07-19 08:55:10 +000038#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080039
40#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050041#include <target/target_core_backend.h>
42#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080043#include <target/target_core_fabric_configfs.h>
44#include <target/target_core_configfs.h>
45#include <target/configfs_macros.h>
46
Christoph Hellwige26d99a2011-11-14 12:30:30 -050047#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080049#include "target_core_pr.h"
50#include "target_core_rd.h"
Nicholas Bellingerf99715a2013-08-22 12:48:53 -070051#include "target_core_xcopy.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052
Andy Grovere3d6f902011-07-19 08:55:10 +000053extern struct t10_alua_lu_gp *default_lu_gp;
54
Roland Dreierd0f474e2012-01-12 10:41:18 -080055static LIST_HEAD(g_tf_list);
56static DEFINE_MUTEX(g_tf_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080057
58struct target_core_configfs_attribute {
59 struct configfs_attribute attr;
60 ssize_t (*show)(void *, char *);
61 ssize_t (*store)(void *, const char *, size_t);
62};
63
Andy Grovere3d6f902011-07-19 08:55:10 +000064static struct config_group target_core_hbagroup;
65static struct config_group alua_group;
66static struct config_group alua_lu_gps_group;
67
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080068static inline struct se_hba *
69item_to_hba(struct config_item *item)
70{
71 return container_of(to_config_group(item), struct se_hba, hba_group);
72}
73
74/*
75 * Attributes for /sys/kernel/config/target/
76 */
77static ssize_t target_core_attr_show(struct config_item *item,
78 struct configfs_attribute *attr,
79 char *page)
80{
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);
84}
85
86static struct configfs_item_operations target_core_fabric_item_ops = {
87 .show_attribute = target_core_attr_show,
88};
89
90static struct configfs_attribute target_core_item_attr_version = {
91 .ca_owner = THIS_MODULE,
92 .ca_name = "version",
93 .ca_mode = S_IRUGO,
94};
95
96static struct target_fabric_configfs *target_core_get_fabric(
97 const char *name)
98{
99 struct target_fabric_configfs *tf;
100
Andy Grover6708bb22011-06-08 10:36:43 -0700101 if (!name)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800102 return NULL;
103
104 mutex_lock(&g_tf_lock);
105 list_for_each_entry(tf, &g_tf_list, tf_list) {
Andy Grover6708bb22011-06-08 10:36:43 -0700106 if (!strcmp(tf->tf_name, name)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800107 atomic_inc(&tf->tf_access_cnt);
108 mutex_unlock(&g_tf_lock);
109 return tf;
110 }
111 }
112 mutex_unlock(&g_tf_lock);
113
114 return NULL;
115}
116
117/*
118 * Called from struct target_core_group_ops->make_group()
119 */
120static struct config_group *target_core_register_fabric(
121 struct config_group *group,
122 const char *name)
123{
124 struct target_fabric_configfs *tf;
125 int ret;
126
Andy Grover6708bb22011-06-08 10:36:43 -0700127 pr_debug("Target_Core_ConfigFS: REGISTER -> group: %p name:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800128 " %s\n", group, name);
129 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 * Below are some hardcoded request_module() calls to automatically
131 * local fabric modules when the following is called:
132 *
133 * mkdir -p /sys/kernel/config/target/$MODULE_NAME
134 *
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.
138 */
Andy Grover6708bb22011-06-08 10:36:43 -0700139 if (!strncmp(name, "iscsi", 5)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800140 /*
141 * Automatically load the LIO Target fabric module when the
142 * following is called:
143 *
144 * mkdir -p $CONFIGFS/target/iscsi
145 */
146 ret = request_module("iscsi_target_mod");
147 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -0700148 pr_err("request_module() failed for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800149 " iscsi_target_mod.ko: %d\n", ret);
150 return ERR_PTR(-EINVAL);
151 }
Andy Grover6708bb22011-06-08 10:36:43 -0700152 } else if (!strncmp(name, "loopback", 8)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153 /*
154 * Automatically load the tcm_loop fabric module when the
155 * following is called:
156 *
157 * mkdir -p $CONFIGFS/target/loopback
158 */
159 ret = request_module("tcm_loop");
160 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -0700161 pr_err("request_module() failed for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 " tcm_loop.ko: %d\n", ret);
163 return ERR_PTR(-EINVAL);
164 }
165 }
166
167 tf = target_core_get_fabric(name);
Andy Grover6708bb22011-06-08 10:36:43 -0700168 if (!tf) {
169 pr_err("target_core_get_fabric() failed for %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800170 name);
171 return ERR_PTR(-EINVAL);
172 }
Andy Grover6708bb22011-06-08 10:36:43 -0700173 pr_debug("Target_Core_ConfigFS: REGISTER -> Located fabric:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174 " %s\n", tf->tf_name);
175 /*
176 * On a successful target_core_get_fabric() look, the returned
177 * struct target_fabric_configfs *tf will contain a usage reference.
178 */
Andy Grover6708bb22011-06-08 10:36:43 -0700179 pr_debug("Target_Core_ConfigFS: REGISTER tfc_wwn_cit -> %p\n",
Andy Groverd80e224d2013-10-09 11:05:56 -0700180 &tf->tf_cit_tmpl.tfc_wwn_cit);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800181
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;
185
186 config_group_init_type_name(&tf->tf_group, name,
Andy Groverd80e224d2013-10-09 11:05:56 -0700187 &tf->tf_cit_tmpl.tfc_wwn_cit);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188 config_group_init_type_name(&tf->tf_disc_group, "discovery_auth",
Andy Groverd80e224d2013-10-09 11:05:56 -0700189 &tf->tf_cit_tmpl.tfc_discovery_cit);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800190
Andy Grover6708bb22011-06-08 10:36:43 -0700191 pr_debug("Target_Core_ConfigFS: REGISTER -> Allocated Fabric:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800192 " %s\n", tf->tf_group.cg_item.ci_name);
193 /*
194 * Setup tf_ops.tf_subsys pointer for usage with configfs_depend_item()
195 */
196 tf->tf_ops.tf_subsys = tf->tf_subsys;
197 tf->tf_fabric = &tf->tf_group.cg_item;
Andy Grover6708bb22011-06-08 10:36:43 -0700198 pr_debug("Target_Core_ConfigFS: REGISTER -> Set tf->tf_fabric"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800199 " for %s\n", name);
200
201 return &tf->tf_group;
202}
203
204/*
205 * Called from struct target_core_group_ops->drop_item()
206 */
207static void target_core_deregister_fabric(
208 struct config_group *group,
209 struct config_item *item)
210{
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;
215 int i;
216
Andy Grover6708bb22011-06-08 10:36:43 -0700217 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Looking up %s in"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218 " tf list\n", config_item_name(item));
219
Andy Grover6708bb22011-06-08 10:36:43 -0700220 pr_debug("Target_Core_ConfigFS: DEREGISTER -> located fabric:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800221 " %s\n", tf->tf_name);
222 atomic_dec(&tf->tf_access_cnt);
223
Andy Grover6708bb22011-06-08 10:36:43 -0700224 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800225 " tf->tf_fabric for %s\n", tf->tf_name);
226 tf->tf_fabric = NULL;
227
Andy Grover6708bb22011-06-08 10:36:43 -0700228 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing ci"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800229 " %s\n", config_item_name(item));
230
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);
236 }
237 config_item_put(item);
238}
239
240static struct configfs_group_operations target_core_fabric_group_ops = {
241 .make_group = &target_core_register_fabric,
242 .drop_item = &target_core_deregister_fabric,
243};
244
245/*
246 * All item attributes appearing in /sys/kernel/target/ appear here.
247 */
248static struct configfs_attribute *target_core_fabric_item_attrs[] = {
249 &target_core_item_attr_version,
250 NULL,
251};
252
253/*
254 * Provides Fabrics Groups and Item Attributes for /sys/kernel/config/target/
255 */
256static 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,
261};
262
263static struct configfs_subsystem target_core_fabrics = {
264 .su_group = {
265 .cg_item = {
266 .ci_namebuf = "target",
267 .ci_type = &target_core_fabrics_item,
268 },
269 },
270};
271
Nicholas Bellinger56d128f2013-08-22 11:32:31 -0700272struct configfs_subsystem *target_core_subsystem[] = {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800273 &target_core_fabrics,
274 NULL,
275};
276
277/*##############################################################################
278// Start functions called by external Target Fabrics Modules
279//############################################################################*/
280
281/*
282 * First function called by fabric modules to:
283 *
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().
288 */
289struct target_fabric_configfs *target_fabric_configfs_init(
290 struct module *fabric_mod,
291 const char *name)
292{
293 struct target_fabric_configfs *tf;
294
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800295 if (!(name)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700296 pr_err("Unable to locate passed fabric name\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000297 return ERR_PTR(-EINVAL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800298 }
Dan Carpenter60d645a2011-06-15 10:03:05 -0700299 if (strlen(name) >= TARGET_FABRIC_NAME_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -0700300 pr_err("Passed name: %s exceeds TARGET_FABRIC"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800301 "_NAME_SIZE\n", name);
Andy Grovere3d6f902011-07-19 08:55:10 +0000302 return ERR_PTR(-EINVAL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800303 }
304
305 tf = kzalloc(sizeof(struct target_fabric_configfs), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700306 if (!tf)
Andy Grovere3d6f902011-07-19 08:55:10 +0000307 return ERR_PTR(-ENOMEM);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800308
309 INIT_LIST_HEAD(&tf->tf_list);
310 atomic_set(&tf->tf_access_cnt, 0);
311 /*
312 * Setup the default generic struct config_item_type's (cits) in
313 * struct target_fabric_configfs->tf_cit_tmpl
314 */
315 tf->tf_module = fabric_mod;
316 target_fabric_setup_cits(tf);
317
318 tf->tf_subsys = target_core_subsystem[0];
319 snprintf(tf->tf_name, TARGET_FABRIC_NAME_SIZE, "%s", name);
320
321 mutex_lock(&g_tf_lock);
322 list_add_tail(&tf->tf_list, &g_tf_list);
323 mutex_unlock(&g_tf_lock);
324
Andy Grover6708bb22011-06-08 10:36:43 -0700325 pr_debug("<<<<<<<<<<<<<<<<<<<<<< BEGIN FABRIC API >>>>>>>>"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800326 ">>>>>>>>>>>>>>\n");
Andy Grover6708bb22011-06-08 10:36:43 -0700327 pr_debug("Initialized struct target_fabric_configfs: %p for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800328 " %s\n", tf, tf->tf_name);
329 return tf;
330}
331EXPORT_SYMBOL(target_fabric_configfs_init);
332
333/*
334 * Called by fabric plugins after FAILED target_fabric_configfs_register() call.
335 */
336void target_fabric_configfs_free(
337 struct target_fabric_configfs *tf)
338{
339 mutex_lock(&g_tf_lock);
340 list_del(&tf->tf_list);
341 mutex_unlock(&g_tf_lock);
342
343 kfree(tf);
344}
345EXPORT_SYMBOL(target_fabric_configfs_free);
346
347/*
348 * Perform a sanity check of the passed tf->tf_ops before completing
349 * TCM fabric module registration.
350 */
351static int target_fabric_tf_ops_check(
352 struct target_fabric_configfs *tf)
353{
354 struct target_core_fabric_ops *tfo = &tf->tf_ops;
355
Andy Grover6708bb22011-06-08 10:36:43 -0700356 if (!tfo->get_fabric_name) {
357 pr_err("Missing tfo->get_fabric_name()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800358 return -EINVAL;
359 }
Andy Grover6708bb22011-06-08 10:36:43 -0700360 if (!tfo->get_fabric_proto_ident) {
361 pr_err("Missing tfo->get_fabric_proto_ident()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800362 return -EINVAL;
363 }
Andy Grover6708bb22011-06-08 10:36:43 -0700364 if (!tfo->tpg_get_wwn) {
365 pr_err("Missing tfo->tpg_get_wwn()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800366 return -EINVAL;
367 }
Andy Grover6708bb22011-06-08 10:36:43 -0700368 if (!tfo->tpg_get_tag) {
369 pr_err("Missing tfo->tpg_get_tag()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800370 return -EINVAL;
371 }
Andy Grover6708bb22011-06-08 10:36:43 -0700372 if (!tfo->tpg_get_default_depth) {
373 pr_err("Missing tfo->tpg_get_default_depth()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800374 return -EINVAL;
375 }
Andy Grover6708bb22011-06-08 10:36:43 -0700376 if (!tfo->tpg_get_pr_transport_id) {
377 pr_err("Missing tfo->tpg_get_pr_transport_id()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800378 return -EINVAL;
379 }
Andy Grover6708bb22011-06-08 10:36:43 -0700380 if (!tfo->tpg_get_pr_transport_id_len) {
381 pr_err("Missing tfo->tpg_get_pr_transport_id_len()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800382 return -EINVAL;
383 }
Andy Grover6708bb22011-06-08 10:36:43 -0700384 if (!tfo->tpg_check_demo_mode) {
385 pr_err("Missing tfo->tpg_check_demo_mode()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800386 return -EINVAL;
387 }
Andy Grover6708bb22011-06-08 10:36:43 -0700388 if (!tfo->tpg_check_demo_mode_cache) {
389 pr_err("Missing tfo->tpg_check_demo_mode_cache()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390 return -EINVAL;
391 }
Andy Grover6708bb22011-06-08 10:36:43 -0700392 if (!tfo->tpg_check_demo_mode_write_protect) {
393 pr_err("Missing tfo->tpg_check_demo_mode_write_protect()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394 return -EINVAL;
395 }
Andy Grover6708bb22011-06-08 10:36:43 -0700396 if (!tfo->tpg_check_prod_mode_write_protect) {
397 pr_err("Missing tfo->tpg_check_prod_mode_write_protect()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800398 return -EINVAL;
399 }
Andy Grover6708bb22011-06-08 10:36:43 -0700400 if (!tfo->tpg_alloc_fabric_acl) {
401 pr_err("Missing tfo->tpg_alloc_fabric_acl()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800402 return -EINVAL;
403 }
Andy Grover6708bb22011-06-08 10:36:43 -0700404 if (!tfo->tpg_release_fabric_acl) {
405 pr_err("Missing tfo->tpg_release_fabric_acl()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800406 return -EINVAL;
407 }
Andy Grover6708bb22011-06-08 10:36:43 -0700408 if (!tfo->tpg_get_inst_index) {
409 pr_err("Missing tfo->tpg_get_inst_index()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800410 return -EINVAL;
411 }
Christoph Hellwig35462972011-05-31 23:56:57 -0400412 if (!tfo->release_cmd) {
Andy Grover6708bb22011-06-08 10:36:43 -0700413 pr_err("Missing tfo->release_cmd()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414 return -EINVAL;
415 }
Andy Grover6708bb22011-06-08 10:36:43 -0700416 if (!tfo->shutdown_session) {
417 pr_err("Missing tfo->shutdown_session()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800418 return -EINVAL;
419 }
Andy Grover6708bb22011-06-08 10:36:43 -0700420 if (!tfo->close_session) {
421 pr_err("Missing tfo->close_session()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800422 return -EINVAL;
423 }
Andy Grover6708bb22011-06-08 10:36:43 -0700424 if (!tfo->sess_get_index) {
425 pr_err("Missing tfo->sess_get_index()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800426 return -EINVAL;
427 }
Andy Grover6708bb22011-06-08 10:36:43 -0700428 if (!tfo->write_pending) {
429 pr_err("Missing tfo->write_pending()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430 return -EINVAL;
431 }
Andy Grover6708bb22011-06-08 10:36:43 -0700432 if (!tfo->write_pending_status) {
433 pr_err("Missing tfo->write_pending_status()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434 return -EINVAL;
435 }
Andy Grover6708bb22011-06-08 10:36:43 -0700436 if (!tfo->set_default_node_attributes) {
437 pr_err("Missing tfo->set_default_node_attributes()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800438 return -EINVAL;
439 }
Andy Grover6708bb22011-06-08 10:36:43 -0700440 if (!tfo->get_task_tag) {
441 pr_err("Missing tfo->get_task_tag()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800442 return -EINVAL;
443 }
Andy Grover6708bb22011-06-08 10:36:43 -0700444 if (!tfo->get_cmd_state) {
445 pr_err("Missing tfo->get_cmd_state()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446 return -EINVAL;
447 }
Andy Grover6708bb22011-06-08 10:36:43 -0700448 if (!tfo->queue_data_in) {
449 pr_err("Missing tfo->queue_data_in()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450 return -EINVAL;
451 }
Andy Grover6708bb22011-06-08 10:36:43 -0700452 if (!tfo->queue_status) {
453 pr_err("Missing tfo->queue_status()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454 return -EINVAL;
455 }
Andy Grover6708bb22011-06-08 10:36:43 -0700456 if (!tfo->queue_tm_rsp) {
457 pr_err("Missing tfo->queue_tm_rsp()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800458 return -EINVAL;
459 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 /*
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.
464 */
Andy Grover6708bb22011-06-08 10:36:43 -0700465 if (!tfo->fabric_make_wwn) {
466 pr_err("Missing tfo->fabric_make_wwn()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467 return -EINVAL;
468 }
Andy Grover6708bb22011-06-08 10:36:43 -0700469 if (!tfo->fabric_drop_wwn) {
470 pr_err("Missing tfo->fabric_drop_wwn()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471 return -EINVAL;
472 }
Andy Grover6708bb22011-06-08 10:36:43 -0700473 if (!tfo->fabric_make_tpg) {
474 pr_err("Missing tfo->fabric_make_tpg()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800475 return -EINVAL;
476 }
Andy Grover6708bb22011-06-08 10:36:43 -0700477 if (!tfo->fabric_drop_tpg) {
478 pr_err("Missing tfo->fabric_drop_tpg()\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479 return -EINVAL;
480 }
481
482 return 0;
483}
484
485/*
486 * Called 2nd from fabric module with returned parameter of
487 * struct target_fabric_configfs * from target_fabric_configfs_init().
488 *
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.
492 */
493int target_fabric_configfs_register(
494 struct target_fabric_configfs *tf)
495{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496 int ret;
497
Andy Grover6708bb22011-06-08 10:36:43 -0700498 if (!tf) {
499 pr_err("Unable to locate target_fabric_configfs"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800500 " pointer\n");
501 return -EINVAL;
502 }
Andy Grover6708bb22011-06-08 10:36:43 -0700503 if (!tf->tf_subsys) {
504 pr_err("Unable to target struct config_subsystem"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800505 " pointer\n");
506 return -EINVAL;
507 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800508 ret = target_fabric_tf_ops_check(tf);
509 if (ret < 0)
510 return ret;
511
Andy Grover6708bb22011-06-08 10:36:43 -0700512 pr_debug("<<<<<<<<<<<<<<<<<<<<<< END FABRIC API >>>>>>>>>>>>"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800513 ">>>>>>>>>>\n");
514 return 0;
515}
516EXPORT_SYMBOL(target_fabric_configfs_register);
517
518void target_fabric_configfs_deregister(
519 struct target_fabric_configfs *tf)
520{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800521 struct configfs_subsystem *su;
522
Andy Grover6708bb22011-06-08 10:36:43 -0700523 if (!tf) {
524 pr_err("Unable to locate passed target_fabric_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800525 "configfs\n");
526 return;
527 }
528 su = tf->tf_subsys;
Andy Grover6708bb22011-06-08 10:36:43 -0700529 if (!su) {
530 pr_err("Unable to locate passed tf->tf_subsys"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800531 " pointer\n");
532 return;
533 }
Andy Grover6708bb22011-06-08 10:36:43 -0700534 pr_debug("<<<<<<<<<<<<<<<<<<<<<< BEGIN FABRIC API >>>>>>>>>>"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535 ">>>>>>>>>>>>\n");
536 mutex_lock(&g_tf_lock);
537 if (atomic_read(&tf->tf_access_cnt)) {
538 mutex_unlock(&g_tf_lock);
Andy Grover6708bb22011-06-08 10:36:43 -0700539 pr_err("Non zero tf->tf_access_cnt for fabric %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800540 tf->tf_name);
541 BUG();
542 }
543 list_del(&tf->tf_list);
544 mutex_unlock(&g_tf_lock);
545
Andy Grover6708bb22011-06-08 10:36:43 -0700546 pr_debug("Target_Core_ConfigFS: DEREGISTER -> Releasing tf:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547 " %s\n", tf->tf_name);
548 tf->tf_module = NULL;
549 tf->tf_subsys = NULL;
550 kfree(tf);
551
Andy Grover6708bb22011-06-08 10:36:43 -0700552 pr_debug("<<<<<<<<<<<<<<<<<<<<<< END FABRIC API >>>>>>>>>>>>>>>>>"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800553 ">>>>>\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554}
555EXPORT_SYMBOL(target_fabric_configfs_deregister);
556
557/*##############################################################################
558// Stop functions called by external Target Fabrics Modules
559//############################################################################*/
560
561/* Start functions for struct config_item_type target_core_dev_attrib_cit */
562
563#define DEF_DEV_ATTRIB_SHOW(_name) \
564static ssize_t target_core_dev_show_attr_##_name( \
565 struct se_dev_attrib *da, \
566 char *page) \
567{ \
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400568 return snprintf(page, PAGE_SIZE, "%u\n", \
569 (u32)da->da_dev->dev_attrib._name); \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800570}
571
572#define DEF_DEV_ATTRIB_STORE(_name) \
573static ssize_t target_core_dev_store_attr_##_name( \
574 struct se_dev_attrib *da, \
575 const char *page, \
576 size_t count) \
577{ \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800578 unsigned long val; \
579 int ret; \
580 \
Jingoo Han57103d72013-07-19 16:22:19 +0900581 ret = kstrtoul(page, 0, &val); \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 if (ret < 0) { \
Jingoo Han57103d72013-07-19 16:22:19 +0900583 pr_err("kstrtoul() failed with" \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800584 " ret: %d\n", ret); \
585 return -EINVAL; \
586 } \
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400587 ret = se_dev_set_##_name(da->da_dev, (u32)val); \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588 \
589 return (!ret) ? count : -EINVAL; \
590}
591
592#define DEF_DEV_ATTRIB(_name) \
593DEF_DEV_ATTRIB_SHOW(_name); \
594DEF_DEV_ATTRIB_STORE(_name);
595
596#define DEF_DEV_ATTRIB_RO(_name) \
597DEF_DEV_ATTRIB_SHOW(_name);
598
599CONFIGFS_EATTR_STRUCT(target_core_dev_attrib, se_dev_attrib);
600#define SE_DEV_ATTR(_name, _mode) \
601static 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);
606
607#define SE_DEV_ATTR_RO(_name); \
608static struct target_core_dev_attrib_attribute \
609 target_core_dev_attrib_##_name = \
610 __CONFIGFS_EATTR_RO(_name, \
611 target_core_dev_show_attr_##_name);
612
Tregaron Baylyadfa9572013-01-31 15:30:24 -0700613DEF_DEV_ATTRIB(emulate_model_alias);
614SE_DEV_ATTR(emulate_model_alias, S_IRUGO | S_IWUSR);
615
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800616DEF_DEV_ATTRIB(emulate_dpo);
617SE_DEV_ATTR(emulate_dpo, S_IRUGO | S_IWUSR);
618
619DEF_DEV_ATTRIB(emulate_fua_write);
620SE_DEV_ATTR(emulate_fua_write, S_IRUGO | S_IWUSR);
621
622DEF_DEV_ATTRIB(emulate_fua_read);
623SE_DEV_ATTR(emulate_fua_read, S_IRUGO | S_IWUSR);
624
625DEF_DEV_ATTRIB(emulate_write_cache);
626SE_DEV_ATTR(emulate_write_cache, S_IRUGO | S_IWUSR);
627
628DEF_DEV_ATTRIB(emulate_ua_intlck_ctrl);
629SE_DEV_ATTR(emulate_ua_intlck_ctrl, S_IRUGO | S_IWUSR);
630
631DEF_DEV_ATTRIB(emulate_tas);
632SE_DEV_ATTR(emulate_tas, S_IRUGO | S_IWUSR);
633
634DEF_DEV_ATTRIB(emulate_tpu);
635SE_DEV_ATTR(emulate_tpu, S_IRUGO | S_IWUSR);
636
637DEF_DEV_ATTRIB(emulate_tpws);
638SE_DEV_ATTR(emulate_tpws, S_IRUGO | S_IWUSR);
639
Nicholas Bellinger0123a9e2013-08-20 14:24:09 -0700640DEF_DEV_ATTRIB(emulate_caw);
641SE_DEV_ATTR(emulate_caw, S_IRUGO | S_IWUSR);
642
Nicholas Bellingerd397a442013-08-22 14:17:20 -0700643DEF_DEV_ATTRIB(emulate_3pc);
644SE_DEV_ATTR(emulate_3pc, S_IRUGO | S_IWUSR);
645
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646DEF_DEV_ATTRIB(enforce_pr_isids);
647SE_DEV_ATTR(enforce_pr_isids, S_IRUGO | S_IWUSR);
648
Roland Dreiere22a7f02011-07-05 13:34:52 -0700649DEF_DEV_ATTRIB(is_nonrot);
650SE_DEV_ATTR(is_nonrot, S_IRUGO | S_IWUSR);
651
Nicholas Bellinger5de619a2011-07-17 02:57:58 -0700652DEF_DEV_ATTRIB(emulate_rest_reord);
653SE_DEV_ATTR(emulate_rest_reord, S_IRUGO | S_IWUSR);
654
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800655DEF_DEV_ATTRIB_RO(hw_block_size);
656SE_DEV_ATTR_RO(hw_block_size);
657
658DEF_DEV_ATTRIB(block_size);
659SE_DEV_ATTR(block_size, S_IRUGO | S_IWUSR);
660
661DEF_DEV_ATTRIB_RO(hw_max_sectors);
662SE_DEV_ATTR_RO(hw_max_sectors);
663
Roland Dreier015487b2012-02-13 16:18:17 -0800664DEF_DEV_ATTRIB(fabric_max_sectors);
665SE_DEV_ATTR(fabric_max_sectors, S_IRUGO | S_IWUSR);
666
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800667DEF_DEV_ATTRIB(optimal_sectors);
668SE_DEV_ATTR(optimal_sectors, S_IRUGO | S_IWUSR);
669
670DEF_DEV_ATTRIB_RO(hw_queue_depth);
671SE_DEV_ATTR_RO(hw_queue_depth);
672
673DEF_DEV_ATTRIB(queue_depth);
674SE_DEV_ATTR(queue_depth, S_IRUGO | S_IWUSR);
675
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800676DEF_DEV_ATTRIB(max_unmap_lba_count);
677SE_DEV_ATTR(max_unmap_lba_count, S_IRUGO | S_IWUSR);
678
679DEF_DEV_ATTRIB(max_unmap_block_desc_count);
680SE_DEV_ATTR(max_unmap_block_desc_count, S_IRUGO | S_IWUSR);
681
682DEF_DEV_ATTRIB(unmap_granularity);
683SE_DEV_ATTR(unmap_granularity, S_IRUGO | S_IWUSR);
684
685DEF_DEV_ATTRIB(unmap_granularity_alignment);
686SE_DEV_ATTR(unmap_granularity_alignment, S_IRUGO | S_IWUSR);
687
Nicholas Bellinger773cbaf2012-11-15 11:02:49 -0800688DEF_DEV_ATTRIB(max_write_same_len);
689SE_DEV_ATTR(max_write_same_len, S_IRUGO | S_IWUSR);
690
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800691CONFIGFS_EATTR_OPS(target_core_dev_attrib, se_dev_attrib, da_group);
692
693static struct configfs_attribute *target_core_dev_attrib_attrs[] = {
Tregaron Baylyadfa9572013-01-31 15:30:24 -0700694 &target_core_dev_attrib_emulate_model_alias.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800695 &target_core_dev_attrib_emulate_dpo.attr,
696 &target_core_dev_attrib_emulate_fua_write.attr,
697 &target_core_dev_attrib_emulate_fua_read.attr,
698 &target_core_dev_attrib_emulate_write_cache.attr,
699 &target_core_dev_attrib_emulate_ua_intlck_ctrl.attr,
700 &target_core_dev_attrib_emulate_tas.attr,
701 &target_core_dev_attrib_emulate_tpu.attr,
702 &target_core_dev_attrib_emulate_tpws.attr,
Nicholas Bellinger0123a9e2013-08-20 14:24:09 -0700703 &target_core_dev_attrib_emulate_caw.attr,
Nicholas Bellingerd397a442013-08-22 14:17:20 -0700704 &target_core_dev_attrib_emulate_3pc.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800705 &target_core_dev_attrib_enforce_pr_isids.attr,
Roland Dreiere22a7f02011-07-05 13:34:52 -0700706 &target_core_dev_attrib_is_nonrot.attr,
Nicholas Bellinger5de619a2011-07-17 02:57:58 -0700707 &target_core_dev_attrib_emulate_rest_reord.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800708 &target_core_dev_attrib_hw_block_size.attr,
709 &target_core_dev_attrib_block_size.attr,
710 &target_core_dev_attrib_hw_max_sectors.attr,
Roland Dreier015487b2012-02-13 16:18:17 -0800711 &target_core_dev_attrib_fabric_max_sectors.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800712 &target_core_dev_attrib_optimal_sectors.attr,
713 &target_core_dev_attrib_hw_queue_depth.attr,
714 &target_core_dev_attrib_queue_depth.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800715 &target_core_dev_attrib_max_unmap_lba_count.attr,
716 &target_core_dev_attrib_max_unmap_block_desc_count.attr,
717 &target_core_dev_attrib_unmap_granularity.attr,
718 &target_core_dev_attrib_unmap_granularity_alignment.attr,
Nicholas Bellinger773cbaf2012-11-15 11:02:49 -0800719 &target_core_dev_attrib_max_write_same_len.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800720 NULL,
721};
722
723static struct configfs_item_operations target_core_dev_attrib_ops = {
724 .show_attribute = target_core_dev_attrib_attr_show,
725 .store_attribute = target_core_dev_attrib_attr_store,
726};
727
728static struct config_item_type target_core_dev_attrib_cit = {
729 .ct_item_ops = &target_core_dev_attrib_ops,
730 .ct_attrs = target_core_dev_attrib_attrs,
731 .ct_owner = THIS_MODULE,
732};
733
734/* End functions for struct config_item_type target_core_dev_attrib_cit */
735
736/* Start functions for struct config_item_type target_core_dev_wwn_cit */
737
738CONFIGFS_EATTR_STRUCT(target_core_dev_wwn, t10_wwn);
739#define SE_DEV_WWN_ATTR(_name, _mode) \
740static struct target_core_dev_wwn_attribute target_core_dev_wwn_##_name = \
741 __CONFIGFS_EATTR(_name, _mode, \
742 target_core_dev_wwn_show_attr_##_name, \
743 target_core_dev_wwn_store_attr_##_name);
744
745#define SE_DEV_WWN_ATTR_RO(_name); \
746do { \
747 static struct target_core_dev_wwn_attribute \
748 target_core_dev_wwn_##_name = \
749 __CONFIGFS_EATTR_RO(_name, \
750 target_core_dev_wwn_show_attr_##_name); \
751} while (0);
752
753/*
754 * VPD page 0x80 Unit serial
755 */
756static ssize_t target_core_dev_wwn_show_attr_vpd_unit_serial(
757 struct t10_wwn *t10_wwn,
758 char *page)
759{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800760 return sprintf(page, "T10 VPD Unit Serial Number: %s\n",
761 &t10_wwn->unit_serial[0]);
762}
763
764static ssize_t target_core_dev_wwn_store_attr_vpd_unit_serial(
765 struct t10_wwn *t10_wwn,
766 const char *page,
767 size_t count)
768{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400769 struct se_device *dev = t10_wwn->t10_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800770 unsigned char buf[INQUIRY_VPD_SERIAL_LEN];
771
772 /*
773 * If Linux/SCSI subsystem_api_t plugin got a VPD Unit Serial
774 * from the struct scsi_device level firmware, do not allow
775 * VPD Unit Serial to be emulated.
776 *
777 * Note this struct scsi_device could also be emulating VPD
778 * information from its drivers/scsi LLD. But for now we assume
779 * it is doing 'the right thing' wrt a world wide unique
780 * VPD Unit Serial Number that OS dependent multipath can depend on.
781 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400782 if (dev->dev_flags & DF_FIRMWARE_VPD_UNIT_SERIAL) {
Andy Grover6708bb22011-06-08 10:36:43 -0700783 pr_err("Underlying SCSI device firmware provided VPD"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800784 " Unit Serial, ignoring request\n");
785 return -EOPNOTSUPP;
786 }
787
Dan Carpenter60d645a2011-06-15 10:03:05 -0700788 if (strlen(page) >= INQUIRY_VPD_SERIAL_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -0700789 pr_err("Emulated VPD Unit Serial exceeds"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800790 " INQUIRY_VPD_SERIAL_LEN: %d\n", INQUIRY_VPD_SERIAL_LEN);
791 return -EOVERFLOW;
792 }
793 /*
794 * Check to see if any active $FABRIC_MOD exports exist. If they
795 * do exist, fail here as changing this information on the fly
796 * (underneath the initiator side OS dependent multipath code)
797 * could cause negative effects.
798 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400799 if (dev->export_count) {
800 pr_err("Unable to set VPD Unit Serial while"
801 " active %d $FABRIC_MOD exports exist\n",
802 dev->export_count);
803 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800804 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400805
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800806 /*
807 * This currently assumes ASCII encoding for emulated VPD Unit Serial.
808 *
809 * Also, strip any newline added from the userspace
810 * echo $UUID > $TARGET/$HBA/$STORAGE_OBJECT/wwn/vpd_unit_serial
811 */
812 memset(buf, 0, INQUIRY_VPD_SERIAL_LEN);
813 snprintf(buf, INQUIRY_VPD_SERIAL_LEN, "%s", page);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400814 snprintf(dev->t10_wwn.unit_serial, INQUIRY_VPD_SERIAL_LEN,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800815 "%s", strstrip(buf));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400816 dev->dev_flags |= DF_EMULATED_VPD_UNIT_SERIAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800817
Andy Grover6708bb22011-06-08 10:36:43 -0700818 pr_debug("Target_Core_ConfigFS: Set emulated VPD Unit Serial:"
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400819 " %s\n", dev->t10_wwn.unit_serial);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800820
821 return count;
822}
823
824SE_DEV_WWN_ATTR(vpd_unit_serial, S_IRUGO | S_IWUSR);
825
826/*
827 * VPD page 0x83 Protocol Identifier
828 */
829static ssize_t target_core_dev_wwn_show_attr_vpd_protocol_identifier(
830 struct t10_wwn *t10_wwn,
831 char *page)
832{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800833 struct t10_vpd *vpd;
834 unsigned char buf[VPD_TMP_BUF_SIZE];
835 ssize_t len = 0;
836
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800837 memset(buf, 0, VPD_TMP_BUF_SIZE);
838
839 spin_lock(&t10_wwn->t10_vpd_lock);
840 list_for_each_entry(vpd, &t10_wwn->t10_vpd_list, vpd_list) {
Andy Grover6708bb22011-06-08 10:36:43 -0700841 if (!vpd->protocol_identifier_set)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800842 continue;
843
844 transport_dump_vpd_proto_id(vpd, buf, VPD_TMP_BUF_SIZE);
845
Andy Grover6708bb22011-06-08 10:36:43 -0700846 if (len + strlen(buf) >= PAGE_SIZE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800847 break;
848
849 len += sprintf(page+len, "%s", buf);
850 }
851 spin_unlock(&t10_wwn->t10_vpd_lock);
852
853 return len;
854}
855
856static ssize_t target_core_dev_wwn_store_attr_vpd_protocol_identifier(
857 struct t10_wwn *t10_wwn,
858 const char *page,
859 size_t count)
860{
861 return -ENOSYS;
862}
863
864SE_DEV_WWN_ATTR(vpd_protocol_identifier, S_IRUGO | S_IWUSR);
865
866/*
867 * Generic wrapper for dumping VPD identifiers by association.
868 */
869#define DEF_DEV_WWN_ASSOC_SHOW(_name, _assoc) \
870static ssize_t target_core_dev_wwn_show_attr_##_name( \
871 struct t10_wwn *t10_wwn, \
872 char *page) \
873{ \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800874 struct t10_vpd *vpd; \
875 unsigned char buf[VPD_TMP_BUF_SIZE]; \
876 ssize_t len = 0; \
877 \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878 spin_lock(&t10_wwn->t10_vpd_lock); \
879 list_for_each_entry(vpd, &t10_wwn->t10_vpd_list, vpd_list) { \
880 if (vpd->association != _assoc) \
881 continue; \
882 \
883 memset(buf, 0, VPD_TMP_BUF_SIZE); \
884 transport_dump_vpd_assoc(vpd, buf, VPD_TMP_BUF_SIZE); \
Andy Grover6708bb22011-06-08 10:36:43 -0700885 if (len + strlen(buf) >= PAGE_SIZE) \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800886 break; \
887 len += sprintf(page+len, "%s", buf); \
888 \
889 memset(buf, 0, VPD_TMP_BUF_SIZE); \
890 transport_dump_vpd_ident_type(vpd, buf, VPD_TMP_BUF_SIZE); \
Andy Grover6708bb22011-06-08 10:36:43 -0700891 if (len + strlen(buf) >= PAGE_SIZE) \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800892 break; \
893 len += sprintf(page+len, "%s", buf); \
894 \
895 memset(buf, 0, VPD_TMP_BUF_SIZE); \
896 transport_dump_vpd_ident(vpd, buf, VPD_TMP_BUF_SIZE); \
Andy Grover6708bb22011-06-08 10:36:43 -0700897 if (len + strlen(buf) >= PAGE_SIZE) \
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800898 break; \
899 len += sprintf(page+len, "%s", buf); \
900 } \
901 spin_unlock(&t10_wwn->t10_vpd_lock); \
902 \
903 return len; \
904}
905
906/*
Andy Shevchenko163cd5f2011-07-18 22:17:43 -0700907 * VPD page 0x83 Association: Logical Unit
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800908 */
909DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_logical_unit, 0x00);
910
911static ssize_t target_core_dev_wwn_store_attr_vpd_assoc_logical_unit(
912 struct t10_wwn *t10_wwn,
913 const char *page,
914 size_t count)
915{
916 return -ENOSYS;
917}
918
919SE_DEV_WWN_ATTR(vpd_assoc_logical_unit, S_IRUGO | S_IWUSR);
920
921/*
922 * VPD page 0x83 Association: Target Port
923 */
924DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_target_port, 0x10);
925
926static ssize_t target_core_dev_wwn_store_attr_vpd_assoc_target_port(
927 struct t10_wwn *t10_wwn,
928 const char *page,
929 size_t count)
930{
931 return -ENOSYS;
932}
933
934SE_DEV_WWN_ATTR(vpd_assoc_target_port, S_IRUGO | S_IWUSR);
935
936/*
937 * VPD page 0x83 Association: SCSI Target Device
938 */
939DEF_DEV_WWN_ASSOC_SHOW(vpd_assoc_scsi_target_device, 0x20);
940
941static ssize_t target_core_dev_wwn_store_attr_vpd_assoc_scsi_target_device(
942 struct t10_wwn *t10_wwn,
943 const char *page,
944 size_t count)
945{
946 return -ENOSYS;
947}
948
949SE_DEV_WWN_ATTR(vpd_assoc_scsi_target_device, S_IRUGO | S_IWUSR);
950
951CONFIGFS_EATTR_OPS(target_core_dev_wwn, t10_wwn, t10_wwn_group);
952
953static struct configfs_attribute *target_core_dev_wwn_attrs[] = {
954 &target_core_dev_wwn_vpd_unit_serial.attr,
955 &target_core_dev_wwn_vpd_protocol_identifier.attr,
956 &target_core_dev_wwn_vpd_assoc_logical_unit.attr,
957 &target_core_dev_wwn_vpd_assoc_target_port.attr,
958 &target_core_dev_wwn_vpd_assoc_scsi_target_device.attr,
959 NULL,
960};
961
962static struct configfs_item_operations target_core_dev_wwn_ops = {
963 .show_attribute = target_core_dev_wwn_attr_show,
964 .store_attribute = target_core_dev_wwn_attr_store,
965};
966
967static struct config_item_type target_core_dev_wwn_cit = {
968 .ct_item_ops = &target_core_dev_wwn_ops,
969 .ct_attrs = target_core_dev_wwn_attrs,
970 .ct_owner = THIS_MODULE,
971};
972
973/* End functions for struct config_item_type target_core_dev_wwn_cit */
974
975/* Start functions for struct config_item_type target_core_dev_pr_cit */
976
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400977CONFIGFS_EATTR_STRUCT(target_core_dev_pr, se_device);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800978#define SE_DEV_PR_ATTR(_name, _mode) \
979static struct target_core_dev_pr_attribute target_core_dev_pr_##_name = \
980 __CONFIGFS_EATTR(_name, _mode, \
981 target_core_dev_pr_show_attr_##_name, \
982 target_core_dev_pr_store_attr_##_name);
983
984#define SE_DEV_PR_ATTR_RO(_name); \
985static struct target_core_dev_pr_attribute target_core_dev_pr_##_name = \
986 __CONFIGFS_EATTR_RO(_name, \
987 target_core_dev_pr_show_attr_##_name);
988
Christoph Hellwigd977f432012-10-10 17:37:15 -0400989static ssize_t target_core_dev_pr_show_spc3_res(struct se_device *dev,
990 char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800991{
992 struct se_node_acl *se_nacl;
993 struct t10_pr_registration *pr_reg;
994 char i_buf[PR_REG_ISID_ID_LEN];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800995
996 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
997
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800998 pr_reg = dev->dev_pr_res_holder;
Christoph Hellwigd977f432012-10-10 17:37:15 -0400999 if (!pr_reg)
1000 return sprintf(page, "No SPC-3 Reservation holder\n");
1001
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001002 se_nacl = pr_reg->pr_reg_nacl;
Andy Groverd2843c12013-05-16 10:40:55 -07001003 core_pr_dump_initiator_port(pr_reg, i_buf, PR_REG_ISID_ID_LEN);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001004
Christoph Hellwigd977f432012-10-10 17:37:15 -04001005 return sprintf(page, "SPC-3 Reservation: %s Initiator: %s%s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001006 se_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
Andy Groverd2843c12013-05-16 10:40:55 -07001007 se_nacl->initiatorname, i_buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001008}
1009
Christoph Hellwigd977f432012-10-10 17:37:15 -04001010static ssize_t target_core_dev_pr_show_spc2_res(struct se_device *dev,
1011 char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001012{
1013 struct se_node_acl *se_nacl;
Christoph Hellwigd977f432012-10-10 17:37:15 -04001014 ssize_t len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001015
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001016 se_nacl = dev->dev_reserved_node_acl;
Christoph Hellwigd977f432012-10-10 17:37:15 -04001017 if (se_nacl) {
1018 len = sprintf(page,
1019 "SPC-2 Reservation: %s Initiator: %s\n",
1020 se_nacl->se_tpg->se_tpg_tfo->get_fabric_name(),
1021 se_nacl->initiatorname);
1022 } else {
1023 len = sprintf(page, "No SPC-2 Reservation holder\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001024 }
Christoph Hellwigd977f432012-10-10 17:37:15 -04001025 return len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001026}
1027
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001028static ssize_t target_core_dev_pr_show_attr_res_holder(struct se_device *dev,
1029 char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001030{
Christoph Hellwigd977f432012-10-10 17:37:15 -04001031 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001032
Christoph Hellwigd977f432012-10-10 17:37:15 -04001033 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1034 return sprintf(page, "Passthrough\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001035
Christoph Hellwigd977f432012-10-10 17:37:15 -04001036 spin_lock(&dev->dev_reservation_lock);
1037 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
1038 ret = target_core_dev_pr_show_spc2_res(dev, page);
1039 else
1040 ret = target_core_dev_pr_show_spc3_res(dev, page);
1041 spin_unlock(&dev->dev_reservation_lock);
1042 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001043}
1044
1045SE_DEV_PR_ATTR_RO(res_holder);
1046
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001047static ssize_t target_core_dev_pr_show_attr_res_pr_all_tgt_pts(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001048 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001049{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001050 ssize_t len = 0;
1051
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001052 spin_lock(&dev->dev_reservation_lock);
Christoph Hellwigd977f432012-10-10 17:37:15 -04001053 if (!dev->dev_pr_res_holder) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001054 len = sprintf(page, "No SPC-3 Reservation holder\n");
Christoph Hellwigd977f432012-10-10 17:37:15 -04001055 } else if (dev->dev_pr_res_holder->pr_reg_all_tg_pt) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001056 len = sprintf(page, "SPC-3 Reservation: All Target"
1057 " Ports registration\n");
Christoph Hellwigd977f432012-10-10 17:37:15 -04001058 } else {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001059 len = sprintf(page, "SPC-3 Reservation: Single"
1060 " Target Port registration\n");
Christoph Hellwigd977f432012-10-10 17:37:15 -04001061 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001062
Christoph Hellwigd977f432012-10-10 17:37:15 -04001063 spin_unlock(&dev->dev_reservation_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001064 return len;
1065}
1066
1067SE_DEV_PR_ATTR_RO(res_pr_all_tgt_pts);
1068
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001069static ssize_t target_core_dev_pr_show_attr_res_pr_generation(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001070 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001071{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001072 return sprintf(page, "0x%08x\n", dev->t10_pr.pr_generation);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001073}
1074
1075SE_DEV_PR_ATTR_RO(res_pr_generation);
1076
1077/*
1078 * res_pr_holder_tg_port
1079 */
1080static ssize_t target_core_dev_pr_show_attr_res_pr_holder_tg_port(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001081 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001082{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 struct se_node_acl *se_nacl;
1084 struct se_lun *lun;
1085 struct se_portal_group *se_tpg;
1086 struct t10_pr_registration *pr_reg;
1087 struct target_core_fabric_ops *tfo;
1088 ssize_t len = 0;
1089
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001090 spin_lock(&dev->dev_reservation_lock);
1091 pr_reg = dev->dev_pr_res_holder;
Andy Grover6708bb22011-06-08 10:36:43 -07001092 if (!pr_reg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001093 len = sprintf(page, "No SPC-3 Reservation holder\n");
Christoph Hellwigd977f432012-10-10 17:37:15 -04001094 goto out_unlock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001095 }
Christoph Hellwigd977f432012-10-10 17:37:15 -04001096
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001097 se_nacl = pr_reg->pr_reg_nacl;
1098 se_tpg = se_nacl->se_tpg;
1099 lun = pr_reg->pr_reg_tg_pt_lun;
Andy Grovere3d6f902011-07-19 08:55:10 +00001100 tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001101
1102 len += sprintf(page+len, "SPC-3 Reservation: %s"
1103 " Target Node Endpoint: %s\n", tfo->get_fabric_name(),
1104 tfo->tpg_get_wwn(se_tpg));
1105 len += sprintf(page+len, "SPC-3 Reservation: Relative Port"
Masanari Iida35d1efe2012-08-16 22:43:13 +09001106 " Identifier Tag: %hu %s Portal Group Tag: %hu"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107 " %s Logical Unit: %u\n", lun->lun_sep->sep_rtpi,
1108 tfo->get_fabric_name(), tfo->tpg_get_tag(se_tpg),
1109 tfo->get_fabric_name(), lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001110
Christoph Hellwigd977f432012-10-10 17:37:15 -04001111out_unlock:
1112 spin_unlock(&dev->dev_reservation_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001113 return len;
1114}
1115
1116SE_DEV_PR_ATTR_RO(res_pr_holder_tg_port);
1117
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001118static ssize_t target_core_dev_pr_show_attr_res_pr_registered_i_pts(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001119 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001120{
1121 struct target_core_fabric_ops *tfo;
1122 struct t10_pr_registration *pr_reg;
1123 unsigned char buf[384];
1124 char i_buf[PR_REG_ISID_ID_LEN];
1125 ssize_t len = 0;
Andy Groverd2843c12013-05-16 10:40:55 -07001126 int reg_count = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001127
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001128 len += sprintf(page+len, "SPC-3 PR Registrations:\n");
1129
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001130 spin_lock(&dev->t10_pr.registration_lock);
1131 list_for_each_entry(pr_reg, &dev->t10_pr.registration_list,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001132 pr_reg_list) {
1133
1134 memset(buf, 0, 384);
1135 memset(i_buf, 0, PR_REG_ISID_ID_LEN);
1136 tfo = pr_reg->pr_reg_nacl->se_tpg->se_tpg_tfo;
Andy Groverd2843c12013-05-16 10:40:55 -07001137 core_pr_dump_initiator_port(pr_reg, i_buf,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001138 PR_REG_ISID_ID_LEN);
1139 sprintf(buf, "%s Node: %s%s Key: 0x%016Lx PRgen: 0x%08x\n",
1140 tfo->get_fabric_name(),
Andy Groverd2843c12013-05-16 10:40:55 -07001141 pr_reg->pr_reg_nacl->initiatorname, i_buf, pr_reg->pr_res_key,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001142 pr_reg->pr_res_generation);
1143
Andy Grover6708bb22011-06-08 10:36:43 -07001144 if (len + strlen(buf) >= PAGE_SIZE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001145 break;
1146
1147 len += sprintf(page+len, "%s", buf);
1148 reg_count++;
1149 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001150 spin_unlock(&dev->t10_pr.registration_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151
Andy Grover6708bb22011-06-08 10:36:43 -07001152 if (!reg_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001153 len += sprintf(page+len, "None\n");
1154
1155 return len;
1156}
1157
1158SE_DEV_PR_ATTR_RO(res_pr_registered_i_pts);
1159
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001160static ssize_t target_core_dev_pr_show_attr_res_pr_type(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001161 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001162{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001163 struct t10_pr_registration *pr_reg;
1164 ssize_t len = 0;
1165
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001166 spin_lock(&dev->dev_reservation_lock);
1167 pr_reg = dev->dev_pr_res_holder;
Christoph Hellwigd977f432012-10-10 17:37:15 -04001168 if (pr_reg) {
1169 len = sprintf(page, "SPC-3 Reservation Type: %s\n",
1170 core_scsi3_pr_dump_type(pr_reg->pr_res_type));
1171 } else {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001172 len = sprintf(page, "No SPC-3 Reservation holder\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001173 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001174
Christoph Hellwigd977f432012-10-10 17:37:15 -04001175 spin_unlock(&dev->dev_reservation_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001176 return len;
1177}
1178
1179SE_DEV_PR_ATTR_RO(res_pr_type);
1180
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001181static ssize_t target_core_dev_pr_show_attr_res_type(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001182 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001183{
Christoph Hellwigd977f432012-10-10 17:37:15 -04001184 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1185 return sprintf(page, "SPC_PASSTHROUGH\n");
1186 else if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
1187 return sprintf(page, "SPC2_RESERVATIONS\n");
1188 else
1189 return sprintf(page, "SPC3_PERSISTENT_RESERVATIONS\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001190}
1191
1192SE_DEV_PR_ATTR_RO(res_type);
1193
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001194static ssize_t target_core_dev_pr_show_attr_res_aptpl_active(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001195 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001196{
Christoph Hellwigd977f432012-10-10 17:37:15 -04001197 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001198 return 0;
1199
1200 return sprintf(page, "APTPL Bit Status: %s\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001201 (dev->t10_pr.pr_aptpl_active) ? "Activated" : "Disabled");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001202}
1203
1204SE_DEV_PR_ATTR_RO(res_aptpl_active);
1205
1206/*
1207 * res_aptpl_metadata
1208 */
1209static ssize_t target_core_dev_pr_show_attr_res_aptpl_metadata(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001210 struct se_device *dev, char *page)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001211{
Christoph Hellwigd977f432012-10-10 17:37:15 -04001212 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001213 return 0;
1214
1215 return sprintf(page, "Ready to process PR APTPL metadata..\n");
1216}
1217
1218enum {
1219 Opt_initiator_fabric, Opt_initiator_node, Opt_initiator_sid,
1220 Opt_sa_res_key, Opt_res_holder, Opt_res_type, Opt_res_scope,
1221 Opt_res_all_tg_pt, Opt_mapped_lun, Opt_target_fabric,
1222 Opt_target_node, Opt_tpgt, Opt_port_rtpi, Opt_target_lun, Opt_err
1223};
1224
1225static match_table_t tokens = {
1226 {Opt_initiator_fabric, "initiator_fabric=%s"},
1227 {Opt_initiator_node, "initiator_node=%s"},
1228 {Opt_initiator_sid, "initiator_sid=%s"},
1229 {Opt_sa_res_key, "sa_res_key=%s"},
1230 {Opt_res_holder, "res_holder=%d"},
1231 {Opt_res_type, "res_type=%d"},
1232 {Opt_res_scope, "res_scope=%d"},
1233 {Opt_res_all_tg_pt, "res_all_tg_pt=%d"},
1234 {Opt_mapped_lun, "mapped_lun=%d"},
1235 {Opt_target_fabric, "target_fabric=%s"},
1236 {Opt_target_node, "target_node=%s"},
1237 {Opt_tpgt, "tpgt=%d"},
1238 {Opt_port_rtpi, "port_rtpi=%d"},
1239 {Opt_target_lun, "target_lun=%d"},
1240 {Opt_err, NULL}
1241};
1242
1243static ssize_t target_core_dev_pr_store_attr_res_aptpl_metadata(
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001244 struct se_device *dev,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001245 const char *page,
1246 size_t count)
1247{
Jesper Juhl6d180252011-03-14 04:05:56 -07001248 unsigned char *i_fabric = NULL, *i_port = NULL, *isid = NULL;
1249 unsigned char *t_fabric = NULL, *t_port = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001250 char *orig, *ptr, *arg_p, *opts;
1251 substring_t args[MAX_OPT_ARGS];
1252 unsigned long long tmp_ll;
1253 u64 sa_res_key = 0;
1254 u32 mapped_lun = 0, target_lun = 0;
1255 int ret = -1, res_holder = 0, all_tg_pt = 0, arg, token;
1256 u16 port_rpti = 0, tpgt = 0;
1257 u8 type = 0, scope;
1258
Christoph Hellwigd977f432012-10-10 17:37:15 -04001259 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1260 return 0;
1261 if (dev->dev_reservation_flags & DRF_SPC2_RESERVATIONS)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001262 return 0;
1263
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001264 if (dev->export_count) {
Andy Grover6708bb22011-06-08 10:36:43 -07001265 pr_debug("Unable to process APTPL metadata while"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001266 " active fabric exports exist\n");
1267 return -EINVAL;
1268 }
1269
1270 opts = kstrdup(page, GFP_KERNEL);
1271 if (!opts)
1272 return -ENOMEM;
1273
1274 orig = opts;
Sebastian Andrzej Siewior90c161b2011-11-23 20:53:17 +01001275 while ((ptr = strsep(&opts, ",\n")) != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001276 if (!*ptr)
1277 continue;
1278
1279 token = match_token(ptr, tokens, args);
1280 switch (token) {
1281 case Opt_initiator_fabric:
1282 i_fabric = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001283 if (!i_fabric) {
1284 ret = -ENOMEM;
1285 goto out;
1286 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001287 break;
1288 case Opt_initiator_node:
1289 i_port = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001290 if (!i_port) {
1291 ret = -ENOMEM;
1292 goto out;
1293 }
Dan Carpenter60d645a2011-06-15 10:03:05 -07001294 if (strlen(i_port) >= PR_APTPL_MAX_IPORT_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001295 pr_err("APTPL metadata initiator_node="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001296 " exceeds PR_APTPL_MAX_IPORT_LEN: %d\n",
1297 PR_APTPL_MAX_IPORT_LEN);
1298 ret = -EINVAL;
1299 break;
1300 }
1301 break;
1302 case Opt_initiator_sid:
1303 isid = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001304 if (!isid) {
1305 ret = -ENOMEM;
1306 goto out;
1307 }
Dan Carpenter60d645a2011-06-15 10:03:05 -07001308 if (strlen(isid) >= PR_REG_ISID_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001309 pr_err("APTPL metadata initiator_isid"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001310 "= exceeds PR_REG_ISID_LEN: %d\n",
1311 PR_REG_ISID_LEN);
1312 ret = -EINVAL;
1313 break;
1314 }
1315 break;
1316 case Opt_sa_res_key:
1317 arg_p = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001318 if (!arg_p) {
1319 ret = -ENOMEM;
1320 goto out;
1321 }
Jingoo Han57103d72013-07-19 16:22:19 +09001322 ret = kstrtoull(arg_p, 0, &tmp_ll);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001323 if (ret < 0) {
Jingoo Han57103d72013-07-19 16:22:19 +09001324 pr_err("kstrtoull() failed for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001325 " sa_res_key=\n");
1326 goto out;
1327 }
1328 sa_res_key = (u64)tmp_ll;
1329 break;
1330 /*
1331 * PR APTPL Metadata for Reservation
1332 */
1333 case Opt_res_holder:
1334 match_int(args, &arg);
1335 res_holder = arg;
1336 break;
1337 case Opt_res_type:
1338 match_int(args, &arg);
1339 type = (u8)arg;
1340 break;
1341 case Opt_res_scope:
1342 match_int(args, &arg);
1343 scope = (u8)arg;
1344 break;
1345 case Opt_res_all_tg_pt:
1346 match_int(args, &arg);
1347 all_tg_pt = (int)arg;
1348 break;
1349 case Opt_mapped_lun:
1350 match_int(args, &arg);
1351 mapped_lun = (u32)arg;
1352 break;
1353 /*
1354 * PR APTPL Metadata for Target Port
1355 */
1356 case Opt_target_fabric:
1357 t_fabric = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001358 if (!t_fabric) {
1359 ret = -ENOMEM;
1360 goto out;
1361 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001362 break;
1363 case Opt_target_node:
1364 t_port = match_strdup(&args[0]);
Jesper Juhl6d180252011-03-14 04:05:56 -07001365 if (!t_port) {
1366 ret = -ENOMEM;
1367 goto out;
1368 }
Dan Carpenter60d645a2011-06-15 10:03:05 -07001369 if (strlen(t_port) >= PR_APTPL_MAX_TPORT_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07001370 pr_err("APTPL metadata target_node="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001371 " exceeds PR_APTPL_MAX_TPORT_LEN: %d\n",
1372 PR_APTPL_MAX_TPORT_LEN);
1373 ret = -EINVAL;
1374 break;
1375 }
1376 break;
1377 case Opt_tpgt:
1378 match_int(args, &arg);
1379 tpgt = (u16)arg;
1380 break;
1381 case Opt_port_rtpi:
1382 match_int(args, &arg);
1383 port_rpti = (u16)arg;
1384 break;
1385 case Opt_target_lun:
1386 match_int(args, &arg);
1387 target_lun = (u32)arg;
1388 break;
1389 default:
1390 break;
1391 }
1392 }
1393
Andy Grover6708bb22011-06-08 10:36:43 -07001394 if (!i_port || !t_port || !sa_res_key) {
1395 pr_err("Illegal parameters for APTPL registration\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001396 ret = -EINVAL;
1397 goto out;
1398 }
1399
1400 if (res_holder && !(type)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001401 pr_err("Illegal PR type: 0x%02x for reservation"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001402 " holder\n", type);
1403 ret = -EINVAL;
1404 goto out;
1405 }
1406
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001407 ret = core_scsi3_alloc_aptpl_registration(&dev->t10_pr, sa_res_key,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001408 i_port, isid, mapped_lun, t_port, tpgt, target_lun,
1409 res_holder, all_tg_pt, type);
1410out:
Jesper Juhl6d180252011-03-14 04:05:56 -07001411 kfree(i_fabric);
1412 kfree(i_port);
1413 kfree(isid);
1414 kfree(t_fabric);
1415 kfree(t_port);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001416 kfree(orig);
1417 return (ret == 0) ? count : ret;
1418}
1419
1420SE_DEV_PR_ATTR(res_aptpl_metadata, S_IRUGO | S_IWUSR);
1421
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001422CONFIGFS_EATTR_OPS(target_core_dev_pr, se_device, dev_pr_group);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001423
1424static struct configfs_attribute *target_core_dev_pr_attrs[] = {
1425 &target_core_dev_pr_res_holder.attr,
1426 &target_core_dev_pr_res_pr_all_tgt_pts.attr,
1427 &target_core_dev_pr_res_pr_generation.attr,
1428 &target_core_dev_pr_res_pr_holder_tg_port.attr,
1429 &target_core_dev_pr_res_pr_registered_i_pts.attr,
1430 &target_core_dev_pr_res_pr_type.attr,
1431 &target_core_dev_pr_res_type.attr,
1432 &target_core_dev_pr_res_aptpl_active.attr,
1433 &target_core_dev_pr_res_aptpl_metadata.attr,
1434 NULL,
1435};
1436
1437static struct configfs_item_operations target_core_dev_pr_ops = {
1438 .show_attribute = target_core_dev_pr_attr_show,
1439 .store_attribute = target_core_dev_pr_attr_store,
1440};
1441
1442static struct config_item_type target_core_dev_pr_cit = {
1443 .ct_item_ops = &target_core_dev_pr_ops,
1444 .ct_attrs = target_core_dev_pr_attrs,
1445 .ct_owner = THIS_MODULE,
1446};
1447
1448/* End functions for struct config_item_type target_core_dev_pr_cit */
1449
1450/* Start functions for struct config_item_type target_core_dev_cit */
1451
1452static ssize_t target_core_show_dev_info(void *p, char *page)
1453{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001454 struct se_device *dev = p;
1455 struct se_subsystem_api *t = dev->transport;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001456 int bl = 0;
1457 ssize_t read_bytes = 0;
1458
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001459 transport_dump_dev_state(dev, page, &bl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001460 read_bytes += bl;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001461 read_bytes += t->show_configfs_dev_params(dev, page+read_bytes);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001462 return read_bytes;
1463}
1464
1465static struct target_core_configfs_attribute target_core_attr_dev_info = {
1466 .attr = { .ca_owner = THIS_MODULE,
1467 .ca_name = "info",
1468 .ca_mode = S_IRUGO },
1469 .show = target_core_show_dev_info,
1470 .store = NULL,
1471};
1472
1473static ssize_t target_core_store_dev_control(
1474 void *p,
1475 const char *page,
1476 size_t count)
1477{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001478 struct se_device *dev = p;
1479 struct se_subsystem_api *t = dev->transport;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001480
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001481 return t->set_configfs_dev_params(dev, page, count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001482}
1483
1484static struct target_core_configfs_attribute target_core_attr_dev_control = {
1485 .attr = { .ca_owner = THIS_MODULE,
1486 .ca_name = "control",
1487 .ca_mode = S_IWUSR },
1488 .show = NULL,
1489 .store = target_core_store_dev_control,
1490};
1491
1492static ssize_t target_core_show_dev_alias(void *p, char *page)
1493{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001494 struct se_device *dev = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001495
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001496 if (!(dev->dev_flags & DF_USING_ALIAS))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001497 return 0;
1498
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001499 return snprintf(page, PAGE_SIZE, "%s\n", dev->dev_alias);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001500}
1501
1502static ssize_t target_core_store_dev_alias(
1503 void *p,
1504 const char *page,
1505 size_t count)
1506{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001507 struct se_device *dev = p;
1508 struct se_hba *hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001509 ssize_t read_bytes;
1510
1511 if (count > (SE_DEV_ALIAS_LEN-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001512 pr_err("alias count: %d exceeds"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001513 " SE_DEV_ALIAS_LEN-1: %u\n", (int)count,
1514 SE_DEV_ALIAS_LEN-1);
1515 return -EINVAL;
1516 }
1517
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001518 read_bytes = snprintf(&dev->dev_alias[0], SE_DEV_ALIAS_LEN, "%s", page);
Dan Carpenter30116842012-01-27 15:50:55 +03001519 if (!read_bytes)
1520 return -EINVAL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001521 if (dev->dev_alias[read_bytes - 1] == '\n')
1522 dev->dev_alias[read_bytes - 1] = '\0';
Sebastian Andrzej Siewior0877eafd2011-11-28 13:57:25 +01001523
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001524 dev->dev_flags |= DF_USING_ALIAS;
Dan Carpenter30116842012-01-27 15:50:55 +03001525
Andy Grover6708bb22011-06-08 10:36:43 -07001526 pr_debug("Target_Core_ConfigFS: %s/%s set alias: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001527 config_item_name(&hba->hba_group.cg_item),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001528 config_item_name(&dev->dev_group.cg_item),
1529 dev->dev_alias);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001530
1531 return read_bytes;
1532}
1533
1534static struct target_core_configfs_attribute target_core_attr_dev_alias = {
1535 .attr = { .ca_owner = THIS_MODULE,
1536 .ca_name = "alias",
1537 .ca_mode = S_IRUGO | S_IWUSR },
1538 .show = target_core_show_dev_alias,
1539 .store = target_core_store_dev_alias,
1540};
1541
1542static ssize_t target_core_show_dev_udev_path(void *p, char *page)
1543{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001544 struct se_device *dev = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001545
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001546 if (!(dev->dev_flags & DF_USING_UDEV_PATH))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001547 return 0;
1548
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001549 return snprintf(page, PAGE_SIZE, "%s\n", dev->udev_path);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001550}
1551
1552static ssize_t target_core_store_dev_udev_path(
1553 void *p,
1554 const char *page,
1555 size_t count)
1556{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001557 struct se_device *dev = p;
1558 struct se_hba *hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001559 ssize_t read_bytes;
1560
1561 if (count > (SE_UDEV_PATH_LEN-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001562 pr_err("udev_path count: %d exceeds"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001563 " SE_UDEV_PATH_LEN-1: %u\n", (int)count,
1564 SE_UDEV_PATH_LEN-1);
1565 return -EINVAL;
1566 }
1567
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001568 read_bytes = snprintf(&dev->udev_path[0], SE_UDEV_PATH_LEN,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001569 "%s", page);
Dan Carpenter30116842012-01-27 15:50:55 +03001570 if (!read_bytes)
1571 return -EINVAL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001572 if (dev->udev_path[read_bytes - 1] == '\n')
1573 dev->udev_path[read_bytes - 1] = '\0';
Sebastian Andrzej Siewior0877eafd2011-11-28 13:57:25 +01001574
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001575 dev->dev_flags |= DF_USING_UDEV_PATH;
Dan Carpenter30116842012-01-27 15:50:55 +03001576
Andy Grover6708bb22011-06-08 10:36:43 -07001577 pr_debug("Target_Core_ConfigFS: %s/%s set udev_path: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001578 config_item_name(&hba->hba_group.cg_item),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001579 config_item_name(&dev->dev_group.cg_item),
1580 dev->udev_path);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001581
1582 return read_bytes;
1583}
1584
1585static struct target_core_configfs_attribute target_core_attr_dev_udev_path = {
1586 .attr = { .ca_owner = THIS_MODULE,
1587 .ca_name = "udev_path",
1588 .ca_mode = S_IRUGO | S_IWUSR },
1589 .show = target_core_show_dev_udev_path,
1590 .store = target_core_store_dev_udev_path,
1591};
1592
Andy Grover64146db2013-04-30 11:59:15 -07001593static ssize_t target_core_show_dev_enable(void *p, char *page)
1594{
1595 struct se_device *dev = p;
1596
1597 return snprintf(page, PAGE_SIZE, "%d\n", !!(dev->dev_flags & DF_CONFIGURED));
1598}
1599
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001600static ssize_t target_core_store_dev_enable(
1601 void *p,
1602 const char *page,
1603 size_t count)
1604{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001605 struct se_device *dev = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001606 char *ptr;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001607 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001608
1609 ptr = strstr(page, "1");
Andy Grover6708bb22011-06-08 10:36:43 -07001610 if (!ptr) {
1611 pr_err("For dev_enable ops, only valid value"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001612 " is \"1\"\n");
1613 return -EINVAL;
1614 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001615
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001616 ret = target_configure_device(dev);
1617 if (ret)
1618 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001619 return count;
1620}
1621
1622static struct target_core_configfs_attribute target_core_attr_dev_enable = {
1623 .attr = { .ca_owner = THIS_MODULE,
1624 .ca_name = "enable",
Andy Grover64146db2013-04-30 11:59:15 -07001625 .ca_mode = S_IRUGO | S_IWUSR },
1626 .show = target_core_show_dev_enable,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001627 .store = target_core_store_dev_enable,
1628};
1629
1630static ssize_t target_core_show_alua_lu_gp(void *p, char *page)
1631{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001632 struct se_device *dev = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001633 struct config_item *lu_ci;
1634 struct t10_alua_lu_gp *lu_gp;
1635 struct t10_alua_lu_gp_member *lu_gp_mem;
1636 ssize_t len = 0;
1637
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001638 lu_gp_mem = dev->dev_alua_lu_gp_mem;
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001639 if (!lu_gp_mem)
1640 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001641
1642 spin_lock(&lu_gp_mem->lu_gp_mem_lock);
1643 lu_gp = lu_gp_mem->lu_gp;
Andy Grover6708bb22011-06-08 10:36:43 -07001644 if (lu_gp) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001645 lu_ci = &lu_gp->lu_gp_group.cg_item;
1646 len += sprintf(page, "LU Group Alias: %s\nLU Group ID: %hu\n",
1647 config_item_name(lu_ci), lu_gp->lu_gp_id);
1648 }
1649 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
1650
1651 return len;
1652}
1653
1654static ssize_t target_core_store_alua_lu_gp(
1655 void *p,
1656 const char *page,
1657 size_t count)
1658{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001659 struct se_device *dev = p;
1660 struct se_hba *hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001661 struct t10_alua_lu_gp *lu_gp = NULL, *lu_gp_new = NULL;
1662 struct t10_alua_lu_gp_member *lu_gp_mem;
1663 unsigned char buf[LU_GROUP_NAME_BUF];
1664 int move = 0;
1665
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001666 lu_gp_mem = dev->dev_alua_lu_gp_mem;
1667 if (!lu_gp_mem)
1668 return 0;
1669
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001670 if (count > LU_GROUP_NAME_BUF) {
Andy Grover6708bb22011-06-08 10:36:43 -07001671 pr_err("ALUA LU Group Alias too large!\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001672 return -EINVAL;
1673 }
1674 memset(buf, 0, LU_GROUP_NAME_BUF);
1675 memcpy(buf, page, count);
1676 /*
1677 * Any ALUA logical unit alias besides "NULL" means we will be
1678 * making a new group association.
1679 */
1680 if (strcmp(strstrip(buf), "NULL")) {
1681 /*
1682 * core_alua_get_lu_gp_by_name() will increment reference to
1683 * struct t10_alua_lu_gp. This reference is released with
1684 * core_alua_get_lu_gp_by_name below().
1685 */
1686 lu_gp_new = core_alua_get_lu_gp_by_name(strstrip(buf));
Andy Grover6708bb22011-06-08 10:36:43 -07001687 if (!lu_gp_new)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001688 return -ENODEV;
1689 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001690
1691 spin_lock(&lu_gp_mem->lu_gp_mem_lock);
1692 lu_gp = lu_gp_mem->lu_gp;
Andy Grover6708bb22011-06-08 10:36:43 -07001693 if (lu_gp) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001694 /*
1695 * Clearing an existing lu_gp association, and replacing
1696 * with NULL
1697 */
Andy Grover6708bb22011-06-08 10:36:43 -07001698 if (!lu_gp_new) {
1699 pr_debug("Target_Core_ConfigFS: Releasing %s/%s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001700 " from ALUA LU Group: core/alua/lu_gps/%s, ID:"
1701 " %hu\n",
1702 config_item_name(&hba->hba_group.cg_item),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001703 config_item_name(&dev->dev_group.cg_item),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001704 config_item_name(&lu_gp->lu_gp_group.cg_item),
1705 lu_gp->lu_gp_id);
1706
1707 __core_alua_drop_lu_gp_mem(lu_gp_mem, lu_gp);
1708 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
1709
1710 return count;
1711 }
1712 /*
1713 * Removing existing association of lu_gp_mem with lu_gp
1714 */
1715 __core_alua_drop_lu_gp_mem(lu_gp_mem, lu_gp);
1716 move = 1;
1717 }
1718 /*
1719 * Associate lu_gp_mem with lu_gp_new.
1720 */
1721 __core_alua_attach_lu_gp_mem(lu_gp_mem, lu_gp_new);
1722 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
1723
Andy Grover6708bb22011-06-08 10:36:43 -07001724 pr_debug("Target_Core_ConfigFS: %s %s/%s to ALUA LU Group:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001725 " core/alua/lu_gps/%s, ID: %hu\n",
1726 (move) ? "Moving" : "Adding",
1727 config_item_name(&hba->hba_group.cg_item),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001728 config_item_name(&dev->dev_group.cg_item),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001729 config_item_name(&lu_gp_new->lu_gp_group.cg_item),
1730 lu_gp_new->lu_gp_id);
1731
1732 core_alua_put_lu_gp_from_name(lu_gp_new);
1733 return count;
1734}
1735
1736static struct target_core_configfs_attribute target_core_attr_dev_alua_lu_gp = {
1737 .attr = { .ca_owner = THIS_MODULE,
1738 .ca_name = "alua_lu_gp",
1739 .ca_mode = S_IRUGO | S_IWUSR },
1740 .show = target_core_show_alua_lu_gp,
1741 .store = target_core_store_alua_lu_gp,
1742};
1743
1744static struct configfs_attribute *lio_core_dev_attrs[] = {
1745 &target_core_attr_dev_info.attr,
1746 &target_core_attr_dev_control.attr,
1747 &target_core_attr_dev_alias.attr,
1748 &target_core_attr_dev_udev_path.attr,
1749 &target_core_attr_dev_enable.attr,
1750 &target_core_attr_dev_alua_lu_gp.attr,
1751 NULL,
1752};
1753
1754static void target_core_dev_release(struct config_item *item)
1755{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001756 struct config_group *dev_cg = to_config_group(item);
1757 struct se_device *dev =
1758 container_of(dev_cg, struct se_device, dev_group);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001759
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001760 kfree(dev_cg->default_groups);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001761 target_free_device(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001762}
1763
1764static ssize_t target_core_dev_show(struct config_item *item,
1765 struct configfs_attribute *attr,
1766 char *page)
1767{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001768 struct config_group *dev_cg = to_config_group(item);
1769 struct se_device *dev =
1770 container_of(dev_cg, struct se_device, dev_group);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001771 struct target_core_configfs_attribute *tc_attr = container_of(
1772 attr, struct target_core_configfs_attribute, attr);
1773
Andy Grover6708bb22011-06-08 10:36:43 -07001774 if (!tc_attr->show)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001775 return -EINVAL;
1776
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001777 return tc_attr->show(dev, page);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001778}
1779
1780static ssize_t target_core_dev_store(struct config_item *item,
1781 struct configfs_attribute *attr,
1782 const char *page, size_t count)
1783{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001784 struct config_group *dev_cg = to_config_group(item);
1785 struct se_device *dev =
1786 container_of(dev_cg, struct se_device, dev_group);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001787 struct target_core_configfs_attribute *tc_attr = container_of(
1788 attr, struct target_core_configfs_attribute, attr);
1789
Andy Grover6708bb22011-06-08 10:36:43 -07001790 if (!tc_attr->store)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001791 return -EINVAL;
1792
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001793 return tc_attr->store(dev, page, count);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001794}
1795
1796static struct configfs_item_operations target_core_dev_item_ops = {
1797 .release = target_core_dev_release,
1798 .show_attribute = target_core_dev_show,
1799 .store_attribute = target_core_dev_store,
1800};
1801
1802static struct config_item_type target_core_dev_cit = {
1803 .ct_item_ops = &target_core_dev_item_ops,
1804 .ct_attrs = lio_core_dev_attrs,
1805 .ct_owner = THIS_MODULE,
1806};
1807
1808/* End functions for struct config_item_type target_core_dev_cit */
1809
1810/* Start functions for struct config_item_type target_core_alua_lu_gp_cit */
1811
1812CONFIGFS_EATTR_STRUCT(target_core_alua_lu_gp, t10_alua_lu_gp);
1813#define SE_DEV_ALUA_LU_ATTR(_name, _mode) \
1814static struct target_core_alua_lu_gp_attribute \
1815 target_core_alua_lu_gp_##_name = \
1816 __CONFIGFS_EATTR(_name, _mode, \
1817 target_core_alua_lu_gp_show_attr_##_name, \
1818 target_core_alua_lu_gp_store_attr_##_name);
1819
1820#define SE_DEV_ALUA_LU_ATTR_RO(_name) \
1821static struct target_core_alua_lu_gp_attribute \
1822 target_core_alua_lu_gp_##_name = \
1823 __CONFIGFS_EATTR_RO(_name, \
1824 target_core_alua_lu_gp_show_attr_##_name);
1825
1826/*
1827 * lu_gp_id
1828 */
1829static ssize_t target_core_alua_lu_gp_show_attr_lu_gp_id(
1830 struct t10_alua_lu_gp *lu_gp,
1831 char *page)
1832{
Andy Grover6708bb22011-06-08 10:36:43 -07001833 if (!lu_gp->lu_gp_valid_id)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001834 return 0;
1835
1836 return sprintf(page, "%hu\n", lu_gp->lu_gp_id);
1837}
1838
1839static ssize_t target_core_alua_lu_gp_store_attr_lu_gp_id(
1840 struct t10_alua_lu_gp *lu_gp,
1841 const char *page,
1842 size_t count)
1843{
1844 struct config_group *alua_lu_gp_cg = &lu_gp->lu_gp_group;
1845 unsigned long lu_gp_id;
1846 int ret;
1847
Jingoo Han57103d72013-07-19 16:22:19 +09001848 ret = kstrtoul(page, 0, &lu_gp_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001849 if (ret < 0) {
Jingoo Han57103d72013-07-19 16:22:19 +09001850 pr_err("kstrtoul() returned %d for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001851 " lu_gp_id\n", ret);
Jingoo Han57103d72013-07-19 16:22:19 +09001852 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001853 }
1854 if (lu_gp_id > 0x0000ffff) {
Andy Grover6708bb22011-06-08 10:36:43 -07001855 pr_err("ALUA lu_gp_id: %lu exceeds maximum:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001856 " 0x0000ffff\n", lu_gp_id);
1857 return -EINVAL;
1858 }
1859
1860 ret = core_alua_set_lu_gp_id(lu_gp, (u16)lu_gp_id);
1861 if (ret < 0)
1862 return -EINVAL;
1863
Andy Grover6708bb22011-06-08 10:36:43 -07001864 pr_debug("Target_Core_ConfigFS: Set ALUA Logical Unit"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001865 " Group: core/alua/lu_gps/%s to ID: %hu\n",
1866 config_item_name(&alua_lu_gp_cg->cg_item),
1867 lu_gp->lu_gp_id);
1868
1869 return count;
1870}
1871
1872SE_DEV_ALUA_LU_ATTR(lu_gp_id, S_IRUGO | S_IWUSR);
1873
1874/*
1875 * members
1876 */
1877static ssize_t target_core_alua_lu_gp_show_attr_members(
1878 struct t10_alua_lu_gp *lu_gp,
1879 char *page)
1880{
1881 struct se_device *dev;
1882 struct se_hba *hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001883 struct t10_alua_lu_gp_member *lu_gp_mem;
1884 ssize_t len = 0, cur_len;
1885 unsigned char buf[LU_GROUP_NAME_BUF];
1886
1887 memset(buf, 0, LU_GROUP_NAME_BUF);
1888
1889 spin_lock(&lu_gp->lu_gp_lock);
1890 list_for_each_entry(lu_gp_mem, &lu_gp->lu_gp_mem_list, lu_gp_mem_list) {
1891 dev = lu_gp_mem->lu_gp_mem_dev;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001892 hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001893
1894 cur_len = snprintf(buf, LU_GROUP_NAME_BUF, "%s/%s\n",
1895 config_item_name(&hba->hba_group.cg_item),
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001896 config_item_name(&dev->dev_group.cg_item));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001897 cur_len++; /* Extra byte for NULL terminator */
1898
1899 if ((cur_len + len) > PAGE_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001900 pr_warn("Ran out of lu_gp_show_attr"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001901 "_members buffer\n");
1902 break;
1903 }
1904 memcpy(page+len, buf, cur_len);
1905 len += cur_len;
1906 }
1907 spin_unlock(&lu_gp->lu_gp_lock);
1908
1909 return len;
1910}
1911
1912SE_DEV_ALUA_LU_ATTR_RO(members);
1913
1914CONFIGFS_EATTR_OPS(target_core_alua_lu_gp, t10_alua_lu_gp, lu_gp_group);
1915
1916static struct configfs_attribute *target_core_alua_lu_gp_attrs[] = {
1917 &target_core_alua_lu_gp_lu_gp_id.attr,
1918 &target_core_alua_lu_gp_members.attr,
1919 NULL,
1920};
1921
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08001922static void target_core_alua_lu_gp_release(struct config_item *item)
1923{
1924 struct t10_alua_lu_gp *lu_gp = container_of(to_config_group(item),
1925 struct t10_alua_lu_gp, lu_gp_group);
1926
1927 core_alua_free_lu_gp(lu_gp);
1928}
1929
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001930static struct configfs_item_operations target_core_alua_lu_gp_ops = {
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08001931 .release = target_core_alua_lu_gp_release,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001932 .show_attribute = target_core_alua_lu_gp_attr_show,
1933 .store_attribute = target_core_alua_lu_gp_attr_store,
1934};
1935
1936static struct config_item_type target_core_alua_lu_gp_cit = {
1937 .ct_item_ops = &target_core_alua_lu_gp_ops,
1938 .ct_attrs = target_core_alua_lu_gp_attrs,
1939 .ct_owner = THIS_MODULE,
1940};
1941
1942/* End functions for struct config_item_type target_core_alua_lu_gp_cit */
1943
1944/* Start functions for struct config_item_type target_core_alua_lu_gps_cit */
1945
1946static struct config_group *target_core_alua_create_lu_gp(
1947 struct config_group *group,
1948 const char *name)
1949{
1950 struct t10_alua_lu_gp *lu_gp;
1951 struct config_group *alua_lu_gp_cg = NULL;
1952 struct config_item *alua_lu_gp_ci = NULL;
1953
1954 lu_gp = core_alua_allocate_lu_gp(name, 0);
1955 if (IS_ERR(lu_gp))
1956 return NULL;
1957
1958 alua_lu_gp_cg = &lu_gp->lu_gp_group;
1959 alua_lu_gp_ci = &alua_lu_gp_cg->cg_item;
1960
1961 config_group_init_type_name(alua_lu_gp_cg, name,
1962 &target_core_alua_lu_gp_cit);
1963
Andy Grover6708bb22011-06-08 10:36:43 -07001964 pr_debug("Target_Core_ConfigFS: Allocated ALUA Logical Unit"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001965 " Group: core/alua/lu_gps/%s\n",
1966 config_item_name(alua_lu_gp_ci));
1967
1968 return alua_lu_gp_cg;
1969
1970}
1971
1972static void target_core_alua_drop_lu_gp(
1973 struct config_group *group,
1974 struct config_item *item)
1975{
1976 struct t10_alua_lu_gp *lu_gp = container_of(to_config_group(item),
1977 struct t10_alua_lu_gp, lu_gp_group);
1978
Andy Grover6708bb22011-06-08 10:36:43 -07001979 pr_debug("Target_Core_ConfigFS: Releasing ALUA Logical Unit"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001980 " Group: core/alua/lu_gps/%s, ID: %hu\n",
1981 config_item_name(item), lu_gp->lu_gp_id);
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08001982 /*
1983 * core_alua_free_lu_gp() is called from target_core_alua_lu_gp_ops->release()
1984 * -> target_core_alua_lu_gp_release()
1985 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001986 config_item_put(item);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001987}
1988
1989static struct configfs_group_operations target_core_alua_lu_gps_group_ops = {
1990 .make_group = &target_core_alua_create_lu_gp,
1991 .drop_item = &target_core_alua_drop_lu_gp,
1992};
1993
1994static struct config_item_type target_core_alua_lu_gps_cit = {
1995 .ct_item_ops = NULL,
1996 .ct_group_ops = &target_core_alua_lu_gps_group_ops,
1997 .ct_owner = THIS_MODULE,
1998};
1999
2000/* End functions for struct config_item_type target_core_alua_lu_gps_cit */
2001
2002/* Start functions for struct config_item_type target_core_alua_tg_pt_gp_cit */
2003
2004CONFIGFS_EATTR_STRUCT(target_core_alua_tg_pt_gp, t10_alua_tg_pt_gp);
2005#define SE_DEV_ALUA_TG_PT_ATTR(_name, _mode) \
2006static struct target_core_alua_tg_pt_gp_attribute \
2007 target_core_alua_tg_pt_gp_##_name = \
2008 __CONFIGFS_EATTR(_name, _mode, \
2009 target_core_alua_tg_pt_gp_show_attr_##_name, \
2010 target_core_alua_tg_pt_gp_store_attr_##_name);
2011
2012#define SE_DEV_ALUA_TG_PT_ATTR_RO(_name) \
2013static struct target_core_alua_tg_pt_gp_attribute \
2014 target_core_alua_tg_pt_gp_##_name = \
2015 __CONFIGFS_EATTR_RO(_name, \
2016 target_core_alua_tg_pt_gp_show_attr_##_name);
2017
2018/*
2019 * alua_access_state
2020 */
2021static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_access_state(
2022 struct t10_alua_tg_pt_gp *tg_pt_gp,
2023 char *page)
2024{
2025 return sprintf(page, "%d\n",
2026 atomic_read(&tg_pt_gp->tg_pt_gp_alua_access_state));
2027}
2028
2029static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_state(
2030 struct t10_alua_tg_pt_gp *tg_pt_gp,
2031 const char *page,
2032 size_t count)
2033{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002034 struct se_device *dev = tg_pt_gp->tg_pt_gp_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002035 unsigned long tmp;
2036 int new_state, ret;
2037
Andy Grover6708bb22011-06-08 10:36:43 -07002038 if (!tg_pt_gp->tg_pt_gp_valid_id) {
Hannes Reinecke125d0112013-11-19 09:07:46 +01002039 pr_err("Unable to do implicit ALUA on non valid"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002040 " tg_pt_gp ID: %hu\n", tg_pt_gp->tg_pt_gp_valid_id);
2041 return -EINVAL;
2042 }
2043
Jingoo Han57103d72013-07-19 16:22:19 +09002044 ret = kstrtoul(page, 0, &tmp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002045 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07002046 pr_err("Unable to extract new ALUA access state from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002047 " %s\n", page);
Jingoo Han57103d72013-07-19 16:22:19 +09002048 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002049 }
2050 new_state = (int)tmp;
2051
Hannes Reinecke125d0112013-11-19 09:07:46 +01002052 if (!(tg_pt_gp->tg_pt_gp_alua_access_type & TPGS_IMPLICIT_ALUA)) {
2053 pr_err("Unable to process implicit configfs ALUA"
2054 " transition while TPGS_IMPLICIT_ALUA is disabled\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002055 return -EINVAL;
2056 }
2057
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002058 ret = core_alua_do_port_transition(tg_pt_gp, dev,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002059 NULL, NULL, new_state, 0);
2060 return (!ret) ? count : -EINVAL;
2061}
2062
2063SE_DEV_ALUA_TG_PT_ATTR(alua_access_state, S_IRUGO | S_IWUSR);
2064
2065/*
2066 * alua_access_status
2067 */
2068static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_access_status(
2069 struct t10_alua_tg_pt_gp *tg_pt_gp,
2070 char *page)
2071{
2072 return sprintf(page, "%s\n",
2073 core_alua_dump_status(tg_pt_gp->tg_pt_gp_alua_access_status));
2074}
2075
2076static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_status(
2077 struct t10_alua_tg_pt_gp *tg_pt_gp,
2078 const char *page,
2079 size_t count)
2080{
2081 unsigned long tmp;
2082 int new_status, ret;
2083
Andy Grover6708bb22011-06-08 10:36:43 -07002084 if (!tg_pt_gp->tg_pt_gp_valid_id) {
2085 pr_err("Unable to do set ALUA access status on non"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 " valid tg_pt_gp ID: %hu\n",
2087 tg_pt_gp->tg_pt_gp_valid_id);
2088 return -EINVAL;
2089 }
2090
Jingoo Han57103d72013-07-19 16:22:19 +09002091 ret = kstrtoul(page, 0, &tmp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002092 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07002093 pr_err("Unable to extract new ALUA access status"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002094 " from %s\n", page);
Jingoo Han57103d72013-07-19 16:22:19 +09002095 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002096 }
2097 new_status = (int)tmp;
2098
2099 if ((new_status != ALUA_STATUS_NONE) &&
Hannes Reinecke125d0112013-11-19 09:07:46 +01002100 (new_status != ALUA_STATUS_ALTERED_BY_EXPLICIT_STPG) &&
2101 (new_status != ALUA_STATUS_ALTERED_BY_IMPLICIT_ALUA)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002102 pr_err("Illegal ALUA access status: 0x%02x\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002103 new_status);
2104 return -EINVAL;
2105 }
2106
2107 tg_pt_gp->tg_pt_gp_alua_access_status = new_status;
2108 return count;
2109}
2110
2111SE_DEV_ALUA_TG_PT_ATTR(alua_access_status, S_IRUGO | S_IWUSR);
2112
2113/*
2114 * alua_access_type
2115 */
2116static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_access_type(
2117 struct t10_alua_tg_pt_gp *tg_pt_gp,
2118 char *page)
2119{
2120 return core_alua_show_access_type(tg_pt_gp, page);
2121}
2122
2123static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_access_type(
2124 struct t10_alua_tg_pt_gp *tg_pt_gp,
2125 const char *page,
2126 size_t count)
2127{
2128 return core_alua_store_access_type(tg_pt_gp, page, count);
2129}
2130
2131SE_DEV_ALUA_TG_PT_ATTR(alua_access_type, S_IRUGO | S_IWUSR);
2132
2133/*
Hannes Reinecke6be526c2013-11-19 09:07:50 +01002134 * alua_supported_states
2135 */
Hannes Reineckeb0a382c2013-11-19 09:07:51 +01002136
2137#define SE_DEV_ALUA_SUPPORT_STATE_SHOW(_name, _var, _bit) \
2138static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_support_##_name( \
2139 struct t10_alua_tg_pt_gp *t, char *p) \
2140{ \
2141 return sprintf(p, "%d\n", !!(t->_var & _bit)); \
Hannes Reinecke6be526c2013-11-19 09:07:50 +01002142}
2143
Hannes Reineckeb0a382c2013-11-19 09:07:51 +01002144#define SE_DEV_ALUA_SUPPORT_STATE_STORE(_name, _var, _bit) \
2145static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_support_##_name(\
2146 struct t10_alua_tg_pt_gp *t, const char *p, size_t c) \
2147{ \
2148 unsigned long tmp; \
2149 int ret; \
2150 \
2151 if (!t->tg_pt_gp_valid_id) { \
2152 pr_err("Unable to do set ##_name ALUA state on non" \
2153 " valid tg_pt_gp ID: %hu\n", \
2154 t->tg_pt_gp_valid_id); \
2155 return -EINVAL; \
2156 } \
2157 \
2158 ret = kstrtoul(p, 0, &tmp); \
2159 if (ret < 0) { \
2160 pr_err("Invalid value '%s', must be '0' or '1'\n", p); \
2161 return -EINVAL; \
2162 } \
2163 if (tmp > 1) { \
2164 pr_err("Invalid value '%ld', must be '0' or '1'\n", tmp); \
2165 return -EINVAL; \
2166 } \
2167 if (!tmp) \
2168 t->_var |= _bit; \
2169 else \
2170 t->_var &= ~_bit; \
2171 \
2172 return c; \
Hannes Reinecke6be526c2013-11-19 09:07:50 +01002173}
2174
Hannes Reineckeb0a382c2013-11-19 09:07:51 +01002175SE_DEV_ALUA_SUPPORT_STATE_SHOW(transitioning,
2176 tg_pt_gp_alua_supported_states, ALUA_T_SUP);
2177SE_DEV_ALUA_SUPPORT_STATE_STORE(transitioning,
2178 tg_pt_gp_alua_supported_states, ALUA_T_SUP);
2179SE_DEV_ALUA_TG_PT_ATTR(alua_support_transitioning, S_IRUGO | S_IWUSR);
2180
2181SE_DEV_ALUA_SUPPORT_STATE_SHOW(offline,
2182 tg_pt_gp_alua_supported_states, ALUA_O_SUP);
2183SE_DEV_ALUA_SUPPORT_STATE_STORE(offline,
2184 tg_pt_gp_alua_supported_states, ALUA_O_SUP);
2185SE_DEV_ALUA_TG_PT_ATTR(alua_support_offline, S_IRUGO | S_IWUSR);
2186
2187SE_DEV_ALUA_SUPPORT_STATE_SHOW(lba_dependent,
2188 tg_pt_gp_alua_supported_states, ALUA_LBD_SUP);
2189SE_DEV_ALUA_SUPPORT_STATE_STORE(lba_dependent,
2190 tg_pt_gp_alua_supported_states, ALUA_LBD_SUP);
2191SE_DEV_ALUA_TG_PT_ATTR(alua_support_lba_dependent, S_IRUGO | S_IWUSR);
2192
2193SE_DEV_ALUA_SUPPORT_STATE_SHOW(unavailable,
2194 tg_pt_gp_alua_supported_states, ALUA_U_SUP);
2195SE_DEV_ALUA_SUPPORT_STATE_STORE(unavailable,
2196 tg_pt_gp_alua_supported_states, ALUA_U_SUP);
2197SE_DEV_ALUA_TG_PT_ATTR(alua_support_unavailable, S_IRUGO | S_IWUSR);
2198
2199SE_DEV_ALUA_SUPPORT_STATE_SHOW(standby,
2200 tg_pt_gp_alua_supported_states, ALUA_S_SUP);
2201SE_DEV_ALUA_SUPPORT_STATE_STORE(standby,
2202 tg_pt_gp_alua_supported_states, ALUA_S_SUP);
2203SE_DEV_ALUA_TG_PT_ATTR(alua_support_standby, S_IRUGO | S_IWUSR);
2204
2205SE_DEV_ALUA_SUPPORT_STATE_SHOW(active_optimized,
2206 tg_pt_gp_alua_supported_states, ALUA_AO_SUP);
2207SE_DEV_ALUA_SUPPORT_STATE_STORE(active_optimized,
2208 tg_pt_gp_alua_supported_states, ALUA_AO_SUP);
2209SE_DEV_ALUA_TG_PT_ATTR(alua_support_active_optimized, S_IRUGO | S_IWUSR);
2210
2211SE_DEV_ALUA_SUPPORT_STATE_SHOW(active_nonoptimized,
2212 tg_pt_gp_alua_supported_states, ALUA_AN_SUP);
2213SE_DEV_ALUA_SUPPORT_STATE_STORE(active_nonoptimized,
2214 tg_pt_gp_alua_supported_states, ALUA_AN_SUP);
2215SE_DEV_ALUA_TG_PT_ATTR(alua_support_active_nonoptimized, S_IRUGO | S_IWUSR);
Hannes Reinecke6be526c2013-11-19 09:07:50 +01002216
2217/*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002218 * alua_write_metadata
2219 */
2220static ssize_t target_core_alua_tg_pt_gp_show_attr_alua_write_metadata(
2221 struct t10_alua_tg_pt_gp *tg_pt_gp,
2222 char *page)
2223{
2224 return sprintf(page, "%d\n", tg_pt_gp->tg_pt_gp_write_metadata);
2225}
2226
2227static ssize_t target_core_alua_tg_pt_gp_store_attr_alua_write_metadata(
2228 struct t10_alua_tg_pt_gp *tg_pt_gp,
2229 const char *page,
2230 size_t count)
2231{
2232 unsigned long tmp;
2233 int ret;
2234
Jingoo Han57103d72013-07-19 16:22:19 +09002235 ret = kstrtoul(page, 0, &tmp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002236 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07002237 pr_err("Unable to extract alua_write_metadata\n");
Jingoo Han57103d72013-07-19 16:22:19 +09002238 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002239 }
2240
2241 if ((tmp != 0) && (tmp != 1)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002242 pr_err("Illegal value for alua_write_metadata:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002243 " %lu\n", tmp);
2244 return -EINVAL;
2245 }
2246 tg_pt_gp->tg_pt_gp_write_metadata = (int)tmp;
2247
2248 return count;
2249}
2250
2251SE_DEV_ALUA_TG_PT_ATTR(alua_write_metadata, S_IRUGO | S_IWUSR);
2252
2253
2254
2255/*
2256 * nonop_delay_msecs
2257 */
2258static ssize_t target_core_alua_tg_pt_gp_show_attr_nonop_delay_msecs(
2259 struct t10_alua_tg_pt_gp *tg_pt_gp,
2260 char *page)
2261{
2262 return core_alua_show_nonop_delay_msecs(tg_pt_gp, page);
2263
2264}
2265
2266static ssize_t target_core_alua_tg_pt_gp_store_attr_nonop_delay_msecs(
2267 struct t10_alua_tg_pt_gp *tg_pt_gp,
2268 const char *page,
2269 size_t count)
2270{
2271 return core_alua_store_nonop_delay_msecs(tg_pt_gp, page, count);
2272}
2273
2274SE_DEV_ALUA_TG_PT_ATTR(nonop_delay_msecs, S_IRUGO | S_IWUSR);
2275
2276/*
2277 * trans_delay_msecs
2278 */
2279static ssize_t target_core_alua_tg_pt_gp_show_attr_trans_delay_msecs(
2280 struct t10_alua_tg_pt_gp *tg_pt_gp,
2281 char *page)
2282{
2283 return core_alua_show_trans_delay_msecs(tg_pt_gp, page);
2284}
2285
2286static ssize_t target_core_alua_tg_pt_gp_store_attr_trans_delay_msecs(
2287 struct t10_alua_tg_pt_gp *tg_pt_gp,
2288 const char *page,
2289 size_t count)
2290{
2291 return core_alua_store_trans_delay_msecs(tg_pt_gp, page, count);
2292}
2293
2294SE_DEV_ALUA_TG_PT_ATTR(trans_delay_msecs, S_IRUGO | S_IWUSR);
2295
2296/*
Hannes Reinecke125d0112013-11-19 09:07:46 +01002297 * implicit_trans_secs
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002298 */
Hannes Reinecke125d0112013-11-19 09:07:46 +01002299static ssize_t target_core_alua_tg_pt_gp_show_attr_implicit_trans_secs(
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002300 struct t10_alua_tg_pt_gp *tg_pt_gp,
2301 char *page)
2302{
Hannes Reinecke125d0112013-11-19 09:07:46 +01002303 return core_alua_show_implicit_trans_secs(tg_pt_gp, page);
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002304}
2305
Hannes Reinecke125d0112013-11-19 09:07:46 +01002306static ssize_t target_core_alua_tg_pt_gp_store_attr_implicit_trans_secs(
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002307 struct t10_alua_tg_pt_gp *tg_pt_gp,
2308 const char *page,
2309 size_t count)
2310{
Hannes Reinecke125d0112013-11-19 09:07:46 +01002311 return core_alua_store_implicit_trans_secs(tg_pt_gp, page, count);
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002312}
2313
Hannes Reinecke125d0112013-11-19 09:07:46 +01002314SE_DEV_ALUA_TG_PT_ATTR(implicit_trans_secs, S_IRUGO | S_IWUSR);
Nicholas Bellinger5b9a4d72012-05-16 22:02:34 -07002315
2316/*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002317 * preferred
2318 */
2319
2320static ssize_t target_core_alua_tg_pt_gp_show_attr_preferred(
2321 struct t10_alua_tg_pt_gp *tg_pt_gp,
2322 char *page)
2323{
2324 return core_alua_show_preferred_bit(tg_pt_gp, page);
2325}
2326
2327static ssize_t target_core_alua_tg_pt_gp_store_attr_preferred(
2328 struct t10_alua_tg_pt_gp *tg_pt_gp,
2329 const char *page,
2330 size_t count)
2331{
2332 return core_alua_store_preferred_bit(tg_pt_gp, page, count);
2333}
2334
2335SE_DEV_ALUA_TG_PT_ATTR(preferred, S_IRUGO | S_IWUSR);
2336
2337/*
2338 * tg_pt_gp_id
2339 */
2340static ssize_t target_core_alua_tg_pt_gp_show_attr_tg_pt_gp_id(
2341 struct t10_alua_tg_pt_gp *tg_pt_gp,
2342 char *page)
2343{
Andy Grover6708bb22011-06-08 10:36:43 -07002344 if (!tg_pt_gp->tg_pt_gp_valid_id)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002345 return 0;
2346
2347 return sprintf(page, "%hu\n", tg_pt_gp->tg_pt_gp_id);
2348}
2349
2350static ssize_t target_core_alua_tg_pt_gp_store_attr_tg_pt_gp_id(
2351 struct t10_alua_tg_pt_gp *tg_pt_gp,
2352 const char *page,
2353 size_t count)
2354{
2355 struct config_group *alua_tg_pt_gp_cg = &tg_pt_gp->tg_pt_gp_group;
2356 unsigned long tg_pt_gp_id;
2357 int ret;
2358
Jingoo Han57103d72013-07-19 16:22:19 +09002359 ret = kstrtoul(page, 0, &tg_pt_gp_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002360 if (ret < 0) {
Jingoo Han57103d72013-07-19 16:22:19 +09002361 pr_err("kstrtoul() returned %d for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002362 " tg_pt_gp_id\n", ret);
Jingoo Han57103d72013-07-19 16:22:19 +09002363 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002364 }
2365 if (tg_pt_gp_id > 0x0000ffff) {
Andy Grover6708bb22011-06-08 10:36:43 -07002366 pr_err("ALUA tg_pt_gp_id: %lu exceeds maximum:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002367 " 0x0000ffff\n", tg_pt_gp_id);
2368 return -EINVAL;
2369 }
2370
2371 ret = core_alua_set_tg_pt_gp_id(tg_pt_gp, (u16)tg_pt_gp_id);
2372 if (ret < 0)
2373 return -EINVAL;
2374
Andy Grover6708bb22011-06-08 10:36:43 -07002375 pr_debug("Target_Core_ConfigFS: Set ALUA Target Port Group: "
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002376 "core/alua/tg_pt_gps/%s to ID: %hu\n",
2377 config_item_name(&alua_tg_pt_gp_cg->cg_item),
2378 tg_pt_gp->tg_pt_gp_id);
2379
2380 return count;
2381}
2382
2383SE_DEV_ALUA_TG_PT_ATTR(tg_pt_gp_id, S_IRUGO | S_IWUSR);
2384
2385/*
2386 * members
2387 */
2388static ssize_t target_core_alua_tg_pt_gp_show_attr_members(
2389 struct t10_alua_tg_pt_gp *tg_pt_gp,
2390 char *page)
2391{
2392 struct se_port *port;
2393 struct se_portal_group *tpg;
2394 struct se_lun *lun;
2395 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
2396 ssize_t len = 0, cur_len;
2397 unsigned char buf[TG_PT_GROUP_NAME_BUF];
2398
2399 memset(buf, 0, TG_PT_GROUP_NAME_BUF);
2400
2401 spin_lock(&tg_pt_gp->tg_pt_gp_lock);
2402 list_for_each_entry(tg_pt_gp_mem, &tg_pt_gp->tg_pt_gp_mem_list,
2403 tg_pt_gp_mem_list) {
2404 port = tg_pt_gp_mem->tg_pt;
2405 tpg = port->sep_tpg;
2406 lun = port->sep_lun;
2407
2408 cur_len = snprintf(buf, TG_PT_GROUP_NAME_BUF, "%s/%s/tpgt_%hu"
Andy Grovere3d6f902011-07-19 08:55:10 +00002409 "/%s\n", tpg->se_tpg_tfo->get_fabric_name(),
2410 tpg->se_tpg_tfo->tpg_get_wwn(tpg),
2411 tpg->se_tpg_tfo->tpg_get_tag(tpg),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002412 config_item_name(&lun->lun_group.cg_item));
2413 cur_len++; /* Extra byte for NULL terminator */
2414
2415 if ((cur_len + len) > PAGE_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07002416 pr_warn("Ran out of lu_gp_show_attr"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002417 "_members buffer\n");
2418 break;
2419 }
2420 memcpy(page+len, buf, cur_len);
2421 len += cur_len;
2422 }
2423 spin_unlock(&tg_pt_gp->tg_pt_gp_lock);
2424
2425 return len;
2426}
2427
2428SE_DEV_ALUA_TG_PT_ATTR_RO(members);
2429
2430CONFIGFS_EATTR_OPS(target_core_alua_tg_pt_gp, t10_alua_tg_pt_gp,
2431 tg_pt_gp_group);
2432
2433static struct configfs_attribute *target_core_alua_tg_pt_gp_attrs[] = {
2434 &target_core_alua_tg_pt_gp_alua_access_state.attr,
2435 &target_core_alua_tg_pt_gp_alua_access_status.attr,
2436 &target_core_alua_tg_pt_gp_alua_access_type.attr,
Hannes Reineckeb0a382c2013-11-19 09:07:51 +01002437 &target_core_alua_tg_pt_gp_alua_support_transitioning.attr,
2438 &target_core_alua_tg_pt_gp_alua_support_offline.attr,
2439 &target_core_alua_tg_pt_gp_alua_support_lba_dependent.attr,
2440 &target_core_alua_tg_pt_gp_alua_support_unavailable.attr,
2441 &target_core_alua_tg_pt_gp_alua_support_standby.attr,
2442 &target_core_alua_tg_pt_gp_alua_support_active_nonoptimized.attr,
2443 &target_core_alua_tg_pt_gp_alua_support_active_optimized.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002444 &target_core_alua_tg_pt_gp_alua_write_metadata.attr,
2445 &target_core_alua_tg_pt_gp_nonop_delay_msecs.attr,
2446 &target_core_alua_tg_pt_gp_trans_delay_msecs.attr,
Hannes Reinecke125d0112013-11-19 09:07:46 +01002447 &target_core_alua_tg_pt_gp_implicit_trans_secs.attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002448 &target_core_alua_tg_pt_gp_preferred.attr,
2449 &target_core_alua_tg_pt_gp_tg_pt_gp_id.attr,
2450 &target_core_alua_tg_pt_gp_members.attr,
2451 NULL,
2452};
2453
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002454static void target_core_alua_tg_pt_gp_release(struct config_item *item)
2455{
2456 struct t10_alua_tg_pt_gp *tg_pt_gp = container_of(to_config_group(item),
2457 struct t10_alua_tg_pt_gp, tg_pt_gp_group);
2458
2459 core_alua_free_tg_pt_gp(tg_pt_gp);
2460}
2461
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002462static struct configfs_item_operations target_core_alua_tg_pt_gp_ops = {
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002463 .release = target_core_alua_tg_pt_gp_release,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464 .show_attribute = target_core_alua_tg_pt_gp_attr_show,
2465 .store_attribute = target_core_alua_tg_pt_gp_attr_store,
2466};
2467
2468static struct config_item_type target_core_alua_tg_pt_gp_cit = {
2469 .ct_item_ops = &target_core_alua_tg_pt_gp_ops,
2470 .ct_attrs = target_core_alua_tg_pt_gp_attrs,
2471 .ct_owner = THIS_MODULE,
2472};
2473
2474/* End functions for struct config_item_type target_core_alua_tg_pt_gp_cit */
2475
2476/* Start functions for struct config_item_type target_core_alua_tg_pt_gps_cit */
2477
2478static struct config_group *target_core_alua_create_tg_pt_gp(
2479 struct config_group *group,
2480 const char *name)
2481{
2482 struct t10_alua *alua = container_of(group, struct t10_alua,
2483 alua_tg_pt_gps_group);
2484 struct t10_alua_tg_pt_gp *tg_pt_gp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002485 struct config_group *alua_tg_pt_gp_cg = NULL;
2486 struct config_item *alua_tg_pt_gp_ci = NULL;
2487
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002488 tg_pt_gp = core_alua_allocate_tg_pt_gp(alua->t10_dev, name, 0);
Andy Grover6708bb22011-06-08 10:36:43 -07002489 if (!tg_pt_gp)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002490 return NULL;
2491
2492 alua_tg_pt_gp_cg = &tg_pt_gp->tg_pt_gp_group;
2493 alua_tg_pt_gp_ci = &alua_tg_pt_gp_cg->cg_item;
2494
2495 config_group_init_type_name(alua_tg_pt_gp_cg, name,
2496 &target_core_alua_tg_pt_gp_cit);
2497
Andy Grover6708bb22011-06-08 10:36:43 -07002498 pr_debug("Target_Core_ConfigFS: Allocated ALUA Target Port"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002499 " Group: alua/tg_pt_gps/%s\n",
2500 config_item_name(alua_tg_pt_gp_ci));
2501
2502 return alua_tg_pt_gp_cg;
2503}
2504
2505static void target_core_alua_drop_tg_pt_gp(
2506 struct config_group *group,
2507 struct config_item *item)
2508{
2509 struct t10_alua_tg_pt_gp *tg_pt_gp = container_of(to_config_group(item),
2510 struct t10_alua_tg_pt_gp, tg_pt_gp_group);
2511
Andy Grover6708bb22011-06-08 10:36:43 -07002512 pr_debug("Target_Core_ConfigFS: Releasing ALUA Target Port"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002513 " Group: alua/tg_pt_gps/%s, ID: %hu\n",
2514 config_item_name(item), tg_pt_gp->tg_pt_gp_id);
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002515 /*
2516 * core_alua_free_tg_pt_gp() is called from target_core_alua_tg_pt_gp_ops->release()
2517 * -> target_core_alua_tg_pt_gp_release().
2518 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002519 config_item_put(item);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002520}
2521
2522static struct configfs_group_operations target_core_alua_tg_pt_gps_group_ops = {
2523 .make_group = &target_core_alua_create_tg_pt_gp,
2524 .drop_item = &target_core_alua_drop_tg_pt_gp,
2525};
2526
2527static struct config_item_type target_core_alua_tg_pt_gps_cit = {
2528 .ct_group_ops = &target_core_alua_tg_pt_gps_group_ops,
2529 .ct_owner = THIS_MODULE,
2530};
2531
2532/* End functions for struct config_item_type target_core_alua_tg_pt_gps_cit */
2533
2534/* Start functions for struct config_item_type target_core_alua_cit */
2535
2536/*
2537 * target_core_alua_cit is a ConfigFS group that lives under
2538 * /sys/kernel/config/target/core/alua. There are default groups
2539 * core/alua/lu_gps and core/alua/tg_pt_gps that are attached to
2540 * target_core_alua_cit in target_core_init_configfs() below.
2541 */
2542static struct config_item_type target_core_alua_cit = {
2543 .ct_item_ops = NULL,
2544 .ct_attrs = NULL,
2545 .ct_owner = THIS_MODULE,
2546};
2547
2548/* End functions for struct config_item_type target_core_alua_cit */
2549
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002550/* Start functions for struct config_item_type target_core_stat_cit */
2551
2552static struct config_group *target_core_stat_mkdir(
2553 struct config_group *group,
2554 const char *name)
2555{
2556 return ERR_PTR(-ENOSYS);
2557}
2558
2559static void target_core_stat_rmdir(
2560 struct config_group *group,
2561 struct config_item *item)
2562{
2563 return;
2564}
2565
2566static struct configfs_group_operations target_core_stat_group_ops = {
2567 .make_group = &target_core_stat_mkdir,
2568 .drop_item = &target_core_stat_rmdir,
2569};
2570
2571static struct config_item_type target_core_stat_cit = {
2572 .ct_group_ops = &target_core_stat_group_ops,
2573 .ct_owner = THIS_MODULE,
2574};
2575
2576/* End functions for struct config_item_type target_core_stat_cit */
2577
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002578/* Start functions for struct config_item_type target_core_hba_cit */
2579
2580static struct config_group *target_core_make_subdev(
2581 struct config_group *group,
2582 const char *name)
2583{
2584 struct t10_alua_tg_pt_gp *tg_pt_gp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585 struct se_subsystem_api *t;
2586 struct config_item *hba_ci = &group->cg_item;
2587 struct se_hba *hba = item_to_hba(hba_ci);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002588 struct se_device *dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002589 struct config_group *dev_cg = NULL, *tg_pt_gp_cg = NULL;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002590 struct config_group *dev_stat_grp = NULL;
2591 int errno = -ENOMEM, ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002592
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002593 ret = mutex_lock_interruptible(&hba->hba_access_mutex);
2594 if (ret)
2595 return ERR_PTR(ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002596 /*
2597 * Locate the struct se_subsystem_api from parent's struct se_hba.
2598 */
2599 t = hba->transport;
2600
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002601 dev = target_alloc_device(hba, name);
2602 if (!dev)
2603 goto out_unlock;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002604
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002605 dev_cg = &dev->dev_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002606
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002607 dev_cg->default_groups = kmalloc(sizeof(struct config_group *) * 6,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002609 if (!dev_cg->default_groups)
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002610 goto out_free_device;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002611
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002612 config_group_init_type_name(dev_cg, name, &target_core_dev_cit);
2613 config_group_init_type_name(&dev->dev_attrib.da_group, "attrib",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002614 &target_core_dev_attrib_cit);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002615 config_group_init_type_name(&dev->dev_pr_group, "pr",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 &target_core_dev_pr_cit);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002617 config_group_init_type_name(&dev->t10_wwn.t10_wwn_group, "wwn",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002618 &target_core_dev_wwn_cit);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002619 config_group_init_type_name(&dev->t10_alua.alua_tg_pt_gps_group,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002620 "alua", &target_core_alua_tg_pt_gps_cit);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002621 config_group_init_type_name(&dev->dev_stat_grps.stat_group,
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002622 "statistics", &target_core_stat_cit);
2623
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002624 dev_cg->default_groups[0] = &dev->dev_attrib.da_group;
2625 dev_cg->default_groups[1] = &dev->dev_pr_group;
2626 dev_cg->default_groups[2] = &dev->t10_wwn.t10_wwn_group;
2627 dev_cg->default_groups[3] = &dev->t10_alua.alua_tg_pt_gps_group;
2628 dev_cg->default_groups[4] = &dev->dev_stat_grps.stat_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002629 dev_cg->default_groups[5] = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002630 /*
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002631 * Add core/$HBA/$DEV/alua/default_tg_pt_gp
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002633 tg_pt_gp = core_alua_allocate_tg_pt_gp(dev, "default_tg_pt_gp", 1);
Andy Grover6708bb22011-06-08 10:36:43 -07002634 if (!tg_pt_gp)
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002635 goto out_free_dev_cg_default_groups;
2636 dev->t10_alua.default_tg_pt_gp = tg_pt_gp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002637
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002638 tg_pt_gp_cg = &dev->t10_alua.alua_tg_pt_gps_group;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002639 tg_pt_gp_cg->default_groups = kmalloc(sizeof(struct config_group *) * 2,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002641 if (!tg_pt_gp_cg->default_groups) {
2642 pr_err("Unable to allocate tg_pt_gp_cg->"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002643 "default_groups\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002644 goto out_free_tg_pt_gp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002645 }
2646
2647 config_group_init_type_name(&tg_pt_gp->tg_pt_gp_group,
2648 "default_tg_pt_gp", &target_core_alua_tg_pt_gp_cit);
2649 tg_pt_gp_cg->default_groups[0] = &tg_pt_gp->tg_pt_gp_group;
2650 tg_pt_gp_cg->default_groups[1] = NULL;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002651 /*
2652 * Add core/$HBA/$DEV/statistics/ default groups
2653 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002654 dev_stat_grp = &dev->dev_stat_grps.stat_group;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002655 dev_stat_grp->default_groups = kmalloc(sizeof(struct config_group *) * 4,
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002656 GFP_KERNEL);
2657 if (!dev_stat_grp->default_groups) {
Andy Grover6708bb22011-06-08 10:36:43 -07002658 pr_err("Unable to allocate dev_stat_grp->default_groups\n");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002659 goto out_free_tg_pt_gp_cg_default_groups;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002660 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002661 target_stat_setup_dev_default_groups(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002662
2663 mutex_unlock(&hba->hba_access_mutex);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002664 return dev_cg;
2665
2666out_free_tg_pt_gp_cg_default_groups:
2667 kfree(tg_pt_gp_cg->default_groups);
2668out_free_tg_pt_gp:
2669 core_alua_free_tg_pt_gp(tg_pt_gp);
2670out_free_dev_cg_default_groups:
2671 kfree(dev_cg->default_groups);
2672out_free_device:
2673 target_free_device(dev);
2674out_unlock:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002675 mutex_unlock(&hba->hba_access_mutex);
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002676 return ERR_PTR(errno);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677}
2678
2679static void target_core_drop_subdev(
2680 struct config_group *group,
2681 struct config_item *item)
2682{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002683 struct config_group *dev_cg = to_config_group(item);
2684 struct se_device *dev =
2685 container_of(dev_cg, struct se_device, dev_group);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 struct se_hba *hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002687 struct config_item *df_item;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002688 struct config_group *tg_pt_gp_cg, *dev_stat_grp;
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002689 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002690
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002691 hba = item_to_hba(&dev->se_hba->hba_group.cg_item);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002692
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002693 mutex_lock(&hba->hba_access_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002694
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002695 dev_stat_grp = &dev->dev_stat_grps.stat_group;
Nicholas Bellinger12d2338422011-03-14 04:06:11 -07002696 for (i = 0; dev_stat_grp->default_groups[i]; i++) {
2697 df_item = &dev_stat_grp->default_groups[i]->cg_item;
2698 dev_stat_grp->default_groups[i] = NULL;
2699 config_item_put(df_item);
2700 }
2701 kfree(dev_stat_grp->default_groups);
2702
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002703 tg_pt_gp_cg = &dev->t10_alua.alua_tg_pt_gps_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002704 for (i = 0; tg_pt_gp_cg->default_groups[i]; i++) {
2705 df_item = &tg_pt_gp_cg->default_groups[i]->cg_item;
2706 tg_pt_gp_cg->default_groups[i] = NULL;
2707 config_item_put(df_item);
2708 }
2709 kfree(tg_pt_gp_cg->default_groups);
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002710 /*
2711 * core_alua_free_tg_pt_gp() is called from ->default_tg_pt_gp
2712 * directly from target_core_alua_tg_pt_gp_release().
2713 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002714 dev->t10_alua.default_tg_pt_gp = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002715
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 for (i = 0; dev_cg->default_groups[i]; i++) {
2717 df_item = &dev_cg->default_groups[i]->cg_item;
2718 dev_cg->default_groups[i] = NULL;
2719 config_item_put(df_item);
2720 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002721 /*
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002722 * se_dev is released from target_core_dev_item_ops->release()
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002723 */
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002724 config_item_put(item);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002725 mutex_unlock(&hba->hba_access_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002726}
2727
2728static struct configfs_group_operations target_core_hba_group_ops = {
2729 .make_group = target_core_make_subdev,
2730 .drop_item = target_core_drop_subdev,
2731};
2732
2733CONFIGFS_EATTR_STRUCT(target_core_hba, se_hba);
2734#define SE_HBA_ATTR(_name, _mode) \
2735static struct target_core_hba_attribute \
2736 target_core_hba_##_name = \
2737 __CONFIGFS_EATTR(_name, _mode, \
2738 target_core_hba_show_attr_##_name, \
2739 target_core_hba_store_attr_##_name);
2740
2741#define SE_HBA_ATTR_RO(_name) \
2742static struct target_core_hba_attribute \
2743 target_core_hba_##_name = \
2744 __CONFIGFS_EATTR_RO(_name, \
2745 target_core_hba_show_attr_##_name);
2746
2747static ssize_t target_core_hba_show_attr_hba_info(
2748 struct se_hba *hba,
2749 char *page)
2750{
2751 return sprintf(page, "HBA Index: %d plugin: %s version: %s\n",
2752 hba->hba_id, hba->transport->name,
2753 TARGET_CORE_CONFIGFS_VERSION);
2754}
2755
2756SE_HBA_ATTR_RO(hba_info);
2757
2758static ssize_t target_core_hba_show_attr_hba_mode(struct se_hba *hba,
2759 char *page)
2760{
2761 int hba_mode = 0;
2762
2763 if (hba->hba_flags & HBA_FLAGS_PSCSI_MODE)
2764 hba_mode = 1;
2765
2766 return sprintf(page, "%d\n", hba_mode);
2767}
2768
2769static ssize_t target_core_hba_store_attr_hba_mode(struct se_hba *hba,
2770 const char *page, size_t count)
2771{
2772 struct se_subsystem_api *transport = hba->transport;
2773 unsigned long mode_flag;
2774 int ret;
2775
2776 if (transport->pmode_enable_hba == NULL)
2777 return -EINVAL;
2778
Jingoo Han57103d72013-07-19 16:22:19 +09002779 ret = kstrtoul(page, 0, &mode_flag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07002781 pr_err("Unable to extract hba mode flag: %d\n", ret);
Jingoo Han57103d72013-07-19 16:22:19 +09002782 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002783 }
2784
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04002785 if (hba->dev_count) {
Andy Grover6708bb22011-06-08 10:36:43 -07002786 pr_err("Unable to set hba_mode with active devices\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002787 return -EINVAL;
2788 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002789
2790 ret = transport->pmode_enable_hba(hba, mode_flag);
2791 if (ret < 0)
2792 return -EINVAL;
2793 if (ret > 0)
2794 hba->hba_flags |= HBA_FLAGS_PSCSI_MODE;
2795 else if (ret == 0)
2796 hba->hba_flags &= ~HBA_FLAGS_PSCSI_MODE;
2797
2798 return count;
2799}
2800
2801SE_HBA_ATTR(hba_mode, S_IRUGO | S_IWUSR);
2802
2803CONFIGFS_EATTR_OPS(target_core_hba, se_hba, hba_group);
2804
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002805static void target_core_hba_release(struct config_item *item)
2806{
2807 struct se_hba *hba = container_of(to_config_group(item),
2808 struct se_hba, hba_group);
2809 core_delete_hba(hba);
2810}
2811
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002812static struct configfs_attribute *target_core_hba_attrs[] = {
2813 &target_core_hba_hba_info.attr,
2814 &target_core_hba_hba_mode.attr,
2815 NULL,
2816};
2817
2818static struct configfs_item_operations target_core_hba_item_ops = {
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002819 .release = target_core_hba_release,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002820 .show_attribute = target_core_hba_attr_show,
2821 .store_attribute = target_core_hba_attr_store,
2822};
2823
2824static struct config_item_type target_core_hba_cit = {
2825 .ct_item_ops = &target_core_hba_item_ops,
2826 .ct_group_ops = &target_core_hba_group_ops,
2827 .ct_attrs = target_core_hba_attrs,
2828 .ct_owner = THIS_MODULE,
2829};
2830
2831static struct config_group *target_core_call_addhbatotarget(
2832 struct config_group *group,
2833 const char *name)
2834{
2835 char *se_plugin_str, *str, *str2;
2836 struct se_hba *hba;
2837 char buf[TARGET_CORE_NAME_MAX_LEN];
2838 unsigned long plugin_dep_id = 0;
2839 int ret;
2840
2841 memset(buf, 0, TARGET_CORE_NAME_MAX_LEN);
Dan Carpenter60d645a2011-06-15 10:03:05 -07002842 if (strlen(name) >= TARGET_CORE_NAME_MAX_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -07002843 pr_err("Passed *name strlen(): %d exceeds"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002844 " TARGET_CORE_NAME_MAX_LEN: %d\n", (int)strlen(name),
2845 TARGET_CORE_NAME_MAX_LEN);
2846 return ERR_PTR(-ENAMETOOLONG);
2847 }
2848 snprintf(buf, TARGET_CORE_NAME_MAX_LEN, "%s", name);
2849
2850 str = strstr(buf, "_");
Andy Grover6708bb22011-06-08 10:36:43 -07002851 if (!str) {
2852 pr_err("Unable to locate \"_\" for $SUBSYSTEM_PLUGIN_$HOST_ID\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002853 return ERR_PTR(-EINVAL);
2854 }
2855 se_plugin_str = buf;
2856 /*
2857 * Special case for subsystem plugins that have "_" in their names.
2858 * Namely rd_direct and rd_mcp..
2859 */
2860 str2 = strstr(str+1, "_");
Andy Grover6708bb22011-06-08 10:36:43 -07002861 if (str2) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002862 *str2 = '\0'; /* Terminate for *se_plugin_str */
2863 str2++; /* Skip to start of plugin dependent ID */
2864 str = str2;
2865 } else {
2866 *str = '\0'; /* Terminate for *se_plugin_str */
2867 str++; /* Skip to start of plugin dependent ID */
2868 }
2869
Jingoo Han57103d72013-07-19 16:22:19 +09002870 ret = kstrtoul(str, 0, &plugin_dep_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002871 if (ret < 0) {
Jingoo Han57103d72013-07-19 16:22:19 +09002872 pr_err("kstrtoul() returned %d for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002873 " plugin_dep_id\n", ret);
Jingoo Han57103d72013-07-19 16:22:19 +09002874 return ERR_PTR(ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002875 }
2876 /*
2877 * Load up TCM subsystem plugins if they have not already been loaded.
2878 */
Nicholas Bellingerdbc56232011-10-22 01:03:54 -07002879 transport_subsystem_check_init();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002880
2881 hba = core_alloc_hba(se_plugin_str, plugin_dep_id, 0);
2882 if (IS_ERR(hba))
2883 return ERR_CAST(hba);
2884
2885 config_group_init_type_name(&hba->hba_group, name,
2886 &target_core_hba_cit);
2887
2888 return &hba->hba_group;
2889}
2890
2891static void target_core_call_delhbafromtarget(
2892 struct config_group *group,
2893 struct config_item *item)
2894{
Nicholas Bellinger1f6fe7c2011-02-09 15:34:54 -08002895 /*
2896 * core_delete_hba() is called from target_core_hba_item_ops->release()
2897 * -> target_core_hba_release()
2898 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002899 config_item_put(item);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002900}
2901
2902static struct configfs_group_operations target_core_group_ops = {
2903 .make_group = target_core_call_addhbatotarget,
2904 .drop_item = target_core_call_delhbafromtarget,
2905};
2906
2907static struct config_item_type target_core_cit = {
2908 .ct_item_ops = NULL,
2909 .ct_group_ops = &target_core_group_ops,
2910 .ct_attrs = NULL,
2911 .ct_owner = THIS_MODULE,
2912};
2913
2914/* Stop functions for struct config_item_type target_core_hba_cit */
2915
Axel Lin54550fa2011-03-14 04:06:09 -07002916static int __init target_core_init_configfs(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002917{
2918 struct config_group *target_cg, *hba_cg = NULL, *alua_cg = NULL;
2919 struct config_group *lu_gp_cg = NULL;
2920 struct configfs_subsystem *subsys;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002921 struct t10_alua_lu_gp *lu_gp;
2922 int ret;
2923
Andy Grover6708bb22011-06-08 10:36:43 -07002924 pr_debug("TARGET_CORE[0]: Loading Generic Kernel Storage"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002925 " Engine: %s on %s/%s on "UTS_RELEASE"\n",
2926 TARGET_CORE_VERSION, utsname()->sysname, utsname()->machine);
2927
2928 subsys = target_core_subsystem[0];
2929 config_group_init(&subsys->su_group);
2930 mutex_init(&subsys->su_mutex);
2931
Andy Grovere3d6f902011-07-19 08:55:10 +00002932 ret = init_se_kmem_caches();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002933 if (ret < 0)
Andy Grovere3d6f902011-07-19 08:55:10 +00002934 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002935 /*
2936 * Create $CONFIGFS/target/core default group for HBA <-> Storage Object
2937 * and ALUA Logical Unit Group and Target Port Group infrastructure.
2938 */
2939 target_cg = &subsys->su_group;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002940 target_cg->default_groups = kmalloc(sizeof(struct config_group) * 2,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002941 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002942 if (!target_cg->default_groups) {
2943 pr_err("Unable to allocate target_cg->default_groups\n");
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002944 ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002945 goto out_global;
2946 }
2947
Andy Grovere3d6f902011-07-19 08:55:10 +00002948 config_group_init_type_name(&target_core_hbagroup,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002949 "core", &target_core_cit);
Andy Grovere3d6f902011-07-19 08:55:10 +00002950 target_cg->default_groups[0] = &target_core_hbagroup;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002951 target_cg->default_groups[1] = NULL;
2952 /*
2953 * Create ALUA infrastructure under /sys/kernel/config/target/core/alua/
2954 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002955 hba_cg = &target_core_hbagroup;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002956 hba_cg->default_groups = kmalloc(sizeof(struct config_group *) * 2,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002957 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002958 if (!hba_cg->default_groups) {
2959 pr_err("Unable to allocate hba_cg->default_groups\n");
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002960 ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002961 goto out_global;
2962 }
Andy Grovere3d6f902011-07-19 08:55:10 +00002963 config_group_init_type_name(&alua_group,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002964 "alua", &target_core_alua_cit);
Andy Grovere3d6f902011-07-19 08:55:10 +00002965 hba_cg->default_groups[0] = &alua_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002966 hba_cg->default_groups[1] = NULL;
2967 /*
2968 * Add ALUA Logical Unit Group and Target Port Group ConfigFS
2969 * groups under /sys/kernel/config/target/core/alua/
2970 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002971 alua_cg = &alua_group;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002972 alua_cg->default_groups = kmalloc(sizeof(struct config_group *) * 2,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002973 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002974 if (!alua_cg->default_groups) {
2975 pr_err("Unable to allocate alua_cg->default_groups\n");
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002976 ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002977 goto out_global;
2978 }
2979
Andy Grovere3d6f902011-07-19 08:55:10 +00002980 config_group_init_type_name(&alua_lu_gps_group,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002981 "lu_gps", &target_core_alua_lu_gps_cit);
Andy Grovere3d6f902011-07-19 08:55:10 +00002982 alua_cg->default_groups[0] = &alua_lu_gps_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002983 alua_cg->default_groups[1] = NULL;
2984 /*
2985 * Add core/alua/lu_gps/default_lu_gp
2986 */
2987 lu_gp = core_alua_allocate_lu_gp("default_lu_gp", 1);
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002988 if (IS_ERR(lu_gp)) {
2989 ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002990 goto out_global;
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002991 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002992
Andy Grovere3d6f902011-07-19 08:55:10 +00002993 lu_gp_cg = &alua_lu_gps_group;
Sebastian Andrzej Siewior13f6a912012-11-27 18:54:21 +01002994 lu_gp_cg->default_groups = kmalloc(sizeof(struct config_group *) * 2,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002995 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002996 if (!lu_gp_cg->default_groups) {
2997 pr_err("Unable to allocate lu_gp_cg->default_groups\n");
Peter Senna Tschudin37bb7892012-09-17 20:05:33 +02002998 ret = -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002999 goto out_global;
3000 }
3001
3002 config_group_init_type_name(&lu_gp->lu_gp_group, "default_lu_gp",
3003 &target_core_alua_lu_gp_cit);
3004 lu_gp_cg->default_groups[0] = &lu_gp->lu_gp_group;
3005 lu_gp_cg->default_groups[1] = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +00003006 default_lu_gp = lu_gp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003007 /*
3008 * Register the target_core_mod subsystem with configfs.
3009 */
3010 ret = configfs_register_subsystem(subsys);
3011 if (ret < 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07003012 pr_err("Error %d while registering subsystem %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003013 ret, subsys->su_group.cg_item.ci_namebuf);
3014 goto out_global;
3015 }
Andy Grover6708bb22011-06-08 10:36:43 -07003016 pr_debug("TARGET_CORE[0]: Initialized ConfigFS Fabric"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003017 " Infrastructure: "TARGET_CORE_CONFIGFS_VERSION" on %s/%s"
3018 " on "UTS_RELEASE"\n", utsname()->sysname, utsname()->machine);
3019 /*
3020 * Register built-in RAMDISK subsystem logic for virtual LUN 0
3021 */
3022 ret = rd_module_init();
3023 if (ret < 0)
3024 goto out;
3025
Roland Dreier0d0f9df2012-10-31 09:16:44 -07003026 ret = core_dev_setup_virtual_lun0();
3027 if (ret < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003028 goto out;
3029
Nicholas Bellingerf99715a2013-08-22 12:48:53 -07003030 ret = target_xcopy_setup_pt();
3031 if (ret < 0)
3032 goto out;
3033
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003034 return 0;
3035
3036out:
3037 configfs_unregister_subsystem(subsys);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003038 core_dev_release_virtual_lun0();
3039 rd_module_exit();
3040out_global:
Andy Grovere3d6f902011-07-19 08:55:10 +00003041 if (default_lu_gp) {
3042 core_alua_free_lu_gp(default_lu_gp);
3043 default_lu_gp = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003044 }
3045 if (lu_gp_cg)
3046 kfree(lu_gp_cg->default_groups);
3047 if (alua_cg)
3048 kfree(alua_cg->default_groups);
3049 if (hba_cg)
3050 kfree(hba_cg->default_groups);
3051 kfree(target_cg->default_groups);
Andy Grovere3d6f902011-07-19 08:55:10 +00003052 release_se_kmem_caches();
3053 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003054}
3055
Axel Lin54550fa2011-03-14 04:06:09 -07003056static void __exit target_core_exit_configfs(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003057{
3058 struct configfs_subsystem *subsys;
3059 struct config_group *hba_cg, *alua_cg, *lu_gp_cg;
3060 struct config_item *item;
3061 int i;
3062
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003063 subsys = target_core_subsystem[0];
3064
Andy Grovere3d6f902011-07-19 08:55:10 +00003065 lu_gp_cg = &alua_lu_gps_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003066 for (i = 0; lu_gp_cg->default_groups[i]; i++) {
3067 item = &lu_gp_cg->default_groups[i]->cg_item;
3068 lu_gp_cg->default_groups[i] = NULL;
3069 config_item_put(item);
3070 }
3071 kfree(lu_gp_cg->default_groups);
Nicholas Bellinger7c2bf6e2011-02-09 15:34:53 -08003072 lu_gp_cg->default_groups = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003073
Andy Grovere3d6f902011-07-19 08:55:10 +00003074 alua_cg = &alua_group;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003075 for (i = 0; alua_cg->default_groups[i]; i++) {
3076 item = &alua_cg->default_groups[i]->cg_item;
3077 alua_cg->default_groups[i] = NULL;
3078 config_item_put(item);
3079 }
3080 kfree(alua_cg->default_groups);
Nicholas Bellinger7c2bf6e2011-02-09 15:34:53 -08003081 alua_cg->default_groups = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003082
Andy Grovere3d6f902011-07-19 08:55:10 +00003083 hba_cg = &target_core_hbagroup;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003084 for (i = 0; hba_cg->default_groups[i]; i++) {
3085 item = &hba_cg->default_groups[i]->cg_item;
3086 hba_cg->default_groups[i] = NULL;
3087 config_item_put(item);
3088 }
3089 kfree(hba_cg->default_groups);
Nicholas Bellinger7c2bf6e2011-02-09 15:34:53 -08003090 hba_cg->default_groups = NULL;
3091 /*
3092 * We expect subsys->su_group.default_groups to be released
3093 * by configfs subsystem provider logic..
3094 */
3095 configfs_unregister_subsystem(subsys);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003096 kfree(subsys->su_group.default_groups);
3097
Andy Grovere3d6f902011-07-19 08:55:10 +00003098 core_alua_free_lu_gp(default_lu_gp);
3099 default_lu_gp = NULL;
Nicholas Bellinger7c2bf6e2011-02-09 15:34:53 -08003100
Andy Grover6708bb22011-06-08 10:36:43 -07003101 pr_debug("TARGET_CORE[0]: Released ConfigFS Fabric"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003102 " Infrastructure\n");
3103
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003104 core_dev_release_virtual_lun0();
3105 rd_module_exit();
Nicholas Bellingerf99715a2013-08-22 12:48:53 -07003106 target_xcopy_release_pt();
Andy Grovere3d6f902011-07-19 08:55:10 +00003107 release_se_kmem_caches();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003108}
3109
3110MODULE_DESCRIPTION("Target_Core_Mod/ConfigFS");
3111MODULE_AUTHOR("nab@Linux-iSCSI.org");
3112MODULE_LICENSE("GPL");
3113
3114module_init(target_core_init_configfs);
3115module_exit(target_core_exit_configfs);