blob: 71126761af5f7d019356b6459b7322efadc3e58b [file] [log] [blame]
Nicholas Bellingere48354c2011-07-23 06:43:04 +00001/*******************************************************************************
2 * This file contains iSCSI Target Portal Group related functions.
3 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07004 * (c) Copyright 2007-2013 Datera, Inc.
Nicholas Bellingere48354c2011-07-23 06:43:04 +00005 *
6 * Author: Nicholas A. Bellinger <nab@linux-iscsi.org>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 ******************************************************************************/
18
19#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050020#include <target/target_core_fabric.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000021#include <target/target_core_configfs.h>
Nicholas Bellingere48354c2011-07-23 06:43:04 +000022
23#include "iscsi_target_core.h"
24#include "iscsi_target_erl0.h"
25#include "iscsi_target_login.h"
26#include "iscsi_target_nodeattrib.h"
27#include "iscsi_target_tpg.h"
28#include "iscsi_target_util.h"
29#include "iscsi_target.h"
30#include "iscsi_target_parameters.h"
31
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -080032#include <target/iscsi/iscsi_transport.h>
33
Nicholas Bellingere48354c2011-07-23 06:43:04 +000034struct iscsi_portal_group *iscsit_alloc_portal_group(struct iscsi_tiqn *tiqn, u16 tpgt)
35{
36 struct iscsi_portal_group *tpg;
37
38 tpg = kzalloc(sizeof(struct iscsi_portal_group), GFP_KERNEL);
39 if (!tpg) {
40 pr_err("Unable to allocate struct iscsi_portal_group\n");
41 return NULL;
42 }
43
44 tpg->tpgt = tpgt;
45 tpg->tpg_state = TPG_STATE_FREE;
46 tpg->tpg_tiqn = tiqn;
47 INIT_LIST_HEAD(&tpg->tpg_gnp_list);
48 INIT_LIST_HEAD(&tpg->tpg_list);
49 mutex_init(&tpg->tpg_access_lock);
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -070050 sema_init(&tpg->np_login_sem, 1);
Nicholas Bellingere48354c2011-07-23 06:43:04 +000051 spin_lock_init(&tpg->tpg_state_lock);
52 spin_lock_init(&tpg->tpg_np_lock);
53
54 return tpg;
55}
56
57static void iscsit_set_default_tpg_attribs(struct iscsi_portal_group *);
58
59int iscsit_load_discovery_tpg(void)
60{
61 struct iscsi_param *param;
62 struct iscsi_portal_group *tpg;
63 int ret;
64
65 tpg = iscsit_alloc_portal_group(NULL, 1);
66 if (!tpg) {
67 pr_err("Unable to allocate struct iscsi_portal_group\n");
68 return -1;
69 }
70
71 ret = core_tpg_register(
72 &lio_target_fabric_configfs->tf_ops,
Jörn Engel8359cf42011-11-24 02:05:51 +010073 NULL, &tpg->tpg_se_tpg, tpg,
Nicholas Bellingere48354c2011-07-23 06:43:04 +000074 TRANSPORT_TPG_TYPE_DISCOVERY);
75 if (ret < 0) {
76 kfree(tpg);
77 return -1;
78 }
79
80 tpg->sid = 1; /* First Assigned LIO Session ID */
81 iscsit_set_default_tpg_attribs(tpg);
82
83 if (iscsi_create_default_params(&tpg->param_list) < 0)
84 goto out;
85 /*
86 * By default we disable authentication for discovery sessions,
87 * this can be changed with:
88 *
89 * /sys/kernel/config/target/iscsi/discovery_auth/enforce_discovery_auth
90 */
91 param = iscsi_find_param_from_key(AUTHMETHOD, tpg->param_list);
92 if (!param)
93 goto out;
94
95 if (iscsi_update_param_value(param, "CHAP,None") < 0)
96 goto out;
97
98 tpg->tpg_attrib.authentication = 0;
99
100 spin_lock(&tpg->tpg_state_lock);
101 tpg->tpg_state = TPG_STATE_ACTIVE;
102 spin_unlock(&tpg->tpg_state_lock);
103
104 iscsit_global->discovery_tpg = tpg;
105 pr_debug("CORE[0] - Allocated Discovery TPG\n");
106
107 return 0;
108out:
109 if (tpg->sid == 1)
110 core_tpg_deregister(&tpg->tpg_se_tpg);
111 kfree(tpg);
112 return -1;
113}
114
115void iscsit_release_discovery_tpg(void)
116{
117 struct iscsi_portal_group *tpg = iscsit_global->discovery_tpg;
118
119 if (!tpg)
120 return;
121
122 core_tpg_deregister(&tpg->tpg_se_tpg);
123
124 kfree(tpg);
125 iscsit_global->discovery_tpg = NULL;
126}
127
128struct iscsi_portal_group *iscsit_get_tpg_from_np(
129 struct iscsi_tiqn *tiqn,
Nicholas Bellingerd381a802013-08-15 13:40:17 -0700130 struct iscsi_np *np,
131 struct iscsi_tpg_np **tpg_np_out)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000132{
133 struct iscsi_portal_group *tpg = NULL;
134 struct iscsi_tpg_np *tpg_np;
135
136 spin_lock(&tiqn->tiqn_tpg_lock);
137 list_for_each_entry(tpg, &tiqn->tiqn_tpg_list, tpg_list) {
138
139 spin_lock(&tpg->tpg_state_lock);
Nicholas Bellingera2a99ce2014-02-26 03:09:41 -0800140 if (tpg->tpg_state != TPG_STATE_ACTIVE) {
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000141 spin_unlock(&tpg->tpg_state_lock);
142 continue;
143 }
144 spin_unlock(&tpg->tpg_state_lock);
145
146 spin_lock(&tpg->tpg_np_lock);
147 list_for_each_entry(tpg_np, &tpg->tpg_gnp_list, tpg_np_list) {
148 if (tpg_np->tpg_np == np) {
Nicholas Bellingerd381a802013-08-15 13:40:17 -0700149 *tpg_np_out = tpg_np;
150 kref_get(&tpg_np->tpg_np_kref);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000151 spin_unlock(&tpg->tpg_np_lock);
152 spin_unlock(&tiqn->tiqn_tpg_lock);
153 return tpg;
154 }
155 }
156 spin_unlock(&tpg->tpg_np_lock);
157 }
158 spin_unlock(&tiqn->tiqn_tpg_lock);
159
160 return NULL;
161}
162
163int iscsit_get_tpg(
164 struct iscsi_portal_group *tpg)
165{
166 int ret;
167
168 ret = mutex_lock_interruptible(&tpg->tpg_access_lock);
169 return ((ret != 0) || signal_pending(current)) ? -1 : 0;
170}
171
172void iscsit_put_tpg(struct iscsi_portal_group *tpg)
173{
174 mutex_unlock(&tpg->tpg_access_lock);
175}
176
177static void iscsit_clear_tpg_np_login_thread(
178 struct iscsi_tpg_np *tpg_np,
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700179 struct iscsi_portal_group *tpg,
180 bool shutdown)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000181{
182 if (!tpg_np->tpg_np) {
183 pr_err("struct iscsi_tpg_np->tpg_np is NULL!\n");
184 return;
185 }
186
Sagi Grimberg14f4b542014-04-29 13:13:47 +0300187 tpg_np->tpg_np->enabled = false;
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700188 iscsit_reset_np_thread(tpg_np->tpg_np, tpg_np, tpg, shutdown);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000189}
190
Nicholas Bellinger5256ffd2014-06-03 18:28:25 -0700191static void iscsit_clear_tpg_np_login_threads(
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700192 struct iscsi_portal_group *tpg,
193 bool shutdown)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000194{
195 struct iscsi_tpg_np *tpg_np;
196
197 spin_lock(&tpg->tpg_np_lock);
198 list_for_each_entry(tpg_np, &tpg->tpg_gnp_list, tpg_np_list) {
199 if (!tpg_np->tpg_np) {
200 pr_err("struct iscsi_tpg_np->tpg_np is NULL!\n");
201 continue;
202 }
203 spin_unlock(&tpg->tpg_np_lock);
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700204 iscsit_clear_tpg_np_login_thread(tpg_np, tpg, shutdown);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000205 spin_lock(&tpg->tpg_np_lock);
206 }
207 spin_unlock(&tpg->tpg_np_lock);
208}
209
210void iscsit_tpg_dump_params(struct iscsi_portal_group *tpg)
211{
212 iscsi_print_params(tpg->param_list);
213}
214
215static void iscsit_set_default_tpg_attribs(struct iscsi_portal_group *tpg)
216{
217 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
218
219 a->authentication = TA_AUTHENTICATION;
220 a->login_timeout = TA_LOGIN_TIMEOUT;
221 a->netif_timeout = TA_NETIF_TIMEOUT;
222 a->default_cmdsn_depth = TA_DEFAULT_CMDSN_DEPTH;
223 a->generate_node_acls = TA_GENERATE_NODE_ACLS;
224 a->cache_dynamic_acls = TA_CACHE_DYNAMIC_ACLS;
225 a->demo_mode_write_protect = TA_DEMO_MODE_WRITE_PROTECT;
226 a->prod_mode_write_protect = TA_PROD_MODE_WRITE_PROTECT;
Thomas Glanzmann4c54b6c2013-10-07 23:12:11 +0200227 a->demo_mode_discovery = TA_DEMO_MODE_DISCOVERY;
Nicholas Bellingerd1fa7a12013-11-20 11:57:18 -0800228 a->default_erl = TA_DEFAULT_ERL;
Sagi Grimberg5b168dc2014-02-19 17:50:19 +0200229 a->t10_pi = TA_DEFAULT_T10_PI;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000230}
231
232int iscsit_tpg_add_portal_group(struct iscsi_tiqn *tiqn, struct iscsi_portal_group *tpg)
233{
234 if (tpg->tpg_state != TPG_STATE_FREE) {
235 pr_err("Unable to add iSCSI Target Portal Group: %d"
236 " while not in TPG_STATE_FREE state.\n", tpg->tpgt);
237 return -EEXIST;
238 }
239 iscsit_set_default_tpg_attribs(tpg);
240
241 if (iscsi_create_default_params(&tpg->param_list) < 0)
242 goto err_out;
243
Andy Groverb7eec2c2013-10-09 11:05:57 -0700244 tpg->tpg_attrib.tpg = tpg;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000245
246 spin_lock(&tpg->tpg_state_lock);
247 tpg->tpg_state = TPG_STATE_INACTIVE;
248 spin_unlock(&tpg->tpg_state_lock);
249
250 spin_lock(&tiqn->tiqn_tpg_lock);
251 list_add_tail(&tpg->tpg_list, &tiqn->tiqn_tpg_list);
252 tiqn->tiqn_ntpgs++;
253 pr_debug("CORE[%s]_TPG[%hu] - Added iSCSI Target Portal Group\n",
254 tiqn->tiqn, tpg->tpgt);
255 spin_unlock(&tiqn->tiqn_tpg_lock);
256
257 return 0;
258err_out:
259 if (tpg->param_list) {
260 iscsi_release_param_list(tpg->param_list);
261 tpg->param_list = NULL;
262 }
263 kfree(tpg);
264 return -ENOMEM;
265}
266
267int iscsit_tpg_del_portal_group(
268 struct iscsi_tiqn *tiqn,
269 struct iscsi_portal_group *tpg,
270 int force)
271{
272 u8 old_state = tpg->tpg_state;
273
274 spin_lock(&tpg->tpg_state_lock);
275 tpg->tpg_state = TPG_STATE_INACTIVE;
276 spin_unlock(&tpg->tpg_state_lock);
277
278 if (iscsit_release_sessions_for_tpg(tpg, force) < 0) {
279 pr_err("Unable to delete iSCSI Target Portal Group:"
280 " %hu while active sessions exist, and force=0\n",
281 tpg->tpgt);
282 tpg->tpg_state = old_state;
283 return -EPERM;
284 }
285
286 core_tpg_clear_object_luns(&tpg->tpg_se_tpg);
287
288 if (tpg->param_list) {
289 iscsi_release_param_list(tpg->param_list);
290 tpg->param_list = NULL;
291 }
292
293 core_tpg_deregister(&tpg->tpg_se_tpg);
294
295 spin_lock(&tpg->tpg_state_lock);
296 tpg->tpg_state = TPG_STATE_FREE;
297 spin_unlock(&tpg->tpg_state_lock);
298
299 spin_lock(&tiqn->tiqn_tpg_lock);
300 tiqn->tiqn_ntpgs--;
301 list_del(&tpg->tpg_list);
302 spin_unlock(&tiqn->tiqn_tpg_lock);
303
304 pr_debug("CORE[%s]_TPG[%hu] - Deleted iSCSI Target Portal Group\n",
305 tiqn->tiqn, tpg->tpgt);
306
307 kfree(tpg);
308 return 0;
309}
310
311int iscsit_tpg_enable_portal_group(struct iscsi_portal_group *tpg)
312{
313 struct iscsi_param *param;
314 struct iscsi_tiqn *tiqn = tpg->tpg_tiqn;
Andy Grover617a0c22012-07-12 17:34:56 -0700315 int ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000316
317 spin_lock(&tpg->tpg_state_lock);
318 if (tpg->tpg_state == TPG_STATE_ACTIVE) {
319 pr_err("iSCSI target portal group: %hu is already"
320 " active, ignoring request.\n", tpg->tpgt);
321 spin_unlock(&tpg->tpg_state_lock);
322 return -EINVAL;
323 }
324 /*
325 * Make sure that AuthMethod does not contain None as an option
326 * unless explictly disabled. Set the default to CHAP if authentication
327 * is enforced (as per default), and remove the NONE option.
328 */
329 param = iscsi_find_param_from_key(AUTHMETHOD, tpg->param_list);
330 if (!param) {
331 spin_unlock(&tpg->tpg_state_lock);
Andy Grover617a0c22012-07-12 17:34:56 -0700332 return -EINVAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000333 }
334
Andy Groverb7eec2c2013-10-09 11:05:57 -0700335 if (tpg->tpg_attrib.authentication) {
Andy Grover617a0c22012-07-12 17:34:56 -0700336 if (!strcmp(param->value, NONE)) {
337 ret = iscsi_update_param_value(param, CHAP);
338 if (ret)
339 goto err;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000340 }
Andy Grover617a0c22012-07-12 17:34:56 -0700341
342 ret = iscsit_ta_authentication(tpg, 1);
343 if (ret < 0)
344 goto err;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000345 }
346
347 tpg->tpg_state = TPG_STATE_ACTIVE;
348 spin_unlock(&tpg->tpg_state_lock);
349
350 spin_lock(&tiqn->tiqn_tpg_lock);
351 tiqn->tiqn_active_tpgs++;
352 pr_debug("iSCSI_TPG[%hu] - Enabled iSCSI Target Portal Group\n",
353 tpg->tpgt);
354 spin_unlock(&tiqn->tiqn_tpg_lock);
355
356 return 0;
Andy Grover617a0c22012-07-12 17:34:56 -0700357
358err:
359 spin_unlock(&tpg->tpg_state_lock);
360 return ret;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000361}
362
363int iscsit_tpg_disable_portal_group(struct iscsi_portal_group *tpg, int force)
364{
365 struct iscsi_tiqn *tiqn;
366 u8 old_state = tpg->tpg_state;
367
368 spin_lock(&tpg->tpg_state_lock);
369 if (tpg->tpg_state == TPG_STATE_INACTIVE) {
370 pr_err("iSCSI Target Portal Group: %hu is already"
371 " inactive, ignoring request.\n", tpg->tpgt);
372 spin_unlock(&tpg->tpg_state_lock);
373 return -EINVAL;
374 }
375 tpg->tpg_state = TPG_STATE_INACTIVE;
376 spin_unlock(&tpg->tpg_state_lock);
377
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700378 iscsit_clear_tpg_np_login_threads(tpg, false);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000379
380 if (iscsit_release_sessions_for_tpg(tpg, force) < 0) {
381 spin_lock(&tpg->tpg_state_lock);
382 tpg->tpg_state = old_state;
383 spin_unlock(&tpg->tpg_state_lock);
384 pr_err("Unable to disable iSCSI Target Portal Group:"
385 " %hu while active sessions exist, and force=0\n",
386 tpg->tpgt);
387 return -EPERM;
388 }
389
390 tiqn = tpg->tpg_tiqn;
391 if (!tiqn || (tpg == iscsit_global->discovery_tpg))
392 return 0;
393
394 spin_lock(&tiqn->tiqn_tpg_lock);
395 tiqn->tiqn_active_tpgs--;
396 pr_debug("iSCSI_TPG[%hu] - Disabled iSCSI Target Portal Group\n",
397 tpg->tpgt);
398 spin_unlock(&tiqn->tiqn_tpg_lock);
399
400 return 0;
401}
402
403struct iscsi_node_attrib *iscsit_tpg_get_node_attrib(
404 struct iscsi_session *sess)
405{
406 struct se_session *se_sess = sess->se_sess;
407 struct se_node_acl *se_nacl = se_sess->se_node_acl;
408 struct iscsi_node_acl *acl = container_of(se_nacl, struct iscsi_node_acl,
409 se_node_acl);
410
411 return &acl->node_attrib;
412}
413
414struct iscsi_tpg_np *iscsit_tpg_locate_child_np(
415 struct iscsi_tpg_np *tpg_np,
416 int network_transport)
417{
418 struct iscsi_tpg_np *tpg_np_child, *tpg_np_child_tmp;
419
420 spin_lock(&tpg_np->tpg_np_parent_lock);
421 list_for_each_entry_safe(tpg_np_child, tpg_np_child_tmp,
422 &tpg_np->tpg_np_parent_list, tpg_np_child_list) {
423 if (tpg_np_child->tpg_np->np_network_transport ==
424 network_transport) {
425 spin_unlock(&tpg_np->tpg_np_parent_lock);
426 return tpg_np_child;
427 }
428 }
429 spin_unlock(&tpg_np->tpg_np_parent_lock);
430
431 return NULL;
432}
433
Nicholas Bellinger6e545932013-02-18 21:01:02 -0800434static bool iscsit_tpg_check_network_portal(
435 struct iscsi_tiqn *tiqn,
436 struct __kernel_sockaddr_storage *sockaddr,
437 int network_transport)
438{
439 struct iscsi_portal_group *tpg;
440 struct iscsi_tpg_np *tpg_np;
441 struct iscsi_np *np;
442 bool match = false;
443
444 spin_lock(&tiqn->tiqn_tpg_lock);
445 list_for_each_entry(tpg, &tiqn->tiqn_tpg_list, tpg_list) {
446
447 spin_lock(&tpg->tpg_np_lock);
448 list_for_each_entry(tpg_np, &tpg->tpg_gnp_list, tpg_np_list) {
449 np = tpg_np->tpg_np;
450
451 match = iscsit_check_np_match(sockaddr, np,
452 network_transport);
453 if (match == true)
454 break;
455 }
456 spin_unlock(&tpg->tpg_np_lock);
457 }
458 spin_unlock(&tiqn->tiqn_tpg_lock);
459
460 return match;
461}
462
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000463struct iscsi_tpg_np *iscsit_tpg_add_network_portal(
464 struct iscsi_portal_group *tpg,
465 struct __kernel_sockaddr_storage *sockaddr,
466 char *ip_str,
467 struct iscsi_tpg_np *tpg_np_parent,
468 int network_transport)
469{
470 struct iscsi_np *np;
471 struct iscsi_tpg_np *tpg_np;
472
Nicholas Bellinger6e545932013-02-18 21:01:02 -0800473 if (!tpg_np_parent) {
474 if (iscsit_tpg_check_network_portal(tpg->tpg_tiqn, sockaddr,
475 network_transport) == true) {
476 pr_err("Network Portal: %s already exists on a"
477 " different TPG on %s\n", ip_str,
478 tpg->tpg_tiqn->tiqn);
479 return ERR_PTR(-EEXIST);
480 }
481 }
482
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000483 tpg_np = kzalloc(sizeof(struct iscsi_tpg_np), GFP_KERNEL);
484 if (!tpg_np) {
485 pr_err("Unable to allocate memory for"
486 " struct iscsi_tpg_np.\n");
487 return ERR_PTR(-ENOMEM);
488 }
489
490 np = iscsit_add_np(sockaddr, ip_str, network_transport);
491 if (IS_ERR(np)) {
492 kfree(tpg_np);
493 return ERR_CAST(np);
494 }
495
496 INIT_LIST_HEAD(&tpg_np->tpg_np_list);
497 INIT_LIST_HEAD(&tpg_np->tpg_np_child_list);
498 INIT_LIST_HEAD(&tpg_np->tpg_np_parent_list);
499 spin_lock_init(&tpg_np->tpg_np_parent_lock);
Nicholas Bellingerd381a802013-08-15 13:40:17 -0700500 init_completion(&tpg_np->tpg_np_comp);
501 kref_init(&tpg_np->tpg_np_kref);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000502 tpg_np->tpg_np = np;
Sagi Grimberg5b168dc2014-02-19 17:50:19 +0200503 np->tpg_np = tpg_np;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000504 tpg_np->tpg = tpg;
505
506 spin_lock(&tpg->tpg_np_lock);
507 list_add_tail(&tpg_np->tpg_np_list, &tpg->tpg_gnp_list);
508 tpg->num_tpg_nps++;
509 if (tpg->tpg_tiqn)
510 tpg->tpg_tiqn->tiqn_num_tpg_nps++;
511 spin_unlock(&tpg->tpg_np_lock);
512
513 if (tpg_np_parent) {
514 tpg_np->tpg_np_parent = tpg_np_parent;
515 spin_lock(&tpg_np_parent->tpg_np_parent_lock);
516 list_add_tail(&tpg_np->tpg_np_child_list,
517 &tpg_np_parent->tpg_np_parent_list);
518 spin_unlock(&tpg_np_parent->tpg_np_parent_lock);
519 }
520
521 pr_debug("CORE[%s] - Added Network Portal: %s:%hu,%hu on %s\n",
522 tpg->tpg_tiqn->tiqn, np->np_ip, np->np_port, tpg->tpgt,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800523 np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000524
525 return tpg_np;
526}
527
528static int iscsit_tpg_release_np(
529 struct iscsi_tpg_np *tpg_np,
530 struct iscsi_portal_group *tpg,
531 struct iscsi_np *np)
532{
Nicholas Bellingera91eb7d2013-08-15 12:49:02 -0700533 iscsit_clear_tpg_np_login_thread(tpg_np, tpg, true);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000534
535 pr_debug("CORE[%s] - Removed Network Portal: %s:%hu,%hu on %s\n",
536 tpg->tpg_tiqn->tiqn, np->np_ip, np->np_port, tpg->tpgt,
Nicholas Bellingerbaa4d642013-03-06 21:54:13 -0800537 np->np_transport->name);
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000538
539 tpg_np->tpg_np = NULL;
540 tpg_np->tpg = NULL;
541 kfree(tpg_np);
542 /*
543 * iscsit_del_np() will shutdown struct iscsi_np when last TPG reference is released.
544 */
545 return iscsit_del_np(np);
546}
547
548int iscsit_tpg_del_network_portal(
549 struct iscsi_portal_group *tpg,
550 struct iscsi_tpg_np *tpg_np)
551{
552 struct iscsi_np *np;
553 struct iscsi_tpg_np *tpg_np_child, *tpg_np_child_tmp;
554 int ret = 0;
555
556 np = tpg_np->tpg_np;
557 if (!np) {
558 pr_err("Unable to locate struct iscsi_np from"
559 " struct iscsi_tpg_np\n");
560 return -EINVAL;
561 }
562
563 if (!tpg_np->tpg_np_parent) {
564 /*
565 * We are the parent tpg network portal. Release all of the
566 * child tpg_np's (eg: the non ISCSI_TCP ones) on our parent
567 * list first.
568 */
569 list_for_each_entry_safe(tpg_np_child, tpg_np_child_tmp,
570 &tpg_np->tpg_np_parent_list,
571 tpg_np_child_list) {
572 ret = iscsit_tpg_del_network_portal(tpg, tpg_np_child);
573 if (ret < 0)
574 pr_err("iscsit_tpg_del_network_portal()"
575 " failed: %d\n", ret);
576 }
577 } else {
578 /*
579 * We are not the parent ISCSI_TCP tpg network portal. Release
580 * our own network portals from the child list.
581 */
582 spin_lock(&tpg_np->tpg_np_parent->tpg_np_parent_lock);
583 list_del(&tpg_np->tpg_np_child_list);
584 spin_unlock(&tpg_np->tpg_np_parent->tpg_np_parent_lock);
585 }
586
587 spin_lock(&tpg->tpg_np_lock);
588 list_del(&tpg_np->tpg_np_list);
589 tpg->num_tpg_nps--;
590 if (tpg->tpg_tiqn)
591 tpg->tpg_tiqn->tiqn_num_tpg_nps--;
592 spin_unlock(&tpg->tpg_np_lock);
593
594 return iscsit_tpg_release_np(tpg_np, tpg, np);
595}
596
597int iscsit_tpg_set_initiator_node_queue_depth(
598 struct iscsi_portal_group *tpg,
599 unsigned char *initiatorname,
600 u32 queue_depth,
601 int force)
602{
603 return core_tpg_set_initiator_node_queue_depth(&tpg->tpg_se_tpg,
604 initiatorname, queue_depth, force);
605}
606
607int iscsit_ta_authentication(struct iscsi_portal_group *tpg, u32 authentication)
608{
609 unsigned char buf1[256], buf2[256], *none = NULL;
610 int len;
611 struct iscsi_param *param;
612 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
613
614 if ((authentication != 1) && (authentication != 0)) {
615 pr_err("Illegal value for authentication parameter:"
616 " %u, ignoring request.\n", authentication);
Andy Grover617a0c22012-07-12 17:34:56 -0700617 return -EINVAL;
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000618 }
619
620 memset(buf1, 0, sizeof(buf1));
621 memset(buf2, 0, sizeof(buf2));
622
623 param = iscsi_find_param_from_key(AUTHMETHOD, tpg->param_list);
624 if (!param)
625 return -EINVAL;
626
627 if (authentication) {
628 snprintf(buf1, sizeof(buf1), "%s", param->value);
629 none = strstr(buf1, NONE);
630 if (!none)
631 goto out;
632 if (!strncmp(none + 4, ",", 1)) {
633 if (!strcmp(buf1, none))
634 sprintf(buf2, "%s", none+5);
635 else {
636 none--;
637 *none = '\0';
638 len = sprintf(buf2, "%s", buf1);
639 none += 5;
640 sprintf(buf2 + len, "%s", none);
641 }
642 } else {
643 none--;
644 *none = '\0';
645 sprintf(buf2, "%s", buf1);
646 }
647 if (iscsi_update_param_value(param, buf2) < 0)
648 return -EINVAL;
649 } else {
650 snprintf(buf1, sizeof(buf1), "%s", param->value);
651 none = strstr(buf1, NONE);
Andy Groveree1b1b92012-07-12 17:34:54 -0700652 if (none)
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000653 goto out;
654 strncat(buf1, ",", strlen(","));
655 strncat(buf1, NONE, strlen(NONE));
656 if (iscsi_update_param_value(param, buf1) < 0)
657 return -EINVAL;
658 }
659
660out:
661 a->authentication = authentication;
662 pr_debug("%s iSCSI Authentication Methods for TPG: %hu.\n",
663 a->authentication ? "Enforcing" : "Disabling", tpg->tpgt);
664
665 return 0;
666}
667
668int iscsit_ta_login_timeout(
669 struct iscsi_portal_group *tpg,
670 u32 login_timeout)
671{
672 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
673
674 if (login_timeout > TA_LOGIN_TIMEOUT_MAX) {
675 pr_err("Requested Login Timeout %u larger than maximum"
676 " %u\n", login_timeout, TA_LOGIN_TIMEOUT_MAX);
677 return -EINVAL;
678 } else if (login_timeout < TA_LOGIN_TIMEOUT_MIN) {
679 pr_err("Requested Logout Timeout %u smaller than"
680 " minimum %u\n", login_timeout, TA_LOGIN_TIMEOUT_MIN);
681 return -EINVAL;
682 }
683
684 a->login_timeout = login_timeout;
685 pr_debug("Set Logout Timeout to %u for Target Portal Group"
686 " %hu\n", a->login_timeout, tpg->tpgt);
687
688 return 0;
689}
690
691int iscsit_ta_netif_timeout(
692 struct iscsi_portal_group *tpg,
693 u32 netif_timeout)
694{
695 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
696
697 if (netif_timeout > TA_NETIF_TIMEOUT_MAX) {
698 pr_err("Requested Network Interface Timeout %u larger"
699 " than maximum %u\n", netif_timeout,
700 TA_NETIF_TIMEOUT_MAX);
701 return -EINVAL;
702 } else if (netif_timeout < TA_NETIF_TIMEOUT_MIN) {
703 pr_err("Requested Network Interface Timeout %u smaller"
704 " than minimum %u\n", netif_timeout,
705 TA_NETIF_TIMEOUT_MIN);
706 return -EINVAL;
707 }
708
709 a->netif_timeout = netif_timeout;
710 pr_debug("Set Network Interface Timeout to %u for"
711 " Target Portal Group %hu\n", a->netif_timeout, tpg->tpgt);
712
713 return 0;
714}
715
716int iscsit_ta_generate_node_acls(
717 struct iscsi_portal_group *tpg,
718 u32 flag)
719{
720 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
721
722 if ((flag != 0) && (flag != 1)) {
723 pr_err("Illegal value %d\n", flag);
724 return -EINVAL;
725 }
726
727 a->generate_node_acls = flag;
728 pr_debug("iSCSI_TPG[%hu] - Generate Initiator Portal Group ACLs: %s\n",
729 tpg->tpgt, (a->generate_node_acls) ? "Enabled" : "Disabled");
730
Nicholas Bellinger38b11ba2012-09-30 12:20:02 -0700731 if (flag == 1 && a->cache_dynamic_acls == 0) {
732 pr_debug("Explicitly setting cache_dynamic_acls=1 when "
733 "generate_node_acls=1\n");
734 a->cache_dynamic_acls = 1;
735 }
736
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000737 return 0;
738}
739
740int iscsit_ta_default_cmdsn_depth(
741 struct iscsi_portal_group *tpg,
742 u32 tcq_depth)
743{
744 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
745
746 if (tcq_depth > TA_DEFAULT_CMDSN_DEPTH_MAX) {
747 pr_err("Requested Default Queue Depth: %u larger"
748 " than maximum %u\n", tcq_depth,
749 TA_DEFAULT_CMDSN_DEPTH_MAX);
750 return -EINVAL;
751 } else if (tcq_depth < TA_DEFAULT_CMDSN_DEPTH_MIN) {
752 pr_err("Requested Default Queue Depth: %u smaller"
753 " than minimum %u\n", tcq_depth,
754 TA_DEFAULT_CMDSN_DEPTH_MIN);
755 return -EINVAL;
756 }
757
758 a->default_cmdsn_depth = tcq_depth;
759 pr_debug("iSCSI_TPG[%hu] - Set Default CmdSN TCQ Depth to %u\n",
760 tpg->tpgt, a->default_cmdsn_depth);
761
762 return 0;
763}
764
765int iscsit_ta_cache_dynamic_acls(
766 struct iscsi_portal_group *tpg,
767 u32 flag)
768{
769 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
770
771 if ((flag != 0) && (flag != 1)) {
772 pr_err("Illegal value %d\n", flag);
773 return -EINVAL;
774 }
775
Nicholas Bellinger38b11ba2012-09-30 12:20:02 -0700776 if (a->generate_node_acls == 1 && flag == 0) {
777 pr_debug("Skipping cache_dynamic_acls=0 when"
778 " generate_node_acls=1\n");
779 return 0;
780 }
781
Nicholas Bellingere48354c2011-07-23 06:43:04 +0000782 a->cache_dynamic_acls = flag;
783 pr_debug("iSCSI_TPG[%hu] - Cache Dynamic Initiator Portal Group"
784 " ACLs %s\n", tpg->tpgt, (a->cache_dynamic_acls) ?
785 "Enabled" : "Disabled");
786
787 return 0;
788}
789
790int iscsit_ta_demo_mode_write_protect(
791 struct iscsi_portal_group *tpg,
792 u32 flag)
793{
794 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
795
796 if ((flag != 0) && (flag != 1)) {
797 pr_err("Illegal value %d\n", flag);
798 return -EINVAL;
799 }
800
801 a->demo_mode_write_protect = flag;
802 pr_debug("iSCSI_TPG[%hu] - Demo Mode Write Protect bit: %s\n",
803 tpg->tpgt, (a->demo_mode_write_protect) ? "ON" : "OFF");
804
805 return 0;
806}
807
808int iscsit_ta_prod_mode_write_protect(
809 struct iscsi_portal_group *tpg,
810 u32 flag)
811{
812 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
813
814 if ((flag != 0) && (flag != 1)) {
815 pr_err("Illegal value %d\n", flag);
816 return -EINVAL;
817 }
818
819 a->prod_mode_write_protect = flag;
820 pr_debug("iSCSI_TPG[%hu] - Production Mode Write Protect bit:"
821 " %s\n", tpg->tpgt, (a->prod_mode_write_protect) ?
822 "ON" : "OFF");
823
824 return 0;
825}
Thomas Glanzmann4c54b6c2013-10-07 23:12:11 +0200826
827int iscsit_ta_demo_mode_discovery(
828 struct iscsi_portal_group *tpg,
829 u32 flag)
830{
831 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
832
833 if ((flag != 0) && (flag != 1)) {
834 pr_err("Illegal value %d\n", flag);
835 return -EINVAL;
836 }
837
838 a->demo_mode_discovery = flag;
839 pr_debug("iSCSI_TPG[%hu] - Demo Mode Discovery bit:"
840 " %s\n", tpg->tpgt, (a->demo_mode_discovery) ?
841 "ON" : "OFF");
842
843 return 0;
844}
Nicholas Bellingerd1fa7a12013-11-20 11:57:18 -0800845
846int iscsit_ta_default_erl(
847 struct iscsi_portal_group *tpg,
848 u32 default_erl)
849{
850 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
851
852 if ((default_erl != 0) && (default_erl != 1) && (default_erl != 2)) {
853 pr_err("Illegal value for default_erl: %u\n", default_erl);
854 return -EINVAL;
855 }
856
857 a->default_erl = default_erl;
858 pr_debug("iSCSI_TPG[%hu] - DefaultERL: %u\n", tpg->tpgt, a->default_erl);
859
860 return 0;
861}
Sagi Grimberg80851762014-02-19 17:50:20 +0200862
863int iscsit_ta_t10_pi(
864 struct iscsi_portal_group *tpg,
865 u32 flag)
866{
867 struct iscsi_tpg_attrib *a = &tpg->tpg_attrib;
868
869 if ((flag != 0) && (flag != 1)) {
870 pr_err("Illegal value %d\n", flag);
871 return -EINVAL;
872 }
873
874 a->t10_pi = flag;
875 pr_debug("iSCSI_TPG[%hu] - T10 Protection information bit:"
876 " %s\n", tpg->tpgt, (a->t10_pi) ?
877 "ON" : "OFF");
878
879 return 0;
880}