• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3  * Filename:  target_core_device.c (based on iscsi_target_device.c)
4  *
5  * This file contains the TCM Virtual Device and Disk Transport
6  * agnostic related functions.
7  *
8  * (c) Copyright 2003-2013 Datera, Inc.
9  *
10  * Nicholas A. Bellinger <nab@kernel.org>
11  *
12  ******************************************************************************/
13 
14 #include <linux/net.h>
15 #include <linux/string.h>
16 #include <linux/delay.h>
17 #include <linux/timer.h>
18 #include <linux/slab.h>
19 #include <linux/spinlock.h>
20 #include <linux/kthread.h>
21 #include <linux/in.h>
22 #include <linux/export.h>
23 #include <linux/t10-pi.h>
24 #include <asm/unaligned.h>
25 #include <net/sock.h>
26 #include <net/tcp.h>
27 #include <scsi/scsi_common.h>
28 #include <scsi/scsi_proto.h>
29 
30 #include <target/target_core_base.h>
31 #include <target/target_core_backend.h>
32 #include <target/target_core_fabric.h>
33 
34 #include "target_core_internal.h"
35 #include "target_core_alua.h"
36 #include "target_core_pr.h"
37 #include "target_core_ua.h"
38 
39 static DEFINE_MUTEX(device_mutex);
40 static LIST_HEAD(device_list);
41 static DEFINE_IDR(devices_idr);
42 
43 static struct se_hba *lun0_hba;
44 /* not static, needed by tpg.c */
45 struct se_device *g_lun0_dev;
46 
47 sense_reason_t
transport_lookup_cmd_lun(struct se_cmd * se_cmd)48 transport_lookup_cmd_lun(struct se_cmd *se_cmd)
49 {
50 	struct se_lun *se_lun = NULL;
51 	struct se_session *se_sess = se_cmd->se_sess;
52 	struct se_node_acl *nacl = se_sess->se_node_acl;
53 	struct se_dev_entry *deve;
54 	sense_reason_t ret = TCM_NO_SENSE;
55 
56 	rcu_read_lock();
57 	deve = target_nacl_find_deve(nacl, se_cmd->orig_fe_lun);
58 	if (deve) {
59 		atomic_long_inc(&deve->total_cmds);
60 
61 		if (se_cmd->data_direction == DMA_TO_DEVICE)
62 			atomic_long_add(se_cmd->data_length,
63 					&deve->write_bytes);
64 		else if (se_cmd->data_direction == DMA_FROM_DEVICE)
65 			atomic_long_add(se_cmd->data_length,
66 					&deve->read_bytes);
67 
68 		if ((se_cmd->data_direction == DMA_TO_DEVICE) &&
69 		    deve->lun_access_ro) {
70 			pr_err("TARGET_CORE[%s]: Detected WRITE_PROTECTED LUN"
71 				" Access for 0x%08llx\n",
72 				se_cmd->se_tfo->fabric_name,
73 				se_cmd->orig_fe_lun);
74 			rcu_read_unlock();
75 			return TCM_WRITE_PROTECTED;
76 		}
77 
78 		se_lun = rcu_dereference(deve->se_lun);
79 
80 		if (!percpu_ref_tryget_live(&se_lun->lun_ref)) {
81 			se_lun = NULL;
82 			goto out_unlock;
83 		}
84 
85 		se_cmd->se_lun = se_lun;
86 		se_cmd->pr_res_key = deve->pr_res_key;
87 		se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
88 		se_cmd->lun_ref_active = true;
89 	}
90 out_unlock:
91 	rcu_read_unlock();
92 
93 	if (!se_lun) {
94 		/*
95 		 * Use the se_portal_group->tpg_virt_lun0 to allow for
96 		 * REPORT_LUNS, et al to be returned when no active
97 		 * MappedLUN=0 exists for this Initiator Port.
98 		 */
99 		if (se_cmd->orig_fe_lun != 0) {
100 			pr_err("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
101 				" Access for 0x%08llx from %s\n",
102 				se_cmd->se_tfo->fabric_name,
103 				se_cmd->orig_fe_lun,
104 				nacl->initiatorname);
105 			return TCM_NON_EXISTENT_LUN;
106 		}
107 
108 		/*
109 		 * Force WRITE PROTECT for virtual LUN 0
110 		 */
111 		if ((se_cmd->data_direction != DMA_FROM_DEVICE) &&
112 		    (se_cmd->data_direction != DMA_NONE))
113 			return TCM_WRITE_PROTECTED;
114 
115 		se_lun = se_sess->se_tpg->tpg_virt_lun0;
116 		if (!percpu_ref_tryget_live(&se_lun->lun_ref))
117 			return TCM_NON_EXISTENT_LUN;
118 
119 		se_cmd->se_lun = se_sess->se_tpg->tpg_virt_lun0;
120 		se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
121 		se_cmd->lun_ref_active = true;
122 	}
123 	/*
124 	 * RCU reference protected by percpu se_lun->lun_ref taken above that
125 	 * must drop to zero (including initial reference) before this se_lun
126 	 * pointer can be kfree_rcu() by the final se_lun->lun_group put via
127 	 * target_core_fabric_configfs.c:target_fabric_port_release
128 	 */
129 	se_cmd->se_dev = rcu_dereference_raw(se_lun->lun_se_dev);
130 	atomic_long_inc(&se_cmd->se_dev->num_cmds);
131 
132 	if (se_cmd->data_direction == DMA_TO_DEVICE)
133 		atomic_long_add(se_cmd->data_length,
134 				&se_cmd->se_dev->write_bytes);
135 	else if (se_cmd->data_direction == DMA_FROM_DEVICE)
136 		atomic_long_add(se_cmd->data_length,
137 				&se_cmd->se_dev->read_bytes);
138 
139 	return ret;
140 }
141 EXPORT_SYMBOL(transport_lookup_cmd_lun);
142 
transport_lookup_tmr_lun(struct se_cmd * se_cmd)143 int transport_lookup_tmr_lun(struct se_cmd *se_cmd)
144 {
145 	struct se_dev_entry *deve;
146 	struct se_lun *se_lun = NULL;
147 	struct se_session *se_sess = se_cmd->se_sess;
148 	struct se_node_acl *nacl = se_sess->se_node_acl;
149 	struct se_tmr_req *se_tmr = se_cmd->se_tmr_req;
150 
151 	rcu_read_lock();
152 	deve = target_nacl_find_deve(nacl, se_cmd->orig_fe_lun);
153 	if (deve) {
154 		se_lun = rcu_dereference(deve->se_lun);
155 
156 		if (!percpu_ref_tryget_live(&se_lun->lun_ref)) {
157 			se_lun = NULL;
158 			goto out_unlock;
159 		}
160 
161 		se_cmd->se_lun = se_lun;
162 		se_cmd->pr_res_key = deve->pr_res_key;
163 		se_cmd->se_cmd_flags |= SCF_SE_LUN_CMD;
164 		se_cmd->lun_ref_active = true;
165 	}
166 out_unlock:
167 	rcu_read_unlock();
168 
169 	if (!se_lun) {
170 		pr_debug("TARGET_CORE[%s]: Detected NON_EXISTENT_LUN"
171 			" Access for 0x%08llx for %s\n",
172 			se_cmd->se_tfo->fabric_name,
173 			se_cmd->orig_fe_lun,
174 			nacl->initiatorname);
175 		return -ENODEV;
176 	}
177 	se_cmd->se_dev = rcu_dereference_raw(se_lun->lun_se_dev);
178 	se_tmr->tmr_dev = rcu_dereference_raw(se_lun->lun_se_dev);
179 
180 	return 0;
181 }
182 EXPORT_SYMBOL(transport_lookup_tmr_lun);
183 
target_lun_is_rdonly(struct se_cmd * cmd)184 bool target_lun_is_rdonly(struct se_cmd *cmd)
185 {
186 	struct se_session *se_sess = cmd->se_sess;
187 	struct se_dev_entry *deve;
188 	bool ret;
189 
190 	rcu_read_lock();
191 	deve = target_nacl_find_deve(se_sess->se_node_acl, cmd->orig_fe_lun);
192 	ret = deve && deve->lun_access_ro;
193 	rcu_read_unlock();
194 
195 	return ret;
196 }
197 EXPORT_SYMBOL(target_lun_is_rdonly);
198 
199 /*
200  * This function is called from core_scsi3_emulate_pro_register_and_move()
201  * and core_scsi3_decode_spec_i_port(), and will increment &deve->pr_kref
202  * when a matching rtpi is found.
203  */
core_get_se_deve_from_rtpi(struct se_node_acl * nacl,u16 rtpi)204 struct se_dev_entry *core_get_se_deve_from_rtpi(
205 	struct se_node_acl *nacl,
206 	u16 rtpi)
207 {
208 	struct se_dev_entry *deve;
209 	struct se_lun *lun;
210 	struct se_portal_group *tpg = nacl->se_tpg;
211 
212 	rcu_read_lock();
213 	hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
214 		lun = rcu_dereference(deve->se_lun);
215 		if (!lun) {
216 			pr_err("%s device entries device pointer is"
217 				" NULL, but Initiator has access.\n",
218 				tpg->se_tpg_tfo->fabric_name);
219 			continue;
220 		}
221 		if (lun->lun_rtpi != rtpi)
222 			continue;
223 
224 		kref_get(&deve->pr_kref);
225 		rcu_read_unlock();
226 
227 		return deve;
228 	}
229 	rcu_read_unlock();
230 
231 	return NULL;
232 }
233 
core_free_device_list_for_node(struct se_node_acl * nacl,struct se_portal_group * tpg)234 void core_free_device_list_for_node(
235 	struct se_node_acl *nacl,
236 	struct se_portal_group *tpg)
237 {
238 	struct se_dev_entry *deve;
239 
240 	mutex_lock(&nacl->lun_entry_mutex);
241 	hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
242 		struct se_lun *lun = rcu_dereference_check(deve->se_lun,
243 					lockdep_is_held(&nacl->lun_entry_mutex));
244 		core_disable_device_list_for_node(lun, deve, nacl, tpg);
245 	}
246 	mutex_unlock(&nacl->lun_entry_mutex);
247 }
248 
core_update_device_list_access(u64 mapped_lun,bool lun_access_ro,struct se_node_acl * nacl)249 void core_update_device_list_access(
250 	u64 mapped_lun,
251 	bool lun_access_ro,
252 	struct se_node_acl *nacl)
253 {
254 	struct se_dev_entry *deve;
255 
256 	mutex_lock(&nacl->lun_entry_mutex);
257 	deve = target_nacl_find_deve(nacl, mapped_lun);
258 	if (deve)
259 		deve->lun_access_ro = lun_access_ro;
260 	mutex_unlock(&nacl->lun_entry_mutex);
261 }
262 
263 /*
264  * Called with rcu_read_lock or nacl->device_list_lock held.
265  */
target_nacl_find_deve(struct se_node_acl * nacl,u64 mapped_lun)266 struct se_dev_entry *target_nacl_find_deve(struct se_node_acl *nacl, u64 mapped_lun)
267 {
268 	struct se_dev_entry *deve;
269 
270 	hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link)
271 		if (deve->mapped_lun == mapped_lun)
272 			return deve;
273 
274 	return NULL;
275 }
276 EXPORT_SYMBOL(target_nacl_find_deve);
277 
target_pr_kref_release(struct kref * kref)278 void target_pr_kref_release(struct kref *kref)
279 {
280 	struct se_dev_entry *deve = container_of(kref, struct se_dev_entry,
281 						 pr_kref);
282 	complete(&deve->pr_comp);
283 }
284 
285 static void
target_luns_data_has_changed(struct se_node_acl * nacl,struct se_dev_entry * new,bool skip_new)286 target_luns_data_has_changed(struct se_node_acl *nacl, struct se_dev_entry *new,
287 			     bool skip_new)
288 {
289 	struct se_dev_entry *tmp;
290 
291 	rcu_read_lock();
292 	hlist_for_each_entry_rcu(tmp, &nacl->lun_entry_hlist, link) {
293 		if (skip_new && tmp == new)
294 			continue;
295 		core_scsi3_ua_allocate(tmp, 0x3F,
296 				       ASCQ_3FH_REPORTED_LUNS_DATA_HAS_CHANGED);
297 	}
298 	rcu_read_unlock();
299 }
300 
core_enable_device_list_for_node(struct se_lun * lun,struct se_lun_acl * lun_acl,u64 mapped_lun,bool lun_access_ro,struct se_node_acl * nacl,struct se_portal_group * tpg)301 int core_enable_device_list_for_node(
302 	struct se_lun *lun,
303 	struct se_lun_acl *lun_acl,
304 	u64 mapped_lun,
305 	bool lun_access_ro,
306 	struct se_node_acl *nacl,
307 	struct se_portal_group *tpg)
308 {
309 	struct se_dev_entry *orig, *new;
310 
311 	new = kzalloc(sizeof(*new), GFP_KERNEL);
312 	if (!new) {
313 		pr_err("Unable to allocate se_dev_entry memory\n");
314 		return -ENOMEM;
315 	}
316 
317 	spin_lock_init(&new->ua_lock);
318 	INIT_LIST_HEAD(&new->ua_list);
319 	INIT_LIST_HEAD(&new->lun_link);
320 
321 	new->mapped_lun = mapped_lun;
322 	kref_init(&new->pr_kref);
323 	init_completion(&new->pr_comp);
324 
325 	new->lun_access_ro = lun_access_ro;
326 	new->creation_time = get_jiffies_64();
327 	new->attach_count++;
328 
329 	mutex_lock(&nacl->lun_entry_mutex);
330 	orig = target_nacl_find_deve(nacl, mapped_lun);
331 	if (orig && orig->se_lun) {
332 		struct se_lun *orig_lun = rcu_dereference_check(orig->se_lun,
333 					lockdep_is_held(&nacl->lun_entry_mutex));
334 
335 		if (orig_lun != lun) {
336 			pr_err("Existing orig->se_lun doesn't match new lun"
337 			       " for dynamic -> explicit NodeACL conversion:"
338 				" %s\n", nacl->initiatorname);
339 			mutex_unlock(&nacl->lun_entry_mutex);
340 			kfree(new);
341 			return -EINVAL;
342 		}
343 		if (orig->se_lun_acl != NULL) {
344 			pr_warn_ratelimited("Detected existing explicit"
345 				" se_lun_acl->se_lun_group reference for %s"
346 				" mapped_lun: %llu, failing\n",
347 				 nacl->initiatorname, mapped_lun);
348 			mutex_unlock(&nacl->lun_entry_mutex);
349 			kfree(new);
350 			return -EINVAL;
351 		}
352 
353 		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);
358 
359 		spin_lock(&lun->lun_deve_lock);
360 		list_del(&orig->lun_link);
361 		list_add_tail(&new->lun_link, &lun->lun_deve_list);
362 		spin_unlock(&lun->lun_deve_lock);
363 
364 		kref_put(&orig->pr_kref, target_pr_kref_release);
365 		wait_for_completion(&orig->pr_comp);
366 
367 		target_luns_data_has_changed(nacl, new, true);
368 		kfree_rcu(orig, rcu_head);
369 		return 0;
370 	}
371 
372 	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);
376 
377 	spin_lock(&lun->lun_deve_lock);
378 	list_add_tail(&new->lun_link, &lun->lun_deve_list);
379 	spin_unlock(&lun->lun_deve_lock);
380 
381 	target_luns_data_has_changed(nacl, new, true);
382 	return 0;
383 }
384 
core_disable_device_list_for_node(struct se_lun * lun,struct se_dev_entry * orig,struct se_node_acl * nacl,struct se_portal_group * tpg)385 void core_disable_device_list_for_node(
386 	struct se_lun *lun,
387 	struct se_dev_entry *orig,
388 	struct se_node_acl *nacl,
389 	struct se_portal_group *tpg)
390 {
391 	/*
392 	 * rcu_dereference_raw protected by se_lun->lun_group symlink
393 	 * reference to se_device->dev_group.
394 	 */
395 	struct se_device *dev = rcu_dereference_raw(lun->lun_se_dev);
396 
397 	lockdep_assert_held(&nacl->lun_entry_mutex);
398 
399 	/*
400 	 * If the MappedLUN entry is being disabled, the entry in
401 	 * lun->lun_deve_list must be removed now before clearing the
402 	 * struct se_dev_entry pointers below as logic in
403 	 * core_alua_do_transition_tg_pt() depends on these being present.
404 	 *
405 	 * deve->se_lun_acl will be NULL for demo-mode created LUNs
406 	 * that have not been explicitly converted to MappedLUNs ->
407 	 * struct se_lun_acl, but we remove deve->lun_link from
408 	 * lun->lun_deve_list. This also means that active UAs and
409 	 * NodeACL context specific PR metadata for demo-mode
410 	 * MappedLUN *deve will be released below..
411 	 */
412 	spin_lock(&lun->lun_deve_lock);
413 	list_del(&orig->lun_link);
414 	spin_unlock(&lun->lun_deve_lock);
415 	/*
416 	 * Disable struct se_dev_entry LUN ACL mapping
417 	 */
418 	core_scsi3_ua_release_all(orig);
419 
420 	hlist_del_rcu(&orig->link);
421 	clear_bit(DEF_PR_REG_ACTIVE, &orig->deve_flags);
422 	orig->lun_access_ro = false;
423 	orig->creation_time = 0;
424 	orig->attach_count--;
425 	/*
426 	 * Before firing off RCU callback, wait for any in process SPEC_I_PT=1
427 	 * or REGISTER_AND_MOVE PR operation to complete.
428 	 */
429 	kref_put(&orig->pr_kref, target_pr_kref_release);
430 	wait_for_completion(&orig->pr_comp);
431 
432 	rcu_assign_pointer(orig->se_lun, NULL);
433 	rcu_assign_pointer(orig->se_lun_acl, NULL);
434 
435 	kfree_rcu(orig, rcu_head);
436 
437 	core_scsi3_free_pr_reg_from_nacl(dev, nacl);
438 	target_luns_data_has_changed(nacl, NULL, false);
439 }
440 
441 /*      core_clear_lun_from_tpg():
442  *
443  *
444  */
core_clear_lun_from_tpg(struct se_lun * lun,struct se_portal_group * tpg)445 void core_clear_lun_from_tpg(struct se_lun *lun, struct se_portal_group *tpg)
446 {
447 	struct se_node_acl *nacl;
448 	struct se_dev_entry *deve;
449 
450 	mutex_lock(&tpg->acl_node_mutex);
451 	list_for_each_entry(nacl, &tpg->acl_node_list, acl_list) {
452 
453 		mutex_lock(&nacl->lun_entry_mutex);
454 		hlist_for_each_entry_rcu(deve, &nacl->lun_entry_hlist, link) {
455 			struct se_lun *tmp_lun = rcu_dereference_check(deve->se_lun,
456 					lockdep_is_held(&nacl->lun_entry_mutex));
457 
458 			if (lun != tmp_lun)
459 				continue;
460 
461 			core_disable_device_list_for_node(lun, deve, nacl, tpg);
462 		}
463 		mutex_unlock(&nacl->lun_entry_mutex);
464 	}
465 	mutex_unlock(&tpg->acl_node_mutex);
466 }
467 
core_alloc_rtpi(struct se_lun * lun,struct se_device * dev)468 int core_alloc_rtpi(struct se_lun *lun, struct se_device *dev)
469 {
470 	struct se_lun *tmp;
471 
472 	spin_lock(&dev->se_port_lock);
473 	if (dev->export_count == 0x0000ffff) {
474 		pr_warn("Reached dev->dev_port_count =="
475 				" 0x0000ffff\n");
476 		spin_unlock(&dev->se_port_lock);
477 		return -ENOSPC;
478 	}
479 again:
480 	/*
481 	 * Allocate the next RELATIVE TARGET PORT IDENTIFIER for this struct se_device
482 	 * Here is the table from spc4r17 section 7.7.3.8.
483 	 *
484 	 *    Table 473 -- RELATIVE TARGET PORT IDENTIFIER field
485 	 *
486 	 * Code      Description
487 	 * 0h        Reserved
488 	 * 1h        Relative port 1, historically known as port A
489 	 * 2h        Relative port 2, historically known as port B
490 	 * 3h to FFFFh    Relative port 3 through 65 535
491 	 */
492 	lun->lun_rtpi = dev->dev_rpti_counter++;
493 	if (!lun->lun_rtpi)
494 		goto again;
495 
496 	list_for_each_entry(tmp, &dev->dev_sep_list, lun_dev_link) {
497 		/*
498 		 * Make sure RELATIVE TARGET PORT IDENTIFIER is unique
499 		 * for 16-bit wrap..
500 		 */
501 		if (lun->lun_rtpi == tmp->lun_rtpi)
502 			goto again;
503 	}
504 	spin_unlock(&dev->se_port_lock);
505 
506 	return 0;
507 }
508 
se_release_vpd_for_dev(struct se_device * dev)509 static void se_release_vpd_for_dev(struct se_device *dev)
510 {
511 	struct t10_vpd *vpd, *vpd_tmp;
512 
513 	spin_lock(&dev->t10_wwn.t10_vpd_lock);
514 	list_for_each_entry_safe(vpd, vpd_tmp,
515 			&dev->t10_wwn.t10_vpd_list, vpd_list) {
516 		list_del(&vpd->vpd_list);
517 		kfree(vpd);
518 	}
519 	spin_unlock(&dev->t10_wwn.t10_vpd_lock);
520 }
521 
se_dev_align_max_sectors(u32 max_sectors,u32 block_size)522 static u32 se_dev_align_max_sectors(u32 max_sectors, u32 block_size)
523 {
524 	u32 aligned_max_sectors;
525 	u32 alignment;
526 	/*
527 	 * Limit max_sectors to a PAGE_SIZE aligned value for modern
528 	 * transport_allocate_data_tasks() operation.
529 	 */
530 	alignment = max(1ul, PAGE_SIZE / block_size);
531 	aligned_max_sectors = rounddown(max_sectors, alignment);
532 
533 	if (max_sectors != aligned_max_sectors)
534 		pr_info("Rounding down aligned max_sectors from %u to %u\n",
535 			max_sectors, aligned_max_sectors);
536 
537 	return aligned_max_sectors;
538 }
539 
core_dev_add_lun(struct se_portal_group * tpg,struct se_device * dev,struct se_lun * lun)540 int core_dev_add_lun(
541 	struct se_portal_group *tpg,
542 	struct se_device *dev,
543 	struct se_lun *lun)
544 {
545 	int rc;
546 
547 	rc = core_tpg_add_lun(tpg, lun, false, dev);
548 	if (rc < 0)
549 		return rc;
550 
551 	pr_debug("%s_TPG[%u]_LUN[%llu] - Activated %s Logical Unit from"
552 		" CORE HBA: %u\n", tpg->se_tpg_tfo->fabric_name,
553 		tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
554 		tpg->se_tpg_tfo->fabric_name, dev->se_hba->hba_id);
555 	/*
556 	 * Update LUN maps for dynamically added initiators when
557 	 * generate_node_acl is enabled.
558 	 */
559 	if (tpg->se_tpg_tfo->tpg_check_demo_mode(tpg)) {
560 		struct se_node_acl *acl;
561 
562 		mutex_lock(&tpg->acl_node_mutex);
563 		list_for_each_entry(acl, &tpg->acl_node_list, acl_list) {
564 			if (acl->dynamic_node_acl &&
565 			    (!tpg->se_tpg_tfo->tpg_check_demo_mode_login_only ||
566 			     !tpg->se_tpg_tfo->tpg_check_demo_mode_login_only(tpg))) {
567 				core_tpg_add_node_to_devs(acl, tpg, lun);
568 			}
569 		}
570 		mutex_unlock(&tpg->acl_node_mutex);
571 	}
572 
573 	return 0;
574 }
575 
576 /*      core_dev_del_lun():
577  *
578  *
579  */
core_dev_del_lun(struct se_portal_group * tpg,struct se_lun * lun)580 void core_dev_del_lun(
581 	struct se_portal_group *tpg,
582 	struct se_lun *lun)
583 {
584 	pr_debug("%s_TPG[%u]_LUN[%llu] - Deactivating %s Logical Unit from"
585 		" device object\n", tpg->se_tpg_tfo->fabric_name,
586 		tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
587 		tpg->se_tpg_tfo->fabric_name);
588 
589 	core_tpg_remove_lun(tpg, lun);
590 }
591 
core_dev_init_initiator_node_lun_acl(struct se_portal_group * tpg,struct se_node_acl * nacl,u64 mapped_lun,int * ret)592 struct se_lun_acl *core_dev_init_initiator_node_lun_acl(
593 	struct se_portal_group *tpg,
594 	struct se_node_acl *nacl,
595 	u64 mapped_lun,
596 	int *ret)
597 {
598 	struct se_lun_acl *lacl;
599 
600 	if (strlen(nacl->initiatorname) >= TRANSPORT_IQN_LEN) {
601 		pr_err("%s InitiatorName exceeds maximum size.\n",
602 			tpg->se_tpg_tfo->fabric_name);
603 		*ret = -EOVERFLOW;
604 		return NULL;
605 	}
606 	lacl = kzalloc(sizeof(struct se_lun_acl), GFP_KERNEL);
607 	if (!lacl) {
608 		pr_err("Unable to allocate memory for struct se_lun_acl.\n");
609 		*ret = -ENOMEM;
610 		return NULL;
611 	}
612 
613 	lacl->mapped_lun = mapped_lun;
614 	lacl->se_lun_nacl = nacl;
615 
616 	return lacl;
617 }
618 
core_dev_add_initiator_node_lun_acl(struct se_portal_group * tpg,struct se_lun_acl * lacl,struct se_lun * lun,bool lun_access_ro)619 int core_dev_add_initiator_node_lun_acl(
620 	struct se_portal_group *tpg,
621 	struct se_lun_acl *lacl,
622 	struct se_lun *lun,
623 	bool lun_access_ro)
624 {
625 	struct se_node_acl *nacl = lacl->se_lun_nacl;
626 	/*
627 	 * rcu_dereference_raw protected by se_lun->lun_group symlink
628 	 * reference to se_device->dev_group.
629 	 */
630 	struct se_device *dev = rcu_dereference_raw(lun->lun_se_dev);
631 
632 	if (!nacl)
633 		return -EINVAL;
634 
635 	if (lun->lun_access_ro)
636 		lun_access_ro = true;
637 
638 	lacl->se_lun = lun;
639 
640 	if (core_enable_device_list_for_node(lun, lacl, lacl->mapped_lun,
641 			lun_access_ro, nacl, tpg) < 0)
642 		return -EINVAL;
643 
644 	pr_debug("%s_TPG[%hu]_LUN[%llu->%llu] - Added %s ACL for "
645 		" InitiatorNode: %s\n", tpg->se_tpg_tfo->fabric_name,
646 		tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun, lacl->mapped_lun,
647 		lun_access_ro ? "RO" : "RW",
648 		nacl->initiatorname);
649 	/*
650 	 * Check to see if there are any existing persistent reservation APTPL
651 	 * pre-registrations that need to be enabled for this LUN ACL..
652 	 */
653 	core_scsi3_check_aptpl_registration(dev, tpg, lun, nacl,
654 					    lacl->mapped_lun);
655 	return 0;
656 }
657 
core_dev_del_initiator_node_lun_acl(struct se_lun * lun,struct se_lun_acl * lacl)658 int core_dev_del_initiator_node_lun_acl(
659 	struct se_lun *lun,
660 	struct se_lun_acl *lacl)
661 {
662 	struct se_portal_group *tpg = lun->lun_tpg;
663 	struct se_node_acl *nacl;
664 	struct se_dev_entry *deve;
665 
666 	nacl = lacl->se_lun_nacl;
667 	if (!nacl)
668 		return -EINVAL;
669 
670 	mutex_lock(&nacl->lun_entry_mutex);
671 	deve = target_nacl_find_deve(nacl, lacl->mapped_lun);
672 	if (deve)
673 		core_disable_device_list_for_node(lun, deve, nacl, tpg);
674 	mutex_unlock(&nacl->lun_entry_mutex);
675 
676 	pr_debug("%s_TPG[%hu]_LUN[%llu] - Removed ACL for"
677 		" InitiatorNode: %s Mapped LUN: %llu\n",
678 		tpg->se_tpg_tfo->fabric_name,
679 		tpg->se_tpg_tfo->tpg_get_tag(tpg), lun->unpacked_lun,
680 		nacl->initiatorname, lacl->mapped_lun);
681 
682 	return 0;
683 }
684 
core_dev_free_initiator_node_lun_acl(struct se_portal_group * tpg,struct se_lun_acl * lacl)685 void core_dev_free_initiator_node_lun_acl(
686 	struct se_portal_group *tpg,
687 	struct se_lun_acl *lacl)
688 {
689 	pr_debug("%s_TPG[%hu] - Freeing ACL for %s InitiatorNode: %s"
690 		" Mapped LUN: %llu\n", tpg->se_tpg_tfo->fabric_name,
691 		tpg->se_tpg_tfo->tpg_get_tag(tpg),
692 		tpg->se_tpg_tfo->fabric_name,
693 		lacl->se_lun_nacl->initiatorname, lacl->mapped_lun);
694 
695 	kfree(lacl);
696 }
697 
scsi_dump_inquiry(struct se_device * dev)698 static void scsi_dump_inquiry(struct se_device *dev)
699 {
700 	struct t10_wwn *wwn = &dev->t10_wwn;
701 	int device_type = dev->transport->get_device_type(dev);
702 
703 	/*
704 	 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
705 	 */
706 	pr_debug("  Vendor: %-" __stringify(INQUIRY_VENDOR_LEN) "s\n",
707 		wwn->vendor);
708 	pr_debug("  Model: %-" __stringify(INQUIRY_MODEL_LEN) "s\n",
709 		wwn->model);
710 	pr_debug("  Revision: %-" __stringify(INQUIRY_REVISION_LEN) "s\n",
711 		wwn->revision);
712 	pr_debug("  Type:   %s ", scsi_device_type(device_type));
713 }
714 
target_alloc_device(struct se_hba * hba,const char * name)715 struct se_device *target_alloc_device(struct se_hba *hba, const char *name)
716 {
717 	struct se_device *dev;
718 	struct se_lun *xcopy_lun;
719 	int i;
720 
721 	dev = hba->backend->ops->alloc_device(hba, name);
722 	if (!dev)
723 		return NULL;
724 
725 	dev->queues = kcalloc(nr_cpu_ids, sizeof(*dev->queues), GFP_KERNEL);
726 	if (!dev->queues) {
727 		dev->transport->free_device(dev);
728 		return NULL;
729 	}
730 
731 	dev->queue_cnt = nr_cpu_ids;
732 	for (i = 0; i < dev->queue_cnt; i++) {
733 		struct se_device_queue *q;
734 
735 		q = &dev->queues[i];
736 		INIT_LIST_HEAD(&q->state_list);
737 		spin_lock_init(&q->lock);
738 
739 		init_llist_head(&q->sq.cmd_list);
740 		INIT_WORK(&q->sq.work, target_queued_submit_work);
741 	}
742 
743 	dev->se_hba = hba;
744 	dev->transport = hba->backend->ops;
745 	dev->transport_flags = dev->transport->transport_flags_default;
746 	dev->prot_length = sizeof(struct t10_pi_tuple);
747 	dev->hba_index = hba->hba_index;
748 
749 	INIT_LIST_HEAD(&dev->dev_sep_list);
750 	INIT_LIST_HEAD(&dev->dev_tmr_list);
751 	INIT_LIST_HEAD(&dev->delayed_cmd_list);
752 	INIT_LIST_HEAD(&dev->qf_cmd_list);
753 	spin_lock_init(&dev->delayed_cmd_lock);
754 	spin_lock_init(&dev->dev_reservation_lock);
755 	spin_lock_init(&dev->se_port_lock);
756 	spin_lock_init(&dev->se_tmr_lock);
757 	spin_lock_init(&dev->qf_cmd_lock);
758 	sema_init(&dev->caw_sem, 1);
759 	INIT_LIST_HEAD(&dev->t10_wwn.t10_vpd_list);
760 	spin_lock_init(&dev->t10_wwn.t10_vpd_lock);
761 	INIT_LIST_HEAD(&dev->t10_pr.registration_list);
762 	INIT_LIST_HEAD(&dev->t10_pr.aptpl_reg_list);
763 	spin_lock_init(&dev->t10_pr.registration_lock);
764 	spin_lock_init(&dev->t10_pr.aptpl_reg_lock);
765 	INIT_LIST_HEAD(&dev->t10_alua.tg_pt_gps_list);
766 	spin_lock_init(&dev->t10_alua.tg_pt_gps_lock);
767 	INIT_LIST_HEAD(&dev->t10_alua.lba_map_list);
768 	spin_lock_init(&dev->t10_alua.lba_map_lock);
769 
770 	INIT_WORK(&dev->delayed_cmd_work, target_do_delayed_work);
771 	mutex_init(&dev->lun_reset_mutex);
772 
773 	dev->t10_wwn.t10_dev = dev;
774 	/*
775 	 * Use OpenFabrics IEEE Company ID: 00 14 05
776 	 */
777 	dev->t10_wwn.company_id = 0x001405;
778 
779 	dev->t10_alua.t10_dev = dev;
780 
781 	dev->dev_attrib.da_dev = dev;
782 	dev->dev_attrib.emulate_model_alias = DA_EMULATE_MODEL_ALIAS;
783 	dev->dev_attrib.emulate_dpo = 1;
784 	dev->dev_attrib.emulate_fua_write = 1;
785 	dev->dev_attrib.emulate_fua_read = 1;
786 	dev->dev_attrib.emulate_write_cache = DA_EMULATE_WRITE_CACHE;
787 	dev->dev_attrib.emulate_ua_intlck_ctrl = TARGET_UA_INTLCK_CTRL_CLEAR;
788 	dev->dev_attrib.emulate_tas = DA_EMULATE_TAS;
789 	dev->dev_attrib.emulate_tpu = DA_EMULATE_TPU;
790 	dev->dev_attrib.emulate_tpws = DA_EMULATE_TPWS;
791 	dev->dev_attrib.emulate_caw = DA_EMULATE_CAW;
792 	dev->dev_attrib.emulate_3pc = DA_EMULATE_3PC;
793 	dev->dev_attrib.emulate_pr = DA_EMULATE_PR;
794 	dev->dev_attrib.pi_prot_type = TARGET_DIF_TYPE0_PROT;
795 	dev->dev_attrib.enforce_pr_isids = DA_ENFORCE_PR_ISIDS;
796 	dev->dev_attrib.force_pr_aptpl = DA_FORCE_PR_APTPL;
797 	dev->dev_attrib.is_nonrot = DA_IS_NONROT;
798 	dev->dev_attrib.emulate_rest_reord = DA_EMULATE_REST_REORD;
799 	dev->dev_attrib.max_unmap_lba_count = DA_MAX_UNMAP_LBA_COUNT;
800 	dev->dev_attrib.max_unmap_block_desc_count =
801 		DA_MAX_UNMAP_BLOCK_DESC_COUNT;
802 	dev->dev_attrib.unmap_granularity = DA_UNMAP_GRANULARITY_DEFAULT;
803 	dev->dev_attrib.unmap_granularity_alignment =
804 				DA_UNMAP_GRANULARITY_ALIGNMENT_DEFAULT;
805 	dev->dev_attrib.unmap_zeroes_data =
806 				DA_UNMAP_ZEROES_DATA_DEFAULT;
807 	dev->dev_attrib.max_write_same_len = DA_MAX_WRITE_SAME_LEN;
808 
809 	xcopy_lun = &dev->xcopy_lun;
810 	rcu_assign_pointer(xcopy_lun->lun_se_dev, dev);
811 	init_completion(&xcopy_lun->lun_shutdown_comp);
812 	INIT_LIST_HEAD(&xcopy_lun->lun_deve_list);
813 	INIT_LIST_HEAD(&xcopy_lun->lun_dev_link);
814 	mutex_init(&xcopy_lun->lun_tg_pt_md_mutex);
815 	xcopy_lun->lun_tpg = &xcopy_pt_tpg;
816 
817 	/* Preload the default INQUIRY const values */
818 	strlcpy(dev->t10_wwn.vendor, "LIO-ORG", sizeof(dev->t10_wwn.vendor));
819 	strlcpy(dev->t10_wwn.model, dev->transport->inquiry_prod,
820 		sizeof(dev->t10_wwn.model));
821 	strlcpy(dev->t10_wwn.revision, dev->transport->inquiry_rev,
822 		sizeof(dev->t10_wwn.revision));
823 
824 	return dev;
825 }
826 
827 /*
828  * Check if the underlying struct block_device request_queue supports
829  * the QUEUE_FLAG_DISCARD bit for UNMAP/WRITE_SAME in SCSI + TRIM
830  * in ATA and we need to set TPE=1
831  */
target_configure_unmap_from_queue(struct se_dev_attrib * attrib,struct request_queue * q)832 bool target_configure_unmap_from_queue(struct se_dev_attrib *attrib,
833 				       struct request_queue *q)
834 {
835 	int block_size = queue_logical_block_size(q);
836 
837 	if (!blk_queue_discard(q))
838 		return false;
839 
840 	attrib->max_unmap_lba_count =
841 		q->limits.max_discard_sectors >> (ilog2(block_size) - 9);
842 	/*
843 	 * Currently hardcoded to 1 in Linux/SCSI code..
844 	 */
845 	attrib->max_unmap_block_desc_count = 1;
846 	attrib->unmap_granularity = q->limits.discard_granularity / block_size;
847 	attrib->unmap_granularity_alignment = q->limits.discard_alignment /
848 								block_size;
849 	return true;
850 }
851 EXPORT_SYMBOL(target_configure_unmap_from_queue);
852 
853 /*
854  * Convert from blocksize advertised to the initiator to the 512 byte
855  * units unconditionally used by the Linux block layer.
856  */
target_to_linux_sector(struct se_device * dev,sector_t lb)857 sector_t target_to_linux_sector(struct se_device *dev, sector_t lb)
858 {
859 	switch (dev->dev_attrib.block_size) {
860 	case 4096:
861 		return lb << 3;
862 	case 2048:
863 		return lb << 2;
864 	case 1024:
865 		return lb << 1;
866 	default:
867 		return lb;
868 	}
869 }
870 EXPORT_SYMBOL(target_to_linux_sector);
871 
872 struct devices_idr_iter {
873 	int (*fn)(struct se_device *dev, void *data);
874 	void *data;
875 };
876 
target_devices_idr_iter(int id,void * p,void * data)877 static int target_devices_idr_iter(int id, void *p, void *data)
878 	 __must_hold(&device_mutex)
879 {
880 	struct devices_idr_iter *iter = data;
881 	struct se_device *dev = p;
882 	struct config_item *item;
883 	int ret;
884 
885 	/*
886 	 * We add the device early to the idr, so it can be used
887 	 * by backend modules during configuration. We do not want
888 	 * to allow other callers to access partially setup devices,
889 	 * so we skip them here.
890 	 */
891 	if (!target_dev_configured(dev))
892 		return 0;
893 
894 	item = config_item_get_unless_zero(&dev->dev_group.cg_item);
895 	if (!item)
896 		return 0;
897 	mutex_unlock(&device_mutex);
898 
899 	ret = iter->fn(dev, iter->data);
900 	config_item_put(item);
901 
902 	mutex_lock(&device_mutex);
903 	return ret;
904 }
905 
906 /**
907  * target_for_each_device - iterate over configured devices
908  * @fn: iterator function
909  * @data: pointer to data that will be passed to fn
910  *
911  * fn must return 0 to continue looping over devices. non-zero will break
912  * from the loop and return that value to the caller.
913  */
target_for_each_device(int (* fn)(struct se_device * dev,void * data),void * data)914 int target_for_each_device(int (*fn)(struct se_device *dev, void *data),
915 			   void *data)
916 {
917 	struct devices_idr_iter iter = { .fn = fn, .data = data };
918 	int ret;
919 
920 	mutex_lock(&device_mutex);
921 	ret = idr_for_each(&devices_idr, target_devices_idr_iter, &iter);
922 	mutex_unlock(&device_mutex);
923 	return ret;
924 }
925 
target_configure_device(struct se_device * dev)926 int target_configure_device(struct se_device *dev)
927 {
928 	struct se_hba *hba = dev->se_hba;
929 	int ret, id;
930 
931 	if (target_dev_configured(dev)) {
932 		pr_err("se_dev->se_dev_ptr already set for storage"
933 				" object\n");
934 		return -EEXIST;
935 	}
936 
937 	/*
938 	 * Add early so modules like tcmu can use during its
939 	 * configuration.
940 	 */
941 	mutex_lock(&device_mutex);
942 	/*
943 	 * Use cyclic to try and avoid collisions with devices
944 	 * that were recently removed.
945 	 */
946 	id = idr_alloc_cyclic(&devices_idr, dev, 0, INT_MAX, GFP_KERNEL);
947 	mutex_unlock(&device_mutex);
948 	if (id < 0) {
949 		ret = -ENOMEM;
950 		goto out;
951 	}
952 	dev->dev_index = id;
953 
954 	ret = dev->transport->configure_device(dev);
955 	if (ret)
956 		goto out_free_index;
957 	/*
958 	 * XXX: there is not much point to have two different values here..
959 	 */
960 	dev->dev_attrib.block_size = dev->dev_attrib.hw_block_size;
961 	dev->dev_attrib.queue_depth = dev->dev_attrib.hw_queue_depth;
962 
963 	/*
964 	 * Align max_hw_sectors down to PAGE_SIZE I/O transfers
965 	 */
966 	dev->dev_attrib.hw_max_sectors =
967 		se_dev_align_max_sectors(dev->dev_attrib.hw_max_sectors,
968 					 dev->dev_attrib.hw_block_size);
969 	dev->dev_attrib.optimal_sectors = dev->dev_attrib.hw_max_sectors;
970 
971 	dev->creation_time = get_jiffies_64();
972 
973 	ret = core_setup_alua(dev);
974 	if (ret)
975 		goto out_destroy_device;
976 
977 	/*
978 	 * Setup work_queue for QUEUE_FULL
979 	 */
980 	INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
981 
982 	scsi_dump_inquiry(dev);
983 
984 	spin_lock(&hba->device_lock);
985 	hba->dev_count++;
986 	spin_unlock(&hba->device_lock);
987 
988 	dev->dev_flags |= DF_CONFIGURED;
989 
990 	return 0;
991 
992 out_destroy_device:
993 	dev->transport->destroy_device(dev);
994 out_free_index:
995 	mutex_lock(&device_mutex);
996 	idr_remove(&devices_idr, dev->dev_index);
997 	mutex_unlock(&device_mutex);
998 out:
999 	se_release_vpd_for_dev(dev);
1000 	return ret;
1001 }
1002 
target_free_device(struct se_device * dev)1003 void target_free_device(struct se_device *dev)
1004 {
1005 	struct se_hba *hba = dev->se_hba;
1006 
1007 	WARN_ON(!list_empty(&dev->dev_sep_list));
1008 
1009 	if (target_dev_configured(dev)) {
1010 		dev->transport->destroy_device(dev);
1011 
1012 		mutex_lock(&device_mutex);
1013 		idr_remove(&devices_idr, dev->dev_index);
1014 		mutex_unlock(&device_mutex);
1015 
1016 		spin_lock(&hba->device_lock);
1017 		hba->dev_count--;
1018 		spin_unlock(&hba->device_lock);
1019 	}
1020 
1021 	core_alua_free_lu_gp_mem(dev);
1022 	core_alua_set_lba_map(dev, NULL, 0, 0);
1023 	core_scsi3_free_all_registrations(dev);
1024 	se_release_vpd_for_dev(dev);
1025 
1026 	if (dev->transport->free_prot)
1027 		dev->transport->free_prot(dev);
1028 
1029 	kfree(dev->queues);
1030 	dev->transport->free_device(dev);
1031 }
1032 
core_dev_setup_virtual_lun0(void)1033 int core_dev_setup_virtual_lun0(void)
1034 {
1035 	struct se_hba *hba;
1036 	struct se_device *dev;
1037 	char buf[] = "rd_pages=8,rd_nullio=1,rd_dummy=1";
1038 	int ret;
1039 
1040 	hba = core_alloc_hba("rd_mcp", 0, HBA_FLAGS_INTERNAL_USE);
1041 	if (IS_ERR(hba))
1042 		return PTR_ERR(hba);
1043 
1044 	dev = target_alloc_device(hba, "virt_lun0");
1045 	if (!dev) {
1046 		ret = -ENOMEM;
1047 		goto out_free_hba;
1048 	}
1049 
1050 	hba->backend->ops->set_configfs_dev_params(dev, buf, sizeof(buf));
1051 
1052 	ret = target_configure_device(dev);
1053 	if (ret)
1054 		goto out_free_se_dev;
1055 
1056 	lun0_hba = hba;
1057 	g_lun0_dev = dev;
1058 	return 0;
1059 
1060 out_free_se_dev:
1061 	target_free_device(dev);
1062 out_free_hba:
1063 	core_delete_hba(hba);
1064 	return ret;
1065 }
1066 
1067 
core_dev_release_virtual_lun0(void)1068 void core_dev_release_virtual_lun0(void)
1069 {
1070 	struct se_hba *hba = lun0_hba;
1071 
1072 	if (!hba)
1073 		return;
1074 
1075 	if (g_lun0_dev)
1076 		target_free_device(g_lun0_dev);
1077 	core_delete_hba(hba);
1078 }
1079 
1080 /*
1081  * Common CDB parsing for kernel and user passthrough.
1082  */
1083 sense_reason_t
passthrough_parse_cdb(struct se_cmd * cmd,sense_reason_t (* exec_cmd)(struct se_cmd * cmd))1084 passthrough_parse_cdb(struct se_cmd *cmd,
1085 	sense_reason_t (*exec_cmd)(struct se_cmd *cmd))
1086 {
1087 	unsigned char *cdb = cmd->t_task_cdb;
1088 	struct se_device *dev = cmd->se_dev;
1089 	unsigned int size;
1090 
1091 	/*
1092 	 * For REPORT LUNS we always need to emulate the response, for everything
1093 	 * else, pass it up.
1094 	 */
1095 	if (cdb[0] == REPORT_LUNS) {
1096 		cmd->execute_cmd = spc_emulate_report_luns;
1097 		return TCM_NO_SENSE;
1098 	}
1099 
1100 	/*
1101 	 * With emulate_pr disabled, all reservation requests should fail,
1102 	 * regardless of whether or not TRANSPORT_FLAG_PASSTHROUGH_PGR is set.
1103 	 */
1104 	if (!dev->dev_attrib.emulate_pr &&
1105 	    ((cdb[0] == PERSISTENT_RESERVE_IN) ||
1106 	     (cdb[0] == PERSISTENT_RESERVE_OUT) ||
1107 	     (cdb[0] == RELEASE || cdb[0] == RELEASE_10) ||
1108 	     (cdb[0] == RESERVE || cdb[0] == RESERVE_10))) {
1109 		return TCM_UNSUPPORTED_SCSI_OPCODE;
1110 	}
1111 
1112 	/*
1113 	 * For PERSISTENT RESERVE IN/OUT, RELEASE, and RESERVE we need to
1114 	 * emulate the response, since tcmu does not have the information
1115 	 * required to process these commands.
1116 	 */
1117 	if (!(dev->transport_flags &
1118 	      TRANSPORT_FLAG_PASSTHROUGH_PGR)) {
1119 		if (cdb[0] == PERSISTENT_RESERVE_IN) {
1120 			cmd->execute_cmd = target_scsi3_emulate_pr_in;
1121 			size = get_unaligned_be16(&cdb[7]);
1122 			return target_cmd_size_check(cmd, size);
1123 		}
1124 		if (cdb[0] == PERSISTENT_RESERVE_OUT) {
1125 			cmd->execute_cmd = target_scsi3_emulate_pr_out;
1126 			size = get_unaligned_be32(&cdb[5]);
1127 			return target_cmd_size_check(cmd, size);
1128 		}
1129 
1130 		if (cdb[0] == RELEASE || cdb[0] == RELEASE_10) {
1131 			cmd->execute_cmd = target_scsi2_reservation_release;
1132 			if (cdb[0] == RELEASE_10)
1133 				size = get_unaligned_be16(&cdb[7]);
1134 			else
1135 				size = cmd->data_length;
1136 			return target_cmd_size_check(cmd, size);
1137 		}
1138 		if (cdb[0] == RESERVE || cdb[0] == RESERVE_10) {
1139 			cmd->execute_cmd = target_scsi2_reservation_reserve;
1140 			if (cdb[0] == RESERVE_10)
1141 				size = get_unaligned_be16(&cdb[7]);
1142 			else
1143 				size = cmd->data_length;
1144 			return target_cmd_size_check(cmd, size);
1145 		}
1146 	}
1147 
1148 	/* Set DATA_CDB flag for ops that should have it */
1149 	switch (cdb[0]) {
1150 	case READ_6:
1151 	case READ_10:
1152 	case READ_12:
1153 	case READ_16:
1154 	case WRITE_6:
1155 	case WRITE_10:
1156 	case WRITE_12:
1157 	case WRITE_16:
1158 	case WRITE_VERIFY:
1159 	case WRITE_VERIFY_12:
1160 	case WRITE_VERIFY_16:
1161 	case COMPARE_AND_WRITE:
1162 	case XDWRITEREAD_10:
1163 		cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1164 		break;
1165 	case VARIABLE_LENGTH_CMD:
1166 		switch (get_unaligned_be16(&cdb[8])) {
1167 		case READ_32:
1168 		case WRITE_32:
1169 		case WRITE_VERIFY_32:
1170 		case XDWRITEREAD_32:
1171 			cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
1172 			break;
1173 		}
1174 	}
1175 
1176 	cmd->execute_cmd = exec_cmd;
1177 
1178 	return TCM_NO_SENSE;
1179 }
1180 EXPORT_SYMBOL(passthrough_parse_cdb);
1181