blob: e4389d40c0576d7e86fab034429964dc963e8bbf [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_transport.c
3 *
4 * This file contains the Generic Target Engine Core.
5 *
6 * Copyright (c) 2002, 2003, 2004, 2005 PyX Technologies, Inc.
7 * Copyright (c) 2005, 2006, 2007 SBE, Inc.
8 * Copyright (c) 2007-2010 Rising Tide Systems
9 * Copyright (c) 2008-2010 Linux-iSCSI.org
10 *
11 * Nicholas A. Bellinger <nab@kernel.org>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 *
27 ******************************************************************************/
28
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080029#include <linux/net.h>
30#include <linux/delay.h>
31#include <linux/string.h>
32#include <linux/timer.h>
33#include <linux/slab.h>
34#include <linux/blkdev.h>
35#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036#include <linux/kthread.h>
37#include <linux/in.h>
38#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040039#include <linux/module.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080040#include <asm/unaligned.h>
41#include <net/sock.h>
42#include <net/tcp.h>
43#include <scsi/scsi.h>
44#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070045#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080046
47#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050048#include <target/target_core_backend.h>
49#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080050#include <target/target_core_configfs.h>
51
Christoph Hellwige26d99a2011-11-14 12:30:30 -050052#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080053#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080054#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080055#include "target_core_ua.h"
56
Andy Grovere3d6f902011-07-19 08:55:10 +000057static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058
Christoph Hellwig35e0e752011-10-17 13:56:53 -040059static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060static struct kmem_cache *se_sess_cache;
61struct kmem_cache *se_tmr_req_cache;
62struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080063struct kmem_cache *t10_pr_reg_cache;
64struct kmem_cache *t10_alua_lu_gp_cache;
65struct kmem_cache *t10_alua_lu_gp_mem_cache;
66struct kmem_cache *t10_alua_tg_pt_gp_cache;
67struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
68
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080069static int transport_generic_write_pending(struct se_cmd *);
Andy Grover5951146d2011-07-19 10:26:37 +000070static int transport_processing_thread(void *param);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080071static int __transport_execute_tasks(struct se_device *dev);
72static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070073static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040074 struct se_device *dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075static void transport_free_dev_tasks(struct se_cmd *cmd);
Andy Grover05d1c7c2011-07-20 19:13:28 +000076static int transport_generic_get_mem(struct se_cmd *cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070077static void transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig3df8d402011-10-17 13:56:43 -040078static void transport_remove_cmd_from_queue(struct se_cmd *cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079static int transport_set_sense_codes(struct se_cmd *cmd, u8 asc, u8 ascq);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -070080static void transport_generic_request_failure(struct se_cmd *);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040081static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080082
Andy Grovere3d6f902011-07-19 08:55:10 +000083int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080085 se_tmr_req_cache = kmem_cache_create("se_tmr_cache",
86 sizeof(struct se_tmr_req), __alignof__(struct se_tmr_req),
87 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070088 if (!se_tmr_req_cache) {
89 pr_err("kmem_cache_create() for struct se_tmr_req"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 " failed\n");
Roland Dreier97c34f32011-11-10 11:22:47 -080091 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 }
93 se_sess_cache = kmem_cache_create("se_sess_cache",
94 sizeof(struct se_session), __alignof__(struct se_session),
95 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070096 if (!se_sess_cache) {
97 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040099 goto out_free_tmr_req_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 }
101 se_ua_cache = kmem_cache_create("se_ua_cache",
102 sizeof(struct se_ua), __alignof__(struct se_ua),
103 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700104 if (!se_ua_cache) {
105 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400106 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800107 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800108 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
109 sizeof(struct t10_pr_registration),
110 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700111 if (!t10_pr_reg_cache) {
112 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800113 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400114 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800115 }
116 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
117 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
118 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700119 if (!t10_alua_lu_gp_cache) {
120 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800121 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400122 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800123 }
124 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
125 sizeof(struct t10_alua_lu_gp_member),
126 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700127 if (!t10_alua_lu_gp_mem_cache) {
128 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800129 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400130 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131 }
132 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
133 sizeof(struct t10_alua_tg_pt_gp),
134 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700135 if (!t10_alua_tg_pt_gp_cache) {
136 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400138 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800139 }
140 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
141 "t10_alua_tg_pt_gp_mem_cache",
142 sizeof(struct t10_alua_tg_pt_gp_member),
143 __alignof__(struct t10_alua_tg_pt_gp_member),
144 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700145 if (!t10_alua_tg_pt_gp_mem_cache) {
146 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800147 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400148 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800149 }
150
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400151 target_completion_wq = alloc_workqueue("target_completion",
152 WQ_MEM_RECLAIM, 0);
153 if (!target_completion_wq)
154 goto out_free_tg_pt_gp_mem_cache;
155
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800156 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400157
158out_free_tg_pt_gp_mem_cache:
159 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
160out_free_tg_pt_gp_cache:
161 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
162out_free_lu_gp_mem_cache:
163 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
164out_free_lu_gp_cache:
165 kmem_cache_destroy(t10_alua_lu_gp_cache);
166out_free_pr_reg_cache:
167 kmem_cache_destroy(t10_pr_reg_cache);
168out_free_ua_cache:
169 kmem_cache_destroy(se_ua_cache);
170out_free_sess_cache:
171 kmem_cache_destroy(se_sess_cache);
172out_free_tmr_req_cache:
173 kmem_cache_destroy(se_tmr_req_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800174out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000175 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800176}
177
Andy Grovere3d6f902011-07-19 08:55:10 +0000178void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800179{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400180 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800181 kmem_cache_destroy(se_tmr_req_cache);
182 kmem_cache_destroy(se_sess_cache);
183 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800184 kmem_cache_destroy(t10_pr_reg_cache);
185 kmem_cache_destroy(t10_alua_lu_gp_cache);
186 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
187 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
188 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800189}
190
Andy Grovere3d6f902011-07-19 08:55:10 +0000191/* This code ensures unique mib indexes are handed out. */
192static DEFINE_SPINLOCK(scsi_mib_index_lock);
193static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800194
195/*
196 * Allocate a new row index for the entry type specified
197 */
198u32 scsi_get_new_index(scsi_index_t type)
199{
200 u32 new_index;
201
Andy Grovere3d6f902011-07-19 08:55:10 +0000202 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800203
Andy Grovere3d6f902011-07-19 08:55:10 +0000204 spin_lock(&scsi_mib_index_lock);
205 new_index = ++scsi_mib_index[type];
206 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800207
208 return new_index;
209}
210
Christoph Hellwige26d99a2011-11-14 12:30:30 -0500211static void transport_init_queue_obj(struct se_queue_obj *qobj)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212{
213 atomic_set(&qobj->queue_cnt, 0);
214 INIT_LIST_HEAD(&qobj->qobj_list);
215 init_waitqueue_head(&qobj->thread_wq);
216 spin_lock_init(&qobj->cmd_queue_lock);
217}
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700219void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800220{
221 int ret;
222
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700223 if (sub_api_initialized)
224 return;
225
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800226 ret = request_module("target_core_iblock");
227 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700228 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800229
230 ret = request_module("target_core_file");
231 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700232 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233
234 ret = request_module("target_core_pscsi");
235 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700236 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237
238 ret = request_module("target_core_stgt");
239 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700240 pr_err("Unable to load target_core_stgt\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800241
Andy Grovere3d6f902011-07-19 08:55:10 +0000242 sub_api_initialized = 1;
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700243 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800244}
245
246struct se_session *transport_init_session(void)
247{
248 struct se_session *se_sess;
249
250 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700251 if (!se_sess) {
252 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800253 " se_sess_cache\n");
254 return ERR_PTR(-ENOMEM);
255 }
256 INIT_LIST_HEAD(&se_sess->sess_list);
257 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700258 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
259 INIT_LIST_HEAD(&se_sess->sess_wait_list);
260 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800261
262 return se_sess;
263}
264EXPORT_SYMBOL(transport_init_session);
265
266/*
267 * Called with spin_lock_bh(&struct se_portal_group->session_lock called.
268 */
269void __transport_register_session(
270 struct se_portal_group *se_tpg,
271 struct se_node_acl *se_nacl,
272 struct se_session *se_sess,
273 void *fabric_sess_ptr)
274{
275 unsigned char buf[PR_REG_ISID_LEN];
276
277 se_sess->se_tpg = se_tpg;
278 se_sess->fabric_sess_ptr = fabric_sess_ptr;
279 /*
280 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
281 *
282 * Only set for struct se_session's that will actually be moving I/O.
283 * eg: *NOT* discovery sessions.
284 */
285 if (se_nacl) {
286 /*
287 * If the fabric module supports an ISID based TransportID,
288 * save this value in binary from the fabric I_T Nexus now.
289 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000290 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800291 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000292 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800293 &buf[0], PR_REG_ISID_LEN);
294 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
295 }
296 spin_lock_irq(&se_nacl->nacl_sess_lock);
297 /*
298 * The se_nacl->nacl_sess pointer will be set to the
299 * last active I_T Nexus for each struct se_node_acl.
300 */
301 se_nacl->nacl_sess = se_sess;
302
303 list_add_tail(&se_sess->sess_acl_list,
304 &se_nacl->acl_sess_list);
305 spin_unlock_irq(&se_nacl->nacl_sess_lock);
306 }
307 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
308
Andy Grover6708bb22011-06-08 10:36:43 -0700309 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000310 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311}
312EXPORT_SYMBOL(__transport_register_session);
313
314void transport_register_session(
315 struct se_portal_group *se_tpg,
316 struct se_node_acl *se_nacl,
317 struct se_session *se_sess,
318 void *fabric_sess_ptr)
319{
320 spin_lock_bh(&se_tpg->session_lock);
321 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
322 spin_unlock_bh(&se_tpg->session_lock);
323}
324EXPORT_SYMBOL(transport_register_session);
325
326void transport_deregister_session_configfs(struct se_session *se_sess)
327{
328 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700329 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800330 /*
331 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
332 */
333 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700334 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700335 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800336 list_del(&se_sess->sess_acl_list);
337 /*
338 * If the session list is empty, then clear the pointer.
339 * Otherwise, set the struct se_session pointer from the tail
340 * element of the per struct se_node_acl active session list.
341 */
342 if (list_empty(&se_nacl->acl_sess_list))
343 se_nacl->nacl_sess = NULL;
344 else {
345 se_nacl->nacl_sess = container_of(
346 se_nacl->acl_sess_list.prev,
347 struct se_session, sess_acl_list);
348 }
Roland Dreier23388862011-06-22 01:02:21 -0700349 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800350 }
351}
352EXPORT_SYMBOL(transport_deregister_session_configfs);
353
354void transport_free_session(struct se_session *se_sess)
355{
356 kmem_cache_free(se_sess_cache, se_sess);
357}
358EXPORT_SYMBOL(transport_free_session);
359
360void transport_deregister_session(struct se_session *se_sess)
361{
362 struct se_portal_group *se_tpg = se_sess->se_tpg;
363 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700364 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800365
Andy Grover6708bb22011-06-08 10:36:43 -0700366 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800367 transport_free_session(se_sess);
368 return;
369 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800370
Roland Dreiere63a8e12011-08-12 16:01:02 -0700371 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800372 list_del(&se_sess->sess_list);
373 se_sess->se_tpg = NULL;
374 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700375 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800376
377 /*
378 * Determine if we need to do extra work for this initiator node's
379 * struct se_node_acl if it had been previously dynamically generated.
380 */
381 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700382 if (se_nacl) {
Roland Dreiere63a8e12011-08-12 16:01:02 -0700383 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800384 if (se_nacl->dynamic_node_acl) {
Andy Grover6708bb22011-06-08 10:36:43 -0700385 if (!se_tpg->se_tpg_tfo->tpg_check_demo_mode_cache(
386 se_tpg)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800387 list_del(&se_nacl->acl_list);
388 se_tpg->num_node_acls--;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700389 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390
391 core_tpg_wait_for_nacl_pr_ref(se_nacl);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800392 core_free_device_list_for_node(se_nacl, se_tpg);
Andy Grovere3d6f902011-07-19 08:55:10 +0000393 se_tpg->se_tpg_tfo->tpg_release_fabric_acl(se_tpg,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394 se_nacl);
Roland Dreiere63a8e12011-08-12 16:01:02 -0700395 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800396 }
397 }
Roland Dreiere63a8e12011-08-12 16:01:02 -0700398 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800399 }
400
401 transport_free_session(se_sess);
402
Andy Grover6708bb22011-06-08 10:36:43 -0700403 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000404 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800405}
406EXPORT_SYMBOL(transport_deregister_session);
407
408/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700409 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800410 */
411static void transport_all_task_dev_remove_state(struct se_cmd *cmd)
412{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400413 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414 struct se_task *task;
415 unsigned long flags;
416
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400417 if (!dev)
418 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800419
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400420 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Christoph Hellwig6c76bf92011-10-12 11:07:03 -0400421 if (task->task_flags & TF_ACTIVE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800422 continue;
423
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800424 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500425 if (task->t_state_active) {
426 pr_debug("Removed ITT: 0x%08x dev: %p task[%p]\n",
427 cmd->se_tfo->get_task_tag(cmd), dev, task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500429 list_del(&task->t_state_list);
430 atomic_dec(&cmd->t_task_cdbs_ex_left);
431 task->t_state_active = false;
432 }
433 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434 }
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500435
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800436}
437
438/* transport_cmd_check_stop():
439 *
440 * 'transport_off = 1' determines if t_transport_active should be cleared.
441 * 'transport_off = 2' determines if task_dev_state should be removed.
442 *
443 * A non-zero u8 t_state sets cmd->t_state.
444 * Returns 1 when command is stopped, else 0.
445 */
446static int transport_cmd_check_stop(
447 struct se_cmd *cmd,
448 int transport_off,
449 u8 t_state)
450{
451 unsigned long flags;
452
Andy Grovera1d8b492011-05-02 17:12:10 -0700453 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454 /*
455 * Determine if IOCTL context caller in requesting the stopping of this
456 * command for LUN shutdown purposes.
457 */
Andy Grovera1d8b492011-05-02 17:12:10 -0700458 if (atomic_read(&cmd->transport_lun_stop)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700459 pr_debug("%s:%d atomic_read(&cmd->transport_lun_stop)"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 " == TRUE for ITT: 0x%08x\n", __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000461 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800462
Andy Grovera1d8b492011-05-02 17:12:10 -0700463 atomic_set(&cmd->t_transport_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800464 if (transport_off == 2)
465 transport_all_task_dev_remove_state(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700466 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467
Andy Grovera1d8b492011-05-02 17:12:10 -0700468 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469 return 1;
470 }
471 /*
472 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000473 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800474 */
Andy Grovera1d8b492011-05-02 17:12:10 -0700475 if (atomic_read(&cmd->t_transport_stop)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700476 pr_debug("%s:%d atomic_read(&cmd->t_transport_stop) =="
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800477 " TRUE for ITT: 0x%08x\n", __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000478 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800480 if (transport_off == 2)
481 transport_all_task_dev_remove_state(cmd);
482
483 /*
484 * Clear struct se_cmd->se_lun before the transport_off == 2 handoff
485 * to FE.
486 */
487 if (transport_off == 2)
488 cmd->se_lun = NULL;
Andy Grovera1d8b492011-05-02 17:12:10 -0700489 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490
Andy Grovera1d8b492011-05-02 17:12:10 -0700491 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800492 return 1;
493 }
494 if (transport_off) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700495 atomic_set(&cmd->t_transport_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496 if (transport_off == 2) {
497 transport_all_task_dev_remove_state(cmd);
498 /*
499 * Clear struct se_cmd->se_lun before the transport_off == 2
500 * handoff to fabric module.
501 */
502 cmd->se_lun = NULL;
503 /*
504 * Some fabric modules like tcm_loop can release
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300505 * their internally allocated I/O reference now and
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800506 * struct se_cmd now.
Nicholas Bellinger88dd9e22011-11-02 03:33:16 -0700507 *
508 * Fabric modules are expected to return '1' here if the
509 * se_cmd being passed is released at this point,
510 * or zero if not being released.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800511 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000512 if (cmd->se_tfo->check_stop_free != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800513 spin_unlock_irqrestore(
Andy Grovera1d8b492011-05-02 17:12:10 -0700514 &cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800515
Nicholas Bellinger88dd9e22011-11-02 03:33:16 -0700516 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800517 }
518 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700519 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800520
521 return 0;
522 } else if (t_state)
523 cmd->t_state = t_state;
Andy Grovera1d8b492011-05-02 17:12:10 -0700524 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800525
526 return 0;
527}
528
529static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
530{
531 return transport_cmd_check_stop(cmd, 2, 0);
532}
533
534static void transport_lun_remove_cmd(struct se_cmd *cmd)
535{
Andy Grovere3d6f902011-07-19 08:55:10 +0000536 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800537 unsigned long flags;
538
539 if (!lun)
540 return;
541
Andy Grovera1d8b492011-05-02 17:12:10 -0700542 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Grover6708bb22011-06-08 10:36:43 -0700543 if (!atomic_read(&cmd->transport_dev_active)) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700544 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800545 goto check_lun;
546 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700547 atomic_set(&cmd->transport_dev_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800548 transport_all_task_dev_remove_state(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700549 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800551
552check_lun:
553 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Andy Grovera1d8b492011-05-02 17:12:10 -0700554 if (atomic_read(&cmd->transport_lun_active)) {
Andy Grover5951146d2011-07-19 10:26:37 +0000555 list_del(&cmd->se_lun_node);
Andy Grovera1d8b492011-05-02 17:12:10 -0700556 atomic_set(&cmd->transport_lun_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800557#if 0
Andy Grover6708bb22011-06-08 10:36:43 -0700558 pr_debug("Removed ITT: 0x%08x from LUN LIST[%d]\n"
Andy Grovere3d6f902011-07-19 08:55:10 +0000559 cmd->se_tfo->get_task_tag(cmd), lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800560#endif
561 }
562 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
563}
564
565void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
566{
Nicholas Bellinger8dc52b52011-10-09 02:02:51 -0700567 if (!cmd->se_tmr_req)
568 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800569
570 if (transport_cmd_check_stop_to_fabric(cmd))
571 return;
Nicholas Bellinger77039d12011-09-29 01:01:35 -0700572 if (remove) {
Christoph Hellwig3df8d402011-10-17 13:56:43 -0400573 transport_remove_cmd_from_queue(cmd);
Christoph Hellwige6a25732011-09-13 23:08:50 +0200574 transport_put_cmd(cmd);
Nicholas Bellinger77039d12011-09-29 01:01:35 -0700575 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800576}
577
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400578static void transport_add_cmd_to_queue(struct se_cmd *cmd, int t_state,
579 bool at_head)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800580{
581 struct se_device *dev = cmd->se_dev;
Andy Grovere3d6f902011-07-19 08:55:10 +0000582 struct se_queue_obj *qobj = &dev->dev_queue_obj;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583 unsigned long flags;
584
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 if (t_state) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700586 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587 cmd->t_state = t_state;
Andy Grovera1d8b492011-05-02 17:12:10 -0700588 atomic_set(&cmd->t_transport_active, 1);
589 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800590 }
591
592 spin_lock_irqsave(&qobj->cmd_queue_lock, flags);
Roland Dreier79a7fef2011-09-28 22:12:07 -0700593
594 /* If the cmd is already on the list, remove it before we add it */
595 if (!list_empty(&cmd->se_queue_node))
596 list_del(&cmd->se_queue_node);
597 else
598 atomic_inc(&qobj->queue_cnt);
599
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400600 if (at_head)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700601 list_add(&cmd->se_queue_node, &qobj->qobj_list);
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400602 else
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700603 list_add_tail(&cmd->se_queue_node, &qobj->qobj_list);
Roland Dreier79a7fef2011-09-28 22:12:07 -0700604 atomic_set(&cmd->t_transport_queue_active, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800605 spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags);
606
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800607 wake_up_interruptible(&qobj->thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800608}
609
Andy Grover5951146d2011-07-19 10:26:37 +0000610static struct se_cmd *
611transport_get_cmd_from_queue(struct se_queue_obj *qobj)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800612{
Andy Grover5951146d2011-07-19 10:26:37 +0000613 struct se_cmd *cmd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614 unsigned long flags;
615
616 spin_lock_irqsave(&qobj->cmd_queue_lock, flags);
617 if (list_empty(&qobj->qobj_list)) {
618 spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags);
619 return NULL;
620 }
Andy Grover5951146d2011-07-19 10:26:37 +0000621 cmd = list_first_entry(&qobj->qobj_list, struct se_cmd, se_queue_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800622
Roland Dreier79a7fef2011-09-28 22:12:07 -0700623 atomic_set(&cmd->t_transport_queue_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800624
Roland Dreier79a7fef2011-09-28 22:12:07 -0700625 list_del_init(&cmd->se_queue_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626 atomic_dec(&qobj->queue_cnt);
627 spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags);
628
Andy Grover5951146d2011-07-19 10:26:37 +0000629 return cmd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630}
631
Christoph Hellwig3df8d402011-10-17 13:56:43 -0400632static void transport_remove_cmd_from_queue(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633{
Christoph Hellwig3df8d402011-10-17 13:56:43 -0400634 struct se_queue_obj *qobj = &cmd->se_dev->dev_queue_obj;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800635 unsigned long flags;
636
637 spin_lock_irqsave(&qobj->cmd_queue_lock, flags);
Andy Grover6708bb22011-06-08 10:36:43 -0700638 if (!atomic_read(&cmd->t_transport_queue_active)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639 spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags);
640 return;
641 }
Roland Dreier79a7fef2011-09-28 22:12:07 -0700642 atomic_set(&cmd->t_transport_queue_active, 0);
643 atomic_dec(&qobj->queue_cnt);
644 list_del_init(&cmd->se_queue_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800645 spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags);
646
Andy Grovera1d8b492011-05-02 17:12:10 -0700647 if (atomic_read(&cmd->t_transport_queue_active)) {
Andy Grover6708bb22011-06-08 10:36:43 -0700648 pr_err("ITT: 0x%08x t_transport_queue_active: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000649 cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -0700650 atomic_read(&cmd->t_transport_queue_active));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800651 }
652}
653
654/*
655 * Completion function used by TCM subsystem plugins (such as FILEIO)
656 * for queueing up response from struct se_subsystem_api->do_task()
657 */
658void transport_complete_sync_cache(struct se_cmd *cmd, int good)
659{
Andy Grovera1d8b492011-05-02 17:12:10 -0700660 struct se_task *task = list_entry(cmd->t_task_list.next,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800661 struct se_task, t_list);
662
663 if (good) {
664 cmd->scsi_status = SAM_STAT_GOOD;
665 task->task_scsi_status = GOOD;
666 } else {
667 task->task_scsi_status = SAM_STAT_CHECK_CONDITION;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700668 task->task_se_cmd->scsi_sense_reason =
669 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
670
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671 }
672
673 transport_complete_task(task, good);
674}
675EXPORT_SYMBOL(transport_complete_sync_cache);
676
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400677static void target_complete_failure_work(struct work_struct *work)
678{
679 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
680
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700681 transport_generic_request_failure(cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400682}
683
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800684/* transport_complete_task():
685 *
686 * Called from interrupt and non interrupt context depending
687 * on the transport plugin.
688 */
689void transport_complete_task(struct se_task *task, int success)
690{
Andy Grovere3d6f902011-07-19 08:55:10 +0000691 struct se_cmd *cmd = task->task_se_cmd;
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400692 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800693 unsigned long flags;
694#if 0
Andy Grover6708bb22011-06-08 10:36:43 -0700695 pr_debug("task: %p CDB: 0x%02x obj_ptr: %p\n", task,
Andy Grovera1d8b492011-05-02 17:12:10 -0700696 cmd->t_task_cdb[0], dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800697#endif
Andy Grovere3d6f902011-07-19 08:55:10 +0000698 if (dev)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800699 atomic_inc(&dev->depth_left);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800700
Andy Grovera1d8b492011-05-02 17:12:10 -0700701 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig6c76bf92011-10-12 11:07:03 -0400702 task->task_flags &= ~TF_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800703
704 /*
705 * See if any sense data exists, if so set the TASK_SENSE flag.
706 * Also check for any other post completion work that needs to be
707 * done by the plugins.
708 */
709 if (dev && dev->transport->transport_complete) {
710 if (dev->transport->transport_complete(task) != 0) {
711 cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE;
Christoph Hellwigef804a82011-11-23 06:53:58 -0500712 task->task_flags |= TF_HAS_SENSE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800713 success = 1;
714 }
715 }
716
717 /*
718 * See if we are waiting for outstanding struct se_task
719 * to complete for an exception condition
720 */
Christoph Hellwig6c76bf92011-10-12 11:07:03 -0400721 if (task->task_flags & TF_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700722 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800723 complete(&task->task_stop_comp);
724 return;
725 }
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700726
727 if (!success)
728 cmd->t_tasks_failed = 1;
729
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800730 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800731 * Decrement the outstanding t_task_cdbs_left count. The last
732 * struct se_task from struct se_cmd will complete itself into the
733 * device queue depending upon int success.
734 */
Andy Grover6708bb22011-06-08 10:36:43 -0700735 if (!atomic_dec_and_test(&cmd->t_task_cdbs_left)) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700736 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800737 return;
738 }
739
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700740 if (cmd->t_tasks_failed) {
Christoph Hellwig41e16e92011-11-23 06:54:15 -0500741 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400742 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800743 } else {
Andy Grovera1d8b492011-05-02 17:12:10 -0700744 atomic_set(&cmd->t_transport_complete, 1);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400745 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800746 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400747
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400748 cmd->t_state = TRANSPORT_COMPLETE;
749 atomic_set(&cmd->t_transport_active, 1);
Andy Grovera1d8b492011-05-02 17:12:10 -0700750 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800751
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400752 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800753}
754EXPORT_SYMBOL(transport_complete_task);
755
756/*
757 * Called by transport_add_tasks_from_cmd() once a struct se_cmd's
758 * struct se_task list are ready to be added to the active execution list
759 * struct se_device
760
761 * Called with se_dev_t->execute_task_lock called.
762 */
763static inline int transport_add_task_check_sam_attr(
764 struct se_task *task,
765 struct se_task *task_prev,
766 struct se_device *dev)
767{
768 /*
769 * No SAM Task attribute emulation enabled, add to tail of
770 * execution queue
771 */
772 if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED) {
773 list_add_tail(&task->t_execute_list, &dev->execute_task_list);
774 return 0;
775 }
776 /*
777 * HEAD_OF_QUEUE attribute for received CDB, which means
778 * the first task that is associated with a struct se_cmd goes to
779 * head of the struct se_device->execute_task_list, and task_prev
780 * after that for each subsequent task
781 */
Nicholas Bellingere66ecd52011-05-19 20:19:14 -0700782 if (task->task_se_cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800783 list_add(&task->t_execute_list,
784 (task_prev != NULL) ?
785 &task_prev->t_execute_list :
786 &dev->execute_task_list);
787
Andy Grover6708bb22011-06-08 10:36:43 -0700788 pr_debug("Set HEAD_OF_QUEUE for task CDB: 0x%02x"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800789 " in execution queue\n",
Andy Grover6708bb22011-06-08 10:36:43 -0700790 task->task_se_cmd->t_task_cdb[0]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800791 return 1;
792 }
793 /*
794 * For ORDERED, SIMPLE or UNTAGGED attribute tasks once they have been
795 * transitioned from Dermant -> Active state, and are added to the end
796 * of the struct se_device->execute_task_list
797 */
798 list_add_tail(&task->t_execute_list, &dev->execute_task_list);
799 return 0;
800}
801
802/* __transport_add_task_to_execute_queue():
803 *
804 * Called with se_dev_t->execute_task_lock called.
805 */
806static void __transport_add_task_to_execute_queue(
807 struct se_task *task,
808 struct se_task *task_prev,
809 struct se_device *dev)
810{
811 int head_of_queue;
812
813 head_of_queue = transport_add_task_check_sam_attr(task, task_prev, dev);
814 atomic_inc(&dev->execute_tasks);
815
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500816 if (task->t_state_active)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800817 return;
818 /*
819 * Determine if this task needs to go to HEAD_OF_QUEUE for the
820 * state list as well. Running with SAM Task Attribute emulation
821 * will always return head_of_queue == 0 here
822 */
823 if (head_of_queue)
824 list_add(&task->t_state_list, (task_prev) ?
825 &task_prev->t_state_list :
826 &dev->state_task_list);
827 else
828 list_add_tail(&task->t_state_list, &dev->state_task_list);
829
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500830 task->t_state_active = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800831
Andy Grover6708bb22011-06-08 10:36:43 -0700832 pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000833 task->task_se_cmd->se_tfo->get_task_tag(task->task_se_cmd),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800834 task, dev);
835}
836
837static void transport_add_tasks_to_state_queue(struct se_cmd *cmd)
838{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400839 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800840 struct se_task *task;
841 unsigned long flags;
842
Andy Grovera1d8b492011-05-02 17:12:10 -0700843 spin_lock_irqsave(&cmd->t_state_lock, flags);
844 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800845 spin_lock(&dev->execute_task_lock);
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500846 if (!task->t_state_active) {
847 list_add_tail(&task->t_state_list,
848 &dev->state_task_list);
849 task->t_state_active = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800850
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500851 pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n",
852 task->task_se_cmd->se_tfo->get_task_tag(
853 task->task_se_cmd), task, dev);
854 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800855 spin_unlock(&dev->execute_task_lock);
856 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700857 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800858}
859
860static void transport_add_tasks_from_cmd(struct se_cmd *cmd)
861{
Andy Grover5951146d2011-07-19 10:26:37 +0000862 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800863 struct se_task *task, *task_prev = NULL;
864 unsigned long flags;
865
866 spin_lock_irqsave(&dev->execute_task_lock, flags);
Andy Grovera1d8b492011-05-02 17:12:10 -0700867 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Christoph Hellwig04629b72011-10-12 11:07:04 -0400868 if (!list_empty(&task->t_execute_list))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800869 continue;
870 /*
871 * __transport_add_task_to_execute_queue() handles the
872 * SAM Task Attribute emulation if enabled
873 */
874 __transport_add_task_to_execute_queue(task, task_prev, dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800875 task_prev = task;
876 }
877 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878}
879
Christoph Hellwig04629b72011-10-12 11:07:04 -0400880void __transport_remove_task_from_execute_queue(struct se_task *task,
881 struct se_device *dev)
882{
883 list_del_init(&task->t_execute_list);
884 atomic_dec(&dev->execute_tasks);
885}
886
Christoph Hellwige26d99a2011-11-14 12:30:30 -0500887static void transport_remove_task_from_execute_queue(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800888 struct se_task *task,
889 struct se_device *dev)
890{
891 unsigned long flags;
892
Christoph Hellwig04629b72011-10-12 11:07:04 -0400893 if (WARN_ON(list_empty(&task->t_execute_list)))
Nicholas Bellingeraf57c3a2011-05-19 20:19:12 -0700894 return;
Nicholas Bellingeraf57c3a2011-05-19 20:19:12 -0700895
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800896 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwig04629b72011-10-12 11:07:04 -0400897 __transport_remove_task_from_execute_queue(task, dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800898 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
899}
900
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700901/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700902 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700903 */
904
905static void target_qf_do_work(struct work_struct *work)
906{
907 struct se_device *dev = container_of(work, struct se_device,
908 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700909 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700910 struct se_cmd *cmd, *cmd_tmp;
911
912 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700913 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
914 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700915
Roland Dreierbcac3642011-08-27 21:33:16 -0700916 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700917 list_del(&cmd->se_qf_node);
918 atomic_dec(&dev->dev_qf_count);
919 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700920
Andy Grover6708bb22011-06-08 10:36:43 -0700921 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700922 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400923 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700924 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
925 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400926
927 transport_add_cmd_to_queue(cmd, cmd->t_state, true);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700928 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700929}
930
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800931unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
932{
933 switch (cmd->data_direction) {
934 case DMA_NONE:
935 return "NONE";
936 case DMA_FROM_DEVICE:
937 return "READ";
938 case DMA_TO_DEVICE:
939 return "WRITE";
940 case DMA_BIDIRECTIONAL:
941 return "BIDI";
942 default:
943 break;
944 }
945
946 return "UNKNOWN";
947}
948
949void transport_dump_dev_state(
950 struct se_device *dev,
951 char *b,
952 int *bl)
953{
954 *bl += sprintf(b + *bl, "Status: ");
955 switch (dev->dev_status) {
956 case TRANSPORT_DEVICE_ACTIVATED:
957 *bl += sprintf(b + *bl, "ACTIVATED");
958 break;
959 case TRANSPORT_DEVICE_DEACTIVATED:
960 *bl += sprintf(b + *bl, "DEACTIVATED");
961 break;
962 case TRANSPORT_DEVICE_SHUTDOWN:
963 *bl += sprintf(b + *bl, "SHUTDOWN");
964 break;
965 case TRANSPORT_DEVICE_OFFLINE_ACTIVATED:
966 case TRANSPORT_DEVICE_OFFLINE_DEACTIVATED:
967 *bl += sprintf(b + *bl, "OFFLINE");
968 break;
969 default:
970 *bl += sprintf(b + *bl, "UNKNOWN=%d", dev->dev_status);
971 break;
972 }
973
974 *bl += sprintf(b + *bl, " Execute/Left/Max Queue Depth: %d/%d/%d",
975 atomic_read(&dev->execute_tasks), atomic_read(&dev->depth_left),
976 dev->queue_depth);
977 *bl += sprintf(b + *bl, " SectorSize: %u MaxSectors: %u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000978 dev->se_sub_dev->se_dev_attrib.block_size, dev->se_sub_dev->se_dev_attrib.max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800979 *bl += sprintf(b + *bl, " ");
980}
981
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800982void transport_dump_vpd_proto_id(
983 struct t10_vpd *vpd,
984 unsigned char *p_buf,
985 int p_buf_len)
986{
987 unsigned char buf[VPD_TMP_BUF_SIZE];
988 int len;
989
990 memset(buf, 0, VPD_TMP_BUF_SIZE);
991 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
992
993 switch (vpd->protocol_identifier) {
994 case 0x00:
995 sprintf(buf+len, "Fibre Channel\n");
996 break;
997 case 0x10:
998 sprintf(buf+len, "Parallel SCSI\n");
999 break;
1000 case 0x20:
1001 sprintf(buf+len, "SSA\n");
1002 break;
1003 case 0x30:
1004 sprintf(buf+len, "IEEE 1394\n");
1005 break;
1006 case 0x40:
1007 sprintf(buf+len, "SCSI Remote Direct Memory Access"
1008 " Protocol\n");
1009 break;
1010 case 0x50:
1011 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
1012 break;
1013 case 0x60:
1014 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
1015 break;
1016 case 0x70:
1017 sprintf(buf+len, "Automation/Drive Interface Transport"
1018 " Protocol\n");
1019 break;
1020 case 0x80:
1021 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
1022 break;
1023 default:
1024 sprintf(buf+len, "Unknown 0x%02x\n",
1025 vpd->protocol_identifier);
1026 break;
1027 }
1028
1029 if (p_buf)
1030 strncpy(p_buf, buf, p_buf_len);
1031 else
Andy Grover6708bb22011-06-08 10:36:43 -07001032 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001033}
1034
1035void
1036transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
1037{
1038 /*
1039 * Check if the Protocol Identifier Valid (PIV) bit is set..
1040 *
1041 * from spc3r23.pdf section 7.5.1
1042 */
1043 if (page_83[1] & 0x80) {
1044 vpd->protocol_identifier = (page_83[0] & 0xf0);
1045 vpd->protocol_identifier_set = 1;
1046 transport_dump_vpd_proto_id(vpd, NULL, 0);
1047 }
1048}
1049EXPORT_SYMBOL(transport_set_vpd_proto_id);
1050
1051int transport_dump_vpd_assoc(
1052 struct t10_vpd *vpd,
1053 unsigned char *p_buf,
1054 int p_buf_len)
1055{
1056 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +00001057 int ret = 0;
1058 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001059
1060 memset(buf, 0, VPD_TMP_BUF_SIZE);
1061 len = sprintf(buf, "T10 VPD Identifier Association: ");
1062
1063 switch (vpd->association) {
1064 case 0x00:
1065 sprintf(buf+len, "addressed logical unit\n");
1066 break;
1067 case 0x10:
1068 sprintf(buf+len, "target port\n");
1069 break;
1070 case 0x20:
1071 sprintf(buf+len, "SCSI target device\n");
1072 break;
1073 default:
1074 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +00001075 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001076 break;
1077 }
1078
1079 if (p_buf)
1080 strncpy(p_buf, buf, p_buf_len);
1081 else
Andy Grover6708bb22011-06-08 10:36:43 -07001082 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083
1084 return ret;
1085}
1086
1087int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
1088{
1089 /*
1090 * The VPD identification association..
1091 *
1092 * from spc3r23.pdf Section 7.6.3.1 Table 297
1093 */
1094 vpd->association = (page_83[1] & 0x30);
1095 return transport_dump_vpd_assoc(vpd, NULL, 0);
1096}
1097EXPORT_SYMBOL(transport_set_vpd_assoc);
1098
1099int transport_dump_vpd_ident_type(
1100 struct t10_vpd *vpd,
1101 unsigned char *p_buf,
1102 int p_buf_len)
1103{
1104 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +00001105 int ret = 0;
1106 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107
1108 memset(buf, 0, VPD_TMP_BUF_SIZE);
1109 len = sprintf(buf, "T10 VPD Identifier Type: ");
1110
1111 switch (vpd->device_identifier_type) {
1112 case 0x00:
1113 sprintf(buf+len, "Vendor specific\n");
1114 break;
1115 case 0x01:
1116 sprintf(buf+len, "T10 Vendor ID based\n");
1117 break;
1118 case 0x02:
1119 sprintf(buf+len, "EUI-64 based\n");
1120 break;
1121 case 0x03:
1122 sprintf(buf+len, "NAA\n");
1123 break;
1124 case 0x04:
1125 sprintf(buf+len, "Relative target port identifier\n");
1126 break;
1127 case 0x08:
1128 sprintf(buf+len, "SCSI name string\n");
1129 break;
1130 default:
1131 sprintf(buf+len, "Unsupported: 0x%02x\n",
1132 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +00001133 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001134 break;
1135 }
1136
Andy Grovere3d6f902011-07-19 08:55:10 +00001137 if (p_buf) {
1138 if (p_buf_len < strlen(buf)+1)
1139 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001140 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +00001141 } else {
Andy Grover6708bb22011-06-08 10:36:43 -07001142 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +00001143 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001144
1145 return ret;
1146}
1147
1148int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
1149{
1150 /*
1151 * The VPD identifier type..
1152 *
1153 * from spc3r23.pdf Section 7.6.3.1 Table 298
1154 */
1155 vpd->device_identifier_type = (page_83[1] & 0x0f);
1156 return transport_dump_vpd_ident_type(vpd, NULL, 0);
1157}
1158EXPORT_SYMBOL(transport_set_vpd_ident_type);
1159
1160int transport_dump_vpd_ident(
1161 struct t10_vpd *vpd,
1162 unsigned char *p_buf,
1163 int p_buf_len)
1164{
1165 unsigned char buf[VPD_TMP_BUF_SIZE];
1166 int ret = 0;
1167
1168 memset(buf, 0, VPD_TMP_BUF_SIZE);
1169
1170 switch (vpd->device_identifier_code_set) {
1171 case 0x01: /* Binary */
1172 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
1173 &vpd->device_identifier[0]);
1174 break;
1175 case 0x02: /* ASCII */
1176 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
1177 &vpd->device_identifier[0]);
1178 break;
1179 case 0x03: /* UTF-8 */
1180 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
1181 &vpd->device_identifier[0]);
1182 break;
1183 default:
1184 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
1185 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +00001186 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001187 break;
1188 }
1189
1190 if (p_buf)
1191 strncpy(p_buf, buf, p_buf_len);
1192 else
Andy Grover6708bb22011-06-08 10:36:43 -07001193 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001194
1195 return ret;
1196}
1197
1198int
1199transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
1200{
1201 static const char hex_str[] = "0123456789abcdef";
1202 int j = 0, i = 4; /* offset to start of the identifer */
1203
1204 /*
1205 * The VPD Code Set (encoding)
1206 *
1207 * from spc3r23.pdf Section 7.6.3.1 Table 296
1208 */
1209 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
1210 switch (vpd->device_identifier_code_set) {
1211 case 0x01: /* Binary */
1212 vpd->device_identifier[j++] =
1213 hex_str[vpd->device_identifier_type];
1214 while (i < (4 + page_83[3])) {
1215 vpd->device_identifier[j++] =
1216 hex_str[(page_83[i] & 0xf0) >> 4];
1217 vpd->device_identifier[j++] =
1218 hex_str[page_83[i] & 0x0f];
1219 i++;
1220 }
1221 break;
1222 case 0x02: /* ASCII */
1223 case 0x03: /* UTF-8 */
1224 while (i < (4 + page_83[3]))
1225 vpd->device_identifier[j++] = page_83[i++];
1226 break;
1227 default:
1228 break;
1229 }
1230
1231 return transport_dump_vpd_ident(vpd, NULL, 0);
1232}
1233EXPORT_SYMBOL(transport_set_vpd_ident);
1234
1235static void core_setup_task_attr_emulation(struct se_device *dev)
1236{
1237 /*
1238 * If this device is from Target_Core_Mod/pSCSI, disable the
1239 * SAM Task Attribute emulation.
1240 *
1241 * This is currently not available in upsream Linux/SCSI Target
1242 * mode code, and is assumed to be disabled while using TCM/pSCSI.
1243 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001244 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001245 dev->dev_task_attr_type = SAM_TASK_ATTR_PASSTHROUGH;
1246 return;
1247 }
1248
1249 dev->dev_task_attr_type = SAM_TASK_ATTR_EMULATED;
Andy Grover6708bb22011-06-08 10:36:43 -07001250 pr_debug("%s: Using SAM_TASK_ATTR_EMULATED for SPC: 0x%02x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001251 " device\n", dev->transport->name,
1252 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001253}
1254
1255static void scsi_dump_inquiry(struct se_device *dev)
1256{
Andy Grovere3d6f902011-07-19 08:55:10 +00001257 struct t10_wwn *wwn = &dev->se_sub_dev->t10_wwn;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001258 int i, device_type;
1259 /*
1260 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
1261 */
Andy Grover6708bb22011-06-08 10:36:43 -07001262 pr_debug(" Vendor: ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001263 for (i = 0; i < 8; i++)
1264 if (wwn->vendor[i] >= 0x20)
Andy Grover6708bb22011-06-08 10:36:43 -07001265 pr_debug("%c", wwn->vendor[i]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001266 else
Andy Grover6708bb22011-06-08 10:36:43 -07001267 pr_debug(" ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001268
Andy Grover6708bb22011-06-08 10:36:43 -07001269 pr_debug(" Model: ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001270 for (i = 0; i < 16; i++)
1271 if (wwn->model[i] >= 0x20)
Andy Grover6708bb22011-06-08 10:36:43 -07001272 pr_debug("%c", wwn->model[i]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001273 else
Andy Grover6708bb22011-06-08 10:36:43 -07001274 pr_debug(" ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001275
Andy Grover6708bb22011-06-08 10:36:43 -07001276 pr_debug(" Revision: ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001277 for (i = 0; i < 4; i++)
1278 if (wwn->revision[i] >= 0x20)
Andy Grover6708bb22011-06-08 10:36:43 -07001279 pr_debug("%c", wwn->revision[i]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001280 else
Andy Grover6708bb22011-06-08 10:36:43 -07001281 pr_debug(" ");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001282
Andy Grover6708bb22011-06-08 10:36:43 -07001283 pr_debug("\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001284
Andy Grovere3d6f902011-07-19 08:55:10 +00001285 device_type = dev->transport->get_device_type(dev);
Andy Grover6708bb22011-06-08 10:36:43 -07001286 pr_debug(" Type: %s ", scsi_device_type(device_type));
1287 pr_debug(" ANSI SCSI revision: %02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001288 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001289}
1290
1291struct se_device *transport_add_device_to_core_hba(
1292 struct se_hba *hba,
1293 struct se_subsystem_api *transport,
1294 struct se_subsystem_dev *se_dev,
1295 u32 device_flags,
1296 void *transport_dev,
1297 struct se_dev_limits *dev_limits,
1298 const char *inquiry_prod,
1299 const char *inquiry_rev)
1300{
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001301 int force_pt;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001302 struct se_device *dev;
1303
1304 dev = kzalloc(sizeof(struct se_device), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001305 if (!dev) {
1306 pr_err("Unable to allocate memory for se_dev_t\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001307 return NULL;
1308 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001309
Andy Grovere3d6f902011-07-19 08:55:10 +00001310 transport_init_queue_obj(&dev->dev_queue_obj);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001311 dev->dev_flags = device_flags;
1312 dev->dev_status |= TRANSPORT_DEVICE_DEACTIVATED;
Andy Grover5951146d2011-07-19 10:26:37 +00001313 dev->dev_ptr = transport_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001314 dev->se_hba = hba;
1315 dev->se_sub_dev = se_dev;
1316 dev->transport = transport;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001317 INIT_LIST_HEAD(&dev->dev_list);
1318 INIT_LIST_HEAD(&dev->dev_sep_list);
1319 INIT_LIST_HEAD(&dev->dev_tmr_list);
1320 INIT_LIST_HEAD(&dev->execute_task_list);
1321 INIT_LIST_HEAD(&dev->delayed_cmd_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001322 INIT_LIST_HEAD(&dev->state_task_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001323 INIT_LIST_HEAD(&dev->qf_cmd_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001324 spin_lock_init(&dev->execute_task_lock);
1325 spin_lock_init(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001326 spin_lock_init(&dev->dev_reservation_lock);
1327 spin_lock_init(&dev->dev_status_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001328 spin_lock_init(&dev->se_port_lock);
1329 spin_lock_init(&dev->se_tmr_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001330 spin_lock_init(&dev->qf_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001331
1332 dev->queue_depth = dev_limits->queue_depth;
1333 atomic_set(&dev->depth_left, dev->queue_depth);
1334 atomic_set(&dev->dev_ordered_id, 0);
1335
1336 se_dev_set_default_attribs(dev, dev_limits);
1337
1338 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
1339 dev->creation_time = get_jiffies_64();
1340 spin_lock_init(&dev->stats_lock);
1341
1342 spin_lock(&hba->device_lock);
1343 list_add_tail(&dev->dev_list, &hba->hba_dev_list);
1344 hba->dev_count++;
1345 spin_unlock(&hba->device_lock);
1346 /*
1347 * Setup the SAM Task Attribute emulation for struct se_device
1348 */
1349 core_setup_task_attr_emulation(dev);
1350 /*
1351 * Force PR and ALUA passthrough emulation with internal object use.
1352 */
1353 force_pt = (hba->hba_flags & HBA_FLAGS_INTERNAL_USE);
1354 /*
1355 * Setup the Reservations infrastructure for struct se_device
1356 */
1357 core_setup_reservations(dev, force_pt);
1358 /*
1359 * Setup the Asymmetric Logical Unit Assignment for struct se_device
1360 */
1361 if (core_setup_alua(dev, force_pt) < 0)
1362 goto out;
1363
1364 /*
1365 * Startup the struct se_device processing thread
1366 */
1367 dev->process_thread = kthread_run(transport_processing_thread, dev,
Andy Grovere3d6f902011-07-19 08:55:10 +00001368 "LIO_%s", dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001369 if (IS_ERR(dev->process_thread)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001370 pr_err("Unable to create kthread: LIO_%s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001371 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001372 goto out;
1373 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001374 /*
1375 * Setup work_queue for QUEUE_FULL
1376 */
1377 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001378 /*
1379 * Preload the initial INQUIRY const values if we are doing
1380 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
1381 * passthrough because this is being provided by the backend LLD.
1382 * This is required so that transport_get_inquiry() copies these
1383 * originals once back into DEV_T10_WWN(dev) for the virtual device
1384 * setup.
1385 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001386 if (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
Roland Dreierf22c1192011-05-02 22:15:37 -07001387 if (!inquiry_prod || !inquiry_rev) {
Andy Grover6708bb22011-06-08 10:36:43 -07001388 pr_err("All non TCM/pSCSI plugins require"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001389 " INQUIRY consts\n");
1390 goto out;
1391 }
1392
Andy Grovere3d6f902011-07-19 08:55:10 +00001393 strncpy(&dev->se_sub_dev->t10_wwn.vendor[0], "LIO-ORG", 8);
1394 strncpy(&dev->se_sub_dev->t10_wwn.model[0], inquiry_prod, 16);
1395 strncpy(&dev->se_sub_dev->t10_wwn.revision[0], inquiry_rev, 4);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001396 }
1397 scsi_dump_inquiry(dev);
1398
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001399 return dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001400out:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001401 kthread_stop(dev->process_thread);
1402
1403 spin_lock(&hba->device_lock);
1404 list_del(&dev->dev_list);
1405 hba->dev_count--;
1406 spin_unlock(&hba->device_lock);
1407
1408 se_release_vpd_for_dev(dev);
1409
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001410 kfree(dev);
1411
1412 return NULL;
1413}
1414EXPORT_SYMBOL(transport_add_device_to_core_hba);
1415
1416/* transport_generic_prepare_cdb():
1417 *
1418 * Since the Initiator sees iSCSI devices as LUNs, the SCSI CDB will
1419 * contain the iSCSI LUN in bits 7-5 of byte 1 as per SAM-2.
1420 * The point of this is since we are mapping iSCSI LUNs to
1421 * SCSI Target IDs having a non-zero LUN in the CDB will throw the
1422 * devices and HBAs for a loop.
1423 */
1424static inline void transport_generic_prepare_cdb(
1425 unsigned char *cdb)
1426{
1427 switch (cdb[0]) {
1428 case READ_10: /* SBC - RDProtect */
1429 case READ_12: /* SBC - RDProtect */
1430 case READ_16: /* SBC - RDProtect */
1431 case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */
1432 case VERIFY: /* SBC - VRProtect */
1433 case VERIFY_16: /* SBC - VRProtect */
1434 case WRITE_VERIFY: /* SBC - VRProtect */
1435 case WRITE_VERIFY_12: /* SBC - VRProtect */
1436 break;
1437 default:
1438 cdb[1] &= 0x1f; /* clear logical unit number */
1439 break;
1440 }
1441}
1442
1443static struct se_task *
1444transport_generic_get_task(struct se_cmd *cmd,
1445 enum dma_data_direction data_direction)
1446{
1447 struct se_task *task;
Andy Grover5951146d2011-07-19 10:26:37 +00001448 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001449
Andy Grover6708bb22011-06-08 10:36:43 -07001450 task = dev->transport->alloc_task(cmd->t_task_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001451 if (!task) {
Andy Grover6708bb22011-06-08 10:36:43 -07001452 pr_err("Unable to allocate struct se_task\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001453 return NULL;
1454 }
1455
1456 INIT_LIST_HEAD(&task->t_list);
1457 INIT_LIST_HEAD(&task->t_execute_list);
1458 INIT_LIST_HEAD(&task->t_state_list);
1459 init_completion(&task->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001460 task->task_se_cmd = cmd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001461 task->task_data_direction = data_direction;
1462
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001463 return task;
1464}
1465
1466static int transport_generic_cmd_sequencer(struct se_cmd *, unsigned char *);
1467
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001468/*
1469 * Used by fabric modules containing a local struct se_cmd within their
1470 * fabric dependent per I/O descriptor.
1471 */
1472void transport_init_se_cmd(
1473 struct se_cmd *cmd,
1474 struct target_core_fabric_ops *tfo,
1475 struct se_session *se_sess,
1476 u32 data_length,
1477 int data_direction,
1478 int task_attr,
1479 unsigned char *sense_buffer)
1480{
Andy Grover5951146d2011-07-19 10:26:37 +00001481 INIT_LIST_HEAD(&cmd->se_lun_node);
1482 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001483 INIT_LIST_HEAD(&cmd->se_qf_node);
Roland Dreier79a7fef2011-09-28 22:12:07 -07001484 INIT_LIST_HEAD(&cmd->se_queue_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001485 INIT_LIST_HEAD(&cmd->se_cmd_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001486 INIT_LIST_HEAD(&cmd->t_task_list);
1487 init_completion(&cmd->transport_lun_fe_stop_comp);
1488 init_completion(&cmd->transport_lun_stop_comp);
1489 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001490 init_completion(&cmd->cmd_wait_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001491 spin_lock_init(&cmd->t_state_lock);
1492 atomic_set(&cmd->transport_dev_active, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001493
1494 cmd->se_tfo = tfo;
1495 cmd->se_sess = se_sess;
1496 cmd->data_length = data_length;
1497 cmd->data_direction = data_direction;
1498 cmd->sam_task_attr = task_attr;
1499 cmd->sense_buffer = sense_buffer;
1500}
1501EXPORT_SYMBOL(transport_init_se_cmd);
1502
1503static int transport_check_alloc_task_attr(struct se_cmd *cmd)
1504{
1505 /*
1506 * Check if SAM Task Attribute emulation is enabled for this
1507 * struct se_device storage object
1508 */
Andy Grover5951146d2011-07-19 10:26:37 +00001509 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001510 return 0;
1511
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001512 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001513 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001514 " emulation is not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001515 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001516 }
1517 /*
1518 * Used to determine when ORDERED commands should go from
1519 * Dormant to Active status.
1520 */
Andy Grover5951146d2011-07-19 10:26:37 +00001521 cmd->se_ordered_id = atomic_inc_return(&cmd->se_dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001522 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001523 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001524 cmd->se_ordered_id, cmd->sam_task_attr,
Andy Grover6708bb22011-06-08 10:36:43 -07001525 cmd->se_dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001526 return 0;
1527}
1528
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001529/* transport_generic_allocate_tasks():
1530 *
1531 * Called from fabric RX Thread.
1532 */
1533int transport_generic_allocate_tasks(
1534 struct se_cmd *cmd,
1535 unsigned char *cdb)
1536{
1537 int ret;
1538
1539 transport_generic_prepare_cdb(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001540 /*
1541 * Ensure that the received CDB is less than the max (252 + 8) bytes
1542 * for VARIABLE_LENGTH_CMD
1543 */
1544 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001545 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001546 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1547 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001548 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1549 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grovere3d6f902011-07-19 08:55:10 +00001550 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001551 }
1552 /*
1553 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1554 * allocate the additional extended CDB buffer now.. Otherwise
1555 * setup the pointer from __t_task_cdb to t_task_cdb.
1556 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001557 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1558 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001559 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001560 if (!cmd->t_task_cdb) {
1561 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001562 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001563 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001564 (unsigned long)sizeof(cmd->__t_task_cdb));
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001565 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1566 cmd->scsi_sense_reason =
1567 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grovere3d6f902011-07-19 08:55:10 +00001568 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001569 }
1570 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001571 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001572 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001573 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001574 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001575 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001576 /*
1577 * Setup the received CDB based on SCSI defined opcodes and
1578 * perform unit attention, persistent reservations and ALUA
Andy Grovera1d8b492011-05-02 17:12:10 -07001579 * checks for virtual device backends. The cmd->t_task_cdb
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001580 * pointer is expected to be setup before we reach this point.
1581 */
1582 ret = transport_generic_cmd_sequencer(cmd, cdb);
1583 if (ret < 0)
1584 return ret;
1585 /*
1586 * Check for SAM Task Attribute Emulation
1587 */
1588 if (transport_check_alloc_task_attr(cmd) < 0) {
1589 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1590 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00001591 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001592 }
1593 spin_lock(&cmd->se_lun->lun_sep_lock);
1594 if (cmd->se_lun->lun_sep)
1595 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1596 spin_unlock(&cmd->se_lun->lun_sep_lock);
1597 return 0;
1598}
1599EXPORT_SYMBOL(transport_generic_allocate_tasks);
1600
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001601/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001602 * Used by fabric module frontends to queue tasks directly.
1603 * Many only be used from process context only
1604 */
1605int transport_handle_cdb_direct(
1606 struct se_cmd *cmd)
1607{
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001608 int ret;
1609
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001610 if (!cmd->se_lun) {
1611 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001612 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001613 return -EINVAL;
1614 }
1615 if (in_interrupt()) {
1616 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001617 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001618 " from interrupt context\n");
1619 return -EINVAL;
1620 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001621 /*
1622 * Set TRANSPORT_NEW_CMD state and cmd->t_transport_active=1 following
1623 * transport_generic_handle_cdb*() -> transport_add_cmd_to_queue()
1624 * in existing usage to ensure that outstanding descriptors are handled
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07001625 * correctly during shutdown via transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001626 *
1627 * Also, we don't take cmd->t_state_lock here as we only expect
1628 * this to be called for initial descriptor submission.
1629 */
1630 cmd->t_state = TRANSPORT_NEW_CMD;
1631 atomic_set(&cmd->t_transport_active, 1);
1632 /*
1633 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1634 * so follow TRANSPORT_NEW_CMD processing thread context usage
1635 * and call transport_generic_request_failure() if necessary..
1636 */
1637 ret = transport_generic_new_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001638 if (ret < 0)
1639 transport_generic_request_failure(cmd);
1640
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001641 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001642}
1643EXPORT_SYMBOL(transport_handle_cdb_direct);
1644
Nicholas Bellingera6360782011-11-18 20:36:22 -08001645/**
1646 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1647 *
1648 * @se_cmd: command descriptor to submit
1649 * @se_sess: associated se_sess for endpoint
1650 * @cdb: pointer to SCSI CDB
1651 * @sense: pointer to SCSI sense buffer
1652 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1653 * @data_length: fabric expected data transfer length
1654 * @task_addr: SAM task attribute
1655 * @data_dir: DMA data direction
1656 * @flags: flags for command submission from target_sc_flags_tables
1657 *
1658 * This may only be called from process context, and also currently
1659 * assumes internal allocation of fabric payload buffer by target-core.
1660 **/
1661int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1662 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1663 u32 data_length, int task_attr, int data_dir, int flags)
1664{
1665 struct se_portal_group *se_tpg;
1666 int rc;
1667
1668 se_tpg = se_sess->se_tpg;
1669 BUG_ON(!se_tpg);
1670 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1671 BUG_ON(in_interrupt());
1672 /*
1673 * Initialize se_cmd for target operation. From this point
1674 * exceptions are handled by sending exception status via
1675 * target_core_fabric_ops->queue_status() callback
1676 */
1677 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1678 data_length, data_dir, task_attr, sense);
1679 /*
1680 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1681 * se_sess->sess_cmd_list. A second kref_get here is necessary
1682 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1683 * kref_put() to happen during fabric packet acknowledgement.
1684 */
1685 target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1686 /*
1687 * Signal bidirectional data payloads to target-core
1688 */
1689 if (flags & TARGET_SCF_BIDI_OP)
1690 se_cmd->se_cmd_flags |= SCF_BIDI;
1691 /*
1692 * Locate se_lun pointer and attach it to struct se_cmd
1693 */
1694 if (transport_lookup_cmd_lun(se_cmd, unpacked_lun) < 0)
1695 goto out_check_cond;
1696 /*
1697 * Sanitize CDBs via transport_generic_cmd_sequencer() and
1698 * allocate the necessary tasks to complete the received CDB+data
1699 */
1700 rc = transport_generic_allocate_tasks(se_cmd, cdb);
1701 if (rc != 0)
1702 goto out_check_cond;
1703 /*
1704 * Dispatch se_cmd descriptor to se_lun->lun_se_dev backend
1705 * for immediate execution of READs, otherwise wait for
1706 * transport_generic_handle_data() to be called for WRITEs
1707 * when fabric has filled the incoming buffer.
1708 */
1709 transport_handle_cdb_direct(se_cmd);
1710 return 0;
1711
1712out_check_cond:
1713 transport_send_check_condition_and_sense(se_cmd,
1714 se_cmd->scsi_sense_reason, 0);
1715 return 0;
1716}
1717EXPORT_SYMBOL(target_submit_cmd);
1718
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001719/*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001720 * Used by fabric module frontends defining a TFO->new_cmd_map() caller
1721 * to queue up a newly setup se_cmd w/ TRANSPORT_NEW_CMD_MAP in order to
1722 * complete setup in TCM process context w/ TFO->new_cmd_map().
1723 */
1724int transport_generic_handle_cdb_map(
1725 struct se_cmd *cmd)
1726{
Andy Grovere3d6f902011-07-19 08:55:10 +00001727 if (!cmd->se_lun) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001728 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001729 pr_err("cmd->se_lun is NULL\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001730 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001731 }
1732
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001733 transport_add_cmd_to_queue(cmd, TRANSPORT_NEW_CMD_MAP, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001734 return 0;
1735}
1736EXPORT_SYMBOL(transport_generic_handle_cdb_map);
1737
1738/* transport_generic_handle_data():
1739 *
1740 *
1741 */
1742int transport_generic_handle_data(
1743 struct se_cmd *cmd)
1744{
1745 /*
1746 * For the software fabric case, then we assume the nexus is being
1747 * failed/shutdown when signals are pending from the kthread context
1748 * caller, so we return a failure. For the HW target mode case running
1749 * in interrupt code, the signal_pending() check is skipped.
1750 */
1751 if (!in_interrupt() && signal_pending(current))
Andy Grovere3d6f902011-07-19 08:55:10 +00001752 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001753 /*
1754 * If the received CDB has aleady been ABORTED by the generic
1755 * target engine, we now call transport_check_aborted_status()
1756 * to queue any delated TASK_ABORTED status for the received CDB to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001757 * fabric module as we are expecting no further incoming DATA OUT
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001758 * sequences at this point.
1759 */
1760 if (transport_check_aborted_status(cmd, 1) != 0)
1761 return 0;
1762
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001763 transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_WRITE, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001764 return 0;
1765}
1766EXPORT_SYMBOL(transport_generic_handle_data);
1767
1768/* transport_generic_handle_tmr():
1769 *
1770 *
1771 */
1772int transport_generic_handle_tmr(
1773 struct se_cmd *cmd)
1774{
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001775 transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_TMR, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001776 return 0;
1777}
1778EXPORT_SYMBOL(transport_generic_handle_tmr);
1779
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001780/*
1781 * If the task is active, request it to be stopped and sleep until it
1782 * has completed.
1783 */
1784bool target_stop_task(struct se_task *task, unsigned long *flags)
1785{
1786 struct se_cmd *cmd = task->task_se_cmd;
1787 bool was_active = false;
1788
1789 if (task->task_flags & TF_ACTIVE) {
1790 task->task_flags |= TF_REQUEST_STOP;
1791 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1792
1793 pr_debug("Task %p waiting to complete\n", task);
1794 wait_for_completion(&task->task_stop_comp);
1795 pr_debug("Task %p stopped successfully\n", task);
1796
1797 spin_lock_irqsave(&cmd->t_state_lock, *flags);
1798 atomic_dec(&cmd->t_task_cdbs_left);
1799 task->task_flags &= ~(TF_ACTIVE | TF_REQUEST_STOP);
1800 was_active = true;
1801 }
1802
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001803 return was_active;
1804}
1805
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001806static int transport_stop_tasks_for_cmd(struct se_cmd *cmd)
1807{
1808 struct se_task *task, *task_tmp;
1809 unsigned long flags;
1810 int ret = 0;
1811
Andy Grover6708bb22011-06-08 10:36:43 -07001812 pr_debug("ITT[0x%08x] - Stopping tasks\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001813 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001814
1815 /*
1816 * No tasks remain in the execution queue
1817 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001818 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001819 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07001820 &cmd->t_task_list, t_list) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04001821 pr_debug("Processing task %p\n", task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001822 /*
1823 * If the struct se_task has not been sent and is not active,
1824 * remove the struct se_task from the execution queue.
1825 */
Christoph Hellwig6c76bf92011-10-12 11:07:03 -04001826 if (!(task->task_flags & (TF_ACTIVE | TF_SENT))) {
Andy Grovera1d8b492011-05-02 17:12:10 -07001827 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001828 flags);
1829 transport_remove_task_from_execute_queue(task,
Christoph Hellwig42bf8292011-10-12 11:07:00 -04001830 cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001831
Christoph Hellwig04629b72011-10-12 11:07:04 -04001832 pr_debug("Task %p removed from execute queue\n", task);
Andy Grovera1d8b492011-05-02 17:12:10 -07001833 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001834 continue;
1835 }
1836
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001837 if (!target_stop_task(task, &flags)) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04001838 pr_debug("Task %p - did nothing\n", task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001839 ret++;
1840 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001841 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001842 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001843
1844 return ret;
1845}
1846
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001847/*
1848 * Handle SAM-esque emulation for generic transport request failures.
1849 */
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001850static void transport_generic_request_failure(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001851{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001852 int ret = 0;
1853
Andy Grover6708bb22011-06-08 10:36:43 -07001854 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001855 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001856 cmd->t_task_cdb[0]);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001857 pr_debug("-----[ i_state: %d t_state: %d scsi_sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001858 cmd->se_tfo->get_cmd_state(cmd),
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001859 cmd->t_state, cmd->scsi_sense_reason);
Andy Grover6708bb22011-06-08 10:36:43 -07001860 pr_debug("-----[ t_tasks: %d t_task_cdbs_left: %d"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001861 " t_task_cdbs_sent: %d t_task_cdbs_ex_left: %d --"
1862 " t_transport_active: %d t_transport_stop: %d"
Andy Grover6708bb22011-06-08 10:36:43 -07001863 " t_transport_sent: %d\n", cmd->t_task_list_num,
Andy Grovera1d8b492011-05-02 17:12:10 -07001864 atomic_read(&cmd->t_task_cdbs_left),
1865 atomic_read(&cmd->t_task_cdbs_sent),
1866 atomic_read(&cmd->t_task_cdbs_ex_left),
1867 atomic_read(&cmd->t_transport_active),
1868 atomic_read(&cmd->t_transport_stop),
1869 atomic_read(&cmd->t_transport_sent));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001870
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001871 /*
1872 * For SAM Task Attribute emulation for failed struct se_cmd
1873 */
1874 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1875 transport_complete_task_attr(cmd);
1876
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001877 switch (cmd->scsi_sense_reason) {
1878 case TCM_NON_EXISTENT_LUN:
1879 case TCM_UNSUPPORTED_SCSI_OPCODE:
1880 case TCM_INVALID_CDB_FIELD:
1881 case TCM_INVALID_PARAMETER_LIST:
1882 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1883 case TCM_UNKNOWN_MODE_PAGE:
1884 case TCM_WRITE_PROTECTED:
1885 case TCM_CHECK_CONDITION_ABORT_CMD:
1886 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1887 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001888 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001889 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001890 /*
1891 * No SENSE Data payload for this case, set SCSI Status
1892 * and queue the response to $FABRIC_MOD.
1893 *
1894 * Uses linux/include/scsi/scsi.h SAM status codes defs
1895 */
1896 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1897 /*
1898 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1899 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1900 * CONFLICT STATUS.
1901 *
1902 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1903 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001904 if (cmd->se_sess &&
1905 cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2)
1906 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001907 cmd->orig_fe_lun, 0x2C,
1908 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1909
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001910 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001911 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001912 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001913 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001914 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001915 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001916 cmd->t_task_cdb[0], cmd->scsi_sense_reason);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001917 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1918 break;
1919 }
Nicholas Bellinger16ab8e62011-08-08 19:03:38 -07001920 /*
1921 * If a fabric does not define a cmd->se_tfo->new_cmd_map caller,
1922 * make the call to transport_send_check_condition_and_sense()
1923 * directly. Otherwise expect the fabric to make the call to
1924 * transport_send_check_condition_and_sense() after handling
1925 * possible unsoliticied write data payloads.
1926 */
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001927 ret = transport_send_check_condition_and_sense(cmd,
1928 cmd->scsi_sense_reason, 0);
1929 if (ret == -EAGAIN || ret == -ENOMEM)
1930 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001931
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001932check_stop:
1933 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001934 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001935 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001936 return;
1937
1938queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001939 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1940 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001941}
1942
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001943static inline u32 transport_lba_21(unsigned char *cdb)
1944{
1945 return ((cdb[1] & 0x1f) << 16) | (cdb[2] << 8) | cdb[3];
1946}
1947
1948static inline u32 transport_lba_32(unsigned char *cdb)
1949{
1950 return (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
1951}
1952
1953static inline unsigned long long transport_lba_64(unsigned char *cdb)
1954{
1955 unsigned int __v1, __v2;
1956
1957 __v1 = (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
1958 __v2 = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1959
1960 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
1961}
1962
1963/*
1964 * For VARIABLE_LENGTH_CDB w/ 32 byte extended CDBs
1965 */
1966static inline unsigned long long transport_lba_64_ext(unsigned char *cdb)
1967{
1968 unsigned int __v1, __v2;
1969
1970 __v1 = (cdb[12] << 24) | (cdb[13] << 16) | (cdb[14] << 8) | cdb[15];
1971 __v2 = (cdb[16] << 24) | (cdb[17] << 16) | (cdb[18] << 8) | cdb[19];
1972
1973 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
1974}
1975
1976static void transport_set_supported_SAM_opcode(struct se_cmd *se_cmd)
1977{
1978 unsigned long flags;
1979
Andy Grovera1d8b492011-05-02 17:12:10 -07001980 spin_lock_irqsave(&se_cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001981 se_cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Andy Grovera1d8b492011-05-02 17:12:10 -07001982 spin_unlock_irqrestore(&se_cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001983}
1984
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985static inline int transport_tcq_window_closed(struct se_device *dev)
1986{
1987 if (dev->dev_tcq_window_closed++ <
1988 PYX_TRANSPORT_WINDOW_CLOSED_THRESHOLD) {
1989 msleep(PYX_TRANSPORT_WINDOW_CLOSED_WAIT_SHORT);
1990 } else
1991 msleep(PYX_TRANSPORT_WINDOW_CLOSED_WAIT_LONG);
1992
Andy Grovere3d6f902011-07-19 08:55:10 +00001993 wake_up_interruptible(&dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001994 return 0;
1995}
1996
1997/*
1998 * Called from Fabric Module context from transport_execute_tasks()
1999 *
2000 * The return of this function determins if the tasks from struct se_cmd
2001 * get added to the execution queue in transport_execute_tasks(),
2002 * or are added to the delayed or ordered lists here.
2003 */
2004static inline int transport_execute_task_attr(struct se_cmd *cmd)
2005{
Andy Grover5951146d2011-07-19 10:26:37 +00002006 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002007 return 1;
2008 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002009 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002010 * to allow the passed struct se_cmd list of tasks to the front of the list.
2011 */
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07002012 if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07002013 pr_debug("Added HEAD_OF_QUEUE for CDB:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002014 " 0x%02x, se_ordered_id: %u\n",
Andy Grover6708bb22011-06-08 10:36:43 -07002015 cmd->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002016 cmd->se_ordered_id);
2017 return 1;
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07002018 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Andy Grover5951146d2011-07-19 10:26:37 +00002019 atomic_inc(&cmd->se_dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002020 smp_mb__after_atomic_inc();
2021
Andy Grover6708bb22011-06-08 10:36:43 -07002022 pr_debug("Added ORDERED for CDB: 0x%02x to ordered"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002023 " list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002024 cmd->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002025 cmd->se_ordered_id);
2026 /*
2027 * Add ORDERED command to tail of execution queue if
2028 * no other older commands exist that need to be
2029 * completed first.
2030 */
Andy Grover6708bb22011-06-08 10:36:43 -07002031 if (!atomic_read(&cmd->se_dev->simple_cmds))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002032 return 1;
2033 } else {
2034 /*
2035 * For SIMPLE and UNTAGGED Task Attribute commands
2036 */
Andy Grover5951146d2011-07-19 10:26:37 +00002037 atomic_inc(&cmd->se_dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002038 smp_mb__after_atomic_inc();
2039 }
2040 /*
2041 * Otherwise if one or more outstanding ORDERED task attribute exist,
2042 * add the dormant task(s) built for the passed struct se_cmd to the
2043 * execution queue and become in Active state for this struct se_device.
2044 */
Andy Grover5951146d2011-07-19 10:26:37 +00002045 if (atomic_read(&cmd->se_dev->dev_ordered_sync) != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002046 /*
2047 * Otherwise, add cmd w/ tasks to delayed cmd queue that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002048 * will be drained upon completion of HEAD_OF_QUEUE task.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002049 */
Andy Grover5951146d2011-07-19 10:26:37 +00002050 spin_lock(&cmd->se_dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002051 cmd->se_cmd_flags |= SCF_DELAYED_CMD_FROM_SAM_ATTR;
Andy Grover5951146d2011-07-19 10:26:37 +00002052 list_add_tail(&cmd->se_delayed_node,
2053 &cmd->se_dev->delayed_cmd_list);
2054 spin_unlock(&cmd->se_dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002055
Andy Grover6708bb22011-06-08 10:36:43 -07002056 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002057 " delayed CMD list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002058 cmd->t_task_cdb[0], cmd->sam_task_attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002059 cmd->se_ordered_id);
2060 /*
2061 * Return zero to let transport_execute_tasks() know
2062 * not to add the delayed tasks to the execution list.
2063 */
2064 return 0;
2065 }
2066 /*
2067 * Otherwise, no ORDERED task attributes exist..
2068 */
2069 return 1;
2070}
2071
2072/*
2073 * Called from fabric module context in transport_generic_new_cmd() and
2074 * transport_generic_process_write()
2075 */
2076static int transport_execute_tasks(struct se_cmd *cmd)
2077{
2078 int add_tasks;
2079
Christoph Hellwig58a28012011-11-14 11:36:27 -05002080 if (se_dev_check_online(cmd->se_dev) != 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002081 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2082 transport_generic_request_failure(cmd);
Christoph Hellwigdb1620a2011-05-31 17:06:43 -04002083 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002084 }
Christoph Hellwigdb1620a2011-05-31 17:06:43 -04002085
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 /*
2087 * Call transport_cmd_check_stop() to see if a fabric exception
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002088 * has occurred that prevents execution.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002089 */
Andy Grover6708bb22011-06-08 10:36:43 -07002090 if (!transport_cmd_check_stop(cmd, 0, TRANSPORT_PROCESSING)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002091 /*
2092 * Check for SAM Task Attribute emulation and HEAD_OF_QUEUE
2093 * attribute for the tasks of the received struct se_cmd CDB
2094 */
2095 add_tasks = transport_execute_task_attr(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002096 if (!add_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002097 goto execute_tasks;
2098 /*
2099 * This calls transport_add_tasks_from_cmd() to handle
2100 * HEAD_OF_QUEUE ordering for SAM Task Attribute emulation
2101 * (if enabled) in __transport_add_task_to_execute_queue() and
2102 * transport_add_task_check_sam_attr().
2103 */
2104 transport_add_tasks_from_cmd(cmd);
2105 }
2106 /*
2107 * Kick the execution queue for the cmd associated struct se_device
2108 * storage object.
2109 */
2110execute_tasks:
Andy Grover5951146d2011-07-19 10:26:37 +00002111 __transport_execute_tasks(cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002112 return 0;
2113}
2114
2115/*
2116 * Called to check struct se_device tcq depth window, and once open pull struct se_task
2117 * from struct se_device->execute_task_list and
2118 *
2119 * Called from transport_processing_thread()
2120 */
2121static int __transport_execute_tasks(struct se_device *dev)
2122{
2123 int error;
2124 struct se_cmd *cmd = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +00002125 struct se_task *task = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002126 unsigned long flags;
2127
2128 /*
2129 * Check if there is enough room in the device and HBA queue to send
Andy Grovera1d8b492011-05-02 17:12:10 -07002130 * struct se_tasks to the selected transport.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002131 */
2132check_depth:
Andy Grovere3d6f902011-07-19 08:55:10 +00002133 if (!atomic_read(&dev->depth_left))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002134 return transport_tcq_window_closed(dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00002135
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002136 dev->dev_tcq_window_closed = 0;
2137
Andy Grovere3d6f902011-07-19 08:55:10 +00002138 spin_lock_irq(&dev->execute_task_lock);
2139 if (list_empty(&dev->execute_task_list)) {
2140 spin_unlock_irq(&dev->execute_task_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002141 return 0;
2142 }
Andy Grovere3d6f902011-07-19 08:55:10 +00002143 task = list_first_entry(&dev->execute_task_list,
2144 struct se_task, t_execute_list);
Christoph Hellwig04629b72011-10-12 11:07:04 -04002145 __transport_remove_task_from_execute_queue(task, dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00002146 spin_unlock_irq(&dev->execute_task_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002147
2148 atomic_dec(&dev->depth_left);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149
Andy Grovere3d6f902011-07-19 08:55:10 +00002150 cmd = task->task_se_cmd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002151
Andy Grovera1d8b492011-05-02 17:12:10 -07002152 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig6c76bf92011-10-12 11:07:03 -04002153 task->task_flags |= (TF_ACTIVE | TF_SENT);
Andy Grovera1d8b492011-05-02 17:12:10 -07002154 atomic_inc(&cmd->t_task_cdbs_sent);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002155
Andy Grovera1d8b492011-05-02 17:12:10 -07002156 if (atomic_read(&cmd->t_task_cdbs_sent) ==
2157 cmd->t_task_list_num)
Nicholas Bellinger415a0902011-10-23 18:16:13 -07002158 atomic_set(&cmd->t_transport_sent, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002159
Andy Grovera1d8b492011-05-02 17:12:10 -07002160 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002161
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002162 if (cmd->execute_task)
2163 error = cmd->execute_task(task);
2164 else
2165 error = dev->transport->do_task(task);
Christoph Hellwigd29a5b62011-11-03 17:50:44 -04002166 if (error != 0) {
Christoph Hellwigd29a5b62011-11-03 17:50:44 -04002167 spin_lock_irqsave(&cmd->t_state_lock, flags);
2168 task->task_flags &= ~TF_ACTIVE;
2169 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2170 atomic_set(&cmd->t_transport_sent, 0);
2171 transport_stop_tasks_for_cmd(cmd);
2172 atomic_inc(&dev->depth_left);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002173 transport_generic_request_failure(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002174 }
2175
2176 goto check_depth;
2177
2178 return 0;
2179}
2180
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002181static inline u32 transport_get_sectors_6(
2182 unsigned char *cdb,
2183 struct se_cmd *cmd,
2184 int *ret)
2185{
Andy Grover5951146d2011-07-19 10:26:37 +00002186 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002187
2188 /*
2189 * Assume TYPE_DISK for non struct se_device objects.
2190 * Use 8-bit sector value.
2191 */
2192 if (!dev)
2193 goto type_disk;
2194
2195 /*
2196 * Use 24-bit allocation length for TYPE_TAPE.
2197 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002198 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002199 return (u32)(cdb[2] << 16) + (cdb[3] << 8) + cdb[4];
2200
2201 /*
2202 * Everything else assume TYPE_DISK Sector CDB location.
Roland Dreier9b5cd7f2011-11-22 13:51:33 -08002203 * Use 8-bit sector value. SBC-3 says:
2204 *
2205 * A TRANSFER LENGTH field set to zero specifies that 256
2206 * logical blocks shall be written. Any other value
2207 * specifies the number of logical blocks that shall be
2208 * written.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002209 */
2210type_disk:
Roland Dreier9b5cd7f2011-11-22 13:51:33 -08002211 return cdb[4] ? : 256;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002212}
2213
2214static inline u32 transport_get_sectors_10(
2215 unsigned char *cdb,
2216 struct se_cmd *cmd,
2217 int *ret)
2218{
Andy Grover5951146d2011-07-19 10:26:37 +00002219 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002220
2221 /*
2222 * Assume TYPE_DISK for non struct se_device objects.
2223 * Use 16-bit sector value.
2224 */
2225 if (!dev)
2226 goto type_disk;
2227
2228 /*
2229 * XXX_10 is not defined in SSC, throw an exception
2230 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002231 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
2232 *ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002233 return 0;
2234 }
2235
2236 /*
2237 * Everything else assume TYPE_DISK Sector CDB location.
2238 * Use 16-bit sector value.
2239 */
2240type_disk:
2241 return (u32)(cdb[7] << 8) + cdb[8];
2242}
2243
2244static inline u32 transport_get_sectors_12(
2245 unsigned char *cdb,
2246 struct se_cmd *cmd,
2247 int *ret)
2248{
Andy Grover5951146d2011-07-19 10:26:37 +00002249 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002250
2251 /*
2252 * Assume TYPE_DISK for non struct se_device objects.
2253 * Use 32-bit sector value.
2254 */
2255 if (!dev)
2256 goto type_disk;
2257
2258 /*
2259 * XXX_12 is not defined in SSC, throw an exception
2260 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002261 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
2262 *ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002263 return 0;
2264 }
2265
2266 /*
2267 * Everything else assume TYPE_DISK Sector CDB location.
2268 * Use 32-bit sector value.
2269 */
2270type_disk:
2271 return (u32)(cdb[6] << 24) + (cdb[7] << 16) + (cdb[8] << 8) + cdb[9];
2272}
2273
2274static inline u32 transport_get_sectors_16(
2275 unsigned char *cdb,
2276 struct se_cmd *cmd,
2277 int *ret)
2278{
Andy Grover5951146d2011-07-19 10:26:37 +00002279 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002280
2281 /*
2282 * Assume TYPE_DISK for non struct se_device objects.
2283 * Use 32-bit sector value.
2284 */
2285 if (!dev)
2286 goto type_disk;
2287
2288 /*
2289 * Use 24-bit allocation length for TYPE_TAPE.
2290 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002291 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002292 return (u32)(cdb[12] << 16) + (cdb[13] << 8) + cdb[14];
2293
2294type_disk:
2295 return (u32)(cdb[10] << 24) + (cdb[11] << 16) +
2296 (cdb[12] << 8) + cdb[13];
2297}
2298
2299/*
2300 * Used for VARIABLE_LENGTH_CDB WRITE_32 and READ_32 variants
2301 */
2302static inline u32 transport_get_sectors_32(
2303 unsigned char *cdb,
2304 struct se_cmd *cmd,
2305 int *ret)
2306{
2307 /*
2308 * Assume TYPE_DISK for non struct se_device objects.
2309 * Use 32-bit sector value.
2310 */
2311 return (u32)(cdb[28] << 24) + (cdb[29] << 16) +
2312 (cdb[30] << 8) + cdb[31];
2313
2314}
2315
2316static inline u32 transport_get_size(
2317 u32 sectors,
2318 unsigned char *cdb,
2319 struct se_cmd *cmd)
2320{
Andy Grover5951146d2011-07-19 10:26:37 +00002321 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002322
Andy Grovere3d6f902011-07-19 08:55:10 +00002323 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002324 if (cdb[1] & 1) { /* sectors */
Andy Grovere3d6f902011-07-19 08:55:10 +00002325 return dev->se_sub_dev->se_dev_attrib.block_size * sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002326 } else /* bytes */
2327 return sectors;
2328 }
2329#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07002330 pr_debug("Returning block_size: %u, sectors: %u == %u for"
Andy Grovere3d6f902011-07-19 08:55:10 +00002331 " %s object\n", dev->se_sub_dev->se_dev_attrib.block_size, sectors,
2332 dev->se_sub_dev->se_dev_attrib.block_size * sectors,
2333 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002334#endif
Andy Grovere3d6f902011-07-19 08:55:10 +00002335 return dev->se_sub_dev->se_dev_attrib.block_size * sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002336}
2337
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002338static void transport_xor_callback(struct se_cmd *cmd)
2339{
2340 unsigned char *buf, *addr;
Andy Groverec98f782011-07-20 19:28:46 +00002341 struct scatterlist *sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002342 unsigned int offset;
2343 int i;
Andy Groverec98f782011-07-20 19:28:46 +00002344 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002345 /*
2346 * From sbc3r22.pdf section 5.48 XDWRITEREAD (10) command
2347 *
2348 * 1) read the specified logical block(s);
2349 * 2) transfer logical blocks from the data-out buffer;
2350 * 3) XOR the logical blocks transferred from the data-out buffer with
2351 * the logical blocks read, storing the resulting XOR data in a buffer;
2352 * 4) if the DISABLE WRITE bit is set to zero, then write the logical
2353 * blocks transferred from the data-out buffer; and
2354 * 5) transfer the resulting XOR data to the data-in buffer.
2355 */
2356 buf = kmalloc(cmd->data_length, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002357 if (!buf) {
2358 pr_err("Unable to allocate xor_callback buf\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002359 return;
2360 }
2361 /*
Andy Groverec98f782011-07-20 19:28:46 +00002362 * Copy the scatterlist WRITE buffer located at cmd->t_data_sg
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002363 * into the locally allocated *buf
2364 */
Andy Groverec98f782011-07-20 19:28:46 +00002365 sg_copy_to_buffer(cmd->t_data_sg,
2366 cmd->t_data_nents,
2367 buf,
2368 cmd->data_length);
2369
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002370 /*
2371 * Now perform the XOR against the BIDI read memory located at
Andy Grovera1d8b492011-05-02 17:12:10 -07002372 * cmd->t_mem_bidi_list
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002373 */
2374
2375 offset = 0;
Andy Groverec98f782011-07-20 19:28:46 +00002376 for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, count) {
2377 addr = kmap_atomic(sg_page(sg), KM_USER0);
2378 if (!addr)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002379 goto out;
2380
Andy Groverec98f782011-07-20 19:28:46 +00002381 for (i = 0; i < sg->length; i++)
2382 *(addr + sg->offset + i) ^= *(buf + offset + i);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002383
Andy Groverec98f782011-07-20 19:28:46 +00002384 offset += sg->length;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002385 kunmap_atomic(addr, KM_USER0);
2386 }
Andy Groverec98f782011-07-20 19:28:46 +00002387
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002388out:
2389 kfree(buf);
2390}
2391
2392/*
2393 * Used to obtain Sense Data from underlying Linux/SCSI struct scsi_cmnd
2394 */
2395static int transport_get_sense_data(struct se_cmd *cmd)
2396{
2397 unsigned char *buffer = cmd->sense_buffer, *sense_buffer = NULL;
Christoph Hellwig42bf8292011-10-12 11:07:00 -04002398 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002399 struct se_task *task = NULL, *task_tmp;
2400 unsigned long flags;
2401 u32 offset = 0;
2402
Andy Grovere3d6f902011-07-19 08:55:10 +00002403 WARN_ON(!cmd->se_lun);
2404
Christoph Hellwig42bf8292011-10-12 11:07:00 -04002405 if (!dev)
2406 return 0;
2407
Andy Grovera1d8b492011-05-02 17:12:10 -07002408 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002409 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002410 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002411 return 0;
2412 }
2413
2414 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07002415 &cmd->t_task_list, t_list) {
Christoph Hellwigef804a82011-11-23 06:53:58 -05002416 if (!(task->task_flags & TF_HAS_SENSE))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002417 continue;
2418
Andy Grovere3d6f902011-07-19 08:55:10 +00002419 if (!dev->transport->get_sense_buffer) {
Andy Grover6708bb22011-06-08 10:36:43 -07002420 pr_err("dev->transport->get_sense_buffer"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002421 " is NULL\n");
2422 continue;
2423 }
2424
Andy Grovere3d6f902011-07-19 08:55:10 +00002425 sense_buffer = dev->transport->get_sense_buffer(task);
Andy Grover6708bb22011-06-08 10:36:43 -07002426 if (!sense_buffer) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04002427 pr_err("ITT[0x%08x]_TASK[%p]: Unable to locate"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002428 " sense buffer for task with sense\n",
Christoph Hellwig04629b72011-10-12 11:07:04 -04002429 cmd->se_tfo->get_task_tag(cmd), task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430 continue;
2431 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002432 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433
Andy Grovere3d6f902011-07-19 08:55:10 +00002434 offset = cmd->se_tfo->set_fabric_sense_len(cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002435 TRANSPORT_SENSE_BUFFER);
2436
Andy Grover5951146d2011-07-19 10:26:37 +00002437 memcpy(&buffer[offset], sense_buffer,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002438 TRANSPORT_SENSE_BUFFER);
2439 cmd->scsi_status = task->task_scsi_status;
2440 /* Automatically padded */
2441 cmd->scsi_sense_length =
2442 (TRANSPORT_SENSE_BUFFER + offset);
2443
Andy Grover6708bb22011-06-08 10:36:43 -07002444 pr_debug("HBA_[%u]_PLUG[%s]: Set SAM STATUS: 0x%02x"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002445 " and sense\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002446 dev->se_hba->hba_id, dev->transport->name,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002447 cmd->scsi_status);
2448 return 0;
2449 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002450 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002451
2452 return -1;
2453}
2454
Andy Groverec98f782011-07-20 19:28:46 +00002455static inline long long transport_dev_end_lba(struct se_device *dev)
2456{
2457 return dev->transport->get_blocks(dev) + 1;
2458}
2459
2460static int transport_cmd_get_valid_sectors(struct se_cmd *cmd)
2461{
2462 struct se_device *dev = cmd->se_dev;
2463 u32 sectors;
2464
2465 if (dev->transport->get_device_type(dev) != TYPE_DISK)
2466 return 0;
2467
2468 sectors = (cmd->data_length / dev->se_sub_dev->se_dev_attrib.block_size);
2469
Andy Grover6708bb22011-06-08 10:36:43 -07002470 if ((cmd->t_task_lba + sectors) > transport_dev_end_lba(dev)) {
2471 pr_err("LBA: %llu Sectors: %u exceeds"
Andy Groverec98f782011-07-20 19:28:46 +00002472 " transport_dev_end_lba(): %llu\n",
2473 cmd->t_task_lba, sectors,
2474 transport_dev_end_lba(dev));
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002475 return -EINVAL;
Andy Groverec98f782011-07-20 19:28:46 +00002476 }
2477
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002478 return 0;
Andy Groverec98f782011-07-20 19:28:46 +00002479}
2480
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002481static int target_check_write_same_discard(unsigned char *flags, struct se_device *dev)
2482{
2483 /*
2484 * Determine if the received WRITE_SAME is used to for direct
2485 * passthrough into Linux/SCSI with struct request via TCM/pSCSI
2486 * or we are signaling the use of internal WRITE_SAME + UNMAP=1
2487 * emulation for -> Linux/BLOCK disbard with TCM/IBLOCK code.
2488 */
2489 int passthrough = (dev->transport->transport_type ==
2490 TRANSPORT_PLUGIN_PHBA_PDEV);
2491
2492 if (!passthrough) {
2493 if ((flags[0] & 0x04) || (flags[0] & 0x02)) {
2494 pr_err("WRITE_SAME PBDATA and LBDATA"
2495 " bits not supported for Block Discard"
2496 " Emulation\n");
2497 return -ENOSYS;
2498 }
2499 /*
2500 * Currently for the emulated case we only accept
2501 * tpws with the UNMAP=1 bit set.
2502 */
2503 if (!(flags[0] & 0x08)) {
2504 pr_err("WRITE_SAME w/o UNMAP bit not"
2505 " supported for Block Discard Emulation\n");
2506 return -ENOSYS;
2507 }
2508 }
2509
2510 return 0;
2511}
2512
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002513/* transport_generic_cmd_sequencer():
2514 *
2515 * Generic Command Sequencer that should work for most DAS transport
2516 * drivers.
2517 *
2518 * Called from transport_generic_allocate_tasks() in the $FABRIC_MOD
2519 * RX Thread.
2520 *
2521 * FIXME: Need to support other SCSI OPCODES where as well.
2522 */
2523static int transport_generic_cmd_sequencer(
2524 struct se_cmd *cmd,
2525 unsigned char *cdb)
2526{
Andy Grover5951146d2011-07-19 10:26:37 +00002527 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002528 struct se_subsystem_dev *su_dev = dev->se_sub_dev;
2529 int ret = 0, sector_ret = 0, passthrough;
2530 u32 sectors = 0, size = 0, pr_reg_type = 0;
2531 u16 service_action;
2532 u8 alua_ascq = 0;
2533 /*
2534 * Check for an existing UNIT ATTENTION condition
2535 */
2536 if (core_scsi3_ua_check(cmd, cdb) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2538 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_UNIT_ATTENTION;
Andy Grover5951146d2011-07-19 10:26:37 +00002539 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002540 }
2541 /*
2542 * Check status of Asymmetric Logical Unit Assignment port
2543 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002544 ret = su_dev->t10_alua.alua_state_check(cmd, cdb, &alua_ascq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002545 if (ret != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002547 * Set SCSI additional sense code (ASC) to 'LUN Not Accessible';
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002548 * The ALUA additional sense code qualifier (ASCQ) is determined
2549 * by the ALUA primary or secondary access state..
2550 */
2551 if (ret > 0) {
2552#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07002553 pr_debug("[%s]: ALUA TG Port not available,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002554 " SenseKey: NOT_READY, ASC/ASCQ: 0x04/0x%02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002555 cmd->se_tfo->get_fabric_name(), alua_ascq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002556#endif
2557 transport_set_sense_codes(cmd, 0x04, alua_ascq);
2558 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2559 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_NOT_READY;
Andy Grover5951146d2011-07-19 10:26:37 +00002560 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002561 }
2562 goto out_invalid_cdb_field;
2563 }
2564 /*
2565 * Check status for SPC-3 Persistent Reservations
2566 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002567 if (su_dev->t10_pr.pr_ops.t10_reservation_check(cmd, &pr_reg_type) != 0) {
2568 if (su_dev->t10_pr.pr_ops.t10_seq_non_holder(
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002569 cmd, cdb, pr_reg_type) != 0) {
2570 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2571 cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT;
2572 cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT;
2573 return -EBUSY;
2574 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002575 /*
2576 * This means the CDB is allowed for the SCSI Initiator port
2577 * when said port is *NOT* holding the legacy SPC-2 or
2578 * SPC-3 Persistent Reservation.
2579 */
2580 }
2581
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002582 /*
2583 * If we operate in passthrough mode we skip most CDB emulation and
2584 * instead hand the commands down to the physical SCSI device.
2585 */
2586 passthrough =
2587 (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV);
2588
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002589 switch (cdb[0]) {
2590 case READ_6:
2591 sectors = transport_get_sectors_6(cdb, cmd, &sector_ret);
2592 if (sector_ret)
2593 goto out_unsupported_cdb;
2594 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002595 cmd->t_task_lba = transport_lba_21(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002596 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2597 break;
2598 case READ_10:
2599 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2600 if (sector_ret)
2601 goto out_unsupported_cdb;
2602 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002603 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002604 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2605 break;
2606 case READ_12:
2607 sectors = transport_get_sectors_12(cdb, cmd, &sector_ret);
2608 if (sector_ret)
2609 goto out_unsupported_cdb;
2610 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002611 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002612 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2613 break;
2614 case READ_16:
2615 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2616 if (sector_ret)
2617 goto out_unsupported_cdb;
2618 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002619 cmd->t_task_lba = transport_lba_64(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002620 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2621 break;
2622 case WRITE_6:
2623 sectors = transport_get_sectors_6(cdb, cmd, &sector_ret);
2624 if (sector_ret)
2625 goto out_unsupported_cdb;
2626 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002627 cmd->t_task_lba = transport_lba_21(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002628 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2629 break;
2630 case WRITE_10:
2631 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2632 if (sector_ret)
2633 goto out_unsupported_cdb;
2634 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002635 cmd->t_task_lba = transport_lba_32(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002636 if (cdb[1] & 0x8)
2637 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002638 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2639 break;
2640 case WRITE_12:
2641 sectors = transport_get_sectors_12(cdb, cmd, &sector_ret);
2642 if (sector_ret)
2643 goto out_unsupported_cdb;
2644 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002645 cmd->t_task_lba = transport_lba_32(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002646 if (cdb[1] & 0x8)
2647 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002648 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2649 break;
2650 case WRITE_16:
2651 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2652 if (sector_ret)
2653 goto out_unsupported_cdb;
2654 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002655 cmd->t_task_lba = transport_lba_64(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002656 if (cdb[1] & 0x8)
2657 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002658 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2659 break;
2660 case XDWRITEREAD_10:
2661 if ((cmd->data_direction != DMA_TO_DEVICE) ||
Christoph Hellwig33c3faf2011-11-14 11:36:30 -05002662 !(cmd->se_cmd_flags & SCF_BIDI))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002663 goto out_invalid_cdb_field;
2664 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2665 if (sector_ret)
2666 goto out_unsupported_cdb;
2667 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002668 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002669 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002670
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002671 /*
2672 * Do now allow BIDI commands for passthrough mode.
2673 */
2674 if (passthrough)
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002675 goto out_unsupported_cdb;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002676
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677 /*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002678 * Setup BIDI XOR callback to be run after I/O completion.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 */
2680 cmd->transport_complete_callback = &transport_xor_callback;
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002681 if (cdb[1] & 0x8)
2682 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002683 break;
2684 case VARIABLE_LENGTH_CMD:
2685 service_action = get_unaligned_be16(&cdb[8]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 switch (service_action) {
2687 case XDWRITEREAD_32:
2688 sectors = transport_get_sectors_32(cdb, cmd, &sector_ret);
2689 if (sector_ret)
2690 goto out_unsupported_cdb;
2691 size = transport_get_size(sectors, cdb, cmd);
2692 /*
2693 * Use WRITE_32 and READ_32 opcodes for the emulated
2694 * XDWRITE_READ_32 logic.
2695 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002696 cmd->t_task_lba = transport_lba_64_ext(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2698
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002699 /*
2700 * Do now allow BIDI commands for passthrough mode.
2701 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 if (passthrough)
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002703 goto out_unsupported_cdb;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002704
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002705 /*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002706 * Setup BIDI XOR callback to be run during after I/O
2707 * completion.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002708 */
2709 cmd->transport_complete_callback = &transport_xor_callback;
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002710 if (cdb[1] & 0x8)
2711 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002712 break;
2713 case WRITE_SAME_32:
2714 sectors = transport_get_sectors_32(cdb, cmd, &sector_ret);
2715 if (sector_ret)
2716 goto out_unsupported_cdb;
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002717
Andy Grover6708bb22011-06-08 10:36:43 -07002718 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07002719 size = transport_get_size(1, cdb, cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002720 else {
2721 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not"
2722 " supported\n");
2723 goto out_invalid_cdb_field;
2724 }
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002725
Andy Grovera1d8b492011-05-02 17:12:10 -07002726 cmd->t_task_lba = get_unaligned_be64(&cdb[12]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002727 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2728
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002729 if (target_check_write_same_discard(&cdb[10], dev) < 0)
2730 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002731 if (!passthrough)
2732 cmd->execute_task = target_emulate_write_same;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002733 break;
2734 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002735 pr_err("VARIABLE_LENGTH_CMD service action"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002736 " 0x%04x not supported\n", service_action);
2737 goto out_unsupported_cdb;
2738 }
2739 break;
Nicholas Bellingere434f1f12011-02-21 07:49:26 +00002740 case MAINTENANCE_IN:
Andy Grovere3d6f902011-07-19 08:55:10 +00002741 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 /* MAINTENANCE_IN from SCC-2 */
2743 /*
2744 * Check for emulated MI_REPORT_TARGET_PGS.
2745 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002746 if (cdb[1] == MI_REPORT_TARGET_PGS &&
2747 su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
2748 cmd->execute_task =
2749 target_emulate_report_target_port_groups;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002750 }
2751 size = (cdb[6] << 24) | (cdb[7] << 16) |
2752 (cdb[8] << 8) | cdb[9];
2753 } else {
2754 /* GPCMD_SEND_KEY from multi media commands */
2755 size = (cdb[8] << 8) + cdb[9];
2756 }
Andy Grover05d1c7c2011-07-20 19:13:28 +00002757 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002758 break;
2759 case MODE_SELECT:
2760 size = cdb[4];
2761 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2762 break;
2763 case MODE_SELECT_10:
2764 size = (cdb[7] << 8) + cdb[8];
2765 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2766 break;
2767 case MODE_SENSE:
2768 size = cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002769 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002770 if (!passthrough)
2771 cmd->execute_task = target_emulate_modesense;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002772 break;
2773 case MODE_SENSE_10:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002774 size = (cdb[7] << 8) + cdb[8];
2775 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2776 if (!passthrough)
2777 cmd->execute_task = target_emulate_modesense;
2778 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002779 case GPCMD_READ_BUFFER_CAPACITY:
2780 case GPCMD_SEND_OPC:
2781 case LOG_SELECT:
2782 case LOG_SENSE:
2783 size = (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002784 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002785 break;
2786 case READ_BLOCK_LIMITS:
2787 size = READ_BLOCK_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002788 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002789 break;
2790 case GPCMD_GET_CONFIGURATION:
2791 case GPCMD_READ_FORMAT_CAPACITIES:
2792 case GPCMD_READ_DISC_INFO:
2793 case GPCMD_READ_TRACK_RZONE_INFO:
2794 size = (cdb[7] << 8) + cdb[8];
2795 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2796 break;
2797 case PERSISTENT_RESERVE_IN:
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002798 if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002799 cmd->execute_task = target_scsi3_emulate_pr_in;
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002800 size = (cdb[7] << 8) + cdb[8];
2801 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2802 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002803 case PERSISTENT_RESERVE_OUT:
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002804 if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002805 cmd->execute_task = target_scsi3_emulate_pr_out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806 size = (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002807 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808 break;
2809 case GPCMD_MECHANISM_STATUS:
2810 case GPCMD_READ_DVD_STRUCTURE:
2811 size = (cdb[8] << 8) + cdb[9];
2812 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2813 break;
2814 case READ_POSITION:
2815 size = READ_POSITION_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002816 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002817 break;
Nicholas Bellingere434f1f12011-02-21 07:49:26 +00002818 case MAINTENANCE_OUT:
Andy Grovere3d6f902011-07-19 08:55:10 +00002819 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002820 /* MAINTENANCE_OUT from SCC-2
2821 *
2822 * Check for emulated MO_SET_TARGET_PGS.
2823 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002824 if (cdb[1] == MO_SET_TARGET_PGS &&
2825 su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
2826 cmd->execute_task =
2827 target_emulate_set_target_port_groups;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002828 }
2829
2830 size = (cdb[6] << 24) | (cdb[7] << 16) |
2831 (cdb[8] << 8) | cdb[9];
2832 } else {
2833 /* GPCMD_REPORT_KEY from multi media commands */
2834 size = (cdb[8] << 8) + cdb[9];
2835 }
Andy Grover05d1c7c2011-07-20 19:13:28 +00002836 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002837 break;
2838 case INQUIRY:
2839 size = (cdb[3] << 8) + cdb[4];
2840 /*
2841 * Do implict HEAD_OF_QUEUE processing for INQUIRY.
2842 * See spc4r17 section 5.3
2843 */
Andy Grover5951146d2011-07-19 10:26:37 +00002844 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07002845 cmd->sam_task_attr = MSG_HEAD_TAG;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002846 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002847 if (!passthrough)
2848 cmd->execute_task = target_emulate_inquiry;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002849 break;
2850 case READ_BUFFER:
2851 size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002852 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002853 break;
2854 case READ_CAPACITY:
2855 size = READ_CAP_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002856 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002857 if (!passthrough)
2858 cmd->execute_task = target_emulate_readcapacity;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002859 break;
2860 case READ_MEDIA_SERIAL_NUMBER:
2861 case SECURITY_PROTOCOL_IN:
2862 case SECURITY_PROTOCOL_OUT:
2863 size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002864 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002865 break;
2866 case SERVICE_ACTION_IN:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002867 switch (cmd->t_task_cdb[1] & 0x1f) {
2868 case SAI_READ_CAPACITY_16:
2869 if (!passthrough)
2870 cmd->execute_task =
2871 target_emulate_readcapacity_16;
2872 break;
2873 default:
2874 if (passthrough)
2875 break;
2876
2877 pr_err("Unsupported SA: 0x%02x\n",
2878 cmd->t_task_cdb[1] & 0x1f);
2879 goto out_unsupported_cdb;
2880 }
2881 /*FALLTHROUGH*/
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002882 case ACCESS_CONTROL_IN:
2883 case ACCESS_CONTROL_OUT:
2884 case EXTENDED_COPY:
2885 case READ_ATTRIBUTE:
2886 case RECEIVE_COPY_RESULTS:
2887 case WRITE_ATTRIBUTE:
2888 size = (cdb[10] << 24) | (cdb[11] << 16) |
2889 (cdb[12] << 8) | cdb[13];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002890 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002891 break;
2892 case RECEIVE_DIAGNOSTIC:
2893 case SEND_DIAGNOSTIC:
2894 size = (cdb[3] << 8) | cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002895 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002896 break;
2897/* #warning FIXME: Figure out correct GPCMD_READ_CD blocksize. */
2898#if 0
2899 case GPCMD_READ_CD:
2900 sectors = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
2901 size = (2336 * sectors);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002902 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002903 break;
2904#endif
2905 case READ_TOC:
2906 size = cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002907 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002908 break;
2909 case REQUEST_SENSE:
2910 size = cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002911 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002912 if (!passthrough)
2913 cmd->execute_task = target_emulate_request_sense;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002914 break;
2915 case READ_ELEMENT_STATUS:
2916 size = 65536 * cdb[7] + 256 * cdb[8] + cdb[9];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002917 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002918 break;
2919 case WRITE_BUFFER:
2920 size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002921 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002922 break;
2923 case RESERVE:
2924 case RESERVE_10:
2925 /*
2926 * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
2927 * Assume the passthrough or $FABRIC_MOD will tell us about it.
2928 */
2929 if (cdb[0] == RESERVE_10)
2930 size = (cdb[7] << 8) | cdb[8];
2931 else
2932 size = cmd->data_length;
2933
2934 /*
2935 * Setup the legacy emulated handler for SPC-2 and
2936 * >= SPC-3 compatible reservation handling (CRH=1)
2937 * Otherwise, we assume the underlying SCSI logic is
2938 * is running in SPC_PASSTHROUGH, and wants reservations
2939 * emulation disabled.
2940 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002941 if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
2942 cmd->execute_task = target_scsi2_reservation_reserve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002943 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2944 break;
2945 case RELEASE:
2946 case RELEASE_10:
2947 /*
2948 * The SPC-2 RELEASE does not contain a size in the SCSI CDB.
2949 * Assume the passthrough or $FABRIC_MOD will tell us about it.
2950 */
2951 if (cdb[0] == RELEASE_10)
2952 size = (cdb[7] << 8) | cdb[8];
2953 else
2954 size = cmd->data_length;
2955
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002956 if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
2957 cmd->execute_task = target_scsi2_reservation_release;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002958 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2959 break;
2960 case SYNCHRONIZE_CACHE:
2961 case 0x91: /* SYNCHRONIZE_CACHE_16: */
2962 /*
2963 * Extract LBA and range to be flushed for emulated SYNCHRONIZE_CACHE
2964 */
2965 if (cdb[0] == SYNCHRONIZE_CACHE) {
2966 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
Andy Grovera1d8b492011-05-02 17:12:10 -07002967 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002968 } else {
2969 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
Andy Grovera1d8b492011-05-02 17:12:10 -07002970 cmd->t_task_lba = transport_lba_64(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002971 }
2972 if (sector_ret)
2973 goto out_unsupported_cdb;
2974
2975 size = transport_get_size(sectors, cdb, cmd);
2976 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2977
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002978 if (passthrough)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002979 break;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002980
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002981 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002982 * Check to ensure that LBA + Range does not exceed past end of
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002983 * device for IBLOCK and FILEIO ->do_sync_cache() backend calls
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002984 */
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002985 if ((cmd->t_task_lba != 0) || (sectors != 0)) {
2986 if (transport_cmd_get_valid_sectors(cmd) < 0)
2987 goto out_invalid_cdb_field;
2988 }
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002989 cmd->execute_task = target_emulate_synchronize_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002990 break;
2991 case UNMAP:
2992 size = get_unaligned_be16(&cdb[7]);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002993 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002994 if (!passthrough)
2995 cmd->execute_task = target_emulate_unmap;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002996 break;
2997 case WRITE_SAME_16:
2998 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2999 if (sector_ret)
3000 goto out_unsupported_cdb;
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07003001
Andy Grover6708bb22011-06-08 10:36:43 -07003002 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07003003 size = transport_get_size(1, cdb, cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07003004 else {
3005 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
3006 goto out_invalid_cdb_field;
3007 }
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07003008
Nicholas Bellinger5db07532011-07-27 22:18:52 -07003009 cmd->t_task_lba = get_unaligned_be64(&cdb[2]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003010 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellinger706d5862011-07-28 00:07:03 -07003011
3012 if (target_check_write_same_discard(&cdb[1], dev) < 0)
3013 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003014 if (!passthrough)
3015 cmd->execute_task = target_emulate_write_same;
Nicholas Bellinger706d5862011-07-28 00:07:03 -07003016 break;
3017 case WRITE_SAME:
3018 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
3019 if (sector_ret)
3020 goto out_unsupported_cdb;
3021
3022 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07003023 size = transport_get_size(1, cdb, cmd);
Nicholas Bellinger706d5862011-07-28 00:07:03 -07003024 else {
3025 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
3026 goto out_invalid_cdb_field;
3027 }
3028
3029 cmd->t_task_lba = get_unaligned_be32(&cdb[2]);
3030 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
3031 /*
3032 * Follow sbcr26 with WRITE_SAME (10) and check for the existence
3033 * of byte 1 bit 3 UNMAP instead of original reserved field
3034 */
3035 if (target_check_write_same_discard(&cdb[1], dev) < 0)
3036 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003037 if (!passthrough)
3038 cmd->execute_task = target_emulate_write_same;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003039 break;
3040 case ALLOW_MEDIUM_REMOVAL:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003041 case ERASE:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003042 case REZERO_UNIT:
3043 case SEEK_10:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003044 case SPACE:
3045 case START_STOP:
3046 case TEST_UNIT_READY:
3047 case VERIFY:
3048 case WRITE_FILEMARKS:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003049 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
3050 if (!passthrough)
3051 cmd->execute_task = target_emulate_noop;
3052 break;
3053 case GPCMD_CLOSE_TRACK:
3054 case INITIALIZE_ELEMENT_STATUS:
3055 case GPCMD_LOAD_UNLOAD:
3056 case GPCMD_SET_SPEED:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003057 case MOVE_MEDIUM:
3058 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
3059 break;
3060 case REPORT_LUNS:
Christoph Hellwige76a35d2011-11-03 17:50:42 -04003061 cmd->execute_task = target_report_luns;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003062 size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
3063 /*
3064 * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
3065 * See spc4r17 section 5.3
3066 */
Andy Grover5951146d2011-07-19 10:26:37 +00003067 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003068 cmd->sam_task_attr = MSG_HEAD_TAG;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003069 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003070 break;
3071 default:
Andy Grover6708bb22011-06-08 10:36:43 -07003072 pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003073 " 0x%02x, sending CHECK_CONDITION.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00003074 cmd->se_tfo->get_fabric_name(), cdb[0]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003075 goto out_unsupported_cdb;
3076 }
3077
3078 if (size != cmd->data_length) {
Andy Grover6708bb22011-06-08 10:36:43 -07003079 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003080 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
Andy Grovere3d6f902011-07-19 08:55:10 +00003081 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003082 cmd->data_length, size, cdb[0]);
3083
3084 cmd->cmd_spdtl = size;
3085
3086 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grover6708bb22011-06-08 10:36:43 -07003087 pr_err("Rejecting underflow/overflow"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003088 " WRITE data\n");
3089 goto out_invalid_cdb_field;
3090 }
3091 /*
3092 * Reject READ_* or WRITE_* with overflow/underflow for
3093 * type SCF_SCSI_DATA_SG_IO_CDB.
3094 */
Andy Grover6708bb22011-06-08 10:36:43 -07003095 if (!ret && (dev->se_sub_dev->se_dev_attrib.block_size != 512)) {
3096 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003097 " CDB on non 512-byte sector setup subsystem"
Andy Grovere3d6f902011-07-19 08:55:10 +00003098 " plugin: %s\n", dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003099 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
3100 goto out_invalid_cdb_field;
3101 }
3102
3103 if (size > cmd->data_length) {
3104 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
3105 cmd->residual_count = (size - cmd->data_length);
3106 } else {
3107 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
3108 cmd->residual_count = (cmd->data_length - size);
3109 }
3110 cmd->data_length = size;
3111 }
3112
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003113 /* reject any command that we don't have a handler for */
3114 if (!(passthrough || cmd->execute_task ||
3115 (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB)))
3116 goto out_unsupported_cdb;
3117
Andy Groverd0229ae2011-07-08 17:04:53 -07003118 /* Let's limit control cdbs to a page, for simplicity's sake. */
3119 if ((cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) &&
3120 size > PAGE_SIZE)
3121 goto out_invalid_cdb_field;
3122
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003123 transport_set_supported_SAM_opcode(cmd);
3124 return ret;
3125
3126out_unsupported_cdb:
3127 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3128 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Andy Grover5951146d2011-07-19 10:26:37 +00003129 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003130out_invalid_cdb_field:
3131 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3132 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00003133 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003134}
3135
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003136/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003137 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003138 * and ordered cmds need to have their tasks added to the execution queue.
3139 */
3140static void transport_complete_task_attr(struct se_cmd *cmd)
3141{
Andy Grover5951146d2011-07-19 10:26:37 +00003142 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003143 struct se_cmd *cmd_p, *cmd_tmp;
3144 int new_active_tasks = 0;
3145
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003146 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003147 atomic_dec(&dev->simple_cmds);
3148 smp_mb__after_atomic_dec();
3149 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003150 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003151 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
3152 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003153 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003154 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003155 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003156 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
3157 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003158 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003159 atomic_dec(&dev->dev_ordered_sync);
3160 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003161
3162 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003163 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003164 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
3165 }
3166 /*
3167 * Process all commands up to the last received
3168 * ORDERED task attribute which requires another blocking
3169 * boundary
3170 */
3171 spin_lock(&dev->delayed_cmd_lock);
3172 list_for_each_entry_safe(cmd_p, cmd_tmp,
Andy Grover5951146d2011-07-19 10:26:37 +00003173 &dev->delayed_cmd_list, se_delayed_node) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003174
Andy Grover5951146d2011-07-19 10:26:37 +00003175 list_del(&cmd_p->se_delayed_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003176 spin_unlock(&dev->delayed_cmd_lock);
3177
Andy Grover6708bb22011-06-08 10:36:43 -07003178 pr_debug("Calling add_tasks() for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003179 " cmd_p: 0x%02x Task Attr: 0x%02x"
3180 " Dormant -> Active, se_ordered_id: %u\n",
Andy Grover6708bb22011-06-08 10:36:43 -07003181 cmd_p->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003182 cmd_p->sam_task_attr, cmd_p->se_ordered_id);
3183
3184 transport_add_tasks_from_cmd(cmd_p);
3185 new_active_tasks++;
3186
3187 spin_lock(&dev->delayed_cmd_lock);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003188 if (cmd_p->sam_task_attr == MSG_ORDERED_TAG)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003189 break;
3190 }
3191 spin_unlock(&dev->delayed_cmd_lock);
3192 /*
3193 * If new tasks have become active, wake up the transport thread
3194 * to do the processing of the Active tasks.
3195 */
3196 if (new_active_tasks != 0)
Andy Grovere3d6f902011-07-19 08:55:10 +00003197 wake_up_interruptible(&dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003198}
3199
Christoph Hellwige057f532011-10-17 13:56:41 -04003200static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003201{
3202 int ret = 0;
3203
Christoph Hellwige057f532011-10-17 13:56:41 -04003204 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
3205 transport_complete_task_attr(cmd);
3206
3207 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
3208 ret = cmd->se_tfo->queue_status(cmd);
3209 if (ret)
3210 goto out;
3211 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003212
3213 switch (cmd->data_direction) {
3214 case DMA_FROM_DEVICE:
3215 ret = cmd->se_tfo->queue_data_in(cmd);
3216 break;
3217 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00003218 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003219 ret = cmd->se_tfo->queue_data_in(cmd);
3220 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04003221 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003222 }
3223 /* Fall through for DMA_TO_DEVICE */
3224 case DMA_NONE:
3225 ret = cmd->se_tfo->queue_status(cmd);
3226 break;
3227 default:
3228 break;
3229 }
3230
Christoph Hellwige057f532011-10-17 13:56:41 -04003231out:
3232 if (ret < 0) {
3233 transport_handle_queue_full(cmd, cmd->se_dev);
3234 return;
3235 }
3236 transport_lun_remove_cmd(cmd);
3237 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003238}
3239
3240static void transport_handle_queue_full(
3241 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04003242 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003243{
3244 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003245 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
3246 atomic_inc(&dev->dev_qf_count);
3247 smp_mb__after_atomic_inc();
3248 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
3249
3250 schedule_work(&cmd->se_dev->qf_work_queue);
3251}
3252
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003253static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003254{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003255 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003256 int reason = 0, ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003257
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003258 /*
3259 * Check if we need to move delayed/dormant tasks from cmds on the
3260 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
3261 * Attribute.
3262 */
Andy Grover5951146d2011-07-19 10:26:37 +00003263 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003264 transport_complete_task_attr(cmd);
3265 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003266 * Check to schedule QUEUE_FULL work, or execute an existing
3267 * cmd->transport_qf_callback()
3268 */
3269 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
3270 schedule_work(&cmd->se_dev->qf_work_queue);
3271
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003272 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003273 * Check if we need to retrieve a sense buffer from
3274 * the struct se_cmd in question.
3275 */
3276 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
3277 if (transport_get_sense_data(cmd) < 0)
3278 reason = TCM_NON_EXISTENT_LUN;
3279
3280 /*
3281 * Only set when an struct se_task->task_scsi_status returned
3282 * a non GOOD status.
3283 */
3284 if (cmd->scsi_status) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003285 ret = transport_send_check_condition_and_sense(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003286 cmd, reason, 1);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003287 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003288 goto queue_full;
3289
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003290 transport_lun_remove_cmd(cmd);
3291 transport_cmd_check_stop_to_fabric(cmd);
3292 return;
3293 }
3294 }
3295 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003296 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003297 * XDWRITE_READ_10 emulation.
3298 */
3299 if (cmd->transport_complete_callback)
3300 cmd->transport_complete_callback(cmd);
3301
3302 switch (cmd->data_direction) {
3303 case DMA_FROM_DEVICE:
3304 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003305 if (cmd->se_lun->lun_sep) {
3306 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003307 cmd->data_length;
3308 }
3309 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003310
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003311 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003312 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003313 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003314 break;
3315 case DMA_TO_DEVICE:
3316 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003317 if (cmd->se_lun->lun_sep) {
3318 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003319 cmd->data_length;
3320 }
3321 spin_unlock(&cmd->se_lun->lun_sep_lock);
3322 /*
3323 * Check if we need to send READ payload for BIDI-COMMAND
3324 */
Andy Groverec98f782011-07-20 19:28:46 +00003325 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003326 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003327 if (cmd->se_lun->lun_sep) {
3328 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003329 cmd->data_length;
3330 }
3331 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003332 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003333 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003334 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003335 break;
3336 }
3337 /* Fall through for DMA_TO_DEVICE */
3338 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003339 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003340 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003341 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003342 break;
3343 default:
3344 break;
3345 }
3346
3347 transport_lun_remove_cmd(cmd);
3348 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003349 return;
3350
3351queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07003352 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003353 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04003354 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
3355 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003356}
3357
3358static void transport_free_dev_tasks(struct se_cmd *cmd)
3359{
3360 struct se_task *task, *task_tmp;
3361 unsigned long flags;
Christoph Hellwig0c2cfe52011-10-17 13:56:45 -04003362 LIST_HEAD(dispose_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003363
Andy Grovera1d8b492011-05-02 17:12:10 -07003364 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003365 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07003366 &cmd->t_task_list, t_list) {
Christoph Hellwig0c2cfe52011-10-17 13:56:45 -04003367 if (!(task->task_flags & TF_ACTIVE))
3368 list_move_tail(&task->t_list, &dispose_list);
3369 }
3370 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3371
3372 while (!list_empty(&dispose_list)) {
3373 task = list_first_entry(&dispose_list, struct se_task, t_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003374
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003375 if (task->task_sg != cmd->t_data_sg &&
3376 task->task_sg != cmd->t_bidi_data_sg)
3377 kfree(task->task_sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003378
3379 list_del(&task->t_list);
3380
Christoph Hellwig42bf8292011-10-12 11:07:00 -04003381 cmd->se_dev->transport->free_task(task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003382 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003383}
3384
Andy Grover6708bb22011-06-08 10:36:43 -07003385static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003386{
Andy Groverec98f782011-07-20 19:28:46 +00003387 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00003388 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003389
Andy Grover6708bb22011-06-08 10:36:43 -07003390 for_each_sg(sgl, sg, nents, count)
3391 __free_page(sg_page(sg));
3392
3393 kfree(sgl);
3394}
3395
3396static inline void transport_free_pages(struct se_cmd *cmd)
3397{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003398 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07003399 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003400
Andy Grover6708bb22011-06-08 10:36:43 -07003401 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00003402 cmd->t_data_sg = NULL;
3403 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003404
Andy Grover6708bb22011-06-08 10:36:43 -07003405 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00003406 cmd->t_bidi_data_sg = NULL;
3407 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003408}
3409
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003410/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003411 * transport_release_cmd - free a command
3412 * @cmd: command to free
3413 *
3414 * This routine unconditionally frees a command, and reference counting
3415 * or list removal must be done in the caller.
3416 */
3417static void transport_release_cmd(struct se_cmd *cmd)
3418{
3419 BUG_ON(!cmd->se_tfo);
3420
3421 if (cmd->se_tmr_req)
3422 core_tmr_release_req(cmd->se_tmr_req);
3423 if (cmd->t_task_cdb != cmd->__t_task_cdb)
3424 kfree(cmd->t_task_cdb);
3425 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003426 * If this cmd has been setup with target_get_sess_cmd(), drop
3427 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003428 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003429 if (cmd->check_release != 0) {
3430 target_put_sess_cmd(cmd->se_sess, cmd);
3431 return;
3432 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003433 cmd->se_tfo->release_cmd(cmd);
3434}
3435
3436/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003437 * transport_put_cmd - release a reference to a command
3438 * @cmd: command to release
3439 *
3440 * This routine releases our reference to the command and frees it if possible.
3441 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003442static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003443{
3444 unsigned long flags;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003445 int free_tasks = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003446
Andy Grovera1d8b492011-05-02 17:12:10 -07003447 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003448 if (atomic_read(&cmd->t_fe_count)) {
3449 if (!atomic_dec_and_test(&cmd->t_fe_count))
3450 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003451 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003452
3453 if (atomic_read(&cmd->t_se_count)) {
3454 if (!atomic_dec_and_test(&cmd->t_se_count))
3455 goto out_busy;
3456 }
3457
3458 if (atomic_read(&cmd->transport_dev_active)) {
3459 atomic_set(&cmd->transport_dev_active, 0);
3460 transport_all_task_dev_remove_state(cmd);
3461 free_tasks = 1;
3462 }
Andy Grovera1d8b492011-05-02 17:12:10 -07003463 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003464
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003465 if (free_tasks != 0)
3466 transport_free_dev_tasks(cmd);
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003467
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003468 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02003469 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003470 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003471out_busy:
3472 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003473}
3474
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003475/*
Andy Groverec98f782011-07-20 19:28:46 +00003476 * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of
3477 * allocating in the core.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003478 * @cmd: Associated se_cmd descriptor
3479 * @mem: SGL style memory for TCM WRITE / READ
3480 * @sg_mem_num: Number of SGL elements
3481 * @mem_bidi_in: SGL style memory for TCM BIDI READ
3482 * @sg_mem_bidi_num: Number of BIDI READ SGL elements
3483 *
3484 * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage
3485 * of parameters.
3486 */
3487int transport_generic_map_mem_to_cmd(
3488 struct se_cmd *cmd,
Andy Grover5951146d2011-07-19 10:26:37 +00003489 struct scatterlist *sgl,
3490 u32 sgl_count,
3491 struct scatterlist *sgl_bidi,
3492 u32 sgl_bidi_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003493{
Andy Grover5951146d2011-07-19 10:26:37 +00003494 if (!sgl || !sgl_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003495 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003496
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003497 if ((cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) ||
3498 (cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB)) {
Nicholas Bellingerfef58a62011-11-15 22:13:24 -08003499 /*
3500 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
3501 * scatterlists already have been set to follow what the fabric
3502 * passes for the original expected data transfer length.
3503 */
3504 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
3505 pr_warn("Rejecting SCSI DATA overflow for fabric using"
3506 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
3507 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3508 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
3509 return -EINVAL;
3510 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003511
Andy Groverec98f782011-07-20 19:28:46 +00003512 cmd->t_data_sg = sgl;
3513 cmd->t_data_nents = sgl_count;
3514
Andy Grover5951146d2011-07-19 10:26:37 +00003515 if (sgl_bidi && sgl_bidi_count) {
Andy Groverec98f782011-07-20 19:28:46 +00003516 cmd->t_bidi_data_sg = sgl_bidi;
3517 cmd->t_bidi_data_nents = sgl_bidi_count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003518 }
3519 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003520 }
3521
3522 return 0;
3523}
3524EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
3525
Andy Grover05d1c7c2011-07-20 19:13:28 +00003526void *transport_kmap_first_data_page(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003527{
Andy Groverec98f782011-07-20 19:28:46 +00003528 struct scatterlist *sg = cmd->t_data_sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003529
Andy Groverec98f782011-07-20 19:28:46 +00003530 BUG_ON(!sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00003531 /*
Andy Groverec98f782011-07-20 19:28:46 +00003532 * We need to take into account a possible offset here for fabrics like
3533 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
3534 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00003535 */
Andy Groverec98f782011-07-20 19:28:46 +00003536 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003537}
3538EXPORT_SYMBOL(transport_kmap_first_data_page);
3539
3540void transport_kunmap_first_data_page(struct se_cmd *cmd)
3541{
Andy Groverec98f782011-07-20 19:28:46 +00003542 kunmap(sg_page(cmd->t_data_sg));
Andy Grover05d1c7c2011-07-20 19:13:28 +00003543}
3544EXPORT_SYMBOL(transport_kunmap_first_data_page);
3545
3546static int
3547transport_generic_get_mem(struct se_cmd *cmd)
3548{
Andy Groverec98f782011-07-20 19:28:46 +00003549 u32 length = cmd->data_length;
3550 unsigned int nents;
3551 struct page *page;
3552 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003553
Andy Groverec98f782011-07-20 19:28:46 +00003554 nents = DIV_ROUND_UP(length, PAGE_SIZE);
3555 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
3556 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00003557 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003558
Andy Groverec98f782011-07-20 19:28:46 +00003559 cmd->t_data_nents = nents;
3560 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003561
Andy Groverec98f782011-07-20 19:28:46 +00003562 while (length) {
3563 u32 page_len = min_t(u32, length, PAGE_SIZE);
3564 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
3565 if (!page)
3566 goto out;
3567
3568 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
3569 length -= page_len;
3570 i++;
3571 }
3572 return 0;
3573
3574out:
3575 while (i >= 0) {
3576 __free_page(sg_page(&cmd->t_data_sg[i]));
3577 i--;
3578 }
3579 kfree(cmd->t_data_sg);
3580 cmd->t_data_sg = NULL;
3581 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003582}
3583
Andy Grovera1d8b492011-05-02 17:12:10 -07003584/* Reduce sectors if they are too long for the device */
3585static inline sector_t transport_limit_task_sectors(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003586 struct se_device *dev,
3587 unsigned long long lba,
Andy Grovera1d8b492011-05-02 17:12:10 -07003588 sector_t sectors)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003589{
Andy Grovera1d8b492011-05-02 17:12:10 -07003590 sectors = min_t(sector_t, sectors, dev->se_sub_dev->se_dev_attrib.max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003591
Andy Grovera1d8b492011-05-02 17:12:10 -07003592 if (dev->transport->get_device_type(dev) == TYPE_DISK)
3593 if ((lba + sectors) > transport_dev_end_lba(dev))
3594 sectors = ((transport_dev_end_lba(dev) - lba) + 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003595
Andy Grovera1d8b492011-05-02 17:12:10 -07003596 return sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003597}
3598
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003599
3600/*
3601 * This function can be used by HW target mode drivers to create a linked
3602 * scatterlist from all contiguously allocated struct se_task->task_sg[].
3603 * This is intended to be called during the completion path by TCM Core
3604 * when struct target_core_fabric_ops->check_task_sg_chaining is enabled.
3605 */
3606void transport_do_task_sg_chain(struct se_cmd *cmd)
3607{
Andy Groverec98f782011-07-20 19:28:46 +00003608 struct scatterlist *sg_first = NULL;
3609 struct scatterlist *sg_prev = NULL;
3610 int sg_prev_nents = 0;
3611 struct scatterlist *sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003612 struct se_task *task;
Andy Groverec98f782011-07-20 19:28:46 +00003613 u32 chained_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003614 int i;
3615
Andy Groverec98f782011-07-20 19:28:46 +00003616 BUG_ON(!cmd->se_tfo->task_sg_chaining);
3617
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003618 /*
3619 * Walk the struct se_task list and setup scatterlist chains
Andy Grovera1d8b492011-05-02 17:12:10 -07003620 * for each contiguously allocated struct se_task->task_sg[].
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003621 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003622 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Andy Groverec98f782011-07-20 19:28:46 +00003623 if (!task->task_sg)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003624 continue;
3625
Andy Groverec98f782011-07-20 19:28:46 +00003626 if (!sg_first) {
3627 sg_first = task->task_sg;
Andy Grover6708bb22011-06-08 10:36:43 -07003628 chained_nents = task->task_sg_nents;
Nicholas Bellinger97868c82011-05-19 20:19:09 -07003629 } else {
Andy Groverec98f782011-07-20 19:28:46 +00003630 sg_chain(sg_prev, sg_prev_nents, task->task_sg);
Andy Grover6708bb22011-06-08 10:36:43 -07003631 chained_nents += task->task_sg_nents;
Nicholas Bellinger97868c82011-05-19 20:19:09 -07003632 }
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003633 /*
3634 * For the padded tasks, use the extra SGL vector allocated
3635 * in transport_allocate_data_tasks() for the sg_prev_nents
Christoph Hellwig04629b72011-10-12 11:07:04 -04003636 * offset into sg_chain() above.
3637 *
3638 * We do not need the padding for the last task (or a single
3639 * task), but in that case we will never use the sg_prev_nents
3640 * value below which would be incorrect.
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003641 */
Christoph Hellwig04629b72011-10-12 11:07:04 -04003642 sg_prev_nents = (task->task_sg_nents + 1);
Andy Groverec98f782011-07-20 19:28:46 +00003643 sg_prev = task->task_sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003644 }
3645 /*
3646 * Setup the starting pointer and total t_tasks_sg_linked_no including
3647 * padding SGs for linking and to mark the end.
3648 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003649 cmd->t_tasks_sg_chained = sg_first;
Andy Groverec98f782011-07-20 19:28:46 +00003650 cmd->t_tasks_sg_chained_no = chained_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003651
Andy Grover6708bb22011-06-08 10:36:43 -07003652 pr_debug("Setup cmd: %p cmd->t_tasks_sg_chained: %p and"
Andy Grovera1d8b492011-05-02 17:12:10 -07003653 " t_tasks_sg_chained_no: %u\n", cmd, cmd->t_tasks_sg_chained,
3654 cmd->t_tasks_sg_chained_no);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003655
Andy Grovera1d8b492011-05-02 17:12:10 -07003656 for_each_sg(cmd->t_tasks_sg_chained, sg,
3657 cmd->t_tasks_sg_chained_no, i) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003658
Andy Grover6708bb22011-06-08 10:36:43 -07003659 pr_debug("SG[%d]: %p page: %p length: %d offset: %d\n",
Andy Grover5951146d2011-07-19 10:26:37 +00003660 i, sg, sg_page(sg), sg->length, sg->offset);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003661 if (sg_is_chain(sg))
Andy Grover6708bb22011-06-08 10:36:43 -07003662 pr_debug("SG: %p sg_is_chain=1\n", sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003663 if (sg_is_last(sg))
Andy Grover6708bb22011-06-08 10:36:43 -07003664 pr_debug("SG: %p sg_is_last=1\n", sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003665 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003666}
3667EXPORT_SYMBOL(transport_do_task_sg_chain);
3668
Andy Grovera1d8b492011-05-02 17:12:10 -07003669/*
3670 * Break up cmd into chunks transport can handle
3671 */
Christoph Hellwig38b400672011-10-18 06:57:02 -04003672static int
3673transport_allocate_data_tasks(struct se_cmd *cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003674 enum dma_data_direction data_direction,
Christoph Hellwig38b400672011-10-18 06:57:02 -04003675 struct scatterlist *cmd_sg, unsigned int sgl_nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003676{
Andy Grover5951146d2011-07-19 10:26:37 +00003677 struct se_device *dev = cmd->se_dev;
Christoph Hellwiga3eedc22011-09-25 14:56:43 -04003678 int task_count, i;
Christoph Hellwig38b400672011-10-18 06:57:02 -04003679 unsigned long long lba;
3680 sector_t sectors, dev_max_sectors;
3681 u32 sector_size;
3682
3683 if (transport_cmd_get_valid_sectors(cmd) < 0)
3684 return -EINVAL;
3685
3686 dev_max_sectors = dev->se_sub_dev->se_dev_attrib.max_sectors;
3687 sector_size = dev->se_sub_dev->se_dev_attrib.block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003688
Andy Groverec98f782011-07-20 19:28:46 +00003689 WARN_ON(cmd->data_length % sector_size);
Christoph Hellwig38b400672011-10-18 06:57:02 -04003690
3691 lba = cmd->t_task_lba;
Andy Groverec98f782011-07-20 19:28:46 +00003692 sectors = DIV_ROUND_UP(cmd->data_length, sector_size);
Nicholas Bellinger277c5f22011-07-26 00:38:40 -07003693 task_count = DIV_ROUND_UP_SECTOR_T(sectors, dev_max_sectors);
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003694
3695 /*
3696 * If we need just a single task reuse the SG list in the command
3697 * and avoid a lot of work.
3698 */
3699 if (task_count == 1) {
3700 struct se_task *task;
3701 unsigned long flags;
3702
3703 task = transport_generic_get_task(cmd, data_direction);
3704 if (!task)
3705 return -ENOMEM;
3706
3707 task->task_sg = cmd_sg;
3708 task->task_sg_nents = sgl_nents;
3709
3710 task->task_lba = lba;
3711 task->task_sectors = sectors;
3712 task->task_size = task->task_sectors * sector_size;
3713
3714 spin_lock_irqsave(&cmd->t_state_lock, flags);
3715 list_add_tail(&task->t_list, &cmd->t_task_list);
3716 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3717
3718 return task_count;
3719 }
3720
Andy Groverec98f782011-07-20 19:28:46 +00003721 for (i = 0; i < task_count; i++) {
Christoph Hellwig38b400672011-10-18 06:57:02 -04003722 struct se_task *task;
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003723 unsigned int task_size, task_sg_nents_padded;
Christoph Hellwig38b400672011-10-18 06:57:02 -04003724 struct scatterlist *sg;
3725 unsigned long flags;
Andy Groverec98f782011-07-20 19:28:46 +00003726 int count;
Andy Grovera1d8b492011-05-02 17:12:10 -07003727
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003728 task = transport_generic_get_task(cmd, data_direction);
Andy Grovera1d8b492011-05-02 17:12:10 -07003729 if (!task)
Andy Groverec98f782011-07-20 19:28:46 +00003730 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003731
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003732 task->task_lba = lba;
Andy Groverec98f782011-07-20 19:28:46 +00003733 task->task_sectors = min(sectors, dev_max_sectors);
3734 task->task_size = task->task_sectors * sector_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003735
Nicholas Bellinger525a48a2011-08-13 02:11:38 -07003736 /*
3737 * This now assumes that passed sg_ents are in PAGE_SIZE chunks
3738 * in order to calculate the number per task SGL entries
3739 */
3740 task->task_sg_nents = DIV_ROUND_UP(task->task_size, PAGE_SIZE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003741 /*
Andy Groverec98f782011-07-20 19:28:46 +00003742 * Check if the fabric module driver is requesting that all
3743 * struct se_task->task_sg[] be chained together.. If so,
3744 * then allocate an extra padding SG entry for linking and
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003745 * marking the end of the chained SGL for every task except
3746 * the last one for (task_count > 1) operation, or skipping
3747 * the extra padding for the (task_count == 1) case.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003748 */
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003749 if (cmd->se_tfo->task_sg_chaining && (i < (task_count - 1))) {
3750 task_sg_nents_padded = (task->task_sg_nents + 1);
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003751 } else
3752 task_sg_nents_padded = task->task_sg_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003753
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003754 task->task_sg = kmalloc(sizeof(struct scatterlist) *
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003755 task_sg_nents_padded, GFP_KERNEL);
Andy Groverec98f782011-07-20 19:28:46 +00003756 if (!task->task_sg) {
3757 cmd->se_dev->transport->free_task(task);
3758 return -ENOMEM;
3759 }
3760
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003761 sg_init_table(task->task_sg, task_sg_nents_padded);
Andy Groverec98f782011-07-20 19:28:46 +00003762
3763 task_size = task->task_size;
3764
3765 /* Build new sgl, only up to task_size */
Andy Grover6708bb22011-06-08 10:36:43 -07003766 for_each_sg(task->task_sg, sg, task->task_sg_nents, count) {
Andy Groverec98f782011-07-20 19:28:46 +00003767 if (cmd_sg->length > task_size)
3768 break;
3769
3770 *sg = *cmd_sg;
3771 task_size -= cmd_sg->length;
3772 cmd_sg = sg_next(cmd_sg);
3773 }
3774
3775 lba += task->task_sectors;
3776 sectors -= task->task_sectors;
3777
3778 spin_lock_irqsave(&cmd->t_state_lock, flags);
3779 list_add_tail(&task->t_list, &cmd->t_task_list);
3780 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003781 }
3782
Andy Groverec98f782011-07-20 19:28:46 +00003783 return task_count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003784}
3785
3786static int
Andy Groverec98f782011-07-20 19:28:46 +00003787transport_allocate_control_task(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003788{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003789 struct se_task *task;
Andy Groverec98f782011-07-20 19:28:46 +00003790 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003791
3792 task = transport_generic_get_task(cmd, cmd->data_direction);
3793 if (!task)
Andy Groverec98f782011-07-20 19:28:46 +00003794 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003795
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003796 task->task_sg = cmd->t_data_sg;
Andy Groverec98f782011-07-20 19:28:46 +00003797 task->task_size = cmd->data_length;
Andy Grover6708bb22011-06-08 10:36:43 -07003798 task->task_sg_nents = cmd->t_data_nents;
Andy Groverec98f782011-07-20 19:28:46 +00003799
3800 spin_lock_irqsave(&cmd->t_state_lock, flags);
3801 list_add_tail(&task->t_list, &cmd->t_task_list);
3802 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003803
Andy Grover6708bb22011-06-08 10:36:43 -07003804 /* Success! Return number of tasks allocated */
Christoph Hellwiga3eedc22011-09-25 14:56:43 -04003805 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003806}
3807
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003808/*
3809 * Allocate any required ressources to execute the command, and either place
3810 * it on the execution queue if possible. For writes we might not have the
3811 * payload yet, thus notify the fabric via a call to ->write_pending instead.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003812 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003813int transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003814{
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003815 struct se_device *dev = cmd->se_dev;
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003816 int task_cdbs, task_cdbs_bidi = 0;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003817 int set_counts = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003818 int ret = 0;
3819
3820 /*
3821 * Determine is the TCM fabric module has already allocated physical
3822 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00003823 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003824 */
Andy Groverec98f782011-07-20 19:28:46 +00003825 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
3826 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00003827 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003828 if (ret < 0)
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07003829 goto out_fail;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003830 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003831
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003832 /*
Christoph Hellwig38b400672011-10-18 06:57:02 -04003833 * For BIDI command set up the read tasks first.
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003834 */
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003835 if (cmd->t_bidi_data_sg &&
Christoph Hellwig38b400672011-10-18 06:57:02 -04003836 dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
3837 BUG_ON(!(cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB));
3838
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003839 task_cdbs_bidi = transport_allocate_data_tasks(cmd,
3840 DMA_FROM_DEVICE, cmd->t_bidi_data_sg,
3841 cmd->t_bidi_data_nents);
3842 if (task_cdbs_bidi <= 0)
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003843 goto out_fail;
3844
3845 atomic_inc(&cmd->t_fe_count);
3846 atomic_inc(&cmd->t_se_count);
3847 set_counts = 0;
3848 }
Christoph Hellwig38b400672011-10-18 06:57:02 -04003849
3850 if (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) {
3851 task_cdbs = transport_allocate_data_tasks(cmd,
3852 cmd->data_direction, cmd->t_data_sg,
3853 cmd->t_data_nents);
3854 } else {
3855 task_cdbs = transport_allocate_control_task(cmd);
3856 }
3857
Roland Dreier410f6702011-11-22 13:51:32 -08003858 if (task_cdbs < 0)
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003859 goto out_fail;
Roland Dreier410f6702011-11-22 13:51:32 -08003860 else if (!task_cdbs && (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB)) {
3861 cmd->t_state = TRANSPORT_COMPLETE;
3862 atomic_set(&cmd->t_transport_active, 1);
3863 INIT_WORK(&cmd->work, target_complete_ok_work);
3864 queue_work(target_completion_wq, &cmd->work);
3865 return 0;
3866 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003867
3868 if (set_counts) {
3869 atomic_inc(&cmd->t_fe_count);
3870 atomic_inc(&cmd->t_se_count);
3871 }
3872
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003873 cmd->t_task_list_num = (task_cdbs + task_cdbs_bidi);
3874 atomic_set(&cmd->t_task_cdbs_left, cmd->t_task_list_num);
3875 atomic_set(&cmd->t_task_cdbs_ex_left, cmd->t_task_list_num);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003876
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003877 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07003878 * For WRITEs, let the fabric know its buffer is ready..
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003879 * This WRITE struct se_cmd (and all of its associated struct se_task's)
3880 * will be added to the struct se_device execution queue after its WRITE
3881 * data has arrived. (ie: It gets handled by the transport processing
3882 * thread a second time)
3883 */
3884 if (cmd->data_direction == DMA_TO_DEVICE) {
3885 transport_add_tasks_to_state_queue(cmd);
3886 return transport_generic_write_pending(cmd);
3887 }
3888 /*
3889 * Everything else but a WRITE, add the struct se_cmd's struct se_task's
3890 * to the execution queue.
3891 */
3892 transport_execute_tasks(cmd);
3893 return 0;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003894
3895out_fail:
3896 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3897 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3898 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003899}
Andy Grovera1d8b492011-05-02 17:12:10 -07003900EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003901
3902/* transport_generic_process_write():
3903 *
3904 *
3905 */
3906void transport_generic_process_write(struct se_cmd *cmd)
3907{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003908 transport_execute_tasks(cmd);
3909}
3910EXPORT_SYMBOL(transport_generic_process_write);
3911
Christoph Hellwige057f532011-10-17 13:56:41 -04003912static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003913{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003914 int ret;
3915
3916 ret = cmd->se_tfo->write_pending(cmd);
3917 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04003918 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
3919 cmd);
3920 transport_handle_queue_full(cmd, cmd->se_dev);
3921 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003922}
3923
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003924static int transport_generic_write_pending(struct se_cmd *cmd)
3925{
3926 unsigned long flags;
3927 int ret;
3928
Andy Grovera1d8b492011-05-02 17:12:10 -07003929 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003930 cmd->t_state = TRANSPORT_WRITE_PENDING;
Andy Grovera1d8b492011-05-02 17:12:10 -07003931 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003932
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003933 /*
3934 * Clear the se_cmd for WRITE_PENDING status in order to set
Andy Grovera1d8b492011-05-02 17:12:10 -07003935 * cmd->t_transport_active=0 so that transport_generic_handle_data
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003936 * can be called from HW target mode interrupt code. This is safe
Andy Grovere3d6f902011-07-19 08:55:10 +00003937 * to be called with transport_off=1 before the cmd->se_tfo->write_pending
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003938 * because the se_cmd->se_lun pointer is not being cleared.
3939 */
3940 transport_cmd_check_stop(cmd, 1, 0);
3941
3942 /*
3943 * Call the fabric write_pending function here to let the
3944 * frontend know that WRITE buffers are ready.
3945 */
Andy Grovere3d6f902011-07-19 08:55:10 +00003946 ret = cmd->se_tfo->write_pending(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003947 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003948 goto queue_full;
3949 else if (ret < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003950 return ret;
3951
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07003952 return 1;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003953
3954queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07003955 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003956 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
Christoph Hellwige057f532011-10-17 13:56:41 -04003957 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003958 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003959}
3960
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003961void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003962{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07003963 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
3964 if (wait_for_tasks && cmd->se_tmr_req)
3965 transport_wait_for_tasks(cmd);
3966
Christoph Hellwig35462972011-05-31 23:56:57 -04003967 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07003968 } else {
3969 if (wait_for_tasks)
3970 transport_wait_for_tasks(cmd);
3971
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003972 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
3973
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02003974 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003975 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003976
Nicholas Bellingerf4366772011-05-19 20:19:11 -07003977 transport_free_dev_tasks(cmd);
3978
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003979 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003980 }
3981}
3982EXPORT_SYMBOL(transport_generic_free_cmd);
3983
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003984/* target_get_sess_cmd - Add command to active ->sess_cmd_list
3985 * @se_sess: session to reference
3986 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08003987 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003988 */
Nicholas Bellingera6360782011-11-18 20:36:22 -08003989void target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
3990 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003991{
3992 unsigned long flags;
3993
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003994 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08003995 /*
3996 * Add a second kref if the fabric caller is expecting to handle
3997 * fabric acknowledgement that requires two target_put_sess_cmd()
3998 * invocations before se_cmd descriptor release.
3999 */
4000 if (ack_kref == true)
4001 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004002
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004003 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
4004 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
4005 se_cmd->check_release = 1;
4006 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4007}
4008EXPORT_SYMBOL(target_get_sess_cmd);
4009
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004010static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004011{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004012 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
4013 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004014 unsigned long flags;
4015
4016 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
4017 if (list_empty(&se_cmd->se_cmd_list)) {
4018 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4019 WARN_ON(1);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004020 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004021 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004022 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
4023 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4024 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004025 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004026 }
4027 list_del(&se_cmd->se_cmd_list);
4028 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4029
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004030 se_cmd->se_tfo->release_cmd(se_cmd);
4031}
4032
4033/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
4034 * @se_sess: session to reference
4035 * @se_cmd: command descriptor to drop
4036 */
4037int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
4038{
4039 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004040}
4041EXPORT_SYMBOL(target_put_sess_cmd);
4042
4043/* target_splice_sess_cmd_list - Split active cmds into sess_wait_list
4044 * @se_sess: session to split
4045 */
4046void target_splice_sess_cmd_list(struct se_session *se_sess)
4047{
4048 struct se_cmd *se_cmd;
4049 unsigned long flags;
4050
4051 WARN_ON(!list_empty(&se_sess->sess_wait_list));
4052 INIT_LIST_HEAD(&se_sess->sess_wait_list);
4053
4054 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
4055 se_sess->sess_tearing_down = 1;
4056
4057 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
4058
4059 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
4060 se_cmd->cmd_wait_set = 1;
4061
4062 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4063}
4064EXPORT_SYMBOL(target_splice_sess_cmd_list);
4065
4066/* target_wait_for_sess_cmds - Wait for outstanding descriptors
4067 * @se_sess: session to wait for active I/O
4068 * @wait_for_tasks: Make extra transport_wait_for_tasks call
4069 */
4070void target_wait_for_sess_cmds(
4071 struct se_session *se_sess,
4072 int wait_for_tasks)
4073{
4074 struct se_cmd *se_cmd, *tmp_cmd;
4075 bool rc = false;
4076
4077 list_for_each_entry_safe(se_cmd, tmp_cmd,
4078 &se_sess->sess_wait_list, se_cmd_list) {
4079 list_del(&se_cmd->se_cmd_list);
4080
4081 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
4082 " %d\n", se_cmd, se_cmd->t_state,
4083 se_cmd->se_tfo->get_cmd_state(se_cmd));
4084
4085 if (wait_for_tasks) {
4086 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
4087 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4088 se_cmd->se_tfo->get_cmd_state(se_cmd));
4089
4090 rc = transport_wait_for_tasks(se_cmd);
4091
4092 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
4093 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4094 se_cmd->se_tfo->get_cmd_state(se_cmd));
4095 }
4096
4097 if (!rc) {
4098 wait_for_completion(&se_cmd->cmd_wait_comp);
4099 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
4100 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4101 se_cmd->se_tfo->get_cmd_state(se_cmd));
4102 }
4103
4104 se_cmd->se_tfo->release_cmd(se_cmd);
4105 }
4106}
4107EXPORT_SYMBOL(target_wait_for_sess_cmds);
4108
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004109/* transport_lun_wait_for_tasks():
4110 *
4111 * Called from ConfigFS context to stop the passed struct se_cmd to allow
4112 * an struct se_lun to be successfully shutdown.
4113 */
4114static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
4115{
4116 unsigned long flags;
4117 int ret;
4118 /*
4119 * If the frontend has already requested this struct se_cmd to
4120 * be stopped, we can safely ignore this struct se_cmd.
4121 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004122 spin_lock_irqsave(&cmd->t_state_lock, flags);
4123 if (atomic_read(&cmd->t_transport_stop)) {
4124 atomic_set(&cmd->transport_lun_stop, 0);
Andy Grover6708bb22011-06-08 10:36:43 -07004125 pr_debug("ConfigFS ITT[0x%08x] - t_transport_stop =="
Andy Grovere3d6f902011-07-19 08:55:10 +00004126 " TRUE, skipping\n", cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004127 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004128 transport_cmd_check_stop(cmd, 1, 0);
Andy Grovere3d6f902011-07-19 08:55:10 +00004129 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004130 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004131 atomic_set(&cmd->transport_lun_fe_stop, 1);
4132 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004133
Andy Grover5951146d2011-07-19 10:26:37 +00004134 wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004135
4136 ret = transport_stop_tasks_for_cmd(cmd);
4137
Andy Grover6708bb22011-06-08 10:36:43 -07004138 pr_debug("ConfigFS: cmd: %p t_tasks: %d stop tasks ret:"
4139 " %d\n", cmd, cmd->t_task_list_num, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004140 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07004141 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004142 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004143 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07004144 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004145 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004146 }
Christoph Hellwig3df8d402011-10-17 13:56:43 -04004147 transport_remove_cmd_from_queue(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004148
4149 return 0;
4150}
4151
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004152static void __transport_clear_lun_from_sessions(struct se_lun *lun)
4153{
4154 struct se_cmd *cmd = NULL;
4155 unsigned long lun_flags, cmd_flags;
4156 /*
4157 * Do exception processing and return CHECK_CONDITION status to the
4158 * Initiator Port.
4159 */
4160 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00004161 while (!list_empty(&lun->lun_cmd_list)) {
4162 cmd = list_first_entry(&lun->lun_cmd_list,
4163 struct se_cmd, se_lun_node);
4164 list_del(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004165
Andy Grovera1d8b492011-05-02 17:12:10 -07004166 atomic_set(&cmd->transport_lun_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004167 /*
4168 * This will notify iscsi_target_transport.c:
4169 * transport_cmd_check_stop() that a LUN shutdown is in
4170 * progress for the iscsi_cmd_t.
4171 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004172 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07004173 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004174 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004175 cmd->se_lun->unpacked_lun,
4176 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004177 atomic_set(&cmd->transport_lun_stop, 1);
4178 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004179
4180 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
4181
Andy Grover6708bb22011-06-08 10:36:43 -07004182 if (!cmd->se_lun) {
4183 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004184 cmd->se_tfo->get_task_tag(cmd),
4185 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004186 BUG();
4187 }
4188 /*
4189 * If the Storage engine still owns the iscsi_cmd_t, determine
4190 * and/or stop its context.
4191 */
Andy Grover6708bb22011-06-08 10:36:43 -07004192 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00004193 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
4194 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004195
Andy Grovere3d6f902011-07-19 08:55:10 +00004196 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004197 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4198 continue;
4199 }
4200
Andy Grover6708bb22011-06-08 10:36:43 -07004201 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004202 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004203 cmd->se_lun->unpacked_lun,
4204 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004205
Andy Grovera1d8b492011-05-02 17:12:10 -07004206 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Andy Grover6708bb22011-06-08 10:36:43 -07004207 if (!atomic_read(&cmd->transport_dev_active)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004208 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004209 goto check_cond;
4210 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004211 atomic_set(&cmd->transport_dev_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004212 transport_all_task_dev_remove_state(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07004213 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004214
4215 transport_free_dev_tasks(cmd);
4216 /*
4217 * The Storage engine stopped this struct se_cmd before it was
4218 * send to the fabric frontend for delivery back to the
4219 * Initiator Node. Return this SCSI CDB back with an
4220 * CHECK_CONDITION status.
4221 */
4222check_cond:
4223 transport_send_check_condition_and_sense(cmd,
4224 TCM_NON_EXISTENT_LUN, 0);
4225 /*
4226 * If the fabric frontend is waiting for this iscsi_cmd_t to
4227 * be released, notify the waiting thread now that LU has
4228 * finished accessing it.
4229 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004230 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
4231 if (atomic_read(&cmd->transport_lun_fe_stop)) {
Andy Grover6708bb22011-06-08 10:36:43 -07004232 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004233 " struct se_cmd: %p ITT: 0x%08x\n",
4234 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00004235 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004236
Andy Grovera1d8b492011-05-02 17:12:10 -07004237 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004238 cmd_flags);
4239 transport_cmd_check_stop(cmd, 1, 0);
Andy Grovera1d8b492011-05-02 17:12:10 -07004240 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004241 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4242 continue;
4243 }
Andy Grover6708bb22011-06-08 10:36:43 -07004244 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004245 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004246
Andy Grovera1d8b492011-05-02 17:12:10 -07004247 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004248 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4249 }
4250 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
4251}
4252
4253static int transport_clear_lun_thread(void *p)
4254{
Jörn Engel8359cf42011-11-24 02:05:51 +01004255 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004256
4257 __transport_clear_lun_from_sessions(lun);
4258 complete(&lun->lun_shutdown_comp);
4259
4260 return 0;
4261}
4262
4263int transport_clear_lun_from_sessions(struct se_lun *lun)
4264{
4265 struct task_struct *kt;
4266
Andy Grover5951146d2011-07-19 10:26:37 +00004267 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004268 "tcm_cl_%u", lun->unpacked_lun);
4269 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07004270 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00004271 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004272 }
4273 wait_for_completion(&lun->lun_shutdown_comp);
4274
4275 return 0;
4276}
4277
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004278/**
4279 * transport_wait_for_tasks - wait for completion to occur
4280 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004281 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004282 * Called from frontend fabric context to wait for storage engine
4283 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004284 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004285bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004286{
4287 unsigned long flags;
4288
Andy Grovera1d8b492011-05-02 17:12:10 -07004289 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004290 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) && !(cmd->se_tmr_req)) {
4291 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004292 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004293 }
4294 /*
4295 * Only perform a possible wait_for_tasks if SCF_SUPPORTED_SAM_OPCODE
4296 * has been set in transport_set_supported_SAM_opcode().
4297 */
4298 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) && !cmd->se_tmr_req) {
4299 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004300 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004301 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004302 /*
4303 * If we are already stopped due to an external event (ie: LUN shutdown)
4304 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07004305 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004306 * transport_clear_lun_from_sessions() once the ConfigFS context caller
4307 * has completed its operation on the struct se_cmd.
4308 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004309 if (atomic_read(&cmd->transport_lun_stop)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004310
Andy Grover6708bb22011-06-08 10:36:43 -07004311 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00004312 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004313 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004314 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004315 /*
4316 * There is a special case for WRITES where a FE exception +
4317 * LUN shutdown means ConfigFS context is still sleeping on
4318 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
4319 * We go ahead and up transport_lun_stop_comp just to be sure
4320 * here.
4321 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004322 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4323 complete(&cmd->transport_lun_stop_comp);
4324 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
4325 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004326
4327 transport_all_task_dev_remove_state(cmd);
4328 /*
4329 * At this point, the frontend who was the originator of this
4330 * struct se_cmd, now owns the structure and can be released through
4331 * normal means below.
4332 */
Andy Grover6708bb22011-06-08 10:36:43 -07004333 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00004334 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004335 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004336 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004337
Andy Grovera1d8b492011-05-02 17:12:10 -07004338 atomic_set(&cmd->transport_lun_stop, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004339 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004340 if (!atomic_read(&cmd->t_transport_active) ||
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004341 atomic_read(&cmd->t_transport_aborted)) {
4342 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004343 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004344 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004345
Andy Grovera1d8b492011-05-02 17:12:10 -07004346 atomic_set(&cmd->t_transport_stop, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004347
Andy Grover6708bb22011-06-08 10:36:43 -07004348 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04004349 " i_state: %d, t_state: %d, t_transport_stop = TRUE\n",
4350 cmd, cmd->se_tfo->get_task_tag(cmd),
4351 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004352
Andy Grovera1d8b492011-05-02 17:12:10 -07004353 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004354
Andy Grover5951146d2011-07-19 10:26:37 +00004355 wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004356
Andy Grovera1d8b492011-05-02 17:12:10 -07004357 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004358
Andy Grovera1d8b492011-05-02 17:12:10 -07004359 spin_lock_irqsave(&cmd->t_state_lock, flags);
4360 atomic_set(&cmd->t_transport_active, 0);
4361 atomic_set(&cmd->t_transport_stop, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004362
Andy Grover6708bb22011-06-08 10:36:43 -07004363 pr_debug("wait_for_tasks: Stopped wait_for_compltion("
Andy Grovera1d8b492011-05-02 17:12:10 -07004364 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004365 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004366
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004367 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004368
4369 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004370}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004371EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004372
4373static int transport_get_sense_codes(
4374 struct se_cmd *cmd,
4375 u8 *asc,
4376 u8 *ascq)
4377{
4378 *asc = cmd->scsi_asc;
4379 *ascq = cmd->scsi_ascq;
4380
4381 return 0;
4382}
4383
4384static int transport_set_sense_codes(
4385 struct se_cmd *cmd,
4386 u8 asc,
4387 u8 ascq)
4388{
4389 cmd->scsi_asc = asc;
4390 cmd->scsi_ascq = ascq;
4391
4392 return 0;
4393}
4394
4395int transport_send_check_condition_and_sense(
4396 struct se_cmd *cmd,
4397 u8 reason,
4398 int from_transport)
4399{
4400 unsigned char *buffer = cmd->sense_buffer;
4401 unsigned long flags;
4402 int offset;
4403 u8 asc = 0, ascq = 0;
4404
Andy Grovera1d8b492011-05-02 17:12:10 -07004405 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004406 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004407 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004408 return 0;
4409 }
4410 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07004411 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004412
4413 if (!reason && from_transport)
4414 goto after_reason;
4415
4416 if (!from_transport)
4417 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
4418 /*
4419 * Data Segment and SenseLength of the fabric response PDU.
4420 *
4421 * TRANSPORT_SENSE_BUFFER is now set to SCSI_SENSE_BUFFERSIZE
4422 * from include/scsi/scsi_cmnd.h
4423 */
Andy Grovere3d6f902011-07-19 08:55:10 +00004424 offset = cmd->se_tfo->set_fabric_sense_len(cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004425 TRANSPORT_SENSE_BUFFER);
4426 /*
4427 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
4428 * SENSE KEY values from include/scsi/scsi.h
4429 */
4430 switch (reason) {
4431 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07004432 /* CURRENT ERROR */
4433 buffer[offset] = 0x70;
4434 /* ILLEGAL REQUEST */
4435 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4436 /* LOGICAL UNIT NOT SUPPORTED */
4437 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x25;
4438 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004439 case TCM_UNSUPPORTED_SCSI_OPCODE:
4440 case TCM_SECTOR_COUNT_TOO_MANY:
4441 /* CURRENT ERROR */
4442 buffer[offset] = 0x70;
4443 /* ILLEGAL REQUEST */
4444 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4445 /* INVALID COMMAND OPERATION CODE */
4446 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x20;
4447 break;
4448 case TCM_UNKNOWN_MODE_PAGE:
4449 /* CURRENT ERROR */
4450 buffer[offset] = 0x70;
4451 /* ILLEGAL REQUEST */
4452 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4453 /* INVALID FIELD IN CDB */
4454 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
4455 break;
4456 case TCM_CHECK_CONDITION_ABORT_CMD:
4457 /* CURRENT ERROR */
4458 buffer[offset] = 0x70;
4459 /* ABORTED COMMAND */
4460 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4461 /* BUS DEVICE RESET FUNCTION OCCURRED */
4462 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x29;
4463 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x03;
4464 break;
4465 case TCM_INCORRECT_AMOUNT_OF_DATA:
4466 /* CURRENT ERROR */
4467 buffer[offset] = 0x70;
4468 /* ABORTED COMMAND */
4469 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4470 /* WRITE ERROR */
4471 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c;
4472 /* NOT ENOUGH UNSOLICITED DATA */
4473 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0d;
4474 break;
4475 case TCM_INVALID_CDB_FIELD:
4476 /* CURRENT ERROR */
4477 buffer[offset] = 0x70;
4478 /* ABORTED COMMAND */
4479 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4480 /* INVALID FIELD IN CDB */
4481 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
4482 break;
4483 case TCM_INVALID_PARAMETER_LIST:
4484 /* CURRENT ERROR */
4485 buffer[offset] = 0x70;
4486 /* ABORTED COMMAND */
4487 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4488 /* INVALID FIELD IN PARAMETER LIST */
4489 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x26;
4490 break;
4491 case TCM_UNEXPECTED_UNSOLICITED_DATA:
4492 /* CURRENT ERROR */
4493 buffer[offset] = 0x70;
4494 /* ABORTED COMMAND */
4495 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4496 /* WRITE ERROR */
4497 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c;
4498 /* UNEXPECTED_UNSOLICITED_DATA */
4499 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0c;
4500 break;
4501 case TCM_SERVICE_CRC_ERROR:
4502 /* CURRENT ERROR */
4503 buffer[offset] = 0x70;
4504 /* ABORTED COMMAND */
4505 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4506 /* PROTOCOL SERVICE CRC ERROR */
4507 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x47;
4508 /* N/A */
4509 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x05;
4510 break;
4511 case TCM_SNACK_REJECTED:
4512 /* CURRENT ERROR */
4513 buffer[offset] = 0x70;
4514 /* ABORTED COMMAND */
4515 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4516 /* READ ERROR */
4517 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x11;
4518 /* FAILED RETRANSMISSION REQUEST */
4519 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x13;
4520 break;
4521 case TCM_WRITE_PROTECTED:
4522 /* CURRENT ERROR */
4523 buffer[offset] = 0x70;
4524 /* DATA PROTECT */
4525 buffer[offset+SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
4526 /* WRITE PROTECTED */
4527 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x27;
4528 break;
4529 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
4530 /* CURRENT ERROR */
4531 buffer[offset] = 0x70;
4532 /* UNIT ATTENTION */
4533 buffer[offset+SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
4534 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
4535 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
4536 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
4537 break;
4538 case TCM_CHECK_CONDITION_NOT_READY:
4539 /* CURRENT ERROR */
4540 buffer[offset] = 0x70;
4541 /* Not Ready */
4542 buffer[offset+SPC_SENSE_KEY_OFFSET] = NOT_READY;
4543 transport_get_sense_codes(cmd, &asc, &ascq);
4544 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
4545 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
4546 break;
4547 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
4548 default:
4549 /* CURRENT ERROR */
4550 buffer[offset] = 0x70;
4551 /* ILLEGAL REQUEST */
4552 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4553 /* LOGICAL UNIT COMMUNICATION FAILURE */
4554 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x80;
4555 break;
4556 }
4557 /*
4558 * This code uses linux/include/scsi/scsi.h SAM status codes!
4559 */
4560 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
4561 /*
4562 * Automatically padded, this value is encoded in the fabric's
4563 * data_length response PDU containing the SCSI defined sense data.
4564 */
4565 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER + offset;
4566
4567after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004568 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004569}
4570EXPORT_SYMBOL(transport_send_check_condition_and_sense);
4571
4572int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
4573{
4574 int ret = 0;
4575
Andy Grovera1d8b492011-05-02 17:12:10 -07004576 if (atomic_read(&cmd->t_transport_aborted) != 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07004577 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004578 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
4579 return 1;
4580#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07004581 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004582 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07004583 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00004584 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004585#endif
4586 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00004587 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004588 ret = 1;
4589 }
4590 return ret;
4591}
4592EXPORT_SYMBOL(transport_check_aborted_status);
4593
4594void transport_send_task_abort(struct se_cmd *cmd)
4595{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07004596 unsigned long flags;
4597
4598 spin_lock_irqsave(&cmd->t_state_lock, flags);
4599 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
4600 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4601 return;
4602 }
4603 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4604
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004605 /*
4606 * If there are still expected incoming fabric WRITEs, we wait
4607 * until until they have completed before sending a TASK_ABORTED
4608 * response. This response with TASK_ABORTED status will be
4609 * queued back to fabric module by transport_check_aborted_status().
4610 */
4611 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00004612 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004613 atomic_inc(&cmd->t_transport_aborted);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004614 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004615 }
4616 }
4617 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
4618#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07004619 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07004620 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00004621 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004622#endif
Andy Grovere3d6f902011-07-19 08:55:10 +00004623 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004624}
4625
Christoph Hellwige26d99a2011-11-14 12:30:30 -05004626static int transport_generic_do_tmr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004627{
Andy Grover5951146d2011-07-19 10:26:37 +00004628 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004629 struct se_tmr_req *tmr = cmd->se_tmr_req;
4630 int ret;
4631
4632 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004633 case TMR_ABORT_TASK:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004634 tmr->response = TMR_FUNCTION_REJECTED;
4635 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004636 case TMR_ABORT_TASK_SET:
4637 case TMR_CLEAR_ACA:
4638 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004639 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
4640 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004641 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004642 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
4643 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
4644 TMR_FUNCTION_REJECTED;
4645 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004646 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004647 tmr->response = TMR_FUNCTION_REJECTED;
4648 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004649 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004650 tmr->response = TMR_FUNCTION_REJECTED;
4651 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004652 default:
Andy Grover6708bb22011-06-08 10:36:43 -07004653 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004654 tmr->function);
4655 tmr->response = TMR_FUNCTION_REJECTED;
4656 break;
4657 }
4658
4659 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00004660 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004661
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04004662 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004663 return 0;
4664}
4665
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004666/* transport_processing_thread():
4667 *
4668 *
4669 */
4670static int transport_processing_thread(void *param)
4671{
Andy Grover5951146d2011-07-19 10:26:37 +00004672 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004673 struct se_cmd *cmd;
Jörn Engel8359cf42011-11-24 02:05:51 +01004674 struct se_device *dev = param;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004675
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004676 while (!kthread_should_stop()) {
Andy Grovere3d6f902011-07-19 08:55:10 +00004677 ret = wait_event_interruptible(dev->dev_queue_obj.thread_wq,
4678 atomic_read(&dev->dev_queue_obj.queue_cnt) ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004679 kthread_should_stop());
4680 if (ret < 0)
4681 goto out;
4682
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004683get_cmd:
4684 __transport_execute_tasks(dev);
4685
Andy Grover5951146d2011-07-19 10:26:37 +00004686 cmd = transport_get_cmd_from_queue(&dev->dev_queue_obj);
4687 if (!cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004688 continue;
4689
Andy Grover5951146d2011-07-19 10:26:37 +00004690 switch (cmd->t_state) {
Christoph Hellwig680b73c2011-09-12 21:51:14 +02004691 case TRANSPORT_NEW_CMD:
4692 BUG();
4693 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004694 case TRANSPORT_NEW_CMD_MAP:
Andy Grover6708bb22011-06-08 10:36:43 -07004695 if (!cmd->se_tfo->new_cmd_map) {
4696 pr_err("cmd->se_tfo->new_cmd_map is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004697 " NULL for TRANSPORT_NEW_CMD_MAP\n");
4698 BUG();
4699 }
Andy Grovere3d6f902011-07-19 08:55:10 +00004700 ret = cmd->se_tfo->new_cmd_map(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004701 if (ret < 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07004702 transport_generic_request_failure(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004703 break;
4704 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004705 ret = transport_generic_new_cmd(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07004706 if (ret < 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07004707 transport_generic_request_failure(cmd);
4708 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004709 }
4710 break;
4711 case TRANSPORT_PROCESS_WRITE:
4712 transport_generic_process_write(cmd);
4713 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004714 case TRANSPORT_PROCESS_TMR:
4715 transport_generic_do_tmr(cmd);
4716 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004717 case TRANSPORT_COMPLETE_QF_WP:
Christoph Hellwige057f532011-10-17 13:56:41 -04004718 transport_write_pending_qf(cmd);
4719 break;
4720 case TRANSPORT_COMPLETE_QF_OK:
4721 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004722 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004723 default:
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04004724 pr_err("Unknown t_state: %d for ITT: 0x%08x "
4725 "i_state: %d on SE LUN: %u\n",
4726 cmd->t_state,
Andy Grovere3d6f902011-07-19 08:55:10 +00004727 cmd->se_tfo->get_task_tag(cmd),
4728 cmd->se_tfo->get_cmd_state(cmd),
4729 cmd->se_lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004730 BUG();
4731 }
4732
4733 goto get_cmd;
4734 }
4735
4736out:
Nicholas Bellingerce8762f2011-10-09 02:19:01 -07004737 WARN_ON(!list_empty(&dev->state_task_list));
4738 WARN_ON(!list_empty(&dev->dev_queue_obj.qobj_list));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004739 dev->process_thread = NULL;
4740 return 0;
4741}