blob: 1e4485b1849dd5e228da957070d82fb62dc28833 [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
123 se_lun = &se_sess->se_tpg->tpg_virt_lun0;
124 se_cmd->se_lun = &se_sess->se_tpg->tpg_virt_lun0;
125 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{
312 struct se_port *port = lun->lun_sep;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700313 struct se_dev_entry *orig, *new;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800314
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700315 new = kzalloc(sizeof(*new), GFP_KERNEL);
316 if (!new) {
317 pr_err("Unable to allocate se_dev_entry memory\n");
318 return -ENOMEM;
319 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700320
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700321 atomic_set(&new->ua_count, 0);
322 spin_lock_init(&new->ua_lock);
323 INIT_LIST_HEAD(&new->alua_port_list);
324 INIT_LIST_HEAD(&new->ua_list);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700325
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700326 new->mapped_lun = mapped_lun;
327 kref_init(&new->pr_kref);
328 init_completion(&new->pr_comp);
329
330 if (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE)
331 new->lun_flags |= TRANSPORT_LUNFLAGS_READ_WRITE;
332 else
333 new->lun_flags |= TRANSPORT_LUNFLAGS_READ_ONLY;
334
335 new->creation_time = get_jiffies_64();
336 new->attach_count++;
337
338 mutex_lock(&nacl->lun_entry_mutex);
339 orig = target_nacl_find_deve(nacl, mapped_lun);
340 if (orig && orig->se_lun) {
341 struct se_lun *orig_lun = rcu_dereference_check(orig->se_lun,
342 lockdep_is_held(&nacl->lun_entry_mutex));
343
344 if (orig_lun != lun) {
345 pr_err("Existing orig->se_lun doesn't match new lun"
346 " for dynamic -> explicit NodeACL conversion:"
347 " %s\n", nacl->initiatorname);
348 mutex_unlock(&nacl->lun_entry_mutex);
349 kfree(new);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700350 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800351 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700352 BUG_ON(orig->se_lun_acl != NULL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800353
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700354 rcu_assign_pointer(new->se_lun, lun);
355 rcu_assign_pointer(new->se_lun_acl, lun_acl);
356 hlist_del_rcu(&orig->link);
357 hlist_add_head_rcu(&new->link, &nacl->lun_entry_hlist);
358 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800359
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700360 spin_lock_bh(&port->sep_alua_lock);
361 list_del(&orig->alua_port_list);
362 list_add_tail(&new->alua_port_list, &port->sep_alua_list);
363 spin_unlock_bh(&port->sep_alua_lock);
364
365 kref_put(&orig->pr_kref, target_pr_kref_release);
366 wait_for_completion(&orig->pr_comp);
367
368 kfree_rcu(orig, rcu_head);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369 return 0;
370 }
Andy Grovere80ac6c2012-07-12 17:34:58 -0700371
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700372 rcu_assign_pointer(new->se_lun, lun);
373 rcu_assign_pointer(new->se_lun_acl, lun_acl);
374 hlist_add_head_rcu(&new->link, &nacl->lun_entry_hlist);
375 mutex_unlock(&nacl->lun_entry_mutex);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700376
377 spin_lock_bh(&port->sep_alua_lock);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700378 list_add_tail(&new->alua_port_list, &port->sep_alua_list);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700379 spin_unlock_bh(&port->sep_alua_lock);
380
381 return 0;
382}
383
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700384/*
385 * Called with se_node_acl->lun_entry_mutex held.
Andy Grovere80ac6c2012-07-12 17:34:58 -0700386 */
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700387void core_disable_device_list_for_node(
Andy Grovere80ac6c2012-07-12 17:34:58 -0700388 struct se_lun *lun,
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700389 struct se_dev_entry *orig,
Andy Grovere80ac6c2012-07-12 17:34:58 -0700390 struct se_node_acl *nacl,
391 struct se_portal_group *tpg)
392{
393 struct se_port *port = lun->lun_sep;
Andy Grovere80ac6c2012-07-12 17:34:58 -0700394 /*
395 * If the MappedLUN entry is being disabled, the entry in
396 * port->sep_alua_list must be removed now before clearing the
397 * struct se_dev_entry pointers below as logic in
398 * core_alua_do_transition_tg_pt() depends on these being present.
399 *
400 * deve->se_lun_acl will be NULL for demo-mode created LUNs
401 * that have not been explicitly converted to MappedLUNs ->
402 * struct se_lun_acl, but we remove deve->alua_port_list from
403 * port->sep_alua_list. This also means that active UAs and
404 * NodeACL context specific PR metadata for demo-mode
405 * MappedLUN *deve will be released below..
406 */
407 spin_lock_bh(&port->sep_alua_lock);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700408 list_del(&orig->alua_port_list);
Andy Grovere80ac6c2012-07-12 17:34:58 -0700409 spin_unlock_bh(&port->sep_alua_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800410 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800411 * Disable struct se_dev_entry LUN ACL mapping
412 */
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700413 core_scsi3_ua_release_all(orig);
414
415 hlist_del_rcu(&orig->link);
Nicholas Bellinger80bfdfa2015-03-25 01:02:57 -0700416 clear_bit(DEF_PR_REG_ACTIVE, &orig->deve_flags);
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700417 rcu_assign_pointer(orig->se_lun, NULL);
418 rcu_assign_pointer(orig->se_lun_acl, NULL);
419 orig->lun_flags = 0;
420 orig->creation_time = 0;
421 orig->attach_count--;
422 /*
423 * Before firing off RCU callback, wait for any in process SPEC_I_PT=1
424 * or REGISTER_AND_MOVE PR operation to complete.
425 */
426 kref_put(&orig->pr_kref, target_pr_kref_release);
427 wait_for_completion(&orig->pr_comp);
428
429 kfree_rcu(orig, rcu_head);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430
431 core_scsi3_free_pr_reg_from_nacl(lun->lun_se_dev, nacl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800432}
433
434/* core_clear_lun_from_tpg():
435 *
436 *
437 */
438void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
439{
440 struct se_node_acl *nacl;
441 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800442
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000443 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444 list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800445
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700446 mutex_lock(&nacl->lun_entry_mutex);
447 hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
448 struct se_lun *tmp_lun = rcu_dereference_check(deve->se_lun,
449 lockdep_is_held(&nacl->lun_entry_mutex));
450
451 if (lun != tmp_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800452 continue;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800453
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700454 core_disable_device_list_for_node(lun, deve, nacl, tpg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800455 }
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700456 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000458 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800459}
460
461static struct se_port *core_alloc_port(struct se_device *dev)
462{
463 struct se_port *port, *port_tmp;
464
465 port = kzalloc(sizeof(struct se_port), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700466 if (!port) {
467 pr_err("Unable to allocate struct se_port\n");
Andy Grovere3d6f902011-07-19 08:55:10 +0000468 return ERR_PTR(-ENOMEM);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469 }
470 INIT_LIST_HEAD(&port->sep_alua_list);
471 INIT_LIST_HEAD(&port->sep_list);
472 atomic_set(&port->sep_tg_pt_secondary_offline, 0);
473 spin_lock_init(&port->sep_alua_lock);
474 mutex_init(&port->sep_tg_pt_md_mutex);
475
476 spin_lock(&dev->se_port_lock);
477 if (dev->dev_port_count == 0x0000ffff) {
Andy Grover6708bb22011-06-08 10:36:43 -0700478 pr_warn("Reached dev->dev_port_count =="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479 " 0x0000ffff\n");
480 spin_unlock(&dev->se_port_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +0000481 return ERR_PTR(-ENOSPC);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800482 }
483again:
484 /*
Masanari Iida35d1efe2012-08-16 22:43:13 +0900485 * Allocate the next RELATIVE TARGET PORT IDENTIFIER for this struct se_device
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800486 * Here is the table from spc4r17 section 7.7.3.8.
487 *
488 * Table 473 -- RELATIVE TARGET PORT IDENTIFIER field
489 *
490 * Code Description
491 * 0h Reserved
492 * 1h Relative port 1, historically known as port A
493 * 2h Relative port 2, historically known as port B
494 * 3h to FFFFh Relative port 3 through 65 535
495 */
496 port->sep_rtpi = dev->dev_rpti_counter++;
Andy Grover6708bb22011-06-08 10:36:43 -0700497 if (!port->sep_rtpi)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498 goto again;
499
500 list_for_each_entry(port_tmp, &dev->dev_sep_list, sep_list) {
501 /*
Masanari Iida35d1efe2012-08-16 22:43:13 +0900502 * Make sure RELATIVE TARGET PORT IDENTIFIER is unique
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800503 * for 16-bit wrap..
504 */
505 if (port->sep_rtpi == port_tmp->sep_rtpi)
506 goto again;
507 }
508 spin_unlock(&dev->se_port_lock);
509
510 return port;
511}
512
513static void core_export_port(
514 struct se_device *dev,
515 struct se_portal_group *tpg,
516 struct se_port *port,
517 struct se_lun *lun)
518{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800519 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem = NULL;
520
521 spin_lock(&dev->se_port_lock);
522 spin_lock(&lun->lun_sep_lock);
523 port->sep_tpg = tpg;
524 port->sep_lun = lun;
525 lun->lun_sep = port;
526 spin_unlock(&lun->lun_sep_lock);
527
528 list_add_tail(&port->sep_list, &dev->dev_sep_list);
529 spin_unlock(&dev->se_port_lock);
530
Andy Grovera3541702015-05-19 14:44:41 -0700531 if (!(dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH) &&
Christoph Hellwigc87fbd52012-10-10 17:37:16 -0400532 !(dev->se_hba->hba_flags & HBA_FLAGS_INTERNAL_USE)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800533 tg_pt_gp_mem = core_alua_allocate_tg_pt_gp_mem(port);
534 if (IS_ERR(tg_pt_gp_mem) || !tg_pt_gp_mem) {
Andy Grover6708bb22011-06-08 10:36:43 -0700535 pr_err("Unable to allocate t10_alua_tg_pt"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800536 "_gp_member_t\n");
537 return;
538 }
539 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
540 __core_alua_attach_tg_pt_gp_mem(tg_pt_gp_mem,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400541 dev->t10_alua.default_tg_pt_gp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800542 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
Andy Grover6708bb22011-06-08 10:36:43 -0700543 pr_debug("%s/%s: Adding to default ALUA Target Port"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800544 " Group: alua/default_tg_pt_gp\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000545 dev->transport->name, tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800546 }
547
548 dev->dev_port_count++;
Masanari Iida35d1efe2012-08-16 22:43:13 +0900549 port->sep_index = port->sep_rtpi; /* RELATIVE TARGET PORT IDENTIFIER */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550}
551
552/*
553 * Called with struct se_device->se_port_lock spinlock held.
554 */
555static void core_release_port(struct se_device *dev, struct se_port *port)
Dan Carpenter5dd7ed22011-03-14 04:06:01 -0700556 __releases(&dev->se_port_lock) __acquires(&dev->se_port_lock)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557{
558 /*
559 * Wait for any port reference for PR ALL_TG_PT=1 operation
560 * to complete in __core_scsi3_alloc_registration()
561 */
562 spin_unlock(&dev->se_port_lock);
563 if (atomic_read(&port->sep_tg_pt_ref_cnt))
564 cpu_relax();
565 spin_lock(&dev->se_port_lock);
566
567 core_alua_free_tg_pt_gp_mem(port);
568
569 list_del(&port->sep_list);
570 dev->dev_port_count--;
571 kfree(port);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800572}
573
574int core_dev_export(
575 struct se_device *dev,
576 struct se_portal_group *tpg,
577 struct se_lun *lun)
578{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400579 struct se_hba *hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800580 struct se_port *port;
581
582 port = core_alloc_port(dev);
Andy Grovere3d6f902011-07-19 08:55:10 +0000583 if (IS_ERR(port))
584 return PTR_ERR(port);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700586 lun->lun_index = dev->dev_index;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587 lun->lun_se_dev = dev;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700588 lun->lun_rtpi = port->sep_rtpi;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800589
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400590 spin_lock(&hba->device_lock);
591 dev->export_count++;
592 spin_unlock(&hba->device_lock);
593
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800594 core_export_port(dev, tpg, port, lun);
595 return 0;
596}
597
598void core_dev_unexport(
599 struct se_device *dev,
600 struct se_portal_group *tpg,
601 struct se_lun *lun)
602{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400603 struct se_hba *hba = dev->se_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604 struct se_port *port = lun->lun_sep;
605
606 spin_lock(&lun->lun_sep_lock);
607 if (lun->lun_se_dev == NULL) {
608 spin_unlock(&lun->lun_sep_lock);
609 return;
610 }
611 spin_unlock(&lun->lun_sep_lock);
612
613 spin_lock(&dev->se_port_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614 core_release_port(dev, port);
615 spin_unlock(&dev->se_port_lock);
616
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400617 spin_lock(&hba->device_lock);
618 dev->export_count--;
619 spin_unlock(&hba->device_lock);
620
Nicholas Bellinger83ff42f2014-06-16 20:25:54 +0000621 lun->lun_sep = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800622 lun->lun_se_dev = NULL;
623}
624
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400625static void se_release_vpd_for_dev(struct se_device *dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626{
627 struct t10_vpd *vpd, *vpd_tmp;
628
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400629 spin_lock(&dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630 list_for_each_entry_safe(vpd, vpd_tmp,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400631 &dev->t10_wwn.t10_vpd_list, vpd_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632 list_del(&vpd->vpd_list);
633 kfree(vpd);
634 }
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400635 spin_unlock(&dev->t10_wwn.t10_vpd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800636}
637
Roland Dreierc8045372012-07-16 15:17:12 -0700638static u32 se_dev_align_max_sectors(u32 max_sectors, u32 block_size)
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700639{
Roland Dreier3e039892012-10-31 09:16:45 -0700640 u32 aligned_max_sectors;
641 u32 alignment;
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700642 /*
643 * Limit max_sectors to a PAGE_SIZE aligned value for modern
644 * transport_allocate_data_tasks() operation.
645 */
Roland Dreier3e039892012-10-31 09:16:45 -0700646 alignment = max(1ul, PAGE_SIZE / block_size);
647 aligned_max_sectors = rounddown(max_sectors, alignment);
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700648
Roland Dreier3e039892012-10-31 09:16:45 -0700649 if (max_sectors != aligned_max_sectors)
650 pr_info("Rounding down aligned max_sectors from %u to %u\n",
651 max_sectors, aligned_max_sectors);
652
653 return aligned_max_sectors;
Nicholas Bellinger525a48a2011-08-13 02:11:38 -0700654}
655
Christophe Vu-Brugier9bc65482015-03-19 14:30:13 +0100656bool se_dev_check_wce(struct se_device *dev)
657{
658 bool wce = false;
659
660 if (dev->transport->get_write_cache)
661 wce = dev->transport->get_write_cache(dev);
662 else if (dev->dev_attrib.emulate_write_cache > 0)
663 wce = true;
664
665 return wce;
666}
667
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700668int core_dev_add_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800669 struct se_portal_group *tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800670 struct se_device *dev,
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700671 struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800672{
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100673 int rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800674
Andy Groverd344f8a2013-11-26 12:07:54 -0800675 rc = core_tpg_add_lun(tpg, lun,
Nicholas Bellinger58d92612012-03-20 21:26:48 -0700676 TRANSPORT_LUNFLAGS_READ_WRITE, dev);
Sebastian Andrzej Siewior8d9efe52012-01-11 21:43:38 +0100677 if (rc < 0)
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700678 return rc;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800679
Andy Grover6708bb22011-06-08 10:36:43 -0700680 pr_debug("%s_TPG[%u]_LUN[%u] - Activated %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +0000681 " CORE HBA: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
Andy Grover2af79732013-11-26 11:55:22 -0800682 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Andy Grover2dca6732012-07-12 17:34:55 -0700683 tpg->se_tpg_tfo->get_fabric_name(), dev->se_hba->hba_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800684 /*
685 * Update LUN maps for dynamically added initiators when
686 * generate_node_acl is enabled.
687 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000688 if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800689 struct se_node_acl *acl;
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000690
691 mutex_lock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800692 list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
Nicholas Bellinger052605c2011-07-26 17:48:43 -0700693 if (acl->dynamic_node_acl &&
694 (!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
695 !tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
Nicholas Bellingerdf9766c2015-05-22 02:05:19 +0000696 core_tpg_add_node_to_devs(acl, tpg, lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800697 }
698 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000699 mutex_unlock(&tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800700 }
701
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700702 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800703}
704
705/* core_dev_del_lun():
706 *
707 *
708 */
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700709void core_dev_del_lun(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800710 struct se_portal_group *tpg,
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700711 struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800712{
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700713 pr_debug("%s_TPG[%u]_LUN[%u] - Deactivating %s Logical Unit from"
Andy Grovere3d6f902011-07-19 08:55:10 +0000714 " device object\n", tpg->se_tpg_tfo->get_fabric_name(),
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700715 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +0000716 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800717
Andy Grovercd9d7cb2014-06-30 16:39:44 -0700718 core_tpg_remove_lun(tpg, lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800719}
720
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800721struct se_lun_acl *core_dev_init_initiator_node_lun_acl(
722 struct se_portal_group *tpg,
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800723 struct se_node_acl *nacl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800724 u32 mapped_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800725 int *ret)
726{
727 struct se_lun_acl *lacl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800728
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800729 if (strlen(nacl->initiatorname) >= TRANSPORT_IQN_LEN) {
Andy Grover6708bb22011-06-08 10:36:43 -0700730 pr_err("%s InitiatorName exceeds maximum size.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000731 tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800732 *ret = -EOVERFLOW;
733 return NULL;
734 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800735 lacl = kzalloc(sizeof(struct se_lun_acl), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700736 if (!lacl) {
737 pr_err("Unable to allocate memory for struct se_lun_acl.\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800738 *ret = -ENOMEM;
739 return NULL;
740 }
741
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800742 lacl->mapped_lun = mapped_lun;
743 lacl->se_lun_nacl = nacl;
Nicholas Bellingerfcf29482013-02-18 18:00:33 -0800744 snprintf(lacl->initiatorname, TRANSPORT_IQN_LEN, "%s",
745 nacl->initiatorname);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800746
747 return lacl;
748}
749
750int core_dev_add_initiator_node_lun_acl(
751 struct se_portal_group *tpg,
752 struct se_lun_acl *lacl,
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700753 struct se_lun *lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800754 u32 lun_access)
755{
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700756 struct se_node_acl *nacl = lacl->se_lun_nacl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800757
Andy Grover6708bb22011-06-08 10:36:43 -0700758 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800759 return -EINVAL;
760
761 if ((lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) &&
762 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE))
763 lun_access = TRANSPORT_LUNFLAGS_READ_ONLY;
764
765 lacl->se_lun = lun;
766
Andy Grovere80ac6c2012-07-12 17:34:58 -0700767 if (core_enable_device_list_for_node(lun, lacl, lacl->mapped_lun,
768 lun_access, nacl, tpg) < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800769 return -EINVAL;
770
Andy Grover6708bb22011-06-08 10:36:43 -0700771 pr_debug("%s_TPG[%hu]_LUN[%u->%u] - Added %s ACL for "
Andy Grovere3d6f902011-07-19 08:55:10 +0000772 " InitiatorNode: %s\n", tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellinger6bb82612015-05-10 19:31:10 -0700773 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun, lacl->mapped_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800774 (lun_access & TRANSPORT_LUNFLAGS_READ_WRITE) ? "RW" : "RO",
775 lacl->initiatorname);
776 /*
777 * Check to see if there are any existing persistent reservation APTPL
778 * pre-registrations that need to be enabled for this LUN ACL..
779 */
Nicholas Bellingere2480562014-10-04 04:23:15 +0000780 core_scsi3_check_aptpl_registration(lun->lun_se_dev, tpg, lun, nacl,
781 lacl->mapped_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800782 return 0;
783}
784
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800785int core_dev_del_initiator_node_lun_acl(
786 struct se_portal_group *tpg,
787 struct se_lun *lun,
788 struct se_lun_acl *lacl)
789{
790 struct se_node_acl *nacl;
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700791 struct se_dev_entry *deve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800792
793 nacl = lacl->se_lun_nacl;
Andy Grover6708bb22011-06-08 10:36:43 -0700794 if (!nacl)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800795 return -EINVAL;
796
Nicholas Bellinger29a05de2015-03-22 20:42:19 -0700797 mutex_lock(&nacl->lun_entry_mutex);
798 deve = target_nacl_find_deve(nacl, lacl->mapped_lun);
799 if (deve)
800 core_disable_device_list_for_node(lun, deve, nacl, tpg);
801 mutex_unlock(&nacl->lun_entry_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800802
Andy Grover6708bb22011-06-08 10:36:43 -0700803 pr_debug("%s_TPG[%hu]_LUN[%u] - Removed ACL for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800804 " InitiatorNode: %s Mapped LUN: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000805 tpg->se_tpg_tfo->get_fabric_name(),
806 tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800807 lacl->initiatorname, lacl->mapped_lun);
808
809 return 0;
810}
811
812void core_dev_free_initiator_node_lun_acl(
813 struct se_portal_group *tpg,
814 struct se_lun_acl *lacl)
815{
Andy Grover6708bb22011-06-08 10:36:43 -0700816 pr_debug("%s_TPG[%hu] - Freeing ACL for %s InitiatorNode: %s"
Andy Grovere3d6f902011-07-19 08:55:10 +0000817 " Mapped LUN: %u\n", tpg->se_tpg_tfo->get_fabric_name(),
818 tpg->se_tpg_tfo->tpg_get_tag(tpg),
819 tpg->se_tpg_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800820 lacl->initiatorname, lacl->mapped_lun);
821
822 kfree(lacl);
823}
824
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400825static void scsi_dump_inquiry(struct se_device *dev)
826{
827 struct t10_wwn *wwn = &dev->t10_wwn;
828 char buf[17];
829 int i, device_type;
830 /*
831 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
832 */
833 for (i = 0; i < 8; i++)
834 if (wwn->vendor[i] >= 0x20)
835 buf[i] = wwn->vendor[i];
836 else
837 buf[i] = ' ';
838 buf[i] = '\0';
839 pr_debug(" Vendor: %s\n", buf);
840
841 for (i = 0; i < 16; i++)
842 if (wwn->model[i] >= 0x20)
843 buf[i] = wwn->model[i];
844 else
845 buf[i] = ' ';
846 buf[i] = '\0';
847 pr_debug(" Model: %s\n", buf);
848
849 for (i = 0; i < 4; i++)
850 if (wwn->revision[i] >= 0x20)
851 buf[i] = wwn->revision[i];
852 else
853 buf[i] = ' ';
854 buf[i] = '\0';
855 pr_debug(" Revision: %s\n", buf);
856
857 device_type = dev->transport->get_device_type(dev);
858 pr_debug(" Type: %s ", scsi_device_type(device_type));
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400859}
860
861struct se_device *target_alloc_device(struct se_hba *hba, const char *name)
862{
863 struct se_device *dev;
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800864 struct se_lun *xcopy_lun;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400865
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200866 dev = hba->backend->ops->alloc_device(hba, name);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400867 if (!dev)
868 return NULL;
869
Nicholas Bellinger0ff87542012-12-04 23:43:57 -0800870 dev->dev_link_magic = SE_DEV_LINK_MAGIC;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400871 dev->se_hba = hba;
Christoph Hellwig0a06d432015-05-10 18:14:56 +0200872 dev->transport = hba->backend->ops;
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +0000873 dev->prot_length = sizeof(struct se_dif_v1_tuple);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400874
875 INIT_LIST_HEAD(&dev->dev_list);
876 INIT_LIST_HEAD(&dev->dev_sep_list);
877 INIT_LIST_HEAD(&dev->dev_tmr_list);
878 INIT_LIST_HEAD(&dev->delayed_cmd_list);
879 INIT_LIST_HEAD(&dev->state_list);
880 INIT_LIST_HEAD(&dev->qf_cmd_list);
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -0700881 INIT_LIST_HEAD(&dev->g_dev_node);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400882 spin_lock_init(&dev->execute_task_lock);
883 spin_lock_init(&dev->delayed_cmd_lock);
884 spin_lock_init(&dev->dev_reservation_lock);
885 spin_lock_init(&dev->se_port_lock);
886 spin_lock_init(&dev->se_tmr_lock);
887 spin_lock_init(&dev->qf_cmd_lock);
Nicholas Bellinger68ff9b92013-08-19 15:20:28 -0700888 sema_init(&dev->caw_sem, 1);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400889 atomic_set(&dev->dev_ordered_id, 0);
890 INIT_LIST_HEAD(&dev->t10_wwn.t10_vpd_list);
891 spin_lock_init(&dev->t10_wwn.t10_vpd_lock);
892 INIT_LIST_HEAD(&dev->t10_pr.registration_list);
893 INIT_LIST_HEAD(&dev->t10_pr.aptpl_reg_list);
894 spin_lock_init(&dev->t10_pr.registration_lock);
895 spin_lock_init(&dev->t10_pr.aptpl_reg_lock);
896 INIT_LIST_HEAD(&dev->t10_alua.tg_pt_gps_list);
897 spin_lock_init(&dev->t10_alua.tg_pt_gps_lock);
Hannes Reineckec66094b2013-12-17 09:18:49 +0100898 INIT_LIST_HEAD(&dev->t10_alua.lba_map_list);
899 spin_lock_init(&dev->t10_alua.lba_map_lock);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400900
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400901 dev->t10_wwn.t10_dev = dev;
902 dev->t10_alua.t10_dev = dev;
903
904 dev->dev_attrib.da_dev = dev;
Tregaron Baylyadfa9572013-01-31 15:30:24 -0700905 dev->dev_attrib.emulate_model_alias = DA_EMULATE_MODEL_ALIAS;
Christoph Hellwig814e5b42015-04-20 15:00:30 +0200906 dev->dev_attrib.emulate_dpo = 1;
907 dev->dev_attrib.emulate_fua_write = 1;
908 dev->dev_attrib.emulate_fua_read = 1;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400909 dev->dev_attrib.emulate_write_cache = DA_EMULATE_WRITE_CACHE;
910 dev->dev_attrib.emulate_ua_intlck_ctrl = DA_EMULATE_UA_INTLLCK_CTRL;
911 dev->dev_attrib.emulate_tas = DA_EMULATE_TAS;
912 dev->dev_attrib.emulate_tpu = DA_EMULATE_TPU;
913 dev->dev_attrib.emulate_tpws = DA_EMULATE_TPWS;
Nicholas Bellinger0123a9e2013-08-20 14:24:09 -0700914 dev->dev_attrib.emulate_caw = DA_EMULATE_CAW;
Nicholas Bellingerd397a442013-08-22 14:17:20 -0700915 dev->dev_attrib.emulate_3pc = DA_EMULATE_3PC;
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +0000916 dev->dev_attrib.pi_prot_type = TARGET_DIF_TYPE0_PROT;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400917 dev->dev_attrib.enforce_pr_isids = DA_ENFORCE_PR_ISIDS;
Nicholas Bellinger92404e62014-10-04 01:06:08 +0000918 dev->dev_attrib.force_pr_aptpl = DA_FORCE_PR_APTPL;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400919 dev->dev_attrib.is_nonrot = DA_IS_NONROT;
920 dev->dev_attrib.emulate_rest_reord = DA_EMULATE_REST_REORD;
921 dev->dev_attrib.max_unmap_lba_count = DA_MAX_UNMAP_LBA_COUNT;
922 dev->dev_attrib.max_unmap_block_desc_count =
923 DA_MAX_UNMAP_BLOCK_DESC_COUNT;
924 dev->dev_attrib.unmap_granularity = DA_UNMAP_GRANULARITY_DEFAULT;
925 dev->dev_attrib.unmap_granularity_alignment =
926 DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT;
Nicholas Bellinger773cbaf2012-11-15 11:02:49 -0800927 dev->dev_attrib.max_write_same_len = DA_MAX_WRITE_SAME_LEN;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400928
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800929 xcopy_lun = &dev->xcopy_lun;
930 xcopy_lun->lun_se_dev = dev;
Nicholas Bellinger4863e522013-11-08 13:10:44 -0800931 spin_lock_init(&xcopy_lun->lun_sep_lock);
932 init_completion(&xcopy_lun->lun_ref_comp);
933
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400934 return dev;
935}
936
937int target_configure_device(struct se_device *dev)
938{
939 struct se_hba *hba = dev->se_hba;
940 int ret;
941
942 if (dev->dev_flags & DF_CONFIGURED) {
943 pr_err("se_dev->se_dev_ptr already set for storage"
944 " object\n");
945 return -EEXIST;
946 }
947
948 ret = dev->transport->configure_device(dev);
949 if (ret)
950 goto out;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400951 /*
952 * XXX: there is not much point to have two different values here..
953 */
954 dev->dev_attrib.block_size = dev->dev_attrib.hw_block_size;
955 dev->dev_attrib.queue_depth = dev->dev_attrib.hw_queue_depth;
956
957 /*
958 * Align max_hw_sectors down to PAGE_SIZE I/O transfers
959 */
960 dev->dev_attrib.hw_max_sectors =
961 se_dev_align_max_sectors(dev->dev_attrib.hw_max_sectors,
962 dev->dev_attrib.hw_block_size);
Nicholas Bellinger046ba642015-01-06 16:10:37 -0800963 dev->dev_attrib.optimal_sectors = dev->dev_attrib.hw_max_sectors;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400964
965 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
966 dev->creation_time = get_jiffies_64();
967
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400968 ret = core_setup_alua(dev);
969 if (ret)
970 goto out;
971
972 /*
973 * Startup the struct se_device processing thread
974 */
975 dev->tmr_wq = alloc_workqueue("tmr-%s", WQ_MEM_RECLAIM | WQ_UNBOUND, 1,
976 dev->transport->name);
977 if (!dev->tmr_wq) {
978 pr_err("Unable to create tmr workqueue for %s\n",
979 dev->transport->name);
980 ret = -ENOMEM;
981 goto out_free_alua;
982 }
983
984 /*
985 * Setup work_queue for QUEUE_FULL
986 */
987 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
988
989 /*
990 * Preload the initial INQUIRY const values if we are doing
991 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
992 * passthrough because this is being provided by the backend LLD.
993 */
Andy Grovera3541702015-05-19 14:44:41 -0700994 if (!(dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH)) {
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400995 strncpy(&dev->t10_wwn.vendor[0], "LIO-ORG", 8);
996 strncpy(&dev->t10_wwn.model[0],
997 dev->transport->inquiry_prod, 16);
998 strncpy(&dev->t10_wwn.revision[0],
999 dev->transport->inquiry_rev, 4);
1000 }
1001
1002 scsi_dump_inquiry(dev);
1003
1004 spin_lock(&hba->device_lock);
1005 hba->dev_count++;
1006 spin_unlock(&hba->device_lock);
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -07001007
1008 mutex_lock(&g_device_mutex);
1009 list_add_tail(&dev->g_dev_node, &g_device_list);
1010 mutex_unlock(&g_device_mutex);
1011
Nicholas Bellinger5f7da042015-03-05 03:28:24 +00001012 dev->dev_flags |= DF_CONFIGURED;
1013
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001014 return 0;
1015
1016out_free_alua:
1017 core_alua_free_lu_gp_mem(dev);
1018out:
1019 se_release_vpd_for_dev(dev);
1020 return ret;
1021}
1022
1023void target_free_device(struct se_device *dev)
1024{
1025 struct se_hba *hba = dev->se_hba;
1026
1027 WARN_ON(!list_empty(&dev->dev_sep_list));
1028
1029 if (dev->dev_flags & DF_CONFIGURED) {
1030 destroy_workqueue(dev->tmr_wq);
1031
Nicholas Bellingerd9ea32b2013-08-22 11:33:37 -07001032 mutex_lock(&g_device_mutex);
1033 list_del(&dev->g_dev_node);
1034 mutex_unlock(&g_device_mutex);
1035
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001036 spin_lock(&hba->device_lock);
1037 hba->dev_count--;
1038 spin_unlock(&hba->device_lock);
1039 }
1040
1041 core_alua_free_lu_gp_mem(dev);
Hannes Reinecke229d4f12013-12-17 09:18:50 +01001042 core_alua_set_lba_map(dev, NULL, 0, 0);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001043 core_scsi3_free_all_registrations(dev);
1044 se_release_vpd_for_dev(dev);
1045
Nicholas Bellinger2ed22c92014-01-08 18:19:31 +00001046 if (dev->transport->free_prot)
1047 dev->transport->free_prot(dev);
1048
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001049 dev->transport->free_device(dev);
1050}
1051
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001052int core_dev_setup_virtual_lun0(void)
1053{
1054 struct se_hba *hba;
1055 struct se_device *dev;
Andy Groverdb5d1c32013-05-28 16:55:20 -07001056 char buf[] = "rd_pages=8,rd_nullio=1";
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001057 int ret;
1058
Andy Grover6708bb22011-06-08 10:36:43 -07001059 hba = core_alloc_hba("rd_mcp", 0, HBA_FLAGS_INTERNAL_USE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001060 if (IS_ERR(hba))
1061 return PTR_ERR(hba);
1062
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001063 dev = target_alloc_device(hba, "virt_lun0");
1064 if (!dev) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001065 ret = -ENOMEM;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001066 goto out_free_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001067 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001068
Christoph Hellwig0a06d432015-05-10 18:14:56 +02001069 hba->backend->ops->set_configfs_dev_params(dev, buf, sizeof(buf));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001070
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001071 ret = target_configure_device(dev);
1072 if (ret)
1073 goto out_free_se_dev;
1074
1075 lun0_hba = hba;
Andy Grovere3d6f902011-07-19 08:55:10 +00001076 g_lun0_dev = dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001077 return 0;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001078
1079out_free_se_dev:
1080 target_free_device(dev);
1081out_free_hba:
1082 core_delete_hba(hba);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 return ret;
1084}
1085
1086
1087void core_dev_release_virtual_lun0(void)
1088{
Andy Grovere3d6f902011-07-19 08:55:10 +00001089 struct se_hba *hba = lun0_hba;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001090
Andy Grover6708bb22011-06-08 10:36:43 -07001091 if (!hba)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001092 return;
1093
Andy Grovere3d6f902011-07-19 08:55:10 +00001094 if (g_lun0_dev)
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001095 target_free_device(g_lun0_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001096 core_delete_hba(hba);
1097}
Andy Grover7bfea53b2015-05-19 14:44:40 -07001098
1099/*
1100 * Common CDB parsing for kernel and user passthrough.
1101 */
1102sense_reason_t
1103passthrough_parse_cdb(struct se_cmd *cmd,
1104 sense_reason_t (*exec_cmd)(struct se_cmd *cmd))
1105{
1106 unsigned char *cdb = cmd->t_task_cdb;
1107
1108 /*
1109 * Clear a lun set in the cdb if the initiator talking to use spoke
1110 * and old standards version, as we can't assume the underlying device
1111 * won't choke up on it.
1112 */
1113 switch (cdb[0]) {
1114 case READ_10: /* SBC - RDProtect */
1115 case READ_12: /* SBC - RDProtect */
1116 case READ_16: /* SBC - RDProtect */
1117 case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */
1118 case VERIFY: /* SBC - VRProtect */
1119 case VERIFY_16: /* SBC - VRProtect */
1120 case WRITE_VERIFY: /* SBC - VRProtect */
1121 case WRITE_VERIFY_12: /* SBC - VRProtect */
1122 case MAINTENANCE_IN: /* SPC - Parameter Data Format for SA RTPG */
1123 break;
1124 default:
1125 cdb[1] &= 0x1f; /* clear logical unit number */
1126 break;
1127 }
1128
1129 /*
1130 * For REPORT LUNS we always need to emulate the response, for everything
1131 * else, pass it up.
1132 */
1133 if (cdb[0] == REPORT_LUNS) {
1134 cmd->execute_cmd = spc_emulate_report_luns;
1135 return TCM_NO_SENSE;
1136 }
1137
1138 /* Set DATA_CDB flag for ops that should have it */
1139 switch (cdb[0]) {
1140 case READ_6:
1141 case READ_10:
1142 case READ_12:
1143 case READ_16:
1144 case WRITE_6:
1145 case WRITE_10:
1146 case WRITE_12:
1147 case WRITE_16:
1148 case WRITE_VERIFY:
1149 case WRITE_VERIFY_12:
1150 case 0x8e: /* WRITE_VERIFY_16 */
1151 case COMPARE_AND_WRITE:
1152 case XDWRITEREAD_10:
1153 cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1154 break;
1155 case VARIABLE_LENGTH_CMD:
1156 switch (get_unaligned_be16(&cdb[8])) {
1157 case READ_32:
1158 case WRITE_32:
1159 case 0x0c: /* WRITE_VERIFY_32 */
1160 case XDWRITEREAD_32:
1161 cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1162 break;
1163 }
1164 }
1165
1166 cmd->execute_cmd = exec_cmd;
1167
1168 return TCM_NO_SENSE;
1169}
1170EXPORT_SYMBOL(passthrough_parse_cdb);