blob: f697f8baec5418d13484904bf3730880f90639fd [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_tpg.c
3 *
4 * This file contains generic Target Portal Group related functions.
5 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2002-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
26#include <linux/net.h>
27#include <linux/string.h>
28#include <linux/timer.h>
29#include <linux/slab.h>
30#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080031#include <linux/in.h>
Paul Gortmakerc53181a2011-08-30 18:16:43 -040032#include <linux/export.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <net/sock.h>
34#include <net/tcp.h>
35#include <scsi/scsi.h>
36#include <scsi/scsi_cmnd.h>
37
38#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050039#include <target/target_core_backend.h>
40#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041
Christoph Hellwige26d99a2011-11-14 12:30:30 -050042#include "target_core_internal.h"
Andy Grovere3d6f902011-07-19 08:55:10 +000043
44extern struct se_device *g_lun0_dev;
45
46static DEFINE_SPINLOCK(tpg_lock);
47static LIST_HEAD(tpg_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048
49/* core_clear_initiator_node_from_tpg():
50 *
51 *
52 */
53static void core_clear_initiator_node_from_tpg(
54 struct se_node_acl *nacl,
55 struct se_portal_group *tpg)
56{
57 int i;
58 struct se_dev_entry *deve;
59 struct se_lun *lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060
61 spin_lock_irq(&nacl->device_list_lock);
62 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -040063 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080064
65 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
66 continue;
67
68 if (!deve->se_lun) {
Andy Grover6708bb22011-06-08 10:36:43 -070069 pr_err("%s device entries device pointer is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080070 " NULL, but Initiator has access.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +000071 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072 continue;
73 }
74
75 lun = deve->se_lun;
76 spin_unlock_irq(&nacl->device_list_lock);
Andy Grovere80ac6c2012-07-12 17:34:58 -070077 core_disable_device_list_for_node(lun, NULL, deve->mapped_lun,
78 TRANSPORT_LUNFLAGS_NO_ACCESS, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 spin_lock_irq(&nacl->device_list_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 }
82 spin_unlock_irq(&nacl->device_list_lock);
83}
84
85/* __core_tpg_get_initiator_node_acl():
86 *
87 * spin_lock_bh(&tpg->acl_node_lock); must be held when calling
88 */
89struct se_node_acl *__core_tpg_get_initiator_node_acl(
90 struct se_portal_group *tpg,
91 const char *initiatorname)
92{
93 struct se_node_acl *acl;
94
95 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Andy Grover6708bb22011-06-08 10:36:43 -070096 if (!strcmp(acl->initiatorname, initiatorname))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080097 return acl;
98 }
99
100 return NULL;
101}
102
103/* core_tpg_get_initiator_node_acl():
104 *
105 *
106 */
107struct se_node_acl *core_tpg_get_initiator_node_acl(
108 struct se_portal_group *tpg,
109 unsigned char *initiatorname)
110{
111 struct se_node_acl *acl;
112
Roland Dreier28638882011-08-16 09:40:01 -0700113 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800114 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Roland Dreier28638882011-08-16 09:40:01 -0700115 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800116
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800117 return acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800118}
Thomas Glanzmannb3fde032013-10-07 23:13:02 +0200119EXPORT_SYMBOL(core_tpg_get_initiator_node_acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120
121/* core_tpg_add_node_to_devs():
122 *
123 *
124 */
125void core_tpg_add_node_to_devs(
126 struct se_node_acl *acl,
127 struct se_portal_group *tpg)
128{
129 int i = 0;
130 u32 lun_access = 0;
131 struct se_lun *lun;
132 struct se_device *dev;
133
134 spin_lock(&tpg->tpg_lun_lock);
135 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400136 lun = tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 if (lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE)
138 continue;
139
140 spin_unlock(&tpg->tpg_lun_lock);
141
142 dev = lun->lun_se_dev;
143 /*
144 * By default in LIO-Target $FABRIC_MOD,
145 * demo_mode_write_protect is ON, or READ_ONLY;
146 */
Andy Grover6708bb22011-06-08 10:36:43 -0700147 if (!tpg->se_tpg_tfo->tpg_check_demo_mode_write_protect(tpg)) {
Nicholas Bellinger58d92612012-03-20 21:26:48 -0700148 lun_access = TRANSPORT_LUNFLAGS_READ_WRITE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800149 } else {
150 /*
151 * Allow only optical drives to issue R/W in default RO
152 * demo mode.
153 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000154 if (dev->transport->get_device_type(dev) == TYPE_DISK)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800155 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
156 else
157 lun_access = TRANSPORT_LUNFLAGS_READ_WRITE;
158 }
159
Andy Grover6708bb22011-06-08 10:36:43 -0700160 pr_debug("TARGET_CORE[%s]->TPG[%u]_LUN[%u] - Adding %s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161 " access for LUN in Demo Mode\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000162 tpg->se_tpg_tfo->get_fabric_name(),
163 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 (lun_access == TRANSPORT_LUNFLAGS_READ_WRITE) ?
165 "READ-WRITE" : "READ-ONLY");
166
Andy Grovere80ac6c2012-07-12 17:34:58 -0700167 core_enable_device_list_for_node(lun, NULL, lun->unpacked_lun,
168 lun_access, acl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169 spin_lock(&tpg->tpg_lun_lock);
170 }
171 spin_unlock(&tpg->tpg_lun_lock);
172}
173
174/* core_set_queue_depth_for_node():
175 *
176 *
177 */
178static int core_set_queue_depth_for_node(
179 struct se_portal_group *tpg,
180 struct se_node_acl *acl)
181{
182 if (!acl->queue_depth) {
Andy Grover6708bb22011-06-08 10:36:43 -0700183 pr_err("Queue depth for %s Initiator Node: %s is 0,"
Andy Grovere3d6f902011-07-19 08:55:10 +0000184 "defaulting to 1.\n", tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800185 acl->initiatorname);
186 acl->queue_depth = 1;
187 }
188
189 return 0;
190}
191
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400192void array_free(void *array, int n)
193{
194 void **a = array;
195 int i;
196
197 for (i = 0; i < n; i++)
198 kfree(a[i]);
199 kfree(a);
200}
201
202static void *array_zalloc(int n, size_t size, gfp_t flags)
203{
204 void **a;
205 int i;
206
207 a = kzalloc(n * sizeof(void*), flags);
208 if (!a)
209 return NULL;
210 for (i = 0; i < n; i++) {
211 a[i] = kzalloc(size, flags);
212 if (!a[i]) {
213 array_free(a, n);
214 return NULL;
215 }
216 }
217 return a;
218}
219
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800220/* core_create_device_list_for_node():
221 *
222 *
223 */
224static int core_create_device_list_for_node(struct se_node_acl *nacl)
225{
226 struct se_dev_entry *deve;
227 int i;
228
Jörn Engelf2083242012-03-15 15:05:40 -0400229 nacl->device_list = array_zalloc(TRANSPORT_MAX_LUNS_PER_TPG,
230 sizeof(struct se_dev_entry), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700231 if (!nacl->device_list) {
232 pr_err("Unable to allocate memory for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233 " struct se_node_acl->device_list\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000234 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800235 }
236 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400237 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800238
239 atomic_set(&deve->ua_count, 0);
240 atomic_set(&deve->pr_ref_count, 0);
241 spin_lock_init(&deve->ua_lock);
242 INIT_LIST_HEAD(&deve->alua_port_list);
243 INIT_LIST_HEAD(&deve->ua_list);
244 }
245
246 return 0;
247}
248
249/* core_tpg_check_initiator_node_acl()
250 *
251 *
252 */
253struct se_node_acl *core_tpg_check_initiator_node_acl(
254 struct se_portal_group *tpg,
255 unsigned char *initiatorname)
256{
257 struct se_node_acl *acl;
258
259 acl = core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700260 if (acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800261 return acl;
262
Andy Grover6708bb22011-06-08 10:36:43 -0700263 if (!tpg->se_tpg_tfo->tpg_check_demo_mode(tpg))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800264 return NULL;
265
Andy Grovere3d6f902011-07-19 08:55:10 +0000266 acl = tpg->se_tpg_tfo->tpg_alloc_fabric_acl(tpg);
Andy Grover6708bb22011-06-08 10:36:43 -0700267 if (!acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800268 return NULL;
269
270 INIT_LIST_HEAD(&acl->acl_list);
271 INIT_LIST_HEAD(&acl->acl_sess_list);
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800272 kref_init(&acl->acl_kref);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800273 init_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800274 spin_lock_init(&acl->device_list_lock);
275 spin_lock_init(&acl->nacl_sess_lock);
276 atomic_set(&acl->acl_pr_ref_count, 0);
Andy Grovere3d6f902011-07-19 08:55:10 +0000277 acl->queue_depth = tpg->se_tpg_tfo->tpg_get_default_depth(tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800278 snprintf(acl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
279 acl->se_tpg = tpg;
280 acl->acl_index = scsi_get_new_index(SCSI_AUTH_INTR_INDEX);
281 spin_lock_init(&acl->stats_lock);
282 acl->dynamic_node_acl = 1;
283
Andy Grovere3d6f902011-07-19 08:55:10 +0000284 tpg->se_tpg_tfo->set_default_node_attributes(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800285
286 if (core_create_device_list_for_node(acl) < 0) {
Andy Grovere3d6f902011-07-19 08:55:10 +0000287 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800288 return NULL;
289 }
290
291 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
292 core_free_device_list_for_node(acl, tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000293 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 return NULL;
295 }
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700296 /*
297 * Here we only create demo-mode MappedLUNs from the active
Masanari Iida35d1efe2012-08-16 22:43:13 +0900298 * TPG LUNs if the fabric is not explicitly asking for
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700299 * tpg_check_demo_mode_login_only() == 1.
300 */
Andy Grovercdf88a22012-07-12 17:34:57 -0700301 if ((tpg->se_tpg_tfo->tpg_check_demo_mode_login_only == NULL) ||
302 (tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg) != 1))
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700303 core_tpg_add_node_to_devs(acl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800304
Roland Dreier28638882011-08-16 09:40:01 -0700305 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800306 list_add_tail(&acl->acl_list, &tpg->acl_node_list);
307 tpg->num_node_acls++;
Roland Dreier28638882011-08-16 09:40:01 -0700308 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800309
Andy Grover6708bb22011-06-08 10:36:43 -0700310 pr_debug("%s_TPG[%u] - Added DYNAMIC ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000311 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
312 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
313 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314
315 return acl;
316}
317EXPORT_SYMBOL(core_tpg_check_initiator_node_acl);
318
319void core_tpg_wait_for_nacl_pr_ref(struct se_node_acl *nacl)
320{
321 while (atomic_read(&nacl->acl_pr_ref_count) != 0)
322 cpu_relax();
323}
324
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800325void core_tpg_clear_object_luns(struct se_portal_group *tpg)
326{
Jörn Engel28168902012-03-15 15:06:58 -0400327 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800328 struct se_lun *lun;
329
330 spin_lock(&tpg->tpg_lun_lock);
331 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400332 lun = tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800333
334 if ((lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE) ||
335 (lun->lun_se_dev == NULL))
336 continue;
337
338 spin_unlock(&tpg->tpg_lun_lock);
Jörn Engel28168902012-03-15 15:06:58 -0400339 core_dev_del_lun(tpg, lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800340 spin_lock(&tpg->tpg_lun_lock);
341 }
342 spin_unlock(&tpg->tpg_lun_lock);
343}
344EXPORT_SYMBOL(core_tpg_clear_object_luns);
345
346/* core_tpg_add_initiator_node_acl():
347 *
348 *
349 */
350struct se_node_acl *core_tpg_add_initiator_node_acl(
351 struct se_portal_group *tpg,
352 struct se_node_acl *se_nacl,
353 const char *initiatorname,
354 u32 queue_depth)
355{
356 struct se_node_acl *acl = NULL;
357
Roland Dreier28638882011-08-16 09:40:01 -0700358 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800359 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700360 if (acl) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361 if (acl->dynamic_node_acl) {
362 acl->dynamic_node_acl = 0;
Andy Grover6708bb22011-06-08 10:36:43 -0700363 pr_debug("%s_TPG[%u] - Replacing dynamic ACL"
Andy Grovere3d6f902011-07-19 08:55:10 +0000364 " for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
365 tpg->se_tpg_tfo->tpg_get_tag(tpg), initiatorname);
Roland Dreier28638882011-08-16 09:40:01 -0700366 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800367 /*
368 * Release the locally allocated struct se_node_acl
369 * because * core_tpg_add_initiator_node_acl() returned
370 * a pointer to an existing demo mode node ACL.
371 */
372 if (se_nacl)
Andy Grovere3d6f902011-07-19 08:55:10 +0000373 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800374 se_nacl);
375 goto done;
376 }
377
Andy Grover6708bb22011-06-08 10:36:43 -0700378 pr_err("ACL entry for %s Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800379 " Node %s already exists for TPG %u, ignoring"
Andy Grovere3d6f902011-07-19 08:55:10 +0000380 " request.\n", tpg->se_tpg_tfo->get_fabric_name(),
381 initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
Roland Dreier28638882011-08-16 09:40:01 -0700382 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383 return ERR_PTR(-EEXIST);
384 }
Roland Dreier28638882011-08-16 09:40:01 -0700385 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800386
Andy Grover6708bb22011-06-08 10:36:43 -0700387 if (!se_nacl) {
388 pr_err("struct se_node_acl pointer is NULL\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389 return ERR_PTR(-EINVAL);
390 }
391 /*
392 * For v4.x logic the se_node_acl_s is hanging off a fabric
393 * dependent structure allocated via
394 * struct target_core_fabric_ops->fabric_make_nodeacl()
395 */
396 acl = se_nacl;
397
398 INIT_LIST_HEAD(&acl->acl_list);
399 INIT_LIST_HEAD(&acl->acl_sess_list);
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800400 kref_init(&acl->acl_kref);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800401 init_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800402 spin_lock_init(&acl->device_list_lock);
403 spin_lock_init(&acl->nacl_sess_lock);
404 atomic_set(&acl->acl_pr_ref_count, 0);
405 acl->queue_depth = queue_depth;
406 snprintf(acl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
407 acl->se_tpg = tpg;
408 acl->acl_index = scsi_get_new_index(SCSI_AUTH_INTR_INDEX);
409 spin_lock_init(&acl->stats_lock);
410
Andy Grovere3d6f902011-07-19 08:55:10 +0000411 tpg->se_tpg_tfo->set_default_node_attributes(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800412
413 if (core_create_device_list_for_node(acl) < 0) {
Andy Grovere3d6f902011-07-19 08:55:10 +0000414 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800415 return ERR_PTR(-ENOMEM);
416 }
417
418 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
419 core_free_device_list_for_node(acl, tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000420 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800421 return ERR_PTR(-EINVAL);
422 }
423
Roland Dreier28638882011-08-16 09:40:01 -0700424 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800425 list_add_tail(&acl->acl_list, &tpg->acl_node_list);
426 tpg->num_node_acls++;
Roland Dreier28638882011-08-16 09:40:01 -0700427 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428
429done:
Andy Grover6708bb22011-06-08 10:36:43 -0700430 pr_debug("%s_TPG[%hu] - Added ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000431 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
432 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
433 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434
435 return acl;
436}
437EXPORT_SYMBOL(core_tpg_add_initiator_node_acl);
438
439/* core_tpg_del_initiator_node_acl():
440 *
441 *
442 */
443int core_tpg_del_initiator_node_acl(
444 struct se_portal_group *tpg,
445 struct se_node_acl *acl,
446 int force)
447{
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800448 LIST_HEAD(sess_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800449 struct se_session *sess, *sess_tmp;
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700450 unsigned long flags;
Jörn Engel28168902012-03-15 15:06:58 -0400451 int rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800452
Roland Dreier28638882011-08-16 09:40:01 -0700453 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454 if (acl->dynamic_node_acl) {
455 acl->dynamic_node_acl = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800456 }
457 list_del(&acl->acl_list);
458 tpg->num_node_acls--;
Roland Dreier28638882011-08-16 09:40:01 -0700459 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800461 spin_lock_irqsave(&acl->nacl_sess_lock, flags);
462 acl->acl_stop = 1;
463
464 list_for_each_entry_safe(sess, sess_tmp, &acl->acl_sess_list,
465 sess_acl_list) {
466 if (sess->sess_tearing_down != 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467 continue;
468
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800469 target_get_session(sess);
470 list_move(&sess->sess_acl_list, &sess_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471 }
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800472 spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
473
474 list_for_each_entry_safe(sess, sess_tmp, &sess_list, sess_acl_list) {
475 list_del(&sess->sess_acl_list);
476
477 rc = tpg->se_tpg_tfo->shutdown_session(sess);
478 target_put_session(sess);
479 if (!rc)
480 continue;
481 target_put_session(sess);
482 }
483 target_put_nacl(acl);
484 /*
485 * Wait for last target_put_nacl() to complete in target_complete_nacl()
486 * for active fabric session transport_deregister_session() callbacks.
487 */
488 wait_for_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800489
490 core_tpg_wait_for_nacl_pr_ref(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491 core_clear_initiator_node_from_tpg(acl, tpg);
492 core_free_device_list_for_node(acl, tpg);
493
Andy Grover6708bb22011-06-08 10:36:43 -0700494 pr_debug("%s_TPG[%hu] - Deleted ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000495 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
496 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
497 tpg->se_tpg_tfo->get_fabric_name(), acl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498
499 return 0;
500}
501EXPORT_SYMBOL(core_tpg_del_initiator_node_acl);
502
503/* core_tpg_set_initiator_node_queue_depth():
504 *
505 *
506 */
507int core_tpg_set_initiator_node_queue_depth(
508 struct se_portal_group *tpg,
509 unsigned char *initiatorname,
510 u32 queue_depth,
511 int force)
512{
513 struct se_session *sess, *init_sess = NULL;
514 struct se_node_acl *acl;
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700515 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800516 int dynamic_acl = 0;
517
Roland Dreier28638882011-08-16 09:40:01 -0700518 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800519 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700520 if (!acl) {
521 pr_err("Access Control List entry for %s Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800522 " Node %s does not exists for TPG %hu, ignoring"
Andy Grovere3d6f902011-07-19 08:55:10 +0000523 " request.\n", tpg->se_tpg_tfo->get_fabric_name(),
524 initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
Roland Dreier28638882011-08-16 09:40:01 -0700525 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800526 return -ENODEV;
527 }
528 if (acl->dynamic_node_acl) {
529 acl->dynamic_node_acl = 0;
530 dynamic_acl = 1;
531 }
Roland Dreier28638882011-08-16 09:40:01 -0700532 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800533
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700534 spin_lock_irqsave(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535 list_for_each_entry(sess, &tpg->tpg_sess_list, sess_list) {
536 if (sess->se_node_acl != acl)
537 continue;
538
539 if (!force) {
Andy Grover6708bb22011-06-08 10:36:43 -0700540 pr_err("Unable to change queue depth for %s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800541 " Initiator Node: %s while session is"
542 " operational. To forcefully change the queue"
543 " depth and force session reinstatement"
544 " use the \"force=1\" parameter.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000545 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700546 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547
Roland Dreier28638882011-08-16 09:40:01 -0700548 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549 if (dynamic_acl)
550 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700551 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800552 return -EEXIST;
553 }
554 /*
555 * Determine if the session needs to be closed by our context.
556 */
Andy Grover6708bb22011-06-08 10:36:43 -0700557 if (!tpg->se_tpg_tfo->shutdown_session(sess))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800558 continue;
559
560 init_sess = sess;
561 break;
562 }
563
564 /*
565 * User has requested to change the queue depth for a Initiator Node.
566 * Change the value in the Node's struct se_node_acl, and call
567 * core_set_queue_depth_for_node() to add the requested queue depth.
568 *
Andy Grovere3d6f902011-07-19 08:55:10 +0000569 * Finally call tpg->se_tpg_tfo->close_session() to force session
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800570 * reinstatement to occur if there is an active session for the
571 * $FABRIC_MOD Initiator Node in question.
572 */
573 acl->queue_depth = queue_depth;
574
575 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700576 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800577 /*
578 * Force session reinstatement if
579 * core_set_queue_depth_for_node() failed, because we assume
580 * the $FABRIC_MOD has already the set session reinstatement
Andy Grovere3d6f902011-07-19 08:55:10 +0000581 * bit from tpg->se_tpg_tfo->shutdown_session() called above.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 */
583 if (init_sess)
Andy Grovere3d6f902011-07-19 08:55:10 +0000584 tpg->se_tpg_tfo->close_session(init_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585
Roland Dreier28638882011-08-16 09:40:01 -0700586 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587 if (dynamic_acl)
588 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700589 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800590 return -EINVAL;
591 }
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700592 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800593 /*
594 * If the $FABRIC_MOD session for the Initiator Node ACL exists,
595 * forcefully shutdown the $FABRIC_MOD session/nexus.
596 */
597 if (init_sess)
Andy Grovere3d6f902011-07-19 08:55:10 +0000598 tpg->se_tpg_tfo->close_session(init_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599
Joe Perchesbfb90352011-08-17 06:58:04 -0700600 pr_debug("Successfully changed queue depth to: %d for Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800601 " Node: %s on %s Target Portal Group: %u\n", queue_depth,
Andy Grovere3d6f902011-07-19 08:55:10 +0000602 initiatorname, tpg->se_tpg_tfo->get_fabric_name(),
603 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604
Roland Dreier28638882011-08-16 09:40:01 -0700605 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800606 if (dynamic_acl)
607 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700608 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800609
610 return 0;
611}
612EXPORT_SYMBOL(core_tpg_set_initiator_node_queue_depth);
613
Andy Grover79e62fc2012-12-11 16:30:53 -0800614/* core_tpg_set_initiator_node_tag():
615 *
616 * Initiator nodeacl tags are not used internally, but may be used by
617 * userspace to emulate aliases or groups.
618 * Returns length of newly-set tag or -EINVAL.
619 */
620int core_tpg_set_initiator_node_tag(
621 struct se_portal_group *tpg,
622 struct se_node_acl *acl,
623 const char *new_tag)
624{
625 if (strlen(new_tag) >= MAX_ACL_TAG_SIZE)
626 return -EINVAL;
627
628 if (!strncmp("NULL", new_tag, 4)) {
629 acl->acl_tag[0] = '\0';
630 return 0;
631 }
632
633 return snprintf(acl->acl_tag, MAX_ACL_TAG_SIZE, "%s", new_tag);
634}
635EXPORT_SYMBOL(core_tpg_set_initiator_node_tag);
636
Nicholas Bellinger52777972013-11-06 21:03:43 -0800637static void core_tpg_lun_ref_release(struct percpu_ref *ref)
638{
639 struct se_lun *lun = container_of(ref, struct se_lun, lun_ref);
640
641 complete(&lun->lun_ref_comp);
642}
643
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800644static int core_tpg_setup_virtual_lun0(struct se_portal_group *se_tpg)
645{
646 /* Set in core_dev_setup_virtual_lun0() */
Andy Grovere3d6f902011-07-19 08:55:10 +0000647 struct se_device *dev = g_lun0_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800648 struct se_lun *lun = &se_tpg->tpg_virt_lun0;
649 u32 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
650 int ret;
651
652 lun->unpacked_lun = 0;
653 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
654 atomic_set(&lun->lun_acl_count, 0);
655 init_completion(&lun->lun_shutdown_comp);
656 INIT_LIST_HEAD(&lun->lun_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800657 spin_lock_init(&lun->lun_acl_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800658 spin_lock_init(&lun->lun_sep_lock);
Nicholas Bellinger52777972013-11-06 21:03:43 -0800659 init_completion(&lun->lun_ref_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800660
Nicholas Bellinger52777972013-11-06 21:03:43 -0800661 ret = percpu_ref_init(&lun->lun_ref, core_tpg_lun_ref_release);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800662 if (ret < 0)
Andy Grovere3d6f902011-07-19 08:55:10 +0000663 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800664
Nicholas Bellinger52777972013-11-06 21:03:43 -0800665 ret = core_tpg_post_addlun(se_tpg, lun, lun_access, dev);
666 if (ret < 0) {
667 percpu_ref_cancel_init(&lun->lun_ref);
668 return ret;
669 }
670
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671 return 0;
672}
673
674static void core_tpg_release_virtual_lun0(struct se_portal_group *se_tpg)
675{
676 struct se_lun *lun = &se_tpg->tpg_virt_lun0;
677
678 core_tpg_post_dellun(se_tpg, lun);
679}
680
681int core_tpg_register(
682 struct target_core_fabric_ops *tfo,
683 struct se_wwn *se_wwn,
684 struct se_portal_group *se_tpg,
685 void *tpg_fabric_ptr,
686 int se_tpg_type)
687{
688 struct se_lun *lun;
689 u32 i;
690
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400691 se_tpg->tpg_lun_list = array_zalloc(TRANSPORT_MAX_LUNS_PER_TPG,
692 sizeof(struct se_lun), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700693 if (!se_tpg->tpg_lun_list) {
694 pr_err("Unable to allocate struct se_portal_group->"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800695 "tpg_lun_list\n");
696 return -ENOMEM;
697 }
698
699 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400700 lun = se_tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800701 lun->unpacked_lun = i;
Nicholas Bellinger0ff87542012-12-04 23:43:57 -0800702 lun->lun_link_magic = SE_LUN_LINK_MAGIC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800703 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
704 atomic_set(&lun->lun_acl_count, 0);
705 init_completion(&lun->lun_shutdown_comp);
706 INIT_LIST_HEAD(&lun->lun_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800707 spin_lock_init(&lun->lun_acl_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800708 spin_lock_init(&lun->lun_sep_lock);
Nicholas Bellinger52777972013-11-06 21:03:43 -0800709 init_completion(&lun->lun_ref_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800710 }
711
712 se_tpg->se_tpg_type = se_tpg_type;
713 se_tpg->se_tpg_fabric_ptr = tpg_fabric_ptr;
714 se_tpg->se_tpg_tfo = tfo;
715 se_tpg->se_tpg_wwn = se_wwn;
716 atomic_set(&se_tpg->tpg_pr_ref_count, 0);
717 INIT_LIST_HEAD(&se_tpg->acl_node_list);
Andy Grovere3d6f902011-07-19 08:55:10 +0000718 INIT_LIST_HEAD(&se_tpg->se_tpg_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800719 INIT_LIST_HEAD(&se_tpg->tpg_sess_list);
720 spin_lock_init(&se_tpg->acl_node_lock);
721 spin_lock_init(&se_tpg->session_lock);
722 spin_lock_init(&se_tpg->tpg_lun_lock);
723
724 if (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) {
725 if (core_tpg_setup_virtual_lun0(se_tpg) < 0) {
Wei Yongjun0fb889b2013-03-15 17:19:26 +0800726 array_free(se_tpg->tpg_lun_list,
727 TRANSPORT_MAX_LUNS_PER_TPG);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800728 return -ENOMEM;
729 }
730 }
731
Andy Grovere3d6f902011-07-19 08:55:10 +0000732 spin_lock_bh(&tpg_lock);
733 list_add_tail(&se_tpg->se_tpg_node, &tpg_list);
734 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800735
Andy Grover6708bb22011-06-08 10:36:43 -0700736 pr_debug("TARGET_CORE[%s]: Allocated %s struct se_portal_group for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800737 " endpoint: %s, Portal Tag: %u\n", tfo->get_fabric_name(),
738 (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) ?
739 "Normal" : "Discovery", (tfo->tpg_get_wwn(se_tpg) == NULL) ?
740 "None" : tfo->tpg_get_wwn(se_tpg), tfo->tpg_get_tag(se_tpg));
741
742 return 0;
743}
744EXPORT_SYMBOL(core_tpg_register);
745
746int core_tpg_deregister(struct se_portal_group *se_tpg)
747{
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800748 struct se_node_acl *nacl, *nacl_tmp;
749
Andy Grover6708bb22011-06-08 10:36:43 -0700750 pr_debug("TARGET_CORE[%s]: Deallocating %s struct se_portal_group"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800751 " for endpoint: %s Portal Tag %u\n",
752 (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) ?
Andy Grovere3d6f902011-07-19 08:55:10 +0000753 "Normal" : "Discovery", se_tpg->se_tpg_tfo->get_fabric_name(),
754 se_tpg->se_tpg_tfo->tpg_get_wwn(se_tpg),
755 se_tpg->se_tpg_tfo->tpg_get_tag(se_tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800756
Andy Grovere3d6f902011-07-19 08:55:10 +0000757 spin_lock_bh(&tpg_lock);
758 list_del(&se_tpg->se_tpg_node);
759 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800760
761 while (atomic_read(&se_tpg->tpg_pr_ref_count) != 0)
762 cpu_relax();
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800763 /*
764 * Release any remaining demo-mode generated se_node_acl that have
765 * not been released because of TFO->tpg_check_demo_mode_cache() == 1
766 * in transport_deregister_session().
767 */
Roland Dreier28638882011-08-16 09:40:01 -0700768 spin_lock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800769 list_for_each_entry_safe(nacl, nacl_tmp, &se_tpg->acl_node_list,
770 acl_list) {
771 list_del(&nacl->acl_list);
772 se_tpg->num_node_acls--;
Roland Dreier28638882011-08-16 09:40:01 -0700773 spin_unlock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800774
775 core_tpg_wait_for_nacl_pr_ref(nacl);
776 core_free_device_list_for_node(nacl, se_tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000777 se_tpg->se_tpg_tfo->tpg_release_fabric_acl(se_tpg, nacl);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800778
Roland Dreier28638882011-08-16 09:40:01 -0700779 spin_lock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800780 }
Roland Dreier28638882011-08-16 09:40:01 -0700781 spin_unlock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800782
783 if (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL)
784 core_tpg_release_virtual_lun0(se_tpg);
785
786 se_tpg->se_tpg_fabric_ptr = NULL;
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400787 array_free(se_tpg->tpg_lun_list, TRANSPORT_MAX_LUNS_PER_TPG);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800788 return 0;
789}
790EXPORT_SYMBOL(core_tpg_deregister);
791
792struct se_lun *core_tpg_pre_addlun(
793 struct se_portal_group *tpg,
794 u32 unpacked_lun)
795{
796 struct se_lun *lun;
797
798 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700799 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS_PER_TPG"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800800 "-1: %u for Target Portal Group: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000801 tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800802 unpacked_lun, TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +0000803 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800804 return ERR_PTR(-EOVERFLOW);
805 }
806
807 spin_lock(&tpg->tpg_lun_lock);
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400808 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800809 if (lun->lun_status == TRANSPORT_LUN_STATUS_ACTIVE) {
Andy Grover6708bb22011-06-08 10:36:43 -0700810 pr_err("TPG Logical Unit Number: %u is already active"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800811 " on %s Target Portal Group: %u, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000812 unpacked_lun, tpg->se_tpg_tfo->get_fabric_name(),
813 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800814 spin_unlock(&tpg->tpg_lun_lock);
815 return ERR_PTR(-EINVAL);
816 }
817 spin_unlock(&tpg->tpg_lun_lock);
818
819 return lun;
820}
821
822int core_tpg_post_addlun(
823 struct se_portal_group *tpg,
824 struct se_lun *lun,
825 u32 lun_access,
826 void *lun_ptr)
827{
Andy Grovere3d6f902011-07-19 08:55:10 +0000828 int ret;
829
Nicholas Bellinger52777972013-11-06 21:03:43 -0800830 ret = percpu_ref_init(&lun->lun_ref, core_tpg_lun_ref_release);
Andy Grovere3d6f902011-07-19 08:55:10 +0000831 if (ret < 0)
832 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800833
Nicholas Bellinger52777972013-11-06 21:03:43 -0800834 ret = core_dev_export(lun_ptr, tpg, lun);
835 if (ret < 0) {
836 percpu_ref_cancel_init(&lun->lun_ref);
837 return ret;
838 }
839
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800840 spin_lock(&tpg->tpg_lun_lock);
841 lun->lun_access = lun_access;
842 lun->lun_status = TRANSPORT_LUN_STATUS_ACTIVE;
843 spin_unlock(&tpg->tpg_lun_lock);
844
845 return 0;
846}
847
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800848struct se_lun *core_tpg_pre_dellun(
849 struct se_portal_group *tpg,
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100850 u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800851{
852 struct se_lun *lun;
853
854 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700855 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS_PER_TPG"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800856 "-1: %u for Target Portal Group: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000857 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800858 TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +0000859 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800860 return ERR_PTR(-EOVERFLOW);
861 }
862
863 spin_lock(&tpg->tpg_lun_lock);
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400864 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800865 if (lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE) {
Andy Grover6708bb22011-06-08 10:36:43 -0700866 pr_err("%s Logical Unit Number: %u is not active on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800867 " Target Portal Group: %u, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000868 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
869 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800870 spin_unlock(&tpg->tpg_lun_lock);
871 return ERR_PTR(-ENODEV);
872 }
873 spin_unlock(&tpg->tpg_lun_lock);
874
875 return lun;
876}
877
878int core_tpg_post_dellun(
879 struct se_portal_group *tpg,
880 struct se_lun *lun)
881{
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -0800882 core_clear_lun_from_tpg(lun, tpg);
883 transport_clear_lun_ref(lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800884
885 core_dev_unexport(lun->lun_se_dev, tpg, lun);
886
887 spin_lock(&tpg->tpg_lun_lock);
888 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
889 spin_unlock(&tpg->tpg_lun_lock);
890
891 return 0;
892}