blob: 0e2e71f6c19803628d6f5b0808a89f21e7e2a71a [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>
Bart Van Asscheba929992015-05-08 10:11:12 +020035#include <scsi/scsi_proto.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036
37#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050038#include <target/target_core_backend.h>
39#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080040
Christoph Hellwige26d99a2011-11-14 12:30:30 -050041#include "target_core_internal.h"
Christoph Hellwigadf653f2015-05-25 21:33:08 -070042#include "target_core_alua.h"
Nicholas Bellingere2480562014-10-04 04:23:15 +000043#include "target_core_pr.h"
Hannes Reineckee986a352015-06-18 11:43:38 +020044#include "target_core_ua.h"
Andy Grovere3d6f902011-07-19 08:55:10 +000045
46extern struct se_device *g_lun0_dev;
47
48static DEFINE_SPINLOCK(tpg_lock);
49static LIST_HEAD(tpg_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080050
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051/* __core_tpg_get_initiator_node_acl():
52 *
Nicholas Bellinger403edd72015-03-08 22:33:47 +000053 * mutex_lock(&tpg->acl_node_mutex); must be held when calling
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080054 */
55struct se_node_acl *__core_tpg_get_initiator_node_acl(
56 struct se_portal_group *tpg,
57 const char *initiatorname)
58{
59 struct se_node_acl *acl;
60
61 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Andy Grover6708bb22011-06-08 10:36:43 -070062 if (!strcmp(acl->initiatorname, initiatorname))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080063 return acl;
64 }
65
66 return NULL;
67}
68
69/* core_tpg_get_initiator_node_acl():
70 *
71 *
72 */
73struct se_node_acl *core_tpg_get_initiator_node_acl(
74 struct se_portal_group *tpg,
75 unsigned char *initiatorname)
76{
77 struct se_node_acl *acl;
Nicholas Bellinger21aaa232016-01-07 22:09:27 -080078 /*
79 * Obtain se_node_acl->acl_kref using fabric driver provided
80 * initiatorname[] during node acl endpoint lookup driven by
81 * new se_session login.
82 *
83 * The reference is held until se_session shutdown -> release
84 * occurs via fabric driver invoked transport_deregister_session()
85 * or transport_free_session() code.
86 */
Nicholas Bellinger403edd72015-03-08 22:33:47 +000087 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerfcf29482013-02-18 18:00:33 -080088 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Nicholas Bellinger21aaa232016-01-07 22:09:27 -080089 if (acl) {
90 if (!kref_get_unless_zero(&acl->acl_kref))
91 acl = NULL;
92 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +000093 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080094
Nicholas Bellingerfcf29482013-02-18 18:00:33 -080095 return acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096}
Thomas Glanzmannb3fde032013-10-07 23:13:02 +020097EXPORT_SYMBOL(core_tpg_get_initiator_node_acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098
Hannes Reineckee986a352015-06-18 11:43:38 +020099void core_allocate_nexus_loss_ua(
100 struct se_node_acl *nacl)
101{
102 struct se_dev_entry *deve;
103
104 if (!nacl)
105 return;
106
107 rcu_read_lock();
108 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link)
109 core_scsi3_ua_allocate(deve, 0x29,
110 ASCQ_29H_NEXUS_LOSS_OCCURRED);
111 rcu_read_unlock();
112}
113EXPORT_SYMBOL(core_allocate_nexus_loss_ua);
114
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800115/* core_tpg_add_node_to_devs():
116 *
117 *
118 */
119void core_tpg_add_node_to_devs(
120 struct se_node_acl *acl,
Nicholas Bellingerdf9766c2015-05-22 02:05:19 +0000121 struct se_portal_group *tpg,
122 struct se_lun *lun_orig)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800123{
Andy Grover03a68b42016-02-25 15:14:32 -0800124 bool lun_access_ro = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800125 struct se_lun *lun;
126 struct se_device *dev;
127
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700128 mutex_lock(&tpg->tpg_lun_mutex);
129 hlist_for_each_entry_rcu(lun, &tpg->tpg_lun_hlist, link) {
Nicholas Bellingerdf9766c2015-05-22 02:05:19 +0000130 if (lun_orig && lun != lun_orig)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131 continue;
132
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700133 dev = rcu_dereference_check(lun->lun_se_dev,
134 lockdep_is_held(&tpg->tpg_lun_mutex));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800135 /*
136 * By default in LIO-Target $FABRIC_MOD,
137 * demo_mode_write_protect is ON, or READ_ONLY;
138 */
Andy Grover6708bb22011-06-08 10:36:43 -0700139 if (!tpg->se_tpg_tfo->tpg_check_demo_mode_write_protect(tpg)) {
Andy Grover03a68b42016-02-25 15:14:32 -0800140 lun_access_ro = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800141 } else {
142 /*
143 * Allow only optical drives to issue R/W in default RO
144 * demo mode.
145 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000146 if (dev->transport->get_device_type(dev) == TYPE_DISK)
Andy Grover03a68b42016-02-25 15:14:32 -0800147 lun_access_ro = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800148 else
Andy Grover03a68b42016-02-25 15:14:32 -0800149 lun_access_ro = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800150 }
151
Hannes Reineckef2d30682015-06-10 08:41:22 +0200152 pr_debug("TARGET_CORE[%s]->TPG[%u]_LUN[%llu] - Adding %s"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153 " access for LUN in Demo Mode\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000154 tpg->se_tpg_tfo->get_fabric_name(),
155 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Andy Grover03a68b42016-02-25 15:14:32 -0800156 lun_access_ro ? "READ-ONLY" : "READ-WRITE");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157
Andy Grovere80ac6c2012-07-12 17:34:58 -0700158 core_enable_device_list_for_node(lun, NULL, lun->unpacked_lun,
Andy Grover03a68b42016-02-25 15:14:32 -0800159 lun_access_ro, acl, tpg);
Nicholas Bellingere2480562014-10-04 04:23:15 +0000160 /*
161 * Check to see if there are any existing persistent reservation
162 * APTPL pre-registrations that need to be enabled for this dynamic
163 * LUN ACL now..
164 */
165 core_scsi3_check_aptpl_registration(dev, tpg, lun, acl,
166 lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800167 }
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700168 mutex_unlock(&tpg->tpg_lun_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169}
170
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800171static void
172target_set_nacl_queue_depth(struct se_portal_group *tpg,
173 struct se_node_acl *acl, u32 queue_depth)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174{
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800175 acl->queue_depth = queue_depth;
176
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800177 if (!acl->queue_depth) {
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800178 pr_warn("Queue depth for %s Initiator Node: %s is 0,"
Andy Grovere3d6f902011-07-19 08:55:10 +0000179 "defaulting to 1.\n", tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800180 acl->initiatorname);
181 acl->queue_depth = 1;
182 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800183}
184
Christoph Hellwige413f472015-04-13 19:51:15 +0200185static struct se_node_acl *target_alloc_node_acl(struct se_portal_group *tpg,
186 const unsigned char *initiatorname)
Jörn Engel4a5a75f2012-03-15 15:05:12 -0400187{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188 struct se_node_acl *acl;
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800189 u32 queue_depth;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800190
Christoph Hellwig144bc4c2015-04-13 19:51:16 +0200191 acl = kzalloc(max(sizeof(*acl), tpg->se_tpg_tfo->node_acl_size),
192 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700193 if (!acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800194 return NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800195
196 INIT_LIST_HEAD(&acl->acl_list);
197 INIT_LIST_HEAD(&acl->acl_sess_list);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700198 INIT_HLIST_HEAD(&acl->lun_entry_hlist);
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800199 kref_init(&acl->acl_kref);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800200 init_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800201 spin_lock_init(&acl->nacl_sess_lock);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700202 mutex_init(&acl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800203 atomic_set(&acl->acl_pr_ref_count, 0);
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800204
Christoph Hellwige1750d22015-04-13 19:51:13 +0200205 if (tpg->se_tpg_tfo->tpg_get_default_depth)
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800206 queue_depth = tpg->se_tpg_tfo->tpg_get_default_depth(tpg);
Christoph Hellwige1750d22015-04-13 19:51:13 +0200207 else
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800208 queue_depth = 1;
209 target_set_nacl_queue_depth(tpg, acl, queue_depth);
210
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800211 snprintf(acl->initiatorname, TRANSPORT_IQN_LEN, "%s", initiatorname);
212 acl->se_tpg = tpg;
213 acl->acl_index = scsi_get_new_index(SCSI_AUTH_INTR_INDEX);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800214
Andy Grovere3d6f902011-07-19 08:55:10 +0000215 tpg->se_tpg_tfo->set_default_node_attributes(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800216
Christoph Hellwige413f472015-04-13 19:51:15 +0200217 return acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218}
219
Christoph Hellwige413f472015-04-13 19:51:15 +0200220static void target_add_node_acl(struct se_node_acl *acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800221{
Christoph Hellwige413f472015-04-13 19:51:15 +0200222 struct se_portal_group *tpg = acl->se_tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800223
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000224 mutex_lock(&tpg->acl_node_mutex);
Christoph Hellwige413f472015-04-13 19:51:15 +0200225 list_add_tail(&acl->acl_list, &tpg->acl_node_list);
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000226 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800227
Christoph Hellwige413f472015-04-13 19:51:15 +0200228 pr_debug("%s_TPG[%hu] - Added %s ACL with TCQ Depth: %d for %s"
229 " Initiator Node: %s\n",
230 tpg->se_tpg_tfo->get_fabric_name(),
231 tpg->se_tpg_tfo->tpg_get_tag(tpg),
232 acl->dynamic_node_acl ? "DYNAMIC" : "",
233 acl->queue_depth,
234 tpg->se_tpg_tfo->get_fabric_name(),
235 acl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800236}
237
Nicholas Bellinger21aaa232016-01-07 22:09:27 -0800238bool target_tpg_has_node_acl(struct se_portal_group *tpg,
239 const char *initiatorname)
240{
241 struct se_node_acl *acl;
242 bool found = false;
243
244 mutex_lock(&tpg->acl_node_mutex);
245 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
246 if (!strcmp(acl->initiatorname, initiatorname)) {
247 found = true;
248 break;
249 }
250 }
251 mutex_unlock(&tpg->acl_node_mutex);
252
253 return found;
254}
255EXPORT_SYMBOL(target_tpg_has_node_acl);
256
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800257struct se_node_acl *core_tpg_check_initiator_node_acl(
258 struct se_portal_group *tpg,
259 unsigned char *initiatorname)
260{
261 struct se_node_acl *acl;
262
263 acl = core_tpg_get_initiator_node_acl(tpg, initiatorname);
264 if (acl)
265 return acl;
266
267 if (!tpg->se_tpg_tfo->tpg_check_demo_mode(tpg))
268 return NULL;
269
Christoph Hellwige413f472015-04-13 19:51:15 +0200270 acl = target_alloc_node_acl(tpg, initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800271 if (!acl)
272 return NULL;
Nicholas Bellinger21aaa232016-01-07 22:09:27 -0800273 /*
274 * When allocating a dynamically generated node_acl, go ahead
275 * and take the extra kref now before returning to the fabric
276 * driver caller.
277 *
278 * Note this reference will be released at session shutdown
279 * time within transport_free_session() code.
280 */
281 kref_get(&acl->acl_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800282 acl->dynamic_node_acl = 1;
283
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700284 /*
285 * Here we only create demo-mode MappedLUNs from the active
Masanari Iida35d1efe2012-08-16 22:43:13 +0900286 * TPG LUNs if the fabric is not explicitly asking for
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700287 * tpg_check_demo_mode_login_only() == 1.
288 */
Andy Grovercdf88a22012-07-12 17:34:57 -0700289 if ((tpg->se_tpg_tfo->tpg_check_demo_mode_login_only == NULL) ||
290 (tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg) != 1))
Nicholas Bellingerdf9766c2015-05-22 02:05:19 +0000291 core_tpg_add_node_to_devs(acl, tpg, NULL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800292
Christoph Hellwige413f472015-04-13 19:51:15 +0200293 target_add_node_acl(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 return acl;
295}
296EXPORT_SYMBOL(core_tpg_check_initiator_node_acl);
297
298void core_tpg_wait_for_nacl_pr_ref(struct se_node_acl *nacl)
299{
300 while (atomic_read(&nacl->acl_pr_ref_count) != 0)
301 cpu_relax();
302}
303
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800304struct se_node_acl *core_tpg_add_initiator_node_acl(
305 struct se_portal_group *tpg,
Christoph Hellwigc7d6a802015-04-13 19:51:14 +0200306 const char *initiatorname)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800307{
Christoph Hellwigc7d6a802015-04-13 19:51:14 +0200308 struct se_node_acl *acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800309
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000310 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311 acl = __core_tpg_get_initiator_node_acl(tpg, initiatorname);
Andy Grover6708bb22011-06-08 10:36:43 -0700312 if (acl) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800313 if (acl->dynamic_node_acl) {
314 acl->dynamic_node_acl = 0;
Andy Grover6708bb22011-06-08 10:36:43 -0700315 pr_debug("%s_TPG[%u] - Replacing dynamic ACL"
Andy Grovere3d6f902011-07-19 08:55:10 +0000316 " for %s\n", tpg->se_tpg_tfo->get_fabric_name(),
317 tpg->se_tpg_tfo->tpg_get_tag(tpg), initiatorname);
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000318 mutex_unlock(&tpg->acl_node_mutex);
Christoph Hellwige413f472015-04-13 19:51:15 +0200319 return acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800320 }
321
Andy Grover6708bb22011-06-08 10:36:43 -0700322 pr_err("ACL entry for %s Initiator"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800323 " Node %s already exists for TPG %u, ignoring"
Andy Grovere3d6f902011-07-19 08:55:10 +0000324 " request.\n", tpg->se_tpg_tfo->get_fabric_name(),
325 initiatorname, tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000326 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800327 return ERR_PTR(-EEXIST);
328 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000329 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800330
Christoph Hellwige413f472015-04-13 19:51:15 +0200331 acl = target_alloc_node_acl(tpg, initiatorname);
332 if (!acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800333 return ERR_PTR(-ENOMEM);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800334
Christoph Hellwige413f472015-04-13 19:51:15 +0200335 target_add_node_acl(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800336 return acl;
337}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800338
Christoph Hellwigfba81f82016-05-02 15:45:20 +0200339static void target_shutdown_sessions(struct se_node_acl *acl)
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200340{
341 struct se_session *sess;
342 unsigned long flags;
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200343
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200344restart:
Christoph Hellwigfba81f82016-05-02 15:45:20 +0200345 spin_lock_irqsave(&acl->nacl_sess_lock, flags);
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200346 list_for_each_entry(sess, &acl->acl_sess_list, sess_acl_list) {
347 if (sess->sess_tearing_down)
348 continue;
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200349
Christoph Hellwigfba81f82016-05-02 15:45:20 +0200350 list_del_init(&sess->sess_acl_list);
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200351 spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
Christoph Hellwigd94331f2016-05-02 15:45:25 +0200352
353 if (acl->se_tpg->se_tpg_tfo->close_session)
354 acl->se_tpg->se_tpg_tfo->close_session(sess);
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200355 goto restart;
356 }
357 spin_unlock_irqrestore(&acl->nacl_sess_lock, flags);
358}
359
Christoph Hellwigc7d6a802015-04-13 19:51:14 +0200360void core_tpg_del_initiator_node_acl(struct se_node_acl *acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361{
Christoph Hellwigc7d6a802015-04-13 19:51:14 +0200362 struct se_portal_group *tpg = acl->se_tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800363
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000364 mutex_lock(&tpg->acl_node_mutex);
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200365 if (acl->dynamic_node_acl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800366 acl->dynamic_node_acl = 0;
Nicholas Bellinger1da30c22017-08-06 16:10:03 -0700367 list_del_init(&acl->acl_list);
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000368 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369
Christoph Hellwigfba81f82016-05-02 15:45:20 +0200370 target_shutdown_sessions(acl);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800371
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800372 target_put_nacl(acl);
373 /*
374 * Wait for last target_put_nacl() to complete in target_complete_nacl()
375 * for active fabric session transport_deregister_session() callbacks.
376 */
377 wait_for_completion(&acl->acl_free_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800378
379 core_tpg_wait_for_nacl_pr_ref(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380 core_free_device_list_for_node(acl, tpg);
381
Andy Grover6708bb22011-06-08 10:36:43 -0700382 pr_debug("%s_TPG[%hu] - Deleted ACL with TCQ Depth: %d for %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000383 " Initiator Node: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
384 tpg->se_tpg_tfo->tpg_get_tag(tpg), acl->queue_depth,
385 tpg->se_tpg_tfo->get_fabric_name(), acl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800386
Christoph Hellwig144bc4c2015-04-13 19:51:16 +0200387 kfree(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800388}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389
390/* core_tpg_set_initiator_node_queue_depth():
391 *
392 *
393 */
394int core_tpg_set_initiator_node_queue_depth(
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800395 struct se_node_acl *acl,
396 u32 queue_depth)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800397{
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800398 struct se_portal_group *tpg = acl->se_tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800399
400 /*
401 * User has requested to change the queue depth for a Initiator Node.
402 * Change the value in the Node's struct se_node_acl, and call
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800403 * target_set_nacl_queue_depth() to set the new queue depth.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800404 */
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800405 target_set_nacl_queue_depth(tpg, acl, queue_depth);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800406
Christoph Hellwigbc6e6bb2016-05-02 15:45:19 +0200407 /*
408 * Shutdown all pending sessions to force session reinstatement.
409 */
Christoph Hellwigfba81f82016-05-02 15:45:20 +0200410 target_shutdown_sessions(acl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800411
Joe Perchesbfb90352011-08-17 06:58:04 -0700412 pr_debug("Successfully changed queue depth to: %d for Initiator"
Nicholas Bellingerd36ad772016-01-07 22:15:06 -0800413 " Node: %s on %s Target Portal Group: %u\n", acl->queue_depth,
414 acl->initiatorname, tpg->se_tpg_tfo->get_fabric_name(),
Andy Grovere3d6f902011-07-19 08:55:10 +0000415 tpg->se_tpg_tfo->tpg_get_tag(tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800416
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800417 return 0;
418}
419EXPORT_SYMBOL(core_tpg_set_initiator_node_queue_depth);
420
Andy Grover79e62fc2012-12-11 16:30:53 -0800421/* core_tpg_set_initiator_node_tag():
422 *
423 * Initiator nodeacl tags are not used internally, but may be used by
424 * userspace to emulate aliases or groups.
425 * Returns length of newly-set tag or -EINVAL.
426 */
427int core_tpg_set_initiator_node_tag(
428 struct se_portal_group *tpg,
429 struct se_node_acl *acl,
430 const char *new_tag)
431{
432 if (strlen(new_tag) >= MAX_ACL_TAG_SIZE)
433 return -EINVAL;
434
435 if (!strncmp("NULL", new_tag, 4)) {
436 acl->acl_tag[0] = '\0';
437 return 0;
438 }
439
440 return snprintf(acl->acl_tag, MAX_ACL_TAG_SIZE, "%s", new_tag);
441}
442EXPORT_SYMBOL(core_tpg_set_initiator_node_tag);
443
Nicholas Bellinger52777972013-11-06 21:03:43 -0800444static void core_tpg_lun_ref_release(struct percpu_ref *ref)
445{
446 struct se_lun *lun = container_of(ref, struct se_lun, lun_ref);
447
Nicholas Bellinger17ea11d2017-02-22 22:06:32 -0800448 complete(&lun->lun_shutdown_comp);
Nicholas Bellinger52777972013-11-06 21:03:43 -0800449}
450
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800451int core_tpg_register(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800452 struct se_wwn *se_wwn,
453 struct se_portal_group *se_tpg,
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200454 int proto_id)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800455{
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700456 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457
Nicholas Bellingerbc0c94b2015-05-20 21:48:03 -0700458 if (!se_tpg)
459 return -EINVAL;
460 /*
461 * For the typical case where core_tpg_register() is called by a
462 * fabric driver from target_core_fabric_ops->fabric_make_tpg()
463 * configfs context, use the original tf_ops pointer already saved
464 * by target-core in target_fabric_make_wwn().
465 *
466 * Otherwise, for special cases like iscsi-target discovery TPGs
467 * the caller is responsible for setting ->se_tpg_tfo ahead of
468 * calling core_tpg_register().
469 */
470 if (se_wwn)
471 se_tpg->se_tpg_tfo = se_wwn->wwn_tf->tf_ops;
472
473 if (!se_tpg->se_tpg_tfo) {
474 pr_err("Unable to locate se_tpg->se_tpg_tfo pointer\n");
475 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800476 }
477
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700478 INIT_HLIST_HEAD(&se_tpg->tpg_lun_hlist);
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200479 se_tpg->proto_id = proto_id;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800480 se_tpg->se_tpg_wwn = se_wwn;
481 atomic_set(&se_tpg->tpg_pr_ref_count, 0);
482 INIT_LIST_HEAD(&se_tpg->acl_node_list);
Andy Grovere3d6f902011-07-19 08:55:10 +0000483 INIT_LIST_HEAD(&se_tpg->se_tpg_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800484 INIT_LIST_HEAD(&se_tpg->tpg_sess_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800485 spin_lock_init(&se_tpg->session_lock);
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700486 mutex_init(&se_tpg->tpg_lun_mutex);
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000487 mutex_init(&se_tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800488
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200489 if (se_tpg->proto_id >= 0) {
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700490 se_tpg->tpg_virt_lun0 = core_tpg_alloc_lun(se_tpg, 0);
491 if (IS_ERR(se_tpg->tpg_virt_lun0))
492 return PTR_ERR(se_tpg->tpg_virt_lun0);
493
494 ret = core_tpg_add_lun(se_tpg, se_tpg->tpg_virt_lun0,
Andy Grover03a68b42016-02-25 15:14:32 -0800495 true, g_lun0_dev);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700496 if (ret < 0) {
497 kfree(se_tpg->tpg_virt_lun0);
498 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800499 }
500 }
501
Andy Grovere3d6f902011-07-19 08:55:10 +0000502 spin_lock_bh(&tpg_lock);
503 list_add_tail(&se_tpg->se_tpg_node, &tpg_list);
504 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800505
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200506 pr_debug("TARGET_CORE[%s]: Allocated portal_group for endpoint: %s, "
Nicholas Bellingerbc0c94b2015-05-20 21:48:03 -0700507 "Proto: %d, Portal Tag: %u\n", se_tpg->se_tpg_tfo->get_fabric_name(),
508 se_tpg->se_tpg_tfo->tpg_get_wwn(se_tpg) ?
509 se_tpg->se_tpg_tfo->tpg_get_wwn(se_tpg) : NULL,
510 se_tpg->proto_id, se_tpg->se_tpg_tfo->tpg_get_tag(se_tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800511
512 return 0;
513}
514EXPORT_SYMBOL(core_tpg_register);
515
516int core_tpg_deregister(struct se_portal_group *se_tpg)
517{
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200518 const struct target_core_fabric_ops *tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800519 struct se_node_acl *nacl, *nacl_tmp;
Nicholas Bellinger22793de2015-03-06 10:23:25 +0000520 LIST_HEAD(node_list);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800521
Christoph Hellwige4aae5a2015-05-01 17:47:56 +0200522 pr_debug("TARGET_CORE[%s]: Deallocating portal_group for endpoint: %s, "
523 "Proto: %d, Portal Tag: %u\n", tfo->get_fabric_name(),
524 tfo->tpg_get_wwn(se_tpg) ? tfo->tpg_get_wwn(se_tpg) : NULL,
525 se_tpg->proto_id, tfo->tpg_get_tag(se_tpg));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800526
Andy Grovere3d6f902011-07-19 08:55:10 +0000527 spin_lock_bh(&tpg_lock);
528 list_del(&se_tpg->se_tpg_node);
529 spin_unlock_bh(&tpg_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800530
531 while (atomic_read(&se_tpg->tpg_pr_ref_count) != 0)
532 cpu_relax();
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000533
Nicholas Bellinger22793de2015-03-06 10:23:25 +0000534 mutex_lock(&se_tpg->acl_node_mutex);
535 list_splice_init(&se_tpg->acl_node_list, &node_list);
536 mutex_unlock(&se_tpg->acl_node_mutex);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800537 /*
538 * Release any remaining demo-mode generated se_node_acl that have
539 * not been released because of TFO->tpg_check_demo_mode_cache() == 1
540 * in transport_deregister_session().
541 */
Nicholas Bellinger22793de2015-03-06 10:23:25 +0000542 list_for_each_entry_safe(nacl, nacl_tmp, &node_list, acl_list) {
Nicholas Bellinger1da30c22017-08-06 16:10:03 -0700543 list_del_init(&nacl->acl_list);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800544
545 core_tpg_wait_for_nacl_pr_ref(nacl);
546 core_free_device_list_for_node(nacl, se_tpg);
Christoph Hellwig144bc4c2015-04-13 19:51:16 +0200547 kfree(nacl);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800548 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700550 if (se_tpg->proto_id >= 0) {
551 core_tpg_remove_lun(se_tpg, se_tpg->tpg_virt_lun0);
552 kfree_rcu(se_tpg->tpg_virt_lun0, rcu_head);
553 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800555 return 0;
556}
557EXPORT_SYMBOL(core_tpg_deregister);
558
Andy Groverd344f8a2013-11-26 12:07:54 -0800559struct se_lun *core_tpg_alloc_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800560 struct se_portal_group *tpg,
Hannes Reineckef2d30682015-06-10 08:41:22 +0200561 u64 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800562{
563 struct se_lun *lun;
564
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700565 lun = kzalloc(sizeof(*lun), GFP_KERNEL);
566 if (!lun) {
567 pr_err("Unable to allocate se_lun memory\n");
568 return ERR_PTR(-ENOMEM);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800569 }
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700570 lun->unpacked_lun = unpacked_lun;
571 lun->lun_link_magic = SE_LUN_LINK_MAGIC;
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700572 atomic_set(&lun->lun_acl_count, 0);
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700573 init_completion(&lun->lun_ref_comp);
Nicholas Bellinger17ea11d2017-02-22 22:06:32 -0800574 init_completion(&lun->lun_shutdown_comp);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700575 INIT_LIST_HEAD(&lun->lun_deve_list);
576 INIT_LIST_HEAD(&lun->lun_dev_link);
577 atomic_set(&lun->lun_tg_pt_secondary_offline, 0);
578 spin_lock_init(&lun->lun_deve_lock);
579 mutex_init(&lun->lun_tg_pt_md_mutex);
580 INIT_LIST_HEAD(&lun->lun_tg_pt_gp_link);
581 spin_lock_init(&lun->lun_tg_pt_gp_lock);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700582 lun->lun_tpg = tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583
584 return lun;
585}
586
Andy Groverd344f8a2013-11-26 12:07:54 -0800587int core_tpg_add_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588 struct se_portal_group *tpg,
589 struct se_lun *lun,
Andy Grover03a68b42016-02-25 15:14:32 -0800590 bool lun_access_ro,
Andy Grover340dbf72013-12-12 16:12:33 -0800591 struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592{
Andy Grovere3d6f902011-07-19 08:55:10 +0000593 int ret;
594
Tejun Heo2aad2a82014-09-24 13:31:50 -0400595 ret = percpu_ref_init(&lun->lun_ref, core_tpg_lun_ref_release, 0,
Tejun Heoa34375e2014-09-08 09:51:30 +0900596 GFP_KERNEL);
Andy Grovere3d6f902011-07-19 08:55:10 +0000597 if (ret < 0)
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700598 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700600 ret = core_alloc_rtpi(lun, dev);
601 if (ret)
602 goto out_kill_ref;
Nicholas Bellinger52777972013-11-06 21:03:43 -0800603
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700604 if (!(dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH) &&
605 !(dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE))
606 target_attach_tg_pt_gp(lun, dev->t10_alua.default_tg_pt_gp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800607
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700608 mutex_lock(&tpg->tpg_lun_mutex);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700609
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700610 spin_lock(&dev->se_port_lock);
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700611 lun->lun_index = dev->dev_index;
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700612 rcu_assign_pointer(lun->lun_se_dev, dev);
613 dev->export_count++;
614 list_add_tail(&lun->lun_dev_link, &dev->dev_sep_list);
615 spin_unlock(&dev->se_port_lock);
616
Nicholas Bellingereeeb9522015-09-15 17:27:35 -0700617 if (dev->dev_flags & DF_READ_ONLY)
Andy Grover03a68b42016-02-25 15:14:32 -0800618 lun->lun_access_ro = true;
Nicholas Bellingereeeb9522015-09-15 17:27:35 -0700619 else
Andy Grover03a68b42016-02-25 15:14:32 -0800620 lun->lun_access_ro = lun_access_ro;
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700621 if (!(dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE))
622 hlist_add_head_rcu(&lun->link, &tpg->tpg_lun_hlist);
623 mutex_unlock(&tpg->tpg_lun_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800624
625 return 0;
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700626
627out_kill_ref:
628 percpu_ref_exit(&lun->lun_ref);
629out:
630 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800631}
632
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700633void core_tpg_remove_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800634 struct se_portal_group *tpg,
635 struct se_lun *lun)
636{
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -0700637 /*
638 * rcu_dereference_raw protected by se_lun->lun_group symlink
639 * reference to se_device->dev_group.
640 */
641 struct se_device *dev = rcu_dereference_raw(lun->lun_se_dev);
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700642
Nicholas Bellinger92f8aa72017-03-27 16:12:43 -0700643 lun->lun_shutdown = true;
644
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -0800645 core_clear_lun_from_tpg(lun, tpg);
Nicholas Bellinger9e37d042015-05-20 21:21:08 -0700646 /*
647 * Wait for any active I/O references to percpu se_lun->lun_ref to
648 * be released. Also, se_lun->lun_ref is now used by PR and ALUA
649 * logic when referencing a remote target port during ALL_TGT_PT=1
650 * and generating UNIT_ATTENTIONs for ALUA access state transition.
651 */
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -0800652 transport_clear_lun_ref(lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800653
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700654 mutex_lock(&tpg->tpg_lun_mutex);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700655 if (lun->lun_se_dev) {
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700656 target_detach_tg_pt_gp(lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800657
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700658 spin_lock(&dev->se_port_lock);
659 list_del(&lun->lun_dev_link);
660 dev->export_count--;
661 rcu_assign_pointer(lun->lun_se_dev, NULL);
662 spin_unlock(&dev->se_port_lock);
663 }
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700664 if (!(dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE))
665 hlist_del_rcu(&lun->link);
Nicholas Bellinger92f8aa72017-03-27 16:12:43 -0700666
667 lun->lun_shutdown = false;
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700668 mutex_unlock(&tpg->tpg_lun_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800669
Tejun Heo9a1049d2014-06-28 08:10:14 -0400670 percpu_ref_exit(&lun->lun_ref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671}