blob: 8485e9a789fc5253b44da876db6e384fef994a98 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_device.c (based on iscsi_target_device.c)
3 *
Andy Grovere3d6f902011-07-19 08:55:10 +00004 * This file contains the TCM Virtual Device and Disk Transport
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08005 * agnostic related functions.
6 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07007 * (c) Copyright 2003-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08008 *
9 * Nicholas A. Bellinger <nab@kernel.org>
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 ******************************************************************************/
26
27#include <linux/net.h>
28#include <linux/string.h>
29#include <linux/delay.h>
30#include <linux/timer.h>
31#include <linux/slab.h>
32#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <linux/kthread.h>
34#include <linux/in.h>
Paul Gortmakerc53181a2011-08-30 18:16:43 -040035#include <linux/export.h>
Andy Grover7bfea53b2015-05-19 14:44:40 -070036#include <asm/unaligned.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080037#include <net/sock.h>
38#include <net/tcp.h>
39#include <scsi/scsi.h>
Nicholas Bellinger1078da12011-05-19 20:19:13 -070040#include <scsi/scsi_device.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041
42#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050043#include <target/target_core_backend.h>
44#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080045
Christoph Hellwige26d99a2011-11-14 12:30:30 -050046#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080047#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include "target_core_pr.h"
49#include "target_core_ua.h"
50
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -070051DEFINE_MUTEX(g_device_mutex);
52LIST_HEAD(g_device_list);
53
Andy Grovere3d6f902011-07-19 08:55:10 +000054static struct se_hba *lun0_hba;
Andy Grovere3d6f902011-07-19 08:55:10 +000055/* not static, needed by tpg.c */
56struct se_device *g_lun0_dev;
57
Christoph Hellwigde103c92012-11-06 12:24:09 -080058sense_reason_t
59transport_lookup_cmd_lun(struct se_cmd *se_cmd, u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061 struct se_lun *se_lun = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +000062 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070063 struct se_node_acl *nacl = se_sess->se_node_acl;
Andy Grover5951146d2011-07-19 10:26:37 +000064 struct se_device *dev;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070065 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080066
Christoph Hellwigde103c92012-11-06 12:24:09 -080067 if (unpacked_lun >= TRANSPORT_MAX_LUNS_PER_TPG)
68 return TCM_NON_EXISTENT_LUN;
Fubo Chend8144952011-02-13 15:13:42 -080069
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070070 rcu_read_lock();
71 deve = target_nacl_find_deve(nacl, unpacked_lun);
72 if (deve) {
73 atomic_long_inc(&deve->total_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080074
Andy Grover5951146d2011-07-19 10:26:37 +000075 if ((se_cmd->data_direction == DMA_TO_DEVICE) &&
76 (deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)) {
Andy Grover6708bb22011-06-08 10:36:43 -070077 pr_err("TARGET_CORE[%s]: Detected WRITE_PROTECTED LUN"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078 " Access for 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +000079 se_cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 unpacked_lun);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070081 rcu_read_unlock();
Christoph Hellwigde103c92012-11-06 12:24:09 -080082 return TCM_WRITE_PROTECTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083 }
Andy Grover5951146d2011-07-19 10:26:37 +000084
85 if (se_cmd->data_direction == DMA_TO_DEVICE)
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070086 atomic_long_add(se_cmd->data_length,
87 &deve->write_bytes);
Andy Grover5951146d2011-07-19 10:26:37 +000088 else if (se_cmd->data_direction == DMA_FROM_DEVICE)
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070089 atomic_long_add(se_cmd->data_length,
90 &deve->read_bytes);
Andy Grover5951146d2011-07-19 10:26:37 +000091
Nicholas Bellinger29a05de2015-03-22 20:42:19 -070092 se_lun = rcu_dereference(deve->se_lun);
93 se_cmd->se_lun = rcu_dereference(deve->se_lun);
Andy Grover5951146d2011-07-19 10:26:37 +000094 se_cmd->pr_res_key = deve->pr_res_key;
95 se_cmd->orig_fe_lun = unpacked_lun;
Andy Grover5951146d2011-07-19 10:26:37 +000096 se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
Nicholas Bellinger52777972013-11-06 21:03:43 -080097
98 percpu_ref_get(&se_lun->lun_ref);
99 se_cmd->lun_ref_active = true;
Andy Grover5951146d2011-07-19 10:26:37 +0000100 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700101 rcu_read_unlock();
Andy Grover5951146d2011-07-19 10:26:37 +0000102
103 if (!se_lun) {
104 /*
105 * Use the se_portal_group->tpg_virt_lun0 to allow for
106 * REPORT_LUNS, et al to be returned when no active
107 * MappedLUN=0 exists for this Initiator Port.
108 */
109 if (unpacked_lun != 0) {
Andy Grover6708bb22011-06-08 10:36:43 -0700110 pr_err("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
Andy Grover5951146d2011-07-19 10:26:37 +0000111 " Access for 0x%08x\n",
112 se_cmd->se_tfo->get_fabric_name(),
113 unpacked_lun);
Christoph Hellwigde103c92012-11-06 12:24:09 -0800114 return TCM_NON_EXISTENT_LUN;
Andy Grover5951146d2011-07-19 10:26:37 +0000115 }
116 /*
117 * Force WRITE PROTECT for virtual LUN 0
118 */
119 if ((se_cmd->data_direction != DMA_FROM_DEVICE) &&
Christoph Hellwigde103c92012-11-06 12:24:09 -0800120 (se_cmd->data_direction != DMA_NONE))
121 return TCM_WRITE_PROTECTED;
Andy Grover5951146d2011-07-19 10:26:37 +0000122
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700123 se_lun = se_sess->se_tpg->tpg_virt_lun0;
124 se_cmd->se_lun = se_sess->se_tpg->tpg_virt_lun0;
Andy Grover5951146d2011-07-19 10:26:37 +0000125 se_cmd->orig_fe_lun = 0;
Andy Grover5951146d2011-07-19 10:26:37 +0000126 se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
Nicholas Bellinger52777972013-11-06 21:03:43 -0800127
128 percpu_ref_get(&se_lun->lun_ref);
129 se_cmd->lun_ref_active = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131
Andy Grover5951146d2011-07-19 10:26:37 +0000132 /* Directly associate cmd with se_dev */
133 se_cmd->se_dev = se_lun->lun_se_dev;
134
Andy Grover5951146d2011-07-19 10:26:37 +0000135 dev = se_lun->lun_se_dev;
Nicholas Bellingeree480682013-11-13 18:34:55 -0800136 atomic_long_inc(&dev->num_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 if (se_cmd->data_direction == DMA_TO_DEVICE)
Nicholas Bellingeree480682013-11-13 18:34:55 -0800138 atomic_long_add(se_cmd->data_length, &dev->write_bytes);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800139 else if (se_cmd->data_direction == DMA_FROM_DEVICE)
Nicholas Bellingeree480682013-11-13 18:34:55 -0800140 atomic_long_add(se_cmd->data_length, &dev->read_bytes);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800141
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800142 return 0;
143}
Andy Grover5951146d2011-07-19 10:26:37 +0000144EXPORT_SYMBOL(transport_lookup_cmd_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800145
Andy Grover5951146d2011-07-19 10:26:37 +0000146int transport_lookup_tmr_lun(struct se_cmd *se_cmd, u32 unpacked_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800148 struct se_dev_entry *deve;
149 struct se_lun *se_lun = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +0000150 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700151 struct se_node_acl *nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800152 struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
Roland Dreier5e1be912011-07-20 09:28:56 +0000153 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154
Christoph Hellwigde103c92012-11-06 12:24:09 -0800155 if (unpacked_lun >= TRANSPORT_MAX_LUNS_PER_TPG)
Andy Grovere3d6f902011-07-19 08:55:10 +0000156 return -ENODEV;
Fubo Chend8144952011-02-13 15:13:42 -0800157
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700158 rcu_read_lock();
159 deve = target_nacl_find_deve(nacl, unpacked_lun);
160 if (deve) {
161 se_tmr->tmr_lun = rcu_dereference(deve->se_lun);
162 se_cmd->se_lun = rcu_dereference(deve->se_lun);
163 se_lun = rcu_dereference(deve->se_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 se_cmd->pr_res_key = deve->pr_res_key;
165 se_cmd->orig_fe_lun = unpacked_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700167 rcu_read_unlock();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168
169 if (!se_lun) {
Andy Grover6708bb22011-06-08 10:36:43 -0700170 pr_debug("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800171 " Access for 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000172 se_cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800173 unpacked_lun);
Andy Grovere3d6f902011-07-19 08:55:10 +0000174 return -ENODEV;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800175 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800176
Andy Grover5951146d2011-07-19 10:26:37 +0000177 /* Directly associate cmd with se_dev */
178 se_cmd->se_dev = se_lun->lun_se_dev;
179 se_tmr->tmr_dev = se_lun->lun_se_dev;
180
Roland Dreier5e1be912011-07-20 09:28:56 +0000181 spin_lock_irqsave(&se_tmr->tmr_dev->se_tmr_lock, flags);
Andy Grover5951146d2011-07-19 10:26:37 +0000182 list_add_tail(&se_tmr->tmr_list, &se_tmr->tmr_dev->dev_tmr_list);
Roland Dreier5e1be912011-07-20 09:28:56 +0000183 spin_unlock_irqrestore(&se_tmr->tmr_dev->se_tmr_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800184
185 return 0;
186}
Andy Grover5951146d2011-07-19 10:26:37 +0000187EXPORT_SYMBOL(transport_lookup_tmr_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800188
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700189bool target_lun_is_rdonly(struct se_cmd *cmd)
190{
191 struct se_session *se_sess = cmd->se_sess;
192 struct se_dev_entry *deve;
193 bool ret;
194
195 if (cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY)
196 return true;
197
198 rcu_read_lock();
199 deve = target_nacl_find_deve(se_sess->se_node_acl, cmd->orig_fe_lun);
200 ret = (deve && deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY);
201 rcu_read_unlock();
202
203 return ret;
204}
205EXPORT_SYMBOL(target_lun_is_rdonly);
206
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207/*
208 * This function is called from core_scsi3_emulate_pro_register_and_move()
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700209 * and core_scsi3_decode_spec_i_port(), and will increment &deve->pr_kref
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210 * when a matching rtpi is found.
211 */
212struct se_dev_entry *core_get_se_deve_from_rtpi(
213 struct se_node_acl *nacl,
214 u16 rtpi)
215{
216 struct se_dev_entry *deve;
217 struct se_lun *lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218 struct se_portal_group *tpg = nacl->se_tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800219
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700220 rcu_read_lock();
221 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
222 lun = rcu_dereference(deve->se_lun);
Andy Grover6708bb22011-06-08 10:36:43 -0700223 if (!lun) {
224 pr_err("%s device entries device pointer is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800225 " NULL, but Initiator has access.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000226 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800227 continue;
228 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700229 if (lun->lun_rtpi != rtpi)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230 continue;
231
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700232 kref_get(&deve->pr_kref);
233 rcu_read_unlock();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800234
235 return deve;
236 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700237 rcu_read_unlock();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800238
239 return NULL;
240}
241
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700242void core_free_device_list_for_node(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800243 struct se_node_acl *nacl,
244 struct se_portal_group *tpg)
245{
246 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800247
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700248 mutex_lock(&nacl->lun_entry_mutex);
249 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
250 struct se_lun *lun = rcu_dereference_check(deve->se_lun,
251 lockdep_is_held(&nacl->lun_entry_mutex));
252 core_disable_device_list_for_node(lun, deve, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800253 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700254 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800255}
256
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800257void core_update_device_list_access(
258 u32 mapped_lun,
259 u32 lun_access,
260 struct se_node_acl *nacl)
261{
262 struct se_dev_entry *deve;
263
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700264 mutex_lock(&nacl->lun_entry_mutex);
265 deve = target_nacl_find_deve(nacl, mapped_lun);
266 if (deve) {
267 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) {
268 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_ONLY;
269 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
270 } else {
271 deve->lun_flags &= ~TRANSPORT_LUNFLAGS_READ_WRITE;
272 deve->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
273 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800274 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700275 mutex_unlock(&nacl->lun_entry_mutex);
276}
277
278/*
279 * Called with rcu_read_lock or nacl->device_list_lock held.
280 */
281struct se_dev_entry *target_nacl_find_deve(struct se_node_acl *nacl, u32 mapped_lun)
282{
283 struct se_dev_entry *deve;
284
285 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link)
286 if (deve->mapped_lun == mapped_lun)
287 return deve;
288
289 return NULL;
290}
291EXPORT_SYMBOL(target_nacl_find_deve);
292
293void target_pr_kref_release(struct kref *kref)
294{
295 struct se_dev_entry *deve = container_of(kref, struct se_dev_entry,
296 pr_kref);
297 complete(&deve->pr_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800298}
299
Andy Grovere80ac6c2012-07-12 17:34:58 -0700300/* core_enable_device_list_for_node():
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800301 *
302 *
303 */
Andy Grovere80ac6c2012-07-12 17:34:58 -0700304int core_enable_device_list_for_node(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800305 struct se_lun *lun,
306 struct se_lun_acl *lun_acl,
307 u32 mapped_lun,
308 u32 lun_access,
309 struct se_node_acl *nacl,
Andy Grovere80ac6c2012-07-12 17:34:58 -0700310 struct se_portal_group *tpg)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311{
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700312 struct se_dev_entry *orig, *new;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800313
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700314 new = kzalloc(sizeof(*new), GFP_KERNEL);
315 if (!new) {
316 pr_err("Unable to allocate se_dev_entry memory\n");
317 return -ENOMEM;
318 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700319
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700320 atomic_set(&new->ua_count, 0);
321 spin_lock_init(&new->ua_lock);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700322 INIT_LIST_HEAD(&new->ua_list);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700323 INIT_LIST_HEAD(&new->lun_link);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700324
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700325 new->mapped_lun = mapped_lun;
326 kref_init(&new->pr_kref);
327 init_completion(&new->pr_comp);
328
329 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE)
330 new->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
331 else
332 new->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
333
334 new->creation_time = get_jiffies_64();
335 new->attach_count++;
336
337 mutex_lock(&nacl->lun_entry_mutex);
338 orig = target_nacl_find_deve(nacl, mapped_lun);
339 if (orig && orig->se_lun) {
340 struct se_lun *orig_lun = rcu_dereference_check(orig->se_lun,
341 lockdep_is_held(&nacl->lun_entry_mutex));
342
343 if (orig_lun != lun) {
344 pr_err("Existing orig->se_lun doesn't match new lun"
345 " for dynamic -> explicit NodeACL conversion:"
346 " %s\n", nacl->initiatorname);
347 mutex_unlock(&nacl->lun_entry_mutex);
348 kfree(new);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700349 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800350 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700351 BUG_ON(orig->se_lun_acl != NULL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800352
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700353 rcu_assign_pointer(new->se_lun, lun);
354 rcu_assign_pointer(new->se_lun_acl, lun_acl);
355 hlist_del_rcu(&orig->link);
356 hlist_add_head_rcu(&new->link, &nacl->lun_entry_hlist);
357 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800358
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700359 spin_lock_bh(&lun->lun_deve_lock);
360 list_del(&orig->lun_link);
361 list_add_tail(&new->lun_link, &lun->lun_deve_list);
362 spin_unlock_bh(&lun->lun_deve_lock);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700363
364 kref_put(&orig->pr_kref, target_pr_kref_release);
365 wait_for_completion(&orig->pr_comp);
366
367 kfree_rcu(orig, rcu_head);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800368 return 0;
369 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700370
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700371 rcu_assign_pointer(new->se_lun, lun);
372 rcu_assign_pointer(new->se_lun_acl, lun_acl);
373 hlist_add_head_rcu(&new->link, &nacl->lun_entry_hlist);
374 mutex_unlock(&nacl->lun_entry_mutex);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700375
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700376 spin_lock_bh(&lun->lun_deve_lock);
377 list_add_tail(&new->lun_link, &lun->lun_deve_list);
378 spin_unlock_bh(&lun->lun_deve_lock);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700379
380 return 0;
381}
382
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700383/*
384 * Called with se_node_acl->lun_entry_mutex held.
Andy Grovere80ac6c2012-07-12 17:34:58 -0700385 */
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700386void core_disable_device_list_for_node(
Andy Grovere80ac6c2012-07-12 17:34:58 -0700387 struct se_lun *lun,
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700388 struct se_dev_entry *orig,
Andy Grovere80ac6c2012-07-12 17:34:58 -0700389 struct se_node_acl *nacl,
390 struct se_portal_group *tpg)
391{
Andy Grovere80ac6c2012-07-12 17:34:58 -0700392 /*
393 * If the MappedLUN entry is being disabled, the entry in
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700394 * lun->lun_deve_list must be removed now before clearing the
Andy Grovere80ac6c2012-07-12 17:34:58 -0700395 * struct se_dev_entry pointers below as logic in
396 * core_alua_do_transition_tg_pt() depends on these being present.
397 *
398 * deve->se_lun_acl will be NULL for demo-mode created LUNs
399 * that have not been explicitly converted to MappedLUNs ->
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700400 * struct se_lun_acl, but we remove deve->lun_link from
401 * lun->lun_deve_list. This also means that active UAs and
Andy Grovere80ac6c2012-07-12 17:34:58 -0700402 * NodeACL context specific PR metadata for demo-mode
403 * MappedLUN *deve will be released below..
404 */
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700405 spin_lock_bh(&lun->lun_deve_lock);
406 list_del(&orig->lun_link);
407 spin_unlock_bh(&lun->lun_deve_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800408 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800409 * Disable struct se_dev_entry LUN ACL mapping
410 */
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700411 core_scsi3_ua_release_all(orig);
412
413 hlist_del_rcu(&orig->link);
Nicholas Bellinger80bfdfa2015-03-25 01:02:57 -0700414 clear_bit(DEF_PR_REG_ACTIVE, &orig->deve_flags);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700415 rcu_assign_pointer(orig->se_lun, NULL);
416 rcu_assign_pointer(orig->se_lun_acl, NULL);
417 orig->lun_flags = 0;
418 orig->creation_time = 0;
419 orig->attach_count--;
420 /*
421 * Before firing off RCU callback, wait for any in process SPEC_I_PT=1
422 * or REGISTER_AND_MOVE PR operation to complete.
423 */
424 kref_put(&orig->pr_kref, target_pr_kref_release);
425 wait_for_completion(&orig->pr_comp);
426
427 kfree_rcu(orig, rcu_head);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428
429 core_scsi3_free_pr_reg_from_nacl(lun->lun_se_dev, nacl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430}
431
432/* core_clear_lun_from_tpg():
433 *
434 *
435 */
436void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
437{
438 struct se_node_acl *nacl;
439 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000441 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800442 list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800443
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700444 mutex_lock(&nacl->lun_entry_mutex);
445 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
446 struct se_lun *tmp_lun = rcu_dereference_check(deve->se_lun,
447 lockdep_is_held(&nacl->lun_entry_mutex));
448
449 if (lun != tmp_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450 continue;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800451
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700452 core_disable_device_list_for_node(lun, deve, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800453 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700454 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800455 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000456 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457}
458
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700459int core_alloc_rtpi(struct se_lun *lun, struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460{
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700461 struct se_lun *tmp;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800462
463 spin_lock(&dev->se_port_lock);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700464 if (dev->export_count == 0x0000ffff) {
Andy Grover6708bb22011-06-08 10:36:43 -0700465 pr_warn("Reached dev->dev_port_count =="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800466 " 0x0000ffff\n");
467 spin_unlock(&dev->se_port_lock);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700468 return -ENOSPC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469 }
470again:
471 /*
Masanari Iida35d1efe2012-08-16 22:43:13 +0900472 * Allocate the next RELATIVE TARGET PORT IDENTIFIER for this struct se_device
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800473 * Here is the table from spc4r17 section 7.7.3.8.
474 *
475 * Table 473 -- RELATIVE TARGET PORT IDENTIFIER field
476 *
477 * Code Description
478 * 0h Reserved
479 * 1h Relative port 1, historically known as port A
480 * 2h Relative port 2, historically known as port B
481 * 3h to FFFFh Relative port 3 through 65 535
482 */
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700483 lun->lun_rtpi = dev->dev_rpti_counter++;
484 if (!lun->lun_rtpi)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800485 goto again;
486
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700487 list_for_each_entry(tmp, &dev->dev_sep_list, lun_dev_link) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800488 /*
Masanari Iida35d1efe2012-08-16 22:43:13 +0900489 * Make sure RELATIVE TARGET PORT IDENTIFIER is unique
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490 * for 16-bit wrap..
491 */
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700492 if (lun->lun_rtpi == tmp->lun_rtpi)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493 goto again;
494 }
495 spin_unlock(&dev->se_port_lock);
496
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497 return 0;
498}
499
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400500static void se_release_vpd_for_dev(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501{
502 struct t10_vpd *vpd, *vpd_tmp;
503
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400504 spin_lock(&dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800505 list_for_each_entry_safe(vpd, vpd_tmp,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400506 &dev->t10_wwn.t10_vpd_list, vpd_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800507 list_del(&vpd->vpd_list);
508 kfree(vpd);
509 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400510 spin_unlock(&dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800511}
512
Roland Dreierc8045372012-07-16 15:17:12 -0700513static u32 se_dev_align_max_sectors(u32 max_sectors, u32 block_size)
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700514{
Roland Dreier3e039892012-10-31 09:16:45 -0700515 u32 aligned_max_sectors;
516 u32 alignment;
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700517 /*
518 * Limit max_sectors to a PAGE_SIZE aligned value for modern
519 * transport_allocate_data_tasks() operation.
520 */
Roland Dreier3e039892012-10-31 09:16:45 -0700521 alignment = max(1ul, PAGE_SIZE / block_size);
522 aligned_max_sectors = rounddown(max_sectors, alignment);
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700523
Roland Dreier3e039892012-10-31 09:16:45 -0700524 if (max_sectors != aligned_max_sectors)
525 pr_info("Rounding down aligned max_sectors from %u to %u\n",
526 max_sectors, aligned_max_sectors);
527
528 return aligned_max_sectors;
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700529}
530
Christophe Vu-Brugier9bc65482015-03-19 14:30:13 +0100531bool se_dev_check_wce(struct se_device *dev)
532{
533 bool wce = false;
534
535 if (dev->transport->get_write_cache)
536 wce = dev->transport->get_write_cache(dev);
537 else if (dev->dev_attrib.emulate_write_cache > 0)
538 wce = true;
539
540 return wce;
541}
542
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700543int core_dev_add_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800544 struct se_portal_group *tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800545 struct se_device *dev,
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700546 struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547{
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100548 int rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549
Andy Groverd344f8a2013-11-26 12:07:54 -0800550 rc = core_tpg_add_lun(tpg, lun,
Nicholas Bellinger58d92612012-03-20 21:26:48 -0700551 TRANSPORT_LUNFLAGS_READ_WRITE, dev);
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100552 if (rc < 0)
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700553 return rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554
Andy Grover6708bb22011-06-08 10:36:43 -0700555 pr_debug("%s_TPG[%u]_LUN[%u] - Activated %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +0000556 " CORE HBA: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
Andy Grover2af79732013-11-26 11:55:22 -0800557 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Andy Grover2dca6732012-07-12 17:34:55 -0700558 tpg->se_tpg_tfo->get_fabric_name(), dev->se_hba->hba_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800559 /*
560 * Update LUN maps for dynamically added initiators when
561 * generate_node_acl is enabled.
562 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000563 if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800564 struct se_node_acl *acl;
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000565
566 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800567 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700568 if (acl->dynamic_node_acl &&
569 (!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
570 !tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
Nicholas Bellingerdf9766c2015-05-22 02:05:19 +0000571 core_tpg_add_node_to_devs(acl, tpg, lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800572 }
573 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000574 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800575 }
576
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700577 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800578}
579
580/* core_dev_del_lun():
581 *
582 *
583 */
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700584void core_dev_del_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 struct se_portal_group *tpg,
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700586 struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587{
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700588 pr_debug("%s_TPG[%u]_LUN[%u] - Deactivating %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +0000589 " device object\n", tpg->se_tpg_tfo->get_fabric_name(),
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700590 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +0000591 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700593 core_tpg_remove_lun(tpg, lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800594}
595
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596struct se_lun_acl *core_dev_init_initiator_node_lun_acl(
597 struct se_portal_group *tpg,
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800598 struct se_node_acl *nacl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 u32 mapped_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800600 int *ret)
601{
602 struct se_lun_acl *lacl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800603
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800604 if (strlen(nacl->initiatorname) >= TRANSPORT_IQN_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -0700605 pr_err("%s InitiatorName exceeds maximum size.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000606 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800607 *ret = -EOVERFLOW;
608 return NULL;
609 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800610 lacl = kzalloc(sizeof(struct se_lun_acl), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700611 if (!lacl) {
612 pr_err("Unable to allocate memory for struct se_lun_acl.\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800613 *ret = -ENOMEM;
614 return NULL;
615 }
616
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800617 lacl->mapped_lun = mapped_lun;
618 lacl->se_lun_nacl = nacl;
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800619 snprintf(lacl->initiatorname, TRANSPORT_IQN_LEN, "%s",
620 nacl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800621
622 return lacl;
623}
624
625int core_dev_add_initiator_node_lun_acl(
626 struct se_portal_group *tpg,
627 struct se_lun_acl *lacl,
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700628 struct se_lun *lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629 u32 lun_access)
630{
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700631 struct se_node_acl *nacl = lacl->se_lun_nacl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632
Andy Grover6708bb22011-06-08 10:36:43 -0700633 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800634 return -EINVAL;
635
636 if ((lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) &&
637 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE))
638 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
639
640 lacl->se_lun = lun;
641
Andy Grovere80ac6c2012-07-12 17:34:58 -0700642 if (core_enable_device_list_for_node(lun, lacl, lacl->mapped_lun,
643 lun_access, nacl, tpg) < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800644 return -EINVAL;
645
Andy Grover6708bb22011-06-08 10:36:43 -0700646 pr_debug("%s_TPG[%hu]_LUN[%u->%u] - Added %s ACL for "
Andy Grovere3d6f902011-07-19 08:55:10 +0000647 " InitiatorNode: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700648 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun, lacl->mapped_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800649 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) ? "RW" : "RO",
650 lacl->initiatorname);
651 /*
652 * Check to see if there are any existing persistent reservation APTPL
653 * pre-registrations that need to be enabled for this LUN ACL..
654 */
Nicholas Bellingere2480562014-10-04 04:23:15 +0000655 core_scsi3_check_aptpl_registration(lun->lun_se_dev, tpg, lun, nacl,
656 lacl->mapped_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800657 return 0;
658}
659
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800660int core_dev_del_initiator_node_lun_acl(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800661 struct se_lun *lun,
662 struct se_lun_acl *lacl)
663{
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700664 struct se_portal_group *tpg = lun->lun_tpg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800665 struct se_node_acl *nacl;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700666 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800667
668 nacl = lacl->se_lun_nacl;
Andy Grover6708bb22011-06-08 10:36:43 -0700669 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800670 return -EINVAL;
671
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700672 mutex_lock(&nacl->lun_entry_mutex);
673 deve = target_nacl_find_deve(nacl, lacl->mapped_lun);
674 if (deve)
675 core_disable_device_list_for_node(lun, deve, nacl, tpg);
676 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800677
Andy Grover6708bb22011-06-08 10:36:43 -0700678 pr_debug("%s_TPG[%hu]_LUN[%u] - Removed ACL for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800679 " InitiatorNode: %s Mapped LUN: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000680 tpg->se_tpg_tfo->get_fabric_name(),
681 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800682 lacl->initiatorname, lacl->mapped_lun);
683
684 return 0;
685}
686
687void core_dev_free_initiator_node_lun_acl(
688 struct se_portal_group *tpg,
689 struct se_lun_acl *lacl)
690{
Andy Grover6708bb22011-06-08 10:36:43 -0700691 pr_debug("%s_TPG[%hu] - Freeing ACL for %s InitiatorNode: %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000692 " Mapped LUN: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
693 tpg->se_tpg_tfo->tpg_get_tag(tpg),
694 tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800695 lacl->initiatorname, lacl->mapped_lun);
696
697 kfree(lacl);
698}
699
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400700static void scsi_dump_inquiry(struct se_device *dev)
701{
702 struct t10_wwn *wwn = &dev->t10_wwn;
703 char buf[17];
704 int i, device_type;
705 /*
706 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
707 */
708 for (i = 0; i < 8; i++)
709 if (wwn->vendor[i] >= 0x20)
710 buf[i] = wwn->vendor[i];
711 else
712 buf[i] = ' ';
713 buf[i] = '\0';
714 pr_debug(" Vendor: %s\n", buf);
715
716 for (i = 0; i < 16; i++)
717 if (wwn->model[i] >= 0x20)
718 buf[i] = wwn->model[i];
719 else
720 buf[i] = ' ';
721 buf[i] = '\0';
722 pr_debug(" Model: %s\n", buf);
723
724 for (i = 0; i < 4; i++)
725 if (wwn->revision[i] >= 0x20)
726 buf[i] = wwn->revision[i];
727 else
728 buf[i] = ' ';
729 buf[i] = '\0';
730 pr_debug(" Revision: %s\n", buf);
731
732 device_type = dev->transport->get_device_type(dev);
733 pr_debug(" Type: %s ", scsi_device_type(device_type));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400734}
735
736struct se_device *target_alloc_device(struct se_hba *hba, const char *name)
737{
738 struct se_device *dev;
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800739 struct se_lun *xcopy_lun;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400740
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200741 dev = hba->backend->ops->alloc_device(hba, name);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400742 if (!dev)
743 return NULL;
744
Nicholas Bellinger0ff87542012-12-04 23:43:57 -0800745 dev->dev_link_magic = SE_DEV_LINK_MAGIC;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400746 dev->se_hba = hba;
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200747 dev->transport = hba->backend->ops;
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +0000748 dev->prot_length = sizeof(struct se_dif_v1_tuple);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400749
750 INIT_LIST_HEAD(&dev->dev_list);
751 INIT_LIST_HEAD(&dev->dev_sep_list);
752 INIT_LIST_HEAD(&dev->dev_tmr_list);
753 INIT_LIST_HEAD(&dev->delayed_cmd_list);
754 INIT_LIST_HEAD(&dev->state_list);
755 INIT_LIST_HEAD(&dev->qf_cmd_list);
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -0700756 INIT_LIST_HEAD(&dev->g_dev_node);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400757 spin_lock_init(&dev->execute_task_lock);
758 spin_lock_init(&dev->delayed_cmd_lock);
759 spin_lock_init(&dev->dev_reservation_lock);
760 spin_lock_init(&dev->se_port_lock);
761 spin_lock_init(&dev->se_tmr_lock);
762 spin_lock_init(&dev->qf_cmd_lock);
Nicholas Bellinger68ff9b92013-08-19 15:20:28 -0700763 sema_init(&dev->caw_sem, 1);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400764 atomic_set(&dev->dev_ordered_id, 0);
765 INIT_LIST_HEAD(&dev->t10_wwn.t10_vpd_list);
766 spin_lock_init(&dev->t10_wwn.t10_vpd_lock);
767 INIT_LIST_HEAD(&dev->t10_pr.registration_list);
768 INIT_LIST_HEAD(&dev->t10_pr.aptpl_reg_list);
769 spin_lock_init(&dev->t10_pr.registration_lock);
770 spin_lock_init(&dev->t10_pr.aptpl_reg_lock);
771 INIT_LIST_HEAD(&dev->t10_alua.tg_pt_gps_list);
772 spin_lock_init(&dev->t10_alua.tg_pt_gps_lock);
Hannes Reineckec66094b2013-12-17 09:18:49 +0100773 INIT_LIST_HEAD(&dev->t10_alua.lba_map_list);
774 spin_lock_init(&dev->t10_alua.lba_map_lock);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400775
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400776 dev->t10_wwn.t10_dev = dev;
777 dev->t10_alua.t10_dev = dev;
778
779 dev->dev_attrib.da_dev = dev;
Tregaron Baylyadfa9572013-01-31 15:30:24 -0700780 dev->dev_attrib.emulate_model_alias = DA_EMULATE_MODEL_ALIAS;
Christoph Hellwig814e5b42015-04-20 15:00:30 +0200781 dev->dev_attrib.emulate_dpo = 1;
782 dev->dev_attrib.emulate_fua_write = 1;
783 dev->dev_attrib.emulate_fua_read = 1;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400784 dev->dev_attrib.emulate_write_cache = DA_EMULATE_WRITE_CACHE;
785 dev->dev_attrib.emulate_ua_intlck_ctrl = DA_EMULATE_UA_INTLLCK_CTRL;
786 dev->dev_attrib.emulate_tas = DA_EMULATE_TAS;
787 dev->dev_attrib.emulate_tpu = DA_EMULATE_TPU;
788 dev->dev_attrib.emulate_tpws = DA_EMULATE_TPWS;
Nicholas Bellinger0123a9e2013-08-20 14:24:09 -0700789 dev->dev_attrib.emulate_caw = DA_EMULATE_CAW;
Nicholas Bellingerd397a442013-08-22 14:17:20 -0700790 dev->dev_attrib.emulate_3pc = DA_EMULATE_3PC;
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +0000791 dev->dev_attrib.pi_prot_type = TARGET_DIF_TYPE0_PROT;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400792 dev->dev_attrib.enforce_pr_isids = DA_ENFORCE_PR_ISIDS;
Nicholas Bellinger92404e62014-10-04 01:06:08 +0000793 dev->dev_attrib.force_pr_aptpl = DA_FORCE_PR_APTPL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400794 dev->dev_attrib.is_nonrot = DA_IS_NONROT;
795 dev->dev_attrib.emulate_rest_reord = DA_EMULATE_REST_REORD;
796 dev->dev_attrib.max_unmap_lba_count = DA_MAX_UNMAP_LBA_COUNT;
797 dev->dev_attrib.max_unmap_block_desc_count =
798 DA_MAX_UNMAP_BLOCK_DESC_COUNT;
799 dev->dev_attrib.unmap_granularity = DA_UNMAP_GRANULARITY_DEFAULT;
800 dev->dev_attrib.unmap_granularity_alignment =
801 DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT;
Nicholas Bellinger773cbaf2012-11-15 11:02:49 -0800802 dev->dev_attrib.max_write_same_len = DA_MAX_WRITE_SAME_LEN;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400803
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800804 xcopy_lun = &dev->xcopy_lun;
805 xcopy_lun->lun_se_dev = dev;
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800806 spin_lock_init(&xcopy_lun->lun_sep_lock);
807 init_completion(&xcopy_lun->lun_ref_comp);
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700808 INIT_LIST_HEAD(&xcopy_lun->lun_deve_list);
809 INIT_LIST_HEAD(&xcopy_lun->lun_dev_link);
810 mutex_init(&xcopy_lun->lun_tg_pt_md_mutex);
811 xcopy_lun->lun_tpg = &xcopy_pt_tpg;
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800812
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400813 return dev;
814}
815
816int target_configure_device(struct se_device *dev)
817{
818 struct se_hba *hba = dev->se_hba;
819 int ret;
820
821 if (dev->dev_flags & DF_CONFIGURED) {
822 pr_err("se_dev->se_dev_ptr already set for storage"
823 " object\n");
824 return -EEXIST;
825 }
826
827 ret = dev->transport->configure_device(dev);
828 if (ret)
829 goto out;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400830 /*
831 * XXX: there is not much point to have two different values here..
832 */
833 dev->dev_attrib.block_size = dev->dev_attrib.hw_block_size;
834 dev->dev_attrib.queue_depth = dev->dev_attrib.hw_queue_depth;
835
836 /*
837 * Align max_hw_sectors down to PAGE_SIZE I/O transfers
838 */
839 dev->dev_attrib.hw_max_sectors =
840 se_dev_align_max_sectors(dev->dev_attrib.hw_max_sectors,
841 dev->dev_attrib.hw_block_size);
Nicholas Bellinger046ba642015-01-06 16:10:37 -0800842 dev->dev_attrib.optimal_sectors = dev->dev_attrib.hw_max_sectors;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400843
844 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
845 dev->creation_time = get_jiffies_64();
846
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400847 ret = core_setup_alua(dev);
848 if (ret)
849 goto out;
850
851 /*
852 * Startup the struct se_device processing thread
853 */
854 dev->tmr_wq = alloc_workqueue("tmr-%s", WQ_MEM_RECLAIM | WQ_UNBOUND, 1,
855 dev->transport->name);
856 if (!dev->tmr_wq) {
857 pr_err("Unable to create tmr workqueue for %s\n",
858 dev->transport->name);
859 ret = -ENOMEM;
860 goto out_free_alua;
861 }
862
863 /*
864 * Setup work_queue for QUEUE_FULL
865 */
866 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
867
868 /*
869 * Preload the initial INQUIRY const values if we are doing
870 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
871 * passthrough because this is being provided by the backend LLD.
872 */
Andy Grovera3541702015-05-19 14:44:41 -0700873 if (!(dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400874 strncpy(&dev->t10_wwn.vendor[0], "LIO-ORG", 8);
875 strncpy(&dev->t10_wwn.model[0],
876 dev->transport->inquiry_prod, 16);
877 strncpy(&dev->t10_wwn.revision[0],
878 dev->transport->inquiry_rev, 4);
879 }
880
881 scsi_dump_inquiry(dev);
882
883 spin_lock(&hba->device_lock);
884 hba->dev_count++;
885 spin_unlock(&hba->device_lock);
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -0700886
887 mutex_lock(&g_device_mutex);
888 list_add_tail(&dev->g_dev_node, &g_device_list);
889 mutex_unlock(&g_device_mutex);
890
Nicholas Bellinger5f7da042015-03-05 03:28:24 +0000891 dev->dev_flags |= DF_CONFIGURED;
892
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400893 return 0;
894
895out_free_alua:
896 core_alua_free_lu_gp_mem(dev);
897out:
898 se_release_vpd_for_dev(dev);
899 return ret;
900}
901
902void target_free_device(struct se_device *dev)
903{
904 struct se_hba *hba = dev->se_hba;
905
906 WARN_ON(!list_empty(&dev->dev_sep_list));
907
908 if (dev->dev_flags & DF_CONFIGURED) {
909 destroy_workqueue(dev->tmr_wq);
910
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -0700911 mutex_lock(&g_device_mutex);
912 list_del(&dev->g_dev_node);
913 mutex_unlock(&g_device_mutex);
914
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400915 spin_lock(&hba->device_lock);
916 hba->dev_count--;
917 spin_unlock(&hba->device_lock);
918 }
919
920 core_alua_free_lu_gp_mem(dev);
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100921 core_alua_set_lba_map(dev, NULL, 0, 0);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400922 core_scsi3_free_all_registrations(dev);
923 se_release_vpd_for_dev(dev);
924
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +0000925 if (dev->transport->free_prot)
926 dev->transport->free_prot(dev);
927
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400928 dev->transport->free_device(dev);
929}
930
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800931int core_dev_setup_virtual_lun0(void)
932{
933 struct se_hba *hba;
934 struct se_device *dev;
Andy Groverdb5d1c32013-05-28 16:55:20 -0700935 char buf[] = "rd_pages=8,rd_nullio=1";
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800936 int ret;
937
Andy Grover6708bb22011-06-08 10:36:43 -0700938 hba = core_alloc_hba("rd_mcp", 0, HBA_FLAGS_INTERNAL_USE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800939 if (IS_ERR(hba))
940 return PTR_ERR(hba);
941
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400942 dev = target_alloc_device(hba, "virt_lun0");
943 if (!dev) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800944 ret = -ENOMEM;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400945 goto out_free_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800946 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800947
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200948 hba->backend->ops->set_configfs_dev_params(dev, buf, sizeof(buf));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800949
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400950 ret = target_configure_device(dev);
951 if (ret)
952 goto out_free_se_dev;
953
954 lun0_hba = hba;
Andy Grovere3d6f902011-07-19 08:55:10 +0000955 g_lun0_dev = dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800956 return 0;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400957
958out_free_se_dev:
959 target_free_device(dev);
960out_free_hba:
961 core_delete_hba(hba);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800962 return ret;
963}
964
965
966void core_dev_release_virtual_lun0(void)
967{
Andy Grovere3d6f902011-07-19 08:55:10 +0000968 struct se_hba *hba = lun0_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800969
Andy Grover6708bb22011-06-08 10:36:43 -0700970 if (!hba)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800971 return;
972
Andy Grovere3d6f902011-07-19 08:55:10 +0000973 if (g_lun0_dev)
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400974 target_free_device(g_lun0_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800975 core_delete_hba(hba);
976}
Andy Grover7bfea53b2015-05-19 14:44:40 -0700977
978/*
979 * Common CDB parsing for kernel and user passthrough.
980 */
981sense_reason_t
982passthrough_parse_cdb(struct se_cmd *cmd,
983 sense_reason_t (*exec_cmd)(struct se_cmd *cmd))
984{
985 unsigned char *cdb = cmd->t_task_cdb;
986
987 /*
988 * Clear a lun set in the cdb if the initiator talking to use spoke
989 * and old standards version, as we can't assume the underlying device
990 * won't choke up on it.
991 */
992 switch (cdb[0]) {
993 case READ_10: /* SBC - RDProtect */
994 case READ_12: /* SBC - RDProtect */
995 case READ_16: /* SBC - RDProtect */
996 case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */
997 case VERIFY: /* SBC - VRProtect */
998 case VERIFY_16: /* SBC - VRProtect */
999 case WRITE_VERIFY: /* SBC - VRProtect */
1000 case WRITE_VERIFY_12: /* SBC - VRProtect */
1001 case MAINTENANCE_IN: /* SPC - Parameter Data Format for SA RTPG */
1002 break;
1003 default:
1004 cdb[1] &= 0x1f; /* clear logical unit number */
1005 break;
1006 }
1007
1008 /*
1009 * For REPORT LUNS we always need to emulate the response, for everything
1010 * else, pass it up.
1011 */
1012 if (cdb[0] == REPORT_LUNS) {
1013 cmd->execute_cmd = spc_emulate_report_luns;
1014 return TCM_NO_SENSE;
1015 }
1016
1017 /* Set DATA_CDB flag for ops that should have it */
1018 switch (cdb[0]) {
1019 case READ_6:
1020 case READ_10:
1021 case READ_12:
1022 case READ_16:
1023 case WRITE_6:
1024 case WRITE_10:
1025 case WRITE_12:
1026 case WRITE_16:
1027 case WRITE_VERIFY:
1028 case WRITE_VERIFY_12:
1029 case 0x8e: /* WRITE_VERIFY_16 */
1030 case COMPARE_AND_WRITE:
1031 case XDWRITEREAD_10:
1032 cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1033 break;
1034 case VARIABLE_LENGTH_CMD:
1035 switch (get_unaligned_be16(&cdb[8])) {
1036 case READ_32:
1037 case WRITE_32:
1038 case 0x0c: /* WRITE_VERIFY_32 */
1039 case XDWRITEREAD_32:
1040 cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1041 break;
1042 }
1043 }
1044
1045 cmd->execute_cmd = exec_cmd;
1046
1047 return TCM_NO_SENSE;
1048}
1049EXPORT_SYMBOL(passthrough_parse_cdb);