blob: 0163309e2aba811d0a1e6e241f616aef6568d7f6 [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 Bellingerfd9a11d2012-11-09 14:51:48 -08006 * (c) Copyright 2002-2012 RisingTide Systems LLC.
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 Bellingerc66ac9d2010-12-17 11:11:26 -0800114 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Andy Grover6708bb22011-06-08 10:36:43 -0700115 if (!strcmp(acl->initiatorname, initiatorname) &&
116 !acl->dynamic_node_acl) {
Roland Dreier28638882011-08-16 09:40:01 -0700117 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800118 return acl;
119 }
120 }
Roland Dreier28638882011-08-16 09:40:01 -0700121 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800122
123 return NULL;
124}
125
126/* core_tpg_add_node_to_devs():
127 *
128 *
129 */
130void core_tpg_add_node_to_devs(
131 struct se_node_acl *acl,
132 struct se_portal_group *tpg)
133{
134 int i = 0;
135 u32 lun_access = 0;
136 struct se_lun *lun;
137 struct se_device *dev;
138
139 spin_lock(&tpg->tpg_lun_lock);
140 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400141 lun = tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800142 if (lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE)
143 continue;
144
145 spin_unlock(&tpg->tpg_lun_lock);
146
147 dev = lun->lun_se_dev;
148 /*
149 * By default in LIO-Target $FABRIC_MOD,
150 * demo_mode_write_protect is ON, or READ_ONLY;
151 */
Andy Grover6708bb22011-06-08 10:36:43 -0700152 if (!tpg->se_tpg_tfo->tpg_check_demo_mode_write_protect(tpg)) {
Nicholas Bellinger58d92612012-03-20 21:26:48 -0700153 lun_access = TRANSPORT_LUNFLAGS_READ_WRITE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154 } else {
155 /*
156 * Allow only optical drives to issue R/W in default RO
157 * demo mode.
158 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000159 if (dev->transport->get_device_type(dev) == TYPE_DISK)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800160 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
161 else
162 lun_access = TRANSPORT_LUNFLAGS_READ_WRITE;
163 }
164
Andy Grover6708bb22011-06-08 10:36:43 -0700165 pr_debug("TARGET_CORE[%s]->TPG[%u]_LUN[%u] - Adding %s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166 " access for LUN in Demo Mode\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000167 tpg->se_tpg_tfo->get_fabric_name(),
168 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169 (lun_access == TRANSPORT_LUNFLAGS_READ_WRITE) ?
170 "READ-WRITE" : "READ-ONLY");
171
Andy Grovere80ac6c2012-07-12 17:34:58 -0700172 core_enable_device_list_for_node(lun, NULL, lun->unpacked_lun,
173 lun_access, acl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174 spin_lock(&tpg->tpg_lun_lock);
175 }
176 spin_unlock(&tpg->tpg_lun_lock);
177}
178
179/* core_set_queue_depth_for_node():
180 *
181 *
182 */
183static int core_set_queue_depth_for_node(
184 struct se_portal_group *tpg,
185 struct se_node_acl *acl)
186{
187 if (!acl->queue_depth) {
Andy Grover6708bb22011-06-08 10:36:43 -0700188 pr_err("Queue depth for %s Initiator Node: %s is 0,"
Andy Grovere3d6f902011-07-19 08:55:10 +0000189 "defaulting to 1.\n", tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800190 acl->initiatorname);
191 acl->queue_depth = 1;
192 }
193
194 return 0;
195}
196
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400197void array_free(void *array, int n)
198{
199 void **a = array;
200 int i;
201
202 for (i = 0; i < n; i++)
203 kfree(a[i]);
204 kfree(a);
205}
206
207static void *array_zalloc(int n, size_t size, gfp_t flags)
208{
209 void **a;
210 int i;
211
212 a = kzalloc(n * sizeof(void*), flags);
213 if (!a)
214 return NULL;
215 for (i = 0; i < n; i++) {
216 a[i] = kzalloc(size, flags);
217 if (!a[i]) {
218 array_free(a, n);
219 return NULL;
220 }
221 }
222 return a;
223}
224
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800225/* core_create_device_list_for_node():
226 *
227 *
228 */
229static int core_create_device_list_for_node(struct se_node_acl *nacl)
230{
231 struct se_dev_entry *deve;
232 int i;
233
Jörn Engelf2083242012-03-15 15:05:40 -0400234 nacl->device_list = array_zalloc(TRANSPORT_MAX_LUNS_PER_TPG,
235 sizeof(struct se_dev_entry), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700236 if (!nacl->device_list) {
237 pr_err("Unable to allocate memory for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800238 " struct se_node_acl->device_list\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000239 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800240 }
241 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engelf2083242012-03-15 15:05:40 -0400242 deve = nacl->device_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800243
244 atomic_set(&deve->ua_count, 0);
245 atomic_set(&deve->pr_ref_count, 0);
246 spin_lock_init(&deve->ua_lock);
247 INIT_LIST_HEAD(&deve->alua_port_list);
248 INIT_LIST_HEAD(&deve->ua_list);
249 }
250
251 return 0;
252}
253
254/* core_tpg_check_initiator_node_acl()
255 *
256 *
257 */
258struct se_node_acl *core_tpg_check_initiator_node_acl(
259 struct se_portal_group *tpg,
260 unsigned char *initiatorname)
261{
262 struct se_node_acl *acl;
263
264 acl = core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700265 if (acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800266 return acl;
267
Andy Grover6708bb22011-06-08 10:36:43 -0700268 if (!tpg->se_tpg_tfo->tpg_check_demo_mode(tpg))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800269 return NULL;
270
Andy Grovere3d6f902011-07-19 08:55:10 +0000271 acl = tpg->se_tpg_tfo->tpg_alloc_fabric_acl(tpg);
Andy Grover6708bb22011-06-08 10:36:43 -0700272 if (!acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800273 return NULL;
274
275 INIT_LIST_HEAD(&acl->acl_list);
276 INIT_LIST_HEAD(&acl->acl_sess_list);
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800277 kref_init(&acl->acl_kref);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800278 init_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800279 spin_lock_init(&acl->device_list_lock);
280 spin_lock_init(&acl->nacl_sess_lock);
281 atomic_set(&acl->acl_pr_ref_count, 0);
Andy Grovere3d6f902011-07-19 08:55:10 +0000282 acl->queue_depth = tpg->se_tpg_tfo->tpg_get_default_depth(tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800283 snprintf(acl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
284 acl->se_tpg = tpg;
285 acl->acl_index = scsi_get_new_index(SCSI_AUTH_INTR_INDEX);
286 spin_lock_init(&acl->stats_lock);
287 acl->dynamic_node_acl = 1;
288
Andy Grovere3d6f902011-07-19 08:55:10 +0000289 tpg->se_tpg_tfo->set_default_node_attributes(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800290
291 if (core_create_device_list_for_node(acl) < 0) {
Andy Grovere3d6f902011-07-19 08:55:10 +0000292 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800293 return NULL;
294 }
295
296 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
297 core_free_device_list_for_node(acl, tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000298 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800299 return NULL;
300 }
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700301 /*
302 * Here we only create demo-mode MappedLUNs from the active
Masanari Iida35d1efe2012-08-16 22:43:13 +0900303 * TPG LUNs if the fabric is not explicitly asking for
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700304 * tpg_check_demo_mode_login_only() == 1.
305 */
Andy Grovercdf88a22012-07-12 17:34:57 -0700306 if ((tpg->se_tpg_tfo->tpg_check_demo_mode_login_only == NULL) ||
307 (tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg) != 1))
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700308 core_tpg_add_node_to_devs(acl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800309
Roland Dreier28638882011-08-16 09:40:01 -0700310 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311 list_add_tail(&acl->acl_list, &tpg->acl_node_list);
312 tpg->num_node_acls++;
Roland Dreier28638882011-08-16 09:40:01 -0700313 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314
Andy Grover6708bb22011-06-08 10:36:43 -0700315 pr_debug("%s_TPG[%u] - Added DYNAMIC ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000316 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
317 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
318 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800319
320 return acl;
321}
322EXPORT_SYMBOL(core_tpg_check_initiator_node_acl);
323
324void core_tpg_wait_for_nacl_pr_ref(struct se_node_acl *nacl)
325{
326 while (atomic_read(&nacl->acl_pr_ref_count) != 0)
327 cpu_relax();
328}
329
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800330void core_tpg_clear_object_luns(struct se_portal_group *tpg)
331{
Jörn Engel28168902012-03-15 15:06:58 -0400332 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800333 struct se_lun *lun;
334
335 spin_lock(&tpg->tpg_lun_lock);
336 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400337 lun = tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800338
339 if ((lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE) ||
340 (lun->lun_se_dev == NULL))
341 continue;
342
343 spin_unlock(&tpg->tpg_lun_lock);
Jörn Engel28168902012-03-15 15:06:58 -0400344 core_dev_del_lun(tpg, lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800345 spin_lock(&tpg->tpg_lun_lock);
346 }
347 spin_unlock(&tpg->tpg_lun_lock);
348}
349EXPORT_SYMBOL(core_tpg_clear_object_luns);
350
351/* core_tpg_add_initiator_node_acl():
352 *
353 *
354 */
355struct se_node_acl *core_tpg_add_initiator_node_acl(
356 struct se_portal_group *tpg,
357 struct se_node_acl *se_nacl,
358 const char *initiatorname,
359 u32 queue_depth)
360{
361 struct se_node_acl *acl = NULL;
362
Roland Dreier28638882011-08-16 09:40:01 -0700363 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800364 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700365 if (acl) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800366 if (acl->dynamic_node_acl) {
367 acl->dynamic_node_acl = 0;
Andy Grover6708bb22011-06-08 10:36:43 -0700368 pr_debug("%s_TPG[%u] - Replacing dynamic ACL"
Andy Grovere3d6f902011-07-19 08:55:10 +0000369 " for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
370 tpg->se_tpg_tfo->tpg_get_tag(tpg), initiatorname);
Roland Dreier28638882011-08-16 09:40:01 -0700371 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800372 /*
373 * Release the locally allocated struct se_node_acl
374 * because * core_tpg_add_initiator_node_acl() returned
375 * a pointer to an existing demo mode node ACL.
376 */
377 if (se_nacl)
Andy Grovere3d6f902011-07-19 08:55:10 +0000378 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800379 se_nacl);
380 goto done;
381 }
382
Andy Grover6708bb22011-06-08 10:36:43 -0700383 pr_err("ACL entry for %s Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800384 " Node %s already exists for TPG %u, ignoring"
Andy Grovere3d6f902011-07-19 08:55:10 +0000385 " request.\n", tpg->se_tpg_tfo->get_fabric_name(),
386 initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
Roland Dreier28638882011-08-16 09:40:01 -0700387 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800388 return ERR_PTR(-EEXIST);
389 }
Roland Dreier28638882011-08-16 09:40:01 -0700390 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800391
Andy Grover6708bb22011-06-08 10:36:43 -0700392 if (!se_nacl) {
393 pr_err("struct se_node_acl pointer is NULL\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394 return ERR_PTR(-EINVAL);
395 }
396 /*
397 * For v4.x logic the se_node_acl_s is hanging off a fabric
398 * dependent structure allocated via
399 * struct target_core_fabric_ops->fabric_make_nodeacl()
400 */
401 acl = se_nacl;
402
403 INIT_LIST_HEAD(&acl->acl_list);
404 INIT_LIST_HEAD(&acl->acl_sess_list);
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800405 kref_init(&acl->acl_kref);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800406 init_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800407 spin_lock_init(&acl->device_list_lock);
408 spin_lock_init(&acl->nacl_sess_lock);
409 atomic_set(&acl->acl_pr_ref_count, 0);
410 acl->queue_depth = queue_depth;
411 snprintf(acl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
412 acl->se_tpg = tpg;
413 acl->acl_index = scsi_get_new_index(SCSI_AUTH_INTR_INDEX);
414 spin_lock_init(&acl->stats_lock);
415
Andy Grovere3d6f902011-07-19 08:55:10 +0000416 tpg->se_tpg_tfo->set_default_node_attributes(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800417
418 if (core_create_device_list_for_node(acl) < 0) {
Andy Grovere3d6f902011-07-19 08:55:10 +0000419 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800420 return ERR_PTR(-ENOMEM);
421 }
422
423 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
424 core_free_device_list_for_node(acl, tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000425 tpg->se_tpg_tfo->tpg_release_fabric_acl(tpg, acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800426 return ERR_PTR(-EINVAL);
427 }
428
Roland Dreier28638882011-08-16 09:40:01 -0700429 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430 list_add_tail(&acl->acl_list, &tpg->acl_node_list);
431 tpg->num_node_acls++;
Roland Dreier28638882011-08-16 09:40:01 -0700432 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800433
434done:
Andy Grover6708bb22011-06-08 10:36:43 -0700435 pr_debug("%s_TPG[%hu] - Added ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000436 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
437 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
438 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800439
440 return acl;
441}
442EXPORT_SYMBOL(core_tpg_add_initiator_node_acl);
443
444/* core_tpg_del_initiator_node_acl():
445 *
446 *
447 */
448int core_tpg_del_initiator_node_acl(
449 struct se_portal_group *tpg,
450 struct se_node_acl *acl,
451 int force)
452{
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800453 LIST_HEAD(sess_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454 struct se_session *sess, *sess_tmp;
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700455 unsigned long flags;
Jörn Engel28168902012-03-15 15:06:58 -0400456 int rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457
Roland Dreier28638882011-08-16 09:40:01 -0700458 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800459 if (acl->dynamic_node_acl) {
460 acl->dynamic_node_acl = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800461 }
462 list_del(&acl->acl_list);
463 tpg->num_node_acls--;
Roland Dreier28638882011-08-16 09:40:01 -0700464 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800465
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800466 spin_lock_irqsave(&acl->nacl_sess_lock, flags);
467 acl->acl_stop = 1;
468
469 list_for_each_entry_safe(sess, sess_tmp, &acl->acl_sess_list,
470 sess_acl_list) {
471 if (sess->sess_tearing_down != 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800472 continue;
473
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800474 target_get_session(sess);
475 list_move(&sess->sess_acl_list, &sess_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800476 }
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800477 spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
478
479 list_for_each_entry_safe(sess, sess_tmp, &sess_list, sess_acl_list) {
480 list_del(&sess->sess_acl_list);
481
482 rc = tpg->se_tpg_tfo->shutdown_session(sess);
483 target_put_session(sess);
484 if (!rc)
485 continue;
486 target_put_session(sess);
487 }
488 target_put_nacl(acl);
489 /*
490 * Wait for last target_put_nacl() to complete in target_complete_nacl()
491 * for active fabric session transport_deregister_session() callbacks.
492 */
493 wait_for_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800494
495 core_tpg_wait_for_nacl_pr_ref(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496 core_clear_initiator_node_from_tpg(acl, tpg);
497 core_free_device_list_for_node(acl, tpg);
498
Andy Grover6708bb22011-06-08 10:36:43 -0700499 pr_debug("%s_TPG[%hu] - Deleted ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000500 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
501 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
502 tpg->se_tpg_tfo->get_fabric_name(), acl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800503
504 return 0;
505}
506EXPORT_SYMBOL(core_tpg_del_initiator_node_acl);
507
508/* core_tpg_set_initiator_node_queue_depth():
509 *
510 *
511 */
512int core_tpg_set_initiator_node_queue_depth(
513 struct se_portal_group *tpg,
514 unsigned char *initiatorname,
515 u32 queue_depth,
516 int force)
517{
518 struct se_session *sess, *init_sess = NULL;
519 struct se_node_acl *acl;
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700520 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800521 int dynamic_acl = 0;
522
Roland Dreier28638882011-08-16 09:40:01 -0700523 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800524 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700525 if (!acl) {
526 pr_err("Access Control List entry for %s Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800527 " Node %s does not exists for TPG %hu, ignoring"
Andy Grovere3d6f902011-07-19 08:55:10 +0000528 " request.\n", tpg->se_tpg_tfo->get_fabric_name(),
529 initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
Roland Dreier28638882011-08-16 09:40:01 -0700530 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800531 return -ENODEV;
532 }
533 if (acl->dynamic_node_acl) {
534 acl->dynamic_node_acl = 0;
535 dynamic_acl = 1;
536 }
Roland Dreier28638882011-08-16 09:40:01 -0700537 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800538
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700539 spin_lock_irqsave(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800540 list_for_each_entry(sess, &tpg->tpg_sess_list, sess_list) {
541 if (sess->se_node_acl != acl)
542 continue;
543
544 if (!force) {
Andy Grover6708bb22011-06-08 10:36:43 -0700545 pr_err("Unable to change queue depth for %s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800546 " Initiator Node: %s while session is"
547 " operational. To forcefully change the queue"
548 " depth and force session reinstatement"
549 " use the \"force=1\" parameter.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000550 tpg->se_tpg_tfo->get_fabric_name(), initiatorname);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700551 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800552
Roland Dreier28638882011-08-16 09:40:01 -0700553 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554 if (dynamic_acl)
555 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700556 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557 return -EEXIST;
558 }
559 /*
560 * Determine if the session needs to be closed by our context.
561 */
Andy Grover6708bb22011-06-08 10:36:43 -0700562 if (!tpg->se_tpg_tfo->shutdown_session(sess))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800563 continue;
564
565 init_sess = sess;
566 break;
567 }
568
569 /*
570 * User has requested to change the queue depth for a Initiator Node.
571 * Change the value in the Node's struct se_node_acl, and call
572 * core_set_queue_depth_for_node() to add the requested queue depth.
573 *
Andy Grovere3d6f902011-07-19 08:55:10 +0000574 * Finally call tpg->se_tpg_tfo->close_session() to force session
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800575 * reinstatement to occur if there is an active session for the
576 * $FABRIC_MOD Initiator Node in question.
577 */
578 acl->queue_depth = queue_depth;
579
580 if (core_set_queue_depth_for_node(tpg, acl) < 0) {
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700581 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 /*
583 * Force session reinstatement if
584 * core_set_queue_depth_for_node() failed, because we assume
585 * the $FABRIC_MOD has already the set session reinstatement
Andy Grovere3d6f902011-07-19 08:55:10 +0000586 * bit from tpg->se_tpg_tfo->shutdown_session() called above.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587 */
588 if (init_sess)
Andy Grovere3d6f902011-07-19 08:55:10 +0000589 tpg->se_tpg_tfo->close_session(init_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800590
Roland Dreier28638882011-08-16 09:40:01 -0700591 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592 if (dynamic_acl)
593 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700594 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800595 return -EINVAL;
596 }
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700597 spin_unlock_irqrestore(&tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598 /*
599 * If the $FABRIC_MOD session for the Initiator Node ACL exists,
600 * forcefully shutdown the $FABRIC_MOD session/nexus.
601 */
602 if (init_sess)
Andy Grovere3d6f902011-07-19 08:55:10 +0000603 tpg->se_tpg_tfo->close_session(init_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604
Joe Perchesbfb90352011-08-17 06:58:04 -0700605 pr_debug("Successfully changed queue depth to: %d for Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800606 " Node: %s on %s Target Portal Group: %u\n", queue_depth,
Andy Grovere3d6f902011-07-19 08:55:10 +0000607 initiatorname, tpg->se_tpg_tfo->get_fabric_name(),
608 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800609
Roland Dreier28638882011-08-16 09:40:01 -0700610 spin_lock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800611 if (dynamic_acl)
612 acl->dynamic_node_acl = 1;
Roland Dreier28638882011-08-16 09:40:01 -0700613 spin_unlock_irq(&tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614
615 return 0;
616}
617EXPORT_SYMBOL(core_tpg_set_initiator_node_queue_depth);
618
619static int core_tpg_setup_virtual_lun0(struct se_portal_group *se_tpg)
620{
621 /* Set in core_dev_setup_virtual_lun0() */
Andy Grovere3d6f902011-07-19 08:55:10 +0000622 struct se_device *dev = g_lun0_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800623 struct se_lun *lun = &se_tpg->tpg_virt_lun0;
624 u32 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
625 int ret;
626
627 lun->unpacked_lun = 0;
628 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
629 atomic_set(&lun->lun_acl_count, 0);
630 init_completion(&lun->lun_shutdown_comp);
631 INIT_LIST_HEAD(&lun->lun_acl_list);
632 INIT_LIST_HEAD(&lun->lun_cmd_list);
633 spin_lock_init(&lun->lun_acl_lock);
634 spin_lock_init(&lun->lun_cmd_lock);
635 spin_lock_init(&lun->lun_sep_lock);
636
637 ret = core_tpg_post_addlun(se_tpg, lun, lun_access, dev);
638 if (ret < 0)
Andy Grovere3d6f902011-07-19 08:55:10 +0000639 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800640
641 return 0;
642}
643
644static void core_tpg_release_virtual_lun0(struct se_portal_group *se_tpg)
645{
646 struct se_lun *lun = &se_tpg->tpg_virt_lun0;
647
648 core_tpg_post_dellun(se_tpg, lun);
649}
650
651int core_tpg_register(
652 struct target_core_fabric_ops *tfo,
653 struct se_wwn *se_wwn,
654 struct se_portal_group *se_tpg,
655 void *tpg_fabric_ptr,
656 int se_tpg_type)
657{
658 struct se_lun *lun;
659 u32 i;
660
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400661 se_tpg->tpg_lun_list = array_zalloc(TRANSPORT_MAX_LUNS_PER_TPG,
662 sizeof(struct se_lun), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700663 if (!se_tpg->tpg_lun_list) {
664 pr_err("Unable to allocate struct se_portal_group->"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800665 "tpg_lun_list\n");
666 return -ENOMEM;
667 }
668
669 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400670 lun = se_tpg->tpg_lun_list[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671 lun->unpacked_lun = i;
Nicholas Bellinger0ff87542012-12-04 23:43:57 -0800672 lun->lun_link_magic = SE_LUN_LINK_MAGIC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800673 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
674 atomic_set(&lun->lun_acl_count, 0);
675 init_completion(&lun->lun_shutdown_comp);
676 INIT_LIST_HEAD(&lun->lun_acl_list);
677 INIT_LIST_HEAD(&lun->lun_cmd_list);
678 spin_lock_init(&lun->lun_acl_lock);
679 spin_lock_init(&lun->lun_cmd_lock);
680 spin_lock_init(&lun->lun_sep_lock);
681 }
682
683 se_tpg->se_tpg_type = se_tpg_type;
684 se_tpg->se_tpg_fabric_ptr = tpg_fabric_ptr;
685 se_tpg->se_tpg_tfo = tfo;
686 se_tpg->se_tpg_wwn = se_wwn;
687 atomic_set(&se_tpg->tpg_pr_ref_count, 0);
688 INIT_LIST_HEAD(&se_tpg->acl_node_list);
Andy Grovere3d6f902011-07-19 08:55:10 +0000689 INIT_LIST_HEAD(&se_tpg->se_tpg_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800690 INIT_LIST_HEAD(&se_tpg->tpg_sess_list);
691 spin_lock_init(&se_tpg->acl_node_lock);
692 spin_lock_init(&se_tpg->session_lock);
693 spin_lock_init(&se_tpg->tpg_lun_lock);
694
695 if (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) {
696 if (core_tpg_setup_virtual_lun0(se_tpg) < 0) {
697 kfree(se_tpg);
698 return -ENOMEM;
699 }
700 }
701
Andy Grovere3d6f902011-07-19 08:55:10 +0000702 spin_lock_bh(&tpg_lock);
703 list_add_tail(&se_tpg->se_tpg_node, &tpg_list);
704 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800705
Andy Grover6708bb22011-06-08 10:36:43 -0700706 pr_debug("TARGET_CORE[%s]: Allocated %s struct se_portal_group for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800707 " endpoint: %s, Portal Tag: %u\n", tfo->get_fabric_name(),
708 (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) ?
709 "Normal" : "Discovery", (tfo->tpg_get_wwn(se_tpg) == NULL) ?
710 "None" : tfo->tpg_get_wwn(se_tpg), tfo->tpg_get_tag(se_tpg));
711
712 return 0;
713}
714EXPORT_SYMBOL(core_tpg_register);
715
716int core_tpg_deregister(struct se_portal_group *se_tpg)
717{
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800718 struct se_node_acl *nacl, *nacl_tmp;
719
Andy Grover6708bb22011-06-08 10:36:43 -0700720 pr_debug("TARGET_CORE[%s]: Deallocating %s struct se_portal_group"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800721 " for endpoint: %s Portal Tag %u\n",
722 (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) ?
Andy Grovere3d6f902011-07-19 08:55:10 +0000723 "Normal" : "Discovery", se_tpg->se_tpg_tfo->get_fabric_name(),
724 se_tpg->se_tpg_tfo->tpg_get_wwn(se_tpg),
725 se_tpg->se_tpg_tfo->tpg_get_tag(se_tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800726
Andy Grovere3d6f902011-07-19 08:55:10 +0000727 spin_lock_bh(&tpg_lock);
728 list_del(&se_tpg->se_tpg_node);
729 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800730
731 while (atomic_read(&se_tpg->tpg_pr_ref_count) != 0)
732 cpu_relax();
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800733 /*
734 * Release any remaining demo-mode generated se_node_acl that have
735 * not been released because of TFO->tpg_check_demo_mode_cache() == 1
736 * in transport_deregister_session().
737 */
Roland Dreier28638882011-08-16 09:40:01 -0700738 spin_lock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800739 list_for_each_entry_safe(nacl, nacl_tmp, &se_tpg->acl_node_list,
740 acl_list) {
741 list_del(&nacl->acl_list);
742 se_tpg->num_node_acls--;
Roland Dreier28638882011-08-16 09:40:01 -0700743 spin_unlock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800744
745 core_tpg_wait_for_nacl_pr_ref(nacl);
746 core_free_device_list_for_node(nacl, se_tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000747 se_tpg->se_tpg_tfo->tpg_release_fabric_acl(se_tpg, nacl);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800748
Roland Dreier28638882011-08-16 09:40:01 -0700749 spin_lock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800750 }
Roland Dreier28638882011-08-16 09:40:01 -0700751 spin_unlock_irq(&se_tpg->acl_node_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800752
753 if (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL)
754 core_tpg_release_virtual_lun0(se_tpg);
755
756 se_tpg->se_tpg_fabric_ptr = NULL;
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400757 array_free(se_tpg->tpg_lun_list, TRANSPORT_MAX_LUNS_PER_TPG);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800758 return 0;
759}
760EXPORT_SYMBOL(core_tpg_deregister);
761
762struct se_lun *core_tpg_pre_addlun(
763 struct se_portal_group *tpg,
764 u32 unpacked_lun)
765{
766 struct se_lun *lun;
767
768 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700769 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS_PER_TPG"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800770 "-1: %u for Target Portal Group: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000771 tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800772 unpacked_lun, TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +0000773 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800774 return ERR_PTR(-EOVERFLOW);
775 }
776
777 spin_lock(&tpg->tpg_lun_lock);
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400778 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800779 if (lun->lun_status == TRANSPORT_LUN_STATUS_ACTIVE) {
Andy Grover6708bb22011-06-08 10:36:43 -0700780 pr_err("TPG Logical Unit Number: %u is already active"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800781 " on %s Target Portal Group: %u, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000782 unpacked_lun, tpg->se_tpg_tfo->get_fabric_name(),
783 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800784 spin_unlock(&tpg->tpg_lun_lock);
785 return ERR_PTR(-EINVAL);
786 }
787 spin_unlock(&tpg->tpg_lun_lock);
788
789 return lun;
790}
791
792int core_tpg_post_addlun(
793 struct se_portal_group *tpg,
794 struct se_lun *lun,
795 u32 lun_access,
796 void *lun_ptr)
797{
Andy Grovere3d6f902011-07-19 08:55:10 +0000798 int ret;
799
800 ret = core_dev_export(lun_ptr, tpg, lun);
801 if (ret < 0)
802 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800803
804 spin_lock(&tpg->tpg_lun_lock);
805 lun->lun_access = lun_access;
806 lun->lun_status = TRANSPORT_LUN_STATUS_ACTIVE;
807 spin_unlock(&tpg->tpg_lun_lock);
808
809 return 0;
810}
811
812static void core_tpg_shutdown_lun(
813 struct se_portal_group *tpg,
814 struct se_lun *lun)
815{
816 core_clear_lun_from_tpg(lun, tpg);
817 transport_clear_lun_from_sessions(lun);
818}
819
820struct se_lun *core_tpg_pre_dellun(
821 struct se_portal_group *tpg,
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100822 u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800823{
824 struct se_lun *lun;
825
826 if (unpacked_lun > (TRANSPORT_MAX_LUNS_PER_TPG-1)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700827 pr_err("%s LUN: %u exceeds TRANSPORT_MAX_LUNS_PER_TPG"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800828 "-1: %u for Target Portal Group: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000829 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800830 TRANSPORT_MAX_LUNS_PER_TPG-1,
Andy Grovere3d6f902011-07-19 08:55:10 +0000831 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800832 return ERR_PTR(-EOVERFLOW);
833 }
834
835 spin_lock(&tpg->tpg_lun_lock);
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400836 lun = tpg->tpg_lun_list[unpacked_lun];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800837 if (lun->lun_status != TRANSPORT_LUN_STATUS_ACTIVE) {
Andy Grover6708bb22011-06-08 10:36:43 -0700838 pr_err("%s Logical Unit Number: %u is not active on"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800839 " Target Portal Group: %u, ignoring request.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000840 tpg->se_tpg_tfo->get_fabric_name(), unpacked_lun,
841 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800842 spin_unlock(&tpg->tpg_lun_lock);
843 return ERR_PTR(-ENODEV);
844 }
845 spin_unlock(&tpg->tpg_lun_lock);
846
847 return lun;
848}
849
850int core_tpg_post_dellun(
851 struct se_portal_group *tpg,
852 struct se_lun *lun)
853{
854 core_tpg_shutdown_lun(tpg, lun);
855
856 core_dev_unexport(lun->lun_se_dev, tpg, lun);
857
858 spin_lock(&tpg->tpg_lun_lock);
859 lun->lun_status = TRANSPORT_LUN_STATUS_FREE;
860 spin_unlock(&tpg->tpg_lun_lock);
861
862 return 0;
863}