blob: 46e25118ab259e593d4ec336962f5e9277fc8bfb [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 Bellinger4d2300c2011-11-30 18:18:33 -080071static int __transport_execute_tasks(struct se_device *dev, struct se_cmd *);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072static 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;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694
Andy Grovera1d8b492011-05-02 17:12:10 -0700695 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig6c76bf92011-10-12 11:07:03 -0400696 task->task_flags &= ~TF_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800697
698 /*
699 * See if any sense data exists, if so set the TASK_SENSE flag.
700 * Also check for any other post completion work that needs to be
701 * done by the plugins.
702 */
703 if (dev && dev->transport->transport_complete) {
704 if (dev->transport->transport_complete(task) != 0) {
705 cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE;
Christoph Hellwigef804a82011-11-23 06:53:58 -0500706 task->task_flags |= TF_HAS_SENSE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800707 success = 1;
708 }
709 }
710
711 /*
712 * See if we are waiting for outstanding struct se_task
713 * to complete for an exception condition
714 */
Christoph Hellwig6c76bf92011-10-12 11:07:03 -0400715 if (task->task_flags & TF_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700716 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800717 complete(&task->task_stop_comp);
718 return;
719 }
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700720
721 if (!success)
722 cmd->t_tasks_failed = 1;
723
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800724 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800725 * Decrement the outstanding t_task_cdbs_left count. The last
726 * struct se_task from struct se_cmd will complete itself into the
727 * device queue depending upon int success.
728 */
Andy Grover6708bb22011-06-08 10:36:43 -0700729 if (!atomic_dec_and_test(&cmd->t_task_cdbs_left)) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700730 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800731 return;
732 }
733
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700734 if (cmd->t_tasks_failed) {
Christoph Hellwig41e16e92011-11-23 06:54:15 -0500735 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400736 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800737 } else {
Andy Grovera1d8b492011-05-02 17:12:10 -0700738 atomic_set(&cmd->t_transport_complete, 1);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400739 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800740 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400741
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400742 cmd->t_state = TRANSPORT_COMPLETE;
743 atomic_set(&cmd->t_transport_active, 1);
Andy Grovera1d8b492011-05-02 17:12:10 -0700744 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800745
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400746 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800747}
748EXPORT_SYMBOL(transport_complete_task);
749
750/*
751 * Called by transport_add_tasks_from_cmd() once a struct se_cmd's
752 * struct se_task list are ready to be added to the active execution list
753 * struct se_device
754
755 * Called with se_dev_t->execute_task_lock called.
756 */
757static inline int transport_add_task_check_sam_attr(
758 struct se_task *task,
759 struct se_task *task_prev,
760 struct se_device *dev)
761{
762 /*
763 * No SAM Task attribute emulation enabled, add to tail of
764 * execution queue
765 */
766 if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED) {
767 list_add_tail(&task->t_execute_list, &dev->execute_task_list);
768 return 0;
769 }
770 /*
771 * HEAD_OF_QUEUE attribute for received CDB, which means
772 * the first task that is associated with a struct se_cmd goes to
773 * head of the struct se_device->execute_task_list, and task_prev
774 * after that for each subsequent task
775 */
Nicholas Bellingere66ecd52011-05-19 20:19:14 -0700776 if (task->task_se_cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800777 list_add(&task->t_execute_list,
778 (task_prev != NULL) ?
779 &task_prev->t_execute_list :
780 &dev->execute_task_list);
781
Andy Grover6708bb22011-06-08 10:36:43 -0700782 pr_debug("Set HEAD_OF_QUEUE for task CDB: 0x%02x"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800783 " in execution queue\n",
Andy Grover6708bb22011-06-08 10:36:43 -0700784 task->task_se_cmd->t_task_cdb[0]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800785 return 1;
786 }
787 /*
788 * For ORDERED, SIMPLE or UNTAGGED attribute tasks once they have been
789 * transitioned from Dermant -> Active state, and are added to the end
790 * of the struct se_device->execute_task_list
791 */
792 list_add_tail(&task->t_execute_list, &dev->execute_task_list);
793 return 0;
794}
795
796/* __transport_add_task_to_execute_queue():
797 *
798 * Called with se_dev_t->execute_task_lock called.
799 */
800static void __transport_add_task_to_execute_queue(
801 struct se_task *task,
802 struct se_task *task_prev,
803 struct se_device *dev)
804{
805 int head_of_queue;
806
807 head_of_queue = transport_add_task_check_sam_attr(task, task_prev, dev);
808 atomic_inc(&dev->execute_tasks);
809
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500810 if (task->t_state_active)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800811 return;
812 /*
813 * Determine if this task needs to go to HEAD_OF_QUEUE for the
814 * state list as well. Running with SAM Task Attribute emulation
815 * will always return head_of_queue == 0 here
816 */
817 if (head_of_queue)
818 list_add(&task->t_state_list, (task_prev) ?
819 &task_prev->t_state_list :
820 &dev->state_task_list);
821 else
822 list_add_tail(&task->t_state_list, &dev->state_task_list);
823
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500824 task->t_state_active = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800825
Andy Grover6708bb22011-06-08 10:36:43 -0700826 pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000827 task->task_se_cmd->se_tfo->get_task_tag(task->task_se_cmd),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800828 task, dev);
829}
830
831static void transport_add_tasks_to_state_queue(struct se_cmd *cmd)
832{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400833 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800834 struct se_task *task;
835 unsigned long flags;
836
Andy Grovera1d8b492011-05-02 17:12:10 -0700837 spin_lock_irqsave(&cmd->t_state_lock, flags);
838 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800839 spin_lock(&dev->execute_task_lock);
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500840 if (!task->t_state_active) {
841 list_add_tail(&task->t_state_list,
842 &dev->state_task_list);
843 task->t_state_active = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800844
Christoph Hellwig1880807a2011-11-23 06:54:36 -0500845 pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n",
846 task->task_se_cmd->se_tfo->get_task_tag(
847 task->task_se_cmd), task, dev);
848 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800849 spin_unlock(&dev->execute_task_lock);
850 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700851 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800852}
853
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800854static void __transport_add_tasks_from_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800855{
Andy Grover5951146d2011-07-19 10:26:37 +0000856 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800857 struct se_task *task, *task_prev = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800858
Andy Grovera1d8b492011-05-02 17:12:10 -0700859 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Christoph Hellwig04629b72011-10-12 11:07:04 -0400860 if (!list_empty(&task->t_execute_list))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800861 continue;
862 /*
863 * __transport_add_task_to_execute_queue() handles the
864 * SAM Task Attribute emulation if enabled
865 */
866 __transport_add_task_to_execute_queue(task, task_prev, dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800867 task_prev = task;
868 }
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800869}
870
871static void transport_add_tasks_from_cmd(struct se_cmd *cmd)
872{
873 unsigned long flags;
874 struct se_device *dev = cmd->se_dev;
875
876 spin_lock_irqsave(&dev->execute_task_lock, flags);
877 __transport_add_tasks_from_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800879}
880
Christoph Hellwig04629b72011-10-12 11:07:04 -0400881void __transport_remove_task_from_execute_queue(struct se_task *task,
882 struct se_device *dev)
883{
884 list_del_init(&task->t_execute_list);
885 atomic_dec(&dev->execute_tasks);
886}
887
Christoph Hellwige26d99a2011-11-14 12:30:30 -0500888static void transport_remove_task_from_execute_queue(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800889 struct se_task *task,
890 struct se_device *dev)
891{
892 unsigned long flags;
893
Christoph Hellwig04629b72011-10-12 11:07:04 -0400894 if (WARN_ON(list_empty(&task->t_execute_list)))
Nicholas Bellingeraf57c3a2011-05-19 20:19:12 -0700895 return;
Nicholas Bellingeraf57c3a2011-05-19 20:19:12 -0700896
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800897 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwig04629b72011-10-12 11:07:04 -0400898 __transport_remove_task_from_execute_queue(task, dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800899 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
900}
901
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700902/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700903 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700904 */
905
906static void target_qf_do_work(struct work_struct *work)
907{
908 struct se_device *dev = container_of(work, struct se_device,
909 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700910 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700911 struct se_cmd *cmd, *cmd_tmp;
912
913 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700914 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
915 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700916
Roland Dreierbcac3642011-08-27 21:33:16 -0700917 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700918 list_del(&cmd->se_qf_node);
919 atomic_dec(&dev->dev_qf_count);
920 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700921
Andy Grover6708bb22011-06-08 10:36:43 -0700922 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700923 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400924 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700925 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
926 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400927
928 transport_add_cmd_to_queue(cmd, cmd->t_state, true);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700929 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700930}
931
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800932unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
933{
934 switch (cmd->data_direction) {
935 case DMA_NONE:
936 return "NONE";
937 case DMA_FROM_DEVICE:
938 return "READ";
939 case DMA_TO_DEVICE:
940 return "WRITE";
941 case DMA_BIDIRECTIONAL:
942 return "BIDI";
943 default:
944 break;
945 }
946
947 return "UNKNOWN";
948}
949
950void transport_dump_dev_state(
951 struct se_device *dev,
952 char *b,
953 int *bl)
954{
955 *bl += sprintf(b + *bl, "Status: ");
956 switch (dev->dev_status) {
957 case TRANSPORT_DEVICE_ACTIVATED:
958 *bl += sprintf(b + *bl, "ACTIVATED");
959 break;
960 case TRANSPORT_DEVICE_DEACTIVATED:
961 *bl += sprintf(b + *bl, "DEACTIVATED");
962 break;
963 case TRANSPORT_DEVICE_SHUTDOWN:
964 *bl += sprintf(b + *bl, "SHUTDOWN");
965 break;
966 case TRANSPORT_DEVICE_OFFLINE_ACTIVATED:
967 case TRANSPORT_DEVICE_OFFLINE_DEACTIVATED:
968 *bl += sprintf(b + *bl, "OFFLINE");
969 break;
970 default:
971 *bl += sprintf(b + *bl, "UNKNOWN=%d", dev->dev_status);
972 break;
973 }
974
Nicholas Bellinger65586d52011-11-30 01:25:21 -0800975 *bl += sprintf(b + *bl, " Execute/Max Queue Depth: %d/%d",
976 atomic_read(&dev->execute_tasks), dev->queue_depth);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800977 *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 atomic_set(&dev->dev_ordered_id, 0);
1332
1333 se_dev_set_default_attribs(dev, dev_limits);
1334
1335 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
1336 dev->creation_time = get_jiffies_64();
1337 spin_lock_init(&dev->stats_lock);
1338
1339 spin_lock(&hba->device_lock);
1340 list_add_tail(&dev->dev_list, &hba->hba_dev_list);
1341 hba->dev_count++;
1342 spin_unlock(&hba->device_lock);
1343 /*
1344 * Setup the SAM Task Attribute emulation for struct se_device
1345 */
1346 core_setup_task_attr_emulation(dev);
1347 /*
1348 * Force PR and ALUA passthrough emulation with internal object use.
1349 */
1350 force_pt = (hba->hba_flags & HBA_FLAGS_INTERNAL_USE);
1351 /*
1352 * Setup the Reservations infrastructure for struct se_device
1353 */
1354 core_setup_reservations(dev, force_pt);
1355 /*
1356 * Setup the Asymmetric Logical Unit Assignment for struct se_device
1357 */
1358 if (core_setup_alua(dev, force_pt) < 0)
1359 goto out;
1360
1361 /*
1362 * Startup the struct se_device processing thread
1363 */
1364 dev->process_thread = kthread_run(transport_processing_thread, dev,
Andy Grovere3d6f902011-07-19 08:55:10 +00001365 "LIO_%s", dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001366 if (IS_ERR(dev->process_thread)) {
Andy Grover6708bb22011-06-08 10:36:43 -07001367 pr_err("Unable to create kthread: LIO_%s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001368 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001369 goto out;
1370 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001371 /*
1372 * Setup work_queue for QUEUE_FULL
1373 */
1374 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001375 /*
1376 * Preload the initial INQUIRY const values if we are doing
1377 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
1378 * passthrough because this is being provided by the backend LLD.
1379 * This is required so that transport_get_inquiry() copies these
1380 * originals once back into DEV_T10_WWN(dev) for the virtual device
1381 * setup.
1382 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001383 if (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
Roland Dreierf22c1192011-05-02 22:15:37 -07001384 if (!inquiry_prod || !inquiry_rev) {
Andy Grover6708bb22011-06-08 10:36:43 -07001385 pr_err("All non TCM/pSCSI plugins require"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001386 " INQUIRY consts\n");
1387 goto out;
1388 }
1389
Andy Grovere3d6f902011-07-19 08:55:10 +00001390 strncpy(&dev->se_sub_dev->t10_wwn.vendor[0], "LIO-ORG", 8);
1391 strncpy(&dev->se_sub_dev->t10_wwn.model[0], inquiry_prod, 16);
1392 strncpy(&dev->se_sub_dev->t10_wwn.revision[0], inquiry_rev, 4);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001393 }
1394 scsi_dump_inquiry(dev);
1395
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001396 return dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001397out:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001398 kthread_stop(dev->process_thread);
1399
1400 spin_lock(&hba->device_lock);
1401 list_del(&dev->dev_list);
1402 hba->dev_count--;
1403 spin_unlock(&hba->device_lock);
1404
1405 se_release_vpd_for_dev(dev);
1406
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001407 kfree(dev);
1408
1409 return NULL;
1410}
1411EXPORT_SYMBOL(transport_add_device_to_core_hba);
1412
1413/* transport_generic_prepare_cdb():
1414 *
1415 * Since the Initiator sees iSCSI devices as LUNs, the SCSI CDB will
1416 * contain the iSCSI LUN in bits 7-5 of byte 1 as per SAM-2.
1417 * The point of this is since we are mapping iSCSI LUNs to
1418 * SCSI Target IDs having a non-zero LUN in the CDB will throw the
1419 * devices and HBAs for a loop.
1420 */
1421static inline void transport_generic_prepare_cdb(
1422 unsigned char *cdb)
1423{
1424 switch (cdb[0]) {
1425 case READ_10: /* SBC - RDProtect */
1426 case READ_12: /* SBC - RDProtect */
1427 case READ_16: /* SBC - RDProtect */
1428 case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */
1429 case VERIFY: /* SBC - VRProtect */
1430 case VERIFY_16: /* SBC - VRProtect */
1431 case WRITE_VERIFY: /* SBC - VRProtect */
1432 case WRITE_VERIFY_12: /* SBC - VRProtect */
1433 break;
1434 default:
1435 cdb[1] &= 0x1f; /* clear logical unit number */
1436 break;
1437 }
1438}
1439
1440static struct se_task *
1441transport_generic_get_task(struct se_cmd *cmd,
1442 enum dma_data_direction data_direction)
1443{
1444 struct se_task *task;
Andy Grover5951146d2011-07-19 10:26:37 +00001445 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001446
Andy Grover6708bb22011-06-08 10:36:43 -07001447 task = dev->transport->alloc_task(cmd->t_task_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001448 if (!task) {
Andy Grover6708bb22011-06-08 10:36:43 -07001449 pr_err("Unable to allocate struct se_task\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001450 return NULL;
1451 }
1452
1453 INIT_LIST_HEAD(&task->t_list);
1454 INIT_LIST_HEAD(&task->t_execute_list);
1455 INIT_LIST_HEAD(&task->t_state_list);
1456 init_completion(&task->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001457 task->task_se_cmd = cmd;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001458 task->task_data_direction = data_direction;
1459
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001460 return task;
1461}
1462
1463static int transport_generic_cmd_sequencer(struct se_cmd *, unsigned char *);
1464
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001465/*
1466 * Used by fabric modules containing a local struct se_cmd within their
1467 * fabric dependent per I/O descriptor.
1468 */
1469void transport_init_se_cmd(
1470 struct se_cmd *cmd,
1471 struct target_core_fabric_ops *tfo,
1472 struct se_session *se_sess,
1473 u32 data_length,
1474 int data_direction,
1475 int task_attr,
1476 unsigned char *sense_buffer)
1477{
Andy Grover5951146d2011-07-19 10:26:37 +00001478 INIT_LIST_HEAD(&cmd->se_lun_node);
1479 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001480 INIT_LIST_HEAD(&cmd->se_qf_node);
Roland Dreier79a7fef2011-09-28 22:12:07 -07001481 INIT_LIST_HEAD(&cmd->se_queue_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001482 INIT_LIST_HEAD(&cmd->se_cmd_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001483 INIT_LIST_HEAD(&cmd->t_task_list);
1484 init_completion(&cmd->transport_lun_fe_stop_comp);
1485 init_completion(&cmd->transport_lun_stop_comp);
1486 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001487 init_completion(&cmd->cmd_wait_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001488 spin_lock_init(&cmd->t_state_lock);
1489 atomic_set(&cmd->transport_dev_active, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001490
1491 cmd->se_tfo = tfo;
1492 cmd->se_sess = se_sess;
1493 cmd->data_length = data_length;
1494 cmd->data_direction = data_direction;
1495 cmd->sam_task_attr = task_attr;
1496 cmd->sense_buffer = sense_buffer;
1497}
1498EXPORT_SYMBOL(transport_init_se_cmd);
1499
1500static int transport_check_alloc_task_attr(struct se_cmd *cmd)
1501{
1502 /*
1503 * Check if SAM Task Attribute emulation is enabled for this
1504 * struct se_device storage object
1505 */
Andy Grover5951146d2011-07-19 10:26:37 +00001506 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001507 return 0;
1508
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001509 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001510 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001511 " emulation is not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001512 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001513 }
1514 /*
1515 * Used to determine when ORDERED commands should go from
1516 * Dormant to Active status.
1517 */
Andy Grover5951146d2011-07-19 10:26:37 +00001518 cmd->se_ordered_id = atomic_inc_return(&cmd->se_dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001519 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001520 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001521 cmd->se_ordered_id, cmd->sam_task_attr,
Andy Grover6708bb22011-06-08 10:36:43 -07001522 cmd->se_dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001523 return 0;
1524}
1525
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001526/* transport_generic_allocate_tasks():
1527 *
1528 * Called from fabric RX Thread.
1529 */
1530int transport_generic_allocate_tasks(
1531 struct se_cmd *cmd,
1532 unsigned char *cdb)
1533{
1534 int ret;
1535
1536 transport_generic_prepare_cdb(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001537 /*
1538 * Ensure that the received CDB is less than the max (252 + 8) bytes
1539 * for VARIABLE_LENGTH_CMD
1540 */
1541 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001542 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001543 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1544 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001545 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1546 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grovere3d6f902011-07-19 08:55:10 +00001547 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001548 }
1549 /*
1550 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1551 * allocate the additional extended CDB buffer now.. Otherwise
1552 * setup the pointer from __t_task_cdb to t_task_cdb.
1553 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001554 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1555 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001556 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001557 if (!cmd->t_task_cdb) {
1558 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001559 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001560 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001561 (unsigned long)sizeof(cmd->__t_task_cdb));
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001562 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1563 cmd->scsi_sense_reason =
1564 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grovere3d6f902011-07-19 08:55:10 +00001565 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001566 }
1567 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001568 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001569 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001570 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001571 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001572 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001573 /*
1574 * Setup the received CDB based on SCSI defined opcodes and
1575 * perform unit attention, persistent reservations and ALUA
Andy Grovera1d8b492011-05-02 17:12:10 -07001576 * checks for virtual device backends. The cmd->t_task_cdb
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001577 * pointer is expected to be setup before we reach this point.
1578 */
1579 ret = transport_generic_cmd_sequencer(cmd, cdb);
1580 if (ret < 0)
1581 return ret;
1582 /*
1583 * Check for SAM Task Attribute Emulation
1584 */
1585 if (transport_check_alloc_task_attr(cmd) < 0) {
1586 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1587 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00001588 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001589 }
1590 spin_lock(&cmd->se_lun->lun_sep_lock);
1591 if (cmd->se_lun->lun_sep)
1592 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1593 spin_unlock(&cmd->se_lun->lun_sep_lock);
1594 return 0;
1595}
1596EXPORT_SYMBOL(transport_generic_allocate_tasks);
1597
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001598/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001599 * Used by fabric module frontends to queue tasks directly.
1600 * Many only be used from process context only
1601 */
1602int transport_handle_cdb_direct(
1603 struct se_cmd *cmd)
1604{
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001605 int ret;
1606
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001607 if (!cmd->se_lun) {
1608 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001609 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001610 return -EINVAL;
1611 }
1612 if (in_interrupt()) {
1613 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001614 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001615 " from interrupt context\n");
1616 return -EINVAL;
1617 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001618 /*
1619 * Set TRANSPORT_NEW_CMD state and cmd->t_transport_active=1 following
1620 * transport_generic_handle_cdb*() -> transport_add_cmd_to_queue()
1621 * in existing usage to ensure that outstanding descriptors are handled
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07001622 * correctly during shutdown via transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001623 *
1624 * Also, we don't take cmd->t_state_lock here as we only expect
1625 * this to be called for initial descriptor submission.
1626 */
1627 cmd->t_state = TRANSPORT_NEW_CMD;
1628 atomic_set(&cmd->t_transport_active, 1);
1629 /*
1630 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1631 * so follow TRANSPORT_NEW_CMD processing thread context usage
1632 * and call transport_generic_request_failure() if necessary..
1633 */
1634 ret = transport_generic_new_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001635 if (ret < 0)
1636 transport_generic_request_failure(cmd);
1637
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001638 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001639}
1640EXPORT_SYMBOL(transport_handle_cdb_direct);
1641
Nicholas Bellingera6360782011-11-18 20:36:22 -08001642/**
1643 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1644 *
1645 * @se_cmd: command descriptor to submit
1646 * @se_sess: associated se_sess for endpoint
1647 * @cdb: pointer to SCSI CDB
1648 * @sense: pointer to SCSI sense buffer
1649 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1650 * @data_length: fabric expected data transfer length
1651 * @task_addr: SAM task attribute
1652 * @data_dir: DMA data direction
1653 * @flags: flags for command submission from target_sc_flags_tables
1654 *
1655 * This may only be called from process context, and also currently
1656 * assumes internal allocation of fabric payload buffer by target-core.
1657 **/
1658int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1659 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1660 u32 data_length, int task_attr, int data_dir, int flags)
1661{
1662 struct se_portal_group *se_tpg;
1663 int rc;
1664
1665 se_tpg = se_sess->se_tpg;
1666 BUG_ON(!se_tpg);
1667 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1668 BUG_ON(in_interrupt());
1669 /*
1670 * Initialize se_cmd for target operation. From this point
1671 * exceptions are handled by sending exception status via
1672 * target_core_fabric_ops->queue_status() callback
1673 */
1674 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1675 data_length, data_dir, task_attr, sense);
1676 /*
1677 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1678 * se_sess->sess_cmd_list. A second kref_get here is necessary
1679 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1680 * kref_put() to happen during fabric packet acknowledgement.
1681 */
1682 target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1683 /*
1684 * Signal bidirectional data payloads to target-core
1685 */
1686 if (flags & TARGET_SCF_BIDI_OP)
1687 se_cmd->se_cmd_flags |= SCF_BIDI;
1688 /*
1689 * Locate se_lun pointer and attach it to struct se_cmd
1690 */
1691 if (transport_lookup_cmd_lun(se_cmd, unpacked_lun) < 0)
1692 goto out_check_cond;
1693 /*
1694 * Sanitize CDBs via transport_generic_cmd_sequencer() and
1695 * allocate the necessary tasks to complete the received CDB+data
1696 */
1697 rc = transport_generic_allocate_tasks(se_cmd, cdb);
1698 if (rc != 0)
1699 goto out_check_cond;
1700 /*
1701 * Dispatch se_cmd descriptor to se_lun->lun_se_dev backend
1702 * for immediate execution of READs, otherwise wait for
1703 * transport_generic_handle_data() to be called for WRITEs
1704 * when fabric has filled the incoming buffer.
1705 */
1706 transport_handle_cdb_direct(se_cmd);
1707 return 0;
1708
1709out_check_cond:
1710 transport_send_check_condition_and_sense(se_cmd,
1711 se_cmd->scsi_sense_reason, 0);
1712 return 0;
1713}
1714EXPORT_SYMBOL(target_submit_cmd);
1715
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001716/*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001717 * Used by fabric module frontends defining a TFO->new_cmd_map() caller
1718 * to queue up a newly setup se_cmd w/ TRANSPORT_NEW_CMD_MAP in order to
1719 * complete setup in TCM process context w/ TFO->new_cmd_map().
1720 */
1721int transport_generic_handle_cdb_map(
1722 struct se_cmd *cmd)
1723{
Andy Grovere3d6f902011-07-19 08:55:10 +00001724 if (!cmd->se_lun) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001725 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001726 pr_err("cmd->se_lun is NULL\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001727 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001728 }
1729
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001730 transport_add_cmd_to_queue(cmd, TRANSPORT_NEW_CMD_MAP, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001731 return 0;
1732}
1733EXPORT_SYMBOL(transport_generic_handle_cdb_map);
1734
1735/* transport_generic_handle_data():
1736 *
1737 *
1738 */
1739int transport_generic_handle_data(
1740 struct se_cmd *cmd)
1741{
1742 /*
1743 * For the software fabric case, then we assume the nexus is being
1744 * failed/shutdown when signals are pending from the kthread context
1745 * caller, so we return a failure. For the HW target mode case running
1746 * in interrupt code, the signal_pending() check is skipped.
1747 */
1748 if (!in_interrupt() && signal_pending(current))
Andy Grovere3d6f902011-07-19 08:55:10 +00001749 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001750 /*
1751 * If the received CDB has aleady been ABORTED by the generic
1752 * target engine, we now call transport_check_aborted_status()
1753 * to queue any delated TASK_ABORTED status for the received CDB to the
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001754 * fabric module as we are expecting no further incoming DATA OUT
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001755 * sequences at this point.
1756 */
1757 if (transport_check_aborted_status(cmd, 1) != 0)
1758 return 0;
1759
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001760 transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_WRITE, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001761 return 0;
1762}
1763EXPORT_SYMBOL(transport_generic_handle_data);
1764
1765/* transport_generic_handle_tmr():
1766 *
1767 *
1768 */
1769int transport_generic_handle_tmr(
1770 struct se_cmd *cmd)
1771{
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -04001772 transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_TMR, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001773 return 0;
1774}
1775EXPORT_SYMBOL(transport_generic_handle_tmr);
1776
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001777/*
1778 * If the task is active, request it to be stopped and sleep until it
1779 * has completed.
1780 */
1781bool target_stop_task(struct se_task *task, unsigned long *flags)
1782{
1783 struct se_cmd *cmd = task->task_se_cmd;
1784 bool was_active = false;
1785
1786 if (task->task_flags & TF_ACTIVE) {
1787 task->task_flags |= TF_REQUEST_STOP;
1788 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1789
1790 pr_debug("Task %p waiting to complete\n", task);
1791 wait_for_completion(&task->task_stop_comp);
1792 pr_debug("Task %p stopped successfully\n", task);
1793
1794 spin_lock_irqsave(&cmd->t_state_lock, *flags);
1795 atomic_dec(&cmd->t_task_cdbs_left);
1796 task->task_flags &= ~(TF_ACTIVE | TF_REQUEST_STOP);
1797 was_active = true;
1798 }
1799
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001800 return was_active;
1801}
1802
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001803static int transport_stop_tasks_for_cmd(struct se_cmd *cmd)
1804{
1805 struct se_task *task, *task_tmp;
1806 unsigned long flags;
1807 int ret = 0;
1808
Andy Grover6708bb22011-06-08 10:36:43 -07001809 pr_debug("ITT[0x%08x] - Stopping tasks\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001810 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001811
1812 /*
1813 * No tasks remain in the execution queue
1814 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001815 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001816 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07001817 &cmd->t_task_list, t_list) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04001818 pr_debug("Processing task %p\n", task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001819 /*
1820 * If the struct se_task has not been sent and is not active,
1821 * remove the struct se_task from the execution queue.
1822 */
Christoph Hellwig6c76bf92011-10-12 11:07:03 -04001823 if (!(task->task_flags & (TF_ACTIVE | TF_SENT))) {
Andy Grovera1d8b492011-05-02 17:12:10 -07001824 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001825 flags);
1826 transport_remove_task_from_execute_queue(task,
Christoph Hellwig42bf8292011-10-12 11:07:00 -04001827 cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001828
Christoph Hellwig04629b72011-10-12 11:07:04 -04001829 pr_debug("Task %p removed from execute queue\n", task);
Andy Grovera1d8b492011-05-02 17:12:10 -07001830 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001831 continue;
1832 }
1833
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001834 if (!target_stop_task(task, &flags)) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04001835 pr_debug("Task %p - did nothing\n", task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001836 ret++;
1837 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001838 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001839 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001840
1841 return ret;
1842}
1843
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001844/*
1845 * Handle SAM-esque emulation for generic transport request failures.
1846 */
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001847static void transport_generic_request_failure(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001848{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001849 int ret = 0;
1850
Andy Grover6708bb22011-06-08 10:36:43 -07001851 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001852 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001853 cmd->t_task_cdb[0]);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001854 pr_debug("-----[ i_state: %d t_state: %d scsi_sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001855 cmd->se_tfo->get_cmd_state(cmd),
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001856 cmd->t_state, cmd->scsi_sense_reason);
Andy Grover6708bb22011-06-08 10:36:43 -07001857 pr_debug("-----[ t_tasks: %d t_task_cdbs_left: %d"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001858 " t_task_cdbs_sent: %d t_task_cdbs_ex_left: %d --"
1859 " t_transport_active: %d t_transport_stop: %d"
Andy Grover6708bb22011-06-08 10:36:43 -07001860 " t_transport_sent: %d\n", cmd->t_task_list_num,
Andy Grovera1d8b492011-05-02 17:12:10 -07001861 atomic_read(&cmd->t_task_cdbs_left),
1862 atomic_read(&cmd->t_task_cdbs_sent),
1863 atomic_read(&cmd->t_task_cdbs_ex_left),
1864 atomic_read(&cmd->t_transport_active),
1865 atomic_read(&cmd->t_transport_stop),
1866 atomic_read(&cmd->t_transport_sent));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001867
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001868 /*
1869 * For SAM Task Attribute emulation for failed struct se_cmd
1870 */
1871 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1872 transport_complete_task_attr(cmd);
1873
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001874 switch (cmd->scsi_sense_reason) {
1875 case TCM_NON_EXISTENT_LUN:
1876 case TCM_UNSUPPORTED_SCSI_OPCODE:
1877 case TCM_INVALID_CDB_FIELD:
1878 case TCM_INVALID_PARAMETER_LIST:
1879 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1880 case TCM_UNKNOWN_MODE_PAGE:
1881 case TCM_WRITE_PROTECTED:
1882 case TCM_CHECK_CONDITION_ABORT_CMD:
1883 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1884 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001885 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001886 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001887 /*
1888 * No SENSE Data payload for this case, set SCSI Status
1889 * and queue the response to $FABRIC_MOD.
1890 *
1891 * Uses linux/include/scsi/scsi.h SAM status codes defs
1892 */
1893 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1894 /*
1895 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1896 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1897 * CONFLICT STATUS.
1898 *
1899 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1900 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001901 if (cmd->se_sess &&
1902 cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2)
1903 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001904 cmd->orig_fe_lun, 0x2C,
1905 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1906
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001907 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001908 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001909 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001910 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001911 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001912 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001913 cmd->t_task_cdb[0], cmd->scsi_sense_reason);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001914 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1915 break;
1916 }
Nicholas Bellinger16ab8e62011-08-08 19:03:38 -07001917 /*
1918 * If a fabric does not define a cmd->se_tfo->new_cmd_map caller,
1919 * make the call to transport_send_check_condition_and_sense()
1920 * directly. Otherwise expect the fabric to make the call to
1921 * transport_send_check_condition_and_sense() after handling
1922 * possible unsoliticied write data payloads.
1923 */
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001924 ret = transport_send_check_condition_and_sense(cmd,
1925 cmd->scsi_sense_reason, 0);
1926 if (ret == -EAGAIN || ret == -ENOMEM)
1927 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001928
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001929check_stop:
1930 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001931 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001932 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001933 return;
1934
1935queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001936 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1937 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001938}
1939
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001940static inline u32 transport_lba_21(unsigned char *cdb)
1941{
1942 return ((cdb[1] & 0x1f) << 16) | (cdb[2] << 8) | cdb[3];
1943}
1944
1945static inline u32 transport_lba_32(unsigned char *cdb)
1946{
1947 return (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
1948}
1949
1950static inline unsigned long long transport_lba_64(unsigned char *cdb)
1951{
1952 unsigned int __v1, __v2;
1953
1954 __v1 = (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
1955 __v2 = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1956
1957 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
1958}
1959
1960/*
1961 * For VARIABLE_LENGTH_CDB w/ 32 byte extended CDBs
1962 */
1963static inline unsigned long long transport_lba_64_ext(unsigned char *cdb)
1964{
1965 unsigned int __v1, __v2;
1966
1967 __v1 = (cdb[12] << 24) | (cdb[13] << 16) | (cdb[14] << 8) | cdb[15];
1968 __v2 = (cdb[16] << 24) | (cdb[17] << 16) | (cdb[18] << 8) | cdb[19];
1969
1970 return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
1971}
1972
1973static void transport_set_supported_SAM_opcode(struct se_cmd *se_cmd)
1974{
1975 unsigned long flags;
1976
Andy Grovera1d8b492011-05-02 17:12:10 -07001977 spin_lock_irqsave(&se_cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001978 se_cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Andy Grovera1d8b492011-05-02 17:12:10 -07001979 spin_unlock_irqrestore(&se_cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001980}
1981
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982/*
1983 * Called from Fabric Module context from transport_execute_tasks()
1984 *
1985 * The return of this function determins if the tasks from struct se_cmd
1986 * get added to the execution queue in transport_execute_tasks(),
1987 * or are added to the delayed or ordered lists here.
1988 */
1989static inline int transport_execute_task_attr(struct se_cmd *cmd)
1990{
Andy Grover5951146d2011-07-19 10:26:37 +00001991 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001992 return 1;
1993 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001994 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001995 * to allow the passed struct se_cmd list of tasks to the front of the list.
1996 */
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001997 if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001998 pr_debug("Added HEAD_OF_QUEUE for CDB:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001999 " 0x%02x, se_ordered_id: %u\n",
Andy Grover6708bb22011-06-08 10:36:43 -07002000 cmd->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002001 cmd->se_ordered_id);
2002 return 1;
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07002003 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Andy Grover5951146d2011-07-19 10:26:37 +00002004 atomic_inc(&cmd->se_dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002005 smp_mb__after_atomic_inc();
2006
Andy Grover6708bb22011-06-08 10:36:43 -07002007 pr_debug("Added ORDERED for CDB: 0x%02x to ordered"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002008 " list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002009 cmd->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002010 cmd->se_ordered_id);
2011 /*
2012 * Add ORDERED command to tail of execution queue if
2013 * no other older commands exist that need to be
2014 * completed first.
2015 */
Andy Grover6708bb22011-06-08 10:36:43 -07002016 if (!atomic_read(&cmd->se_dev->simple_cmds))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002017 return 1;
2018 } else {
2019 /*
2020 * For SIMPLE and UNTAGGED Task Attribute commands
2021 */
Andy Grover5951146d2011-07-19 10:26:37 +00002022 atomic_inc(&cmd->se_dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002023 smp_mb__after_atomic_inc();
2024 }
2025 /*
2026 * Otherwise if one or more outstanding ORDERED task attribute exist,
2027 * add the dormant task(s) built for the passed struct se_cmd to the
2028 * execution queue and become in Active state for this struct se_device.
2029 */
Andy Grover5951146d2011-07-19 10:26:37 +00002030 if (atomic_read(&cmd->se_dev->dev_ordered_sync) != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002031 /*
2032 * Otherwise, add cmd w/ tasks to delayed cmd queue that
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002033 * will be drained upon completion of HEAD_OF_QUEUE task.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002034 */
Andy Grover5951146d2011-07-19 10:26:37 +00002035 spin_lock(&cmd->se_dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002036 cmd->se_cmd_flags |= SCF_DELAYED_CMD_FROM_SAM_ATTR;
Andy Grover5951146d2011-07-19 10:26:37 +00002037 list_add_tail(&cmd->se_delayed_node,
2038 &cmd->se_dev->delayed_cmd_list);
2039 spin_unlock(&cmd->se_dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002040
Andy Grover6708bb22011-06-08 10:36:43 -07002041 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002042 " delayed CMD list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002043 cmd->t_task_cdb[0], cmd->sam_task_attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002044 cmd->se_ordered_id);
2045 /*
2046 * Return zero to let transport_execute_tasks() know
2047 * not to add the delayed tasks to the execution list.
2048 */
2049 return 0;
2050 }
2051 /*
2052 * Otherwise, no ORDERED task attributes exist..
2053 */
2054 return 1;
2055}
2056
2057/*
2058 * Called from fabric module context in transport_generic_new_cmd() and
2059 * transport_generic_process_write()
2060 */
2061static int transport_execute_tasks(struct se_cmd *cmd)
2062{
2063 int add_tasks;
Nicholas Bellinger40be67f2011-11-30 00:41:20 -08002064 struct se_device *se_dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002065
Christoph Hellwig58a28012011-11-14 11:36:27 -05002066 if (se_dev_check_online(cmd->se_dev) != 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002067 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2068 transport_generic_request_failure(cmd);
Christoph Hellwigdb1620a2011-05-31 17:06:43 -04002069 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002070 }
Christoph Hellwigdb1620a2011-05-31 17:06:43 -04002071
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002072 /*
2073 * Call transport_cmd_check_stop() to see if a fabric exception
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002074 * has occurred that prevents execution.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002075 */
Andy Grover6708bb22011-06-08 10:36:43 -07002076 if (!transport_cmd_check_stop(cmd, 0, TRANSPORT_PROCESSING)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002077 /*
2078 * Check for SAM Task Attribute emulation and HEAD_OF_QUEUE
2079 * attribute for the tasks of the received struct se_cmd CDB
2080 */
2081 add_tasks = transport_execute_task_attr(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002082 if (!add_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002083 goto execute_tasks;
2084 /*
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002085 * __transport_execute_tasks() -> __transport_add_tasks_from_cmd()
2086 * adds associated se_tasks while holding dev->execute_task_lock
2087 * before I/O dispath to avoid a double spinlock access.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002088 */
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002089 __transport_execute_tasks(se_dev, cmd);
2090 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002091 }
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002092
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002093execute_tasks:
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002094 __transport_execute_tasks(se_dev, NULL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002095 return 0;
2096}
2097
2098/*
2099 * Called to check struct se_device tcq depth window, and once open pull struct se_task
2100 * from struct se_device->execute_task_list and
2101 *
2102 * Called from transport_processing_thread()
2103 */
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002104static int __transport_execute_tasks(struct se_device *dev, struct se_cmd *new_cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002105{
2106 int error;
2107 struct se_cmd *cmd = NULL;
Andy Grovere3d6f902011-07-19 08:55:10 +00002108 struct se_task *task = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002109 unsigned long flags;
2110
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002111check_depth:
Andy Grovere3d6f902011-07-19 08:55:10 +00002112 spin_lock_irq(&dev->execute_task_lock);
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002113 if (new_cmd != NULL)
2114 __transport_add_tasks_from_cmd(new_cmd);
2115
Andy Grovere3d6f902011-07-19 08:55:10 +00002116 if (list_empty(&dev->execute_task_list)) {
2117 spin_unlock_irq(&dev->execute_task_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002118 return 0;
2119 }
Andy Grovere3d6f902011-07-19 08:55:10 +00002120 task = list_first_entry(&dev->execute_task_list,
2121 struct se_task, t_execute_list);
Christoph Hellwig04629b72011-10-12 11:07:04 -04002122 __transport_remove_task_from_execute_queue(task, dev);
Andy Grovere3d6f902011-07-19 08:55:10 +00002123 spin_unlock_irq(&dev->execute_task_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002124
Andy Grovere3d6f902011-07-19 08:55:10 +00002125 cmd = task->task_se_cmd;
Andy Grovera1d8b492011-05-02 17:12:10 -07002126 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig6c76bf92011-10-12 11:07:03 -04002127 task->task_flags |= (TF_ACTIVE | TF_SENT);
Andy Grovera1d8b492011-05-02 17:12:10 -07002128 atomic_inc(&cmd->t_task_cdbs_sent);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002129
Andy Grovera1d8b492011-05-02 17:12:10 -07002130 if (atomic_read(&cmd->t_task_cdbs_sent) ==
2131 cmd->t_task_list_num)
Nicholas Bellinger415a0902011-10-23 18:16:13 -07002132 atomic_set(&cmd->t_transport_sent, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002133
Andy Grovera1d8b492011-05-02 17:12:10 -07002134 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002135
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002136 if (cmd->execute_task)
2137 error = cmd->execute_task(task);
2138 else
2139 error = dev->transport->do_task(task);
Christoph Hellwigd29a5b62011-11-03 17:50:44 -04002140 if (error != 0) {
Christoph Hellwigd29a5b62011-11-03 17:50:44 -04002141 spin_lock_irqsave(&cmd->t_state_lock, flags);
2142 task->task_flags &= ~TF_ACTIVE;
2143 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2144 atomic_set(&cmd->t_transport_sent, 0);
2145 transport_stop_tasks_for_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002146 transport_generic_request_failure(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002147 }
2148
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08002149 new_cmd = NULL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002150 goto check_depth;
2151
2152 return 0;
2153}
2154
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002155static inline u32 transport_get_sectors_6(
2156 unsigned char *cdb,
2157 struct se_cmd *cmd,
2158 int *ret)
2159{
Andy Grover5951146d2011-07-19 10:26:37 +00002160 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002161
2162 /*
2163 * Assume TYPE_DISK for non struct se_device objects.
2164 * Use 8-bit sector value.
2165 */
2166 if (!dev)
2167 goto type_disk;
2168
2169 /*
2170 * Use 24-bit allocation length for TYPE_TAPE.
2171 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002172 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002173 return (u32)(cdb[2] << 16) + (cdb[3] << 8) + cdb[4];
2174
2175 /*
2176 * Everything else assume TYPE_DISK Sector CDB location.
Roland Dreier9b5cd7f2011-11-22 13:51:33 -08002177 * Use 8-bit sector value. SBC-3 says:
2178 *
2179 * A TRANSFER LENGTH field set to zero specifies that 256
2180 * logical blocks shall be written. Any other value
2181 * specifies the number of logical blocks that shall be
2182 * written.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002183 */
2184type_disk:
Roland Dreier9b5cd7f2011-11-22 13:51:33 -08002185 return cdb[4] ? : 256;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002186}
2187
2188static inline u32 transport_get_sectors_10(
2189 unsigned char *cdb,
2190 struct se_cmd *cmd,
2191 int *ret)
2192{
Andy Grover5951146d2011-07-19 10:26:37 +00002193 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002194
2195 /*
2196 * Assume TYPE_DISK for non struct se_device objects.
2197 * Use 16-bit sector value.
2198 */
2199 if (!dev)
2200 goto type_disk;
2201
2202 /*
2203 * XXX_10 is not defined in SSC, throw an exception
2204 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002205 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
2206 *ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002207 return 0;
2208 }
2209
2210 /*
2211 * Everything else assume TYPE_DISK Sector CDB location.
2212 * Use 16-bit sector value.
2213 */
2214type_disk:
2215 return (u32)(cdb[7] << 8) + cdb[8];
2216}
2217
2218static inline u32 transport_get_sectors_12(
2219 unsigned char *cdb,
2220 struct se_cmd *cmd,
2221 int *ret)
2222{
Andy Grover5951146d2011-07-19 10:26:37 +00002223 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002224
2225 /*
2226 * Assume TYPE_DISK for non struct se_device objects.
2227 * Use 32-bit sector value.
2228 */
2229 if (!dev)
2230 goto type_disk;
2231
2232 /*
2233 * XXX_12 is not defined in SSC, throw an exception
2234 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002235 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
2236 *ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002237 return 0;
2238 }
2239
2240 /*
2241 * Everything else assume TYPE_DISK Sector CDB location.
2242 * Use 32-bit sector value.
2243 */
2244type_disk:
2245 return (u32)(cdb[6] << 24) + (cdb[7] << 16) + (cdb[8] << 8) + cdb[9];
2246}
2247
2248static inline u32 transport_get_sectors_16(
2249 unsigned char *cdb,
2250 struct se_cmd *cmd,
2251 int *ret)
2252{
Andy Grover5951146d2011-07-19 10:26:37 +00002253 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002254
2255 /*
2256 * Assume TYPE_DISK for non struct se_device objects.
2257 * Use 32-bit sector value.
2258 */
2259 if (!dev)
2260 goto type_disk;
2261
2262 /*
2263 * Use 24-bit allocation length for TYPE_TAPE.
2264 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002265 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002266 return (u32)(cdb[12] << 16) + (cdb[13] << 8) + cdb[14];
2267
2268type_disk:
2269 return (u32)(cdb[10] << 24) + (cdb[11] << 16) +
2270 (cdb[12] << 8) + cdb[13];
2271}
2272
2273/*
2274 * Used for VARIABLE_LENGTH_CDB WRITE_32 and READ_32 variants
2275 */
2276static inline u32 transport_get_sectors_32(
2277 unsigned char *cdb,
2278 struct se_cmd *cmd,
2279 int *ret)
2280{
2281 /*
2282 * Assume TYPE_DISK for non struct se_device objects.
2283 * Use 32-bit sector value.
2284 */
2285 return (u32)(cdb[28] << 24) + (cdb[29] << 16) +
2286 (cdb[30] << 8) + cdb[31];
2287
2288}
2289
2290static inline u32 transport_get_size(
2291 u32 sectors,
2292 unsigned char *cdb,
2293 struct se_cmd *cmd)
2294{
Andy Grover5951146d2011-07-19 10:26:37 +00002295 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002296
Andy Grovere3d6f902011-07-19 08:55:10 +00002297 if (dev->transport->get_device_type(dev) == TYPE_TAPE) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002298 if (cdb[1] & 1) { /* sectors */
Andy Grovere3d6f902011-07-19 08:55:10 +00002299 return dev->se_sub_dev->se_dev_attrib.block_size * sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002300 } else /* bytes */
2301 return sectors;
2302 }
2303#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07002304 pr_debug("Returning block_size: %u, sectors: %u == %u for"
Andy Grovere3d6f902011-07-19 08:55:10 +00002305 " %s object\n", dev->se_sub_dev->se_dev_attrib.block_size, sectors,
2306 dev->se_sub_dev->se_dev_attrib.block_size * sectors,
2307 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002308#endif
Andy Grovere3d6f902011-07-19 08:55:10 +00002309 return dev->se_sub_dev->se_dev_attrib.block_size * sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002310}
2311
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002312static void transport_xor_callback(struct se_cmd *cmd)
2313{
2314 unsigned char *buf, *addr;
Andy Groverec98f782011-07-20 19:28:46 +00002315 struct scatterlist *sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002316 unsigned int offset;
2317 int i;
Andy Groverec98f782011-07-20 19:28:46 +00002318 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002319 /*
2320 * From sbc3r22.pdf section 5.48 XDWRITEREAD (10) command
2321 *
2322 * 1) read the specified logical block(s);
2323 * 2) transfer logical blocks from the data-out buffer;
2324 * 3) XOR the logical blocks transferred from the data-out buffer with
2325 * the logical blocks read, storing the resulting XOR data in a buffer;
2326 * 4) if the DISABLE WRITE bit is set to zero, then write the logical
2327 * blocks transferred from the data-out buffer; and
2328 * 5) transfer the resulting XOR data to the data-in buffer.
2329 */
2330 buf = kmalloc(cmd->data_length, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07002331 if (!buf) {
2332 pr_err("Unable to allocate xor_callback buf\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002333 return;
2334 }
2335 /*
Andy Groverec98f782011-07-20 19:28:46 +00002336 * Copy the scatterlist WRITE buffer located at cmd->t_data_sg
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002337 * into the locally allocated *buf
2338 */
Andy Groverec98f782011-07-20 19:28:46 +00002339 sg_copy_to_buffer(cmd->t_data_sg,
2340 cmd->t_data_nents,
2341 buf,
2342 cmd->data_length);
2343
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002344 /*
2345 * Now perform the XOR against the BIDI read memory located at
Andy Grovera1d8b492011-05-02 17:12:10 -07002346 * cmd->t_mem_bidi_list
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002347 */
2348
2349 offset = 0;
Andy Groverec98f782011-07-20 19:28:46 +00002350 for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, count) {
2351 addr = kmap_atomic(sg_page(sg), KM_USER0);
2352 if (!addr)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002353 goto out;
2354
Andy Groverec98f782011-07-20 19:28:46 +00002355 for (i = 0; i < sg->length; i++)
2356 *(addr + sg->offset + i) ^= *(buf + offset + i);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002357
Andy Groverec98f782011-07-20 19:28:46 +00002358 offset += sg->length;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002359 kunmap_atomic(addr, KM_USER0);
2360 }
Andy Groverec98f782011-07-20 19:28:46 +00002361
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002362out:
2363 kfree(buf);
2364}
2365
2366/*
2367 * Used to obtain Sense Data from underlying Linux/SCSI struct scsi_cmnd
2368 */
2369static int transport_get_sense_data(struct se_cmd *cmd)
2370{
2371 unsigned char *buffer = cmd->sense_buffer, *sense_buffer = NULL;
Christoph Hellwig42bf8292011-10-12 11:07:00 -04002372 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002373 struct se_task *task = NULL, *task_tmp;
2374 unsigned long flags;
2375 u32 offset = 0;
2376
Andy Grovere3d6f902011-07-19 08:55:10 +00002377 WARN_ON(!cmd->se_lun);
2378
Christoph Hellwig42bf8292011-10-12 11:07:00 -04002379 if (!dev)
2380 return 0;
2381
Andy Grovera1d8b492011-05-02 17:12:10 -07002382 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002383 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002384 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002385 return 0;
2386 }
2387
2388 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07002389 &cmd->t_task_list, t_list) {
Christoph Hellwigef804a82011-11-23 06:53:58 -05002390 if (!(task->task_flags & TF_HAS_SENSE))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002391 continue;
2392
Andy Grovere3d6f902011-07-19 08:55:10 +00002393 if (!dev->transport->get_sense_buffer) {
Andy Grover6708bb22011-06-08 10:36:43 -07002394 pr_err("dev->transport->get_sense_buffer"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002395 " is NULL\n");
2396 continue;
2397 }
2398
Andy Grovere3d6f902011-07-19 08:55:10 +00002399 sense_buffer = dev->transport->get_sense_buffer(task);
Andy Grover6708bb22011-06-08 10:36:43 -07002400 if (!sense_buffer) {
Christoph Hellwig04629b72011-10-12 11:07:04 -04002401 pr_err("ITT[0x%08x]_TASK[%p]: Unable to locate"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402 " sense buffer for task with sense\n",
Christoph Hellwig04629b72011-10-12 11:07:04 -04002403 cmd->se_tfo->get_task_tag(cmd), task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002404 continue;
2405 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002406 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002407
Andy Grovere3d6f902011-07-19 08:55:10 +00002408 offset = cmd->se_tfo->set_fabric_sense_len(cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002409 TRANSPORT_SENSE_BUFFER);
2410
Andy Grover5951146d2011-07-19 10:26:37 +00002411 memcpy(&buffer[offset], sense_buffer,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002412 TRANSPORT_SENSE_BUFFER);
2413 cmd->scsi_status = task->task_scsi_status;
2414 /* Automatically padded */
2415 cmd->scsi_sense_length =
2416 (TRANSPORT_SENSE_BUFFER + offset);
2417
Andy Grover6708bb22011-06-08 10:36:43 -07002418 pr_debug("HBA_[%u]_PLUG[%s]: Set SAM STATUS: 0x%02x"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002419 " and sense\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002420 dev->se_hba->hba_id, dev->transport->name,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002421 cmd->scsi_status);
2422 return 0;
2423 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002424 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002425
2426 return -1;
2427}
2428
Andy Groverec98f782011-07-20 19:28:46 +00002429static inline long long transport_dev_end_lba(struct se_device *dev)
2430{
2431 return dev->transport->get_blocks(dev) + 1;
2432}
2433
2434static int transport_cmd_get_valid_sectors(struct se_cmd *cmd)
2435{
2436 struct se_device *dev = cmd->se_dev;
2437 u32 sectors;
2438
2439 if (dev->transport->get_device_type(dev) != TYPE_DISK)
2440 return 0;
2441
2442 sectors = (cmd->data_length / dev->se_sub_dev->se_dev_attrib.block_size);
2443
Andy Grover6708bb22011-06-08 10:36:43 -07002444 if ((cmd->t_task_lba + sectors) > transport_dev_end_lba(dev)) {
2445 pr_err("LBA: %llu Sectors: %u exceeds"
Andy Groverec98f782011-07-20 19:28:46 +00002446 " transport_dev_end_lba(): %llu\n",
2447 cmd->t_task_lba, sectors,
2448 transport_dev_end_lba(dev));
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002449 return -EINVAL;
Andy Groverec98f782011-07-20 19:28:46 +00002450 }
2451
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002452 return 0;
Andy Groverec98f782011-07-20 19:28:46 +00002453}
2454
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002455static int target_check_write_same_discard(unsigned char *flags, struct se_device *dev)
2456{
2457 /*
2458 * Determine if the received WRITE_SAME is used to for direct
2459 * passthrough into Linux/SCSI with struct request via TCM/pSCSI
2460 * or we are signaling the use of internal WRITE_SAME + UNMAP=1
2461 * emulation for -> Linux/BLOCK disbard with TCM/IBLOCK code.
2462 */
2463 int passthrough = (dev->transport->transport_type ==
2464 TRANSPORT_PLUGIN_PHBA_PDEV);
2465
2466 if (!passthrough) {
2467 if ((flags[0] & 0x04) || (flags[0] & 0x02)) {
2468 pr_err("WRITE_SAME PBDATA and LBDATA"
2469 " bits not supported for Block Discard"
2470 " Emulation\n");
2471 return -ENOSYS;
2472 }
2473 /*
2474 * Currently for the emulated case we only accept
2475 * tpws with the UNMAP=1 bit set.
2476 */
2477 if (!(flags[0] & 0x08)) {
2478 pr_err("WRITE_SAME w/o UNMAP bit not"
2479 " supported for Block Discard Emulation\n");
2480 return -ENOSYS;
2481 }
2482 }
2483
2484 return 0;
2485}
2486
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002487/* transport_generic_cmd_sequencer():
2488 *
2489 * Generic Command Sequencer that should work for most DAS transport
2490 * drivers.
2491 *
2492 * Called from transport_generic_allocate_tasks() in the $FABRIC_MOD
2493 * RX Thread.
2494 *
2495 * FIXME: Need to support other SCSI OPCODES where as well.
2496 */
2497static int transport_generic_cmd_sequencer(
2498 struct se_cmd *cmd,
2499 unsigned char *cdb)
2500{
Andy Grover5951146d2011-07-19 10:26:37 +00002501 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002502 struct se_subsystem_dev *su_dev = dev->se_sub_dev;
2503 int ret = 0, sector_ret = 0, passthrough;
2504 u32 sectors = 0, size = 0, pr_reg_type = 0;
2505 u16 service_action;
2506 u8 alua_ascq = 0;
2507 /*
2508 * Check for an existing UNIT ATTENTION condition
2509 */
2510 if (core_scsi3_ua_check(cmd, cdb) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002511 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2512 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_UNIT_ATTENTION;
Andy Grover5951146d2011-07-19 10:26:37 +00002513 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002514 }
2515 /*
2516 * Check status of Asymmetric Logical Unit Assignment port
2517 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002518 ret = su_dev->t10_alua.alua_state_check(cmd, cdb, &alua_ascq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002519 if (ret != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002520 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002521 * Set SCSI additional sense code (ASC) to 'LUN Not Accessible';
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002522 * The ALUA additional sense code qualifier (ASCQ) is determined
2523 * by the ALUA primary or secondary access state..
2524 */
2525 if (ret > 0) {
2526#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07002527 pr_debug("[%s]: ALUA TG Port not available,"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002528 " SenseKey: NOT_READY, ASC/ASCQ: 0x04/0x%02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002529 cmd->se_tfo->get_fabric_name(), alua_ascq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530#endif
2531 transport_set_sense_codes(cmd, 0x04, alua_ascq);
2532 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2533 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_NOT_READY;
Andy Grover5951146d2011-07-19 10:26:37 +00002534 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535 }
2536 goto out_invalid_cdb_field;
2537 }
2538 /*
2539 * Check status for SPC-3 Persistent Reservations
2540 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002541 if (su_dev->t10_pr.pr_ops.t10_reservation_check(cmd, &pr_reg_type) != 0) {
2542 if (su_dev->t10_pr.pr_ops.t10_seq_non_holder(
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002543 cmd, cdb, pr_reg_type) != 0) {
2544 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2545 cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT;
2546 cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT;
2547 return -EBUSY;
2548 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002549 /*
2550 * This means the CDB is allowed for the SCSI Initiator port
2551 * when said port is *NOT* holding the legacy SPC-2 or
2552 * SPC-3 Persistent Reservation.
2553 */
2554 }
2555
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002556 /*
2557 * If we operate in passthrough mode we skip most CDB emulation and
2558 * instead hand the commands down to the physical SCSI device.
2559 */
2560 passthrough =
2561 (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV);
2562
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002563 switch (cdb[0]) {
2564 case READ_6:
2565 sectors = transport_get_sectors_6(cdb, cmd, &sector_ret);
2566 if (sector_ret)
2567 goto out_unsupported_cdb;
2568 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002569 cmd->t_task_lba = transport_lba_21(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002570 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2571 break;
2572 case READ_10:
2573 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2574 if (sector_ret)
2575 goto out_unsupported_cdb;
2576 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002577 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002578 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2579 break;
2580 case READ_12:
2581 sectors = transport_get_sectors_12(cdb, cmd, &sector_ret);
2582 if (sector_ret)
2583 goto out_unsupported_cdb;
2584 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002585 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2587 break;
2588 case READ_16:
2589 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2590 if (sector_ret)
2591 goto out_unsupported_cdb;
2592 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002593 cmd->t_task_lba = transport_lba_64(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002594 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2595 break;
2596 case WRITE_6:
2597 sectors = transport_get_sectors_6(cdb, cmd, &sector_ret);
2598 if (sector_ret)
2599 goto out_unsupported_cdb;
2600 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002601 cmd->t_task_lba = transport_lba_21(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002602 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2603 break;
2604 case WRITE_10:
2605 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2606 if (sector_ret)
2607 goto out_unsupported_cdb;
2608 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002609 cmd->t_task_lba = transport_lba_32(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002610 if (cdb[1] & 0x8)
2611 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002612 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2613 break;
2614 case WRITE_12:
2615 sectors = transport_get_sectors_12(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_32(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002620 if (cdb[1] & 0x8)
2621 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002622 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2623 break;
2624 case WRITE_16:
2625 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2626 if (sector_ret)
2627 goto out_unsupported_cdb;
2628 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002629 cmd->t_task_lba = transport_lba_64(cdb);
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002630 if (cdb[1] & 0x8)
2631 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2633 break;
2634 case XDWRITEREAD_10:
2635 if ((cmd->data_direction != DMA_TO_DEVICE) ||
Christoph Hellwig33c3faf2011-11-14 11:36:30 -05002636 !(cmd->se_cmd_flags & SCF_BIDI))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002637 goto out_invalid_cdb_field;
2638 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2639 if (sector_ret)
2640 goto out_unsupported_cdb;
2641 size = transport_get_size(sectors, cdb, cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002642 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002643 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002644
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002645 /*
2646 * Do now allow BIDI commands for passthrough mode.
2647 */
2648 if (passthrough)
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002649 goto out_unsupported_cdb;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002650
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651 /*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002652 * Setup BIDI XOR callback to be run after I/O completion.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002653 */
2654 cmd->transport_complete_callback = &transport_xor_callback;
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002655 if (cdb[1] & 0x8)
2656 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002657 break;
2658 case VARIABLE_LENGTH_CMD:
2659 service_action = get_unaligned_be16(&cdb[8]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002660 switch (service_action) {
2661 case XDWRITEREAD_32:
2662 sectors = transport_get_sectors_32(cdb, cmd, &sector_ret);
2663 if (sector_ret)
2664 goto out_unsupported_cdb;
2665 size = transport_get_size(sectors, cdb, cmd);
2666 /*
2667 * Use WRITE_32 and READ_32 opcodes for the emulated
2668 * XDWRITE_READ_32 logic.
2669 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002670 cmd->t_task_lba = transport_lba_64_ext(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002671 cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB;
2672
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002673 /*
2674 * Do now allow BIDI commands for passthrough mode.
2675 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002676 if (passthrough)
Christoph Hellwig7c1c6af2011-10-18 06:57:00 -04002677 goto out_unsupported_cdb;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002678
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 /*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002680 * Setup BIDI XOR callback to be run during after I/O
2681 * completion.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 */
2683 cmd->transport_complete_callback = &transport_xor_callback;
Christoph Hellwig2d3a4b52011-11-14 11:36:29 -05002684 if (cdb[1] & 0x8)
2685 cmd->se_cmd_flags |= SCF_FUA;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 break;
2687 case WRITE_SAME_32:
2688 sectors = transport_get_sectors_32(cdb, cmd, &sector_ret);
2689 if (sector_ret)
2690 goto out_unsupported_cdb;
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002691
Andy Grover6708bb22011-06-08 10:36:43 -07002692 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07002693 size = transport_get_size(1, cdb, cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002694 else {
2695 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not"
2696 " supported\n");
2697 goto out_invalid_cdb_field;
2698 }
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002699
Andy Grovera1d8b492011-05-02 17:12:10 -07002700 cmd->t_task_lba = get_unaligned_be64(&cdb[12]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002701 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2702
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002703 if (target_check_write_same_discard(&cdb[10], dev) < 0)
2704 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002705 if (!passthrough)
2706 cmd->execute_task = target_emulate_write_same;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 break;
2708 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002709 pr_err("VARIABLE_LENGTH_CMD service action"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002710 " 0x%04x not supported\n", service_action);
2711 goto out_unsupported_cdb;
2712 }
2713 break;
Nicholas Bellingere434f1f12011-02-21 07:49:26 +00002714 case MAINTENANCE_IN:
Andy Grovere3d6f902011-07-19 08:55:10 +00002715 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 /* MAINTENANCE_IN from SCC-2 */
2717 /*
2718 * Check for emulated MI_REPORT_TARGET_PGS.
2719 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002720 if (cdb[1] == MI_REPORT_TARGET_PGS &&
2721 su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
2722 cmd->execute_task =
2723 target_emulate_report_target_port_groups;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002724 }
2725 size = (cdb[6] << 24) | (cdb[7] << 16) |
2726 (cdb[8] << 8) | cdb[9];
2727 } else {
2728 /* GPCMD_SEND_KEY from multi media commands */
2729 size = (cdb[8] << 8) + cdb[9];
2730 }
Andy Grover05d1c7c2011-07-20 19:13:28 +00002731 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002732 break;
2733 case MODE_SELECT:
2734 size = cdb[4];
2735 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2736 break;
2737 case MODE_SELECT_10:
2738 size = (cdb[7] << 8) + cdb[8];
2739 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2740 break;
2741 case MODE_SENSE:
2742 size = cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002743 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002744 if (!passthrough)
2745 cmd->execute_task = target_emulate_modesense;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002746 break;
2747 case MODE_SENSE_10:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002748 size = (cdb[7] << 8) + cdb[8];
2749 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2750 if (!passthrough)
2751 cmd->execute_task = target_emulate_modesense;
2752 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002753 case GPCMD_READ_BUFFER_CAPACITY:
2754 case GPCMD_SEND_OPC:
2755 case LOG_SELECT:
2756 case LOG_SENSE:
2757 size = (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002758 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759 break;
2760 case READ_BLOCK_LIMITS:
2761 size = READ_BLOCK_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002762 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002763 break;
2764 case GPCMD_GET_CONFIGURATION:
2765 case GPCMD_READ_FORMAT_CAPACITIES:
2766 case GPCMD_READ_DISC_INFO:
2767 case GPCMD_READ_TRACK_RZONE_INFO:
2768 size = (cdb[7] << 8) + cdb[8];
2769 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2770 break;
2771 case PERSISTENT_RESERVE_IN:
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002772 if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002773 cmd->execute_task = target_scsi3_emulate_pr_in;
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002774 size = (cdb[7] << 8) + cdb[8];
2775 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2776 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002777 case PERSISTENT_RESERVE_OUT:
Christoph Hellwig617c0e02011-11-03 17:50:41 -04002778 if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002779 cmd->execute_task = target_scsi3_emulate_pr_out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780 size = (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002781 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002782 break;
2783 case GPCMD_MECHANISM_STATUS:
2784 case GPCMD_READ_DVD_STRUCTURE:
2785 size = (cdb[8] << 8) + cdb[9];
2786 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
2787 break;
2788 case READ_POSITION:
2789 size = READ_POSITION_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002790 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002791 break;
Nicholas Bellingere434f1f12011-02-21 07:49:26 +00002792 case MAINTENANCE_OUT:
Andy Grovere3d6f902011-07-19 08:55:10 +00002793 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002794 /* MAINTENANCE_OUT from SCC-2
2795 *
2796 * Check for emulated MO_SET_TARGET_PGS.
2797 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002798 if (cdb[1] == MO_SET_TARGET_PGS &&
2799 su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
2800 cmd->execute_task =
2801 target_emulate_set_target_port_groups;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002802 }
2803
2804 size = (cdb[6] << 24) | (cdb[7] << 16) |
2805 (cdb[8] << 8) | cdb[9];
2806 } else {
2807 /* GPCMD_REPORT_KEY from multi media commands */
2808 size = (cdb[8] << 8) + cdb[9];
2809 }
Andy Grover05d1c7c2011-07-20 19:13:28 +00002810 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002811 break;
2812 case INQUIRY:
2813 size = (cdb[3] << 8) + cdb[4];
2814 /*
2815 * Do implict HEAD_OF_QUEUE processing for INQUIRY.
2816 * See spc4r17 section 5.3
2817 */
Andy Grover5951146d2011-07-19 10:26:37 +00002818 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07002819 cmd->sam_task_attr = MSG_HEAD_TAG;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002820 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002821 if (!passthrough)
2822 cmd->execute_task = target_emulate_inquiry;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002823 break;
2824 case READ_BUFFER:
2825 size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002826 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002827 break;
2828 case READ_CAPACITY:
2829 size = READ_CAP_LEN;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002830 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002831 if (!passthrough)
2832 cmd->execute_task = target_emulate_readcapacity;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002833 break;
2834 case READ_MEDIA_SERIAL_NUMBER:
2835 case SECURITY_PROTOCOL_IN:
2836 case SECURITY_PROTOCOL_OUT:
2837 size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002838 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002839 break;
2840 case SERVICE_ACTION_IN:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002841 switch (cmd->t_task_cdb[1] & 0x1f) {
2842 case SAI_READ_CAPACITY_16:
2843 if (!passthrough)
2844 cmd->execute_task =
2845 target_emulate_readcapacity_16;
2846 break;
2847 default:
2848 if (passthrough)
2849 break;
2850
2851 pr_err("Unsupported SA: 0x%02x\n",
2852 cmd->t_task_cdb[1] & 0x1f);
2853 goto out_unsupported_cdb;
2854 }
2855 /*FALLTHROUGH*/
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856 case ACCESS_CONTROL_IN:
2857 case ACCESS_CONTROL_OUT:
2858 case EXTENDED_COPY:
2859 case READ_ATTRIBUTE:
2860 case RECEIVE_COPY_RESULTS:
2861 case WRITE_ATTRIBUTE:
2862 size = (cdb[10] << 24) | (cdb[11] << 16) |
2863 (cdb[12] << 8) | cdb[13];
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 RECEIVE_DIAGNOSTIC:
2867 case SEND_DIAGNOSTIC:
2868 size = (cdb[3] << 8) | cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002869 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002870 break;
2871/* #warning FIXME: Figure out correct GPCMD_READ_CD blocksize. */
2872#if 0
2873 case GPCMD_READ_CD:
2874 sectors = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
2875 size = (2336 * sectors);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002876 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002877 break;
2878#endif
2879 case READ_TOC:
2880 size = cdb[8];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002881 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002882 break;
2883 case REQUEST_SENSE:
2884 size = cdb[4];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002885 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002886 if (!passthrough)
2887 cmd->execute_task = target_emulate_request_sense;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002888 break;
2889 case READ_ELEMENT_STATUS:
2890 size = 65536 * cdb[7] + 256 * cdb[8] + cdb[9];
Andy Grover05d1c7c2011-07-20 19:13:28 +00002891 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002892 break;
2893 case WRITE_BUFFER:
2894 size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
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 case RESERVE:
2898 case RESERVE_10:
2899 /*
2900 * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
2901 * Assume the passthrough or $FABRIC_MOD will tell us about it.
2902 */
2903 if (cdb[0] == RESERVE_10)
2904 size = (cdb[7] << 8) | cdb[8];
2905 else
2906 size = cmd->data_length;
2907
2908 /*
2909 * Setup the legacy emulated handler for SPC-2 and
2910 * >= SPC-3 compatible reservation handling (CRH=1)
2911 * Otherwise, we assume the underlying SCSI logic is
2912 * is running in SPC_PASSTHROUGH, and wants reservations
2913 * emulation disabled.
2914 */
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002915 if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
2916 cmd->execute_task = target_scsi2_reservation_reserve;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002917 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2918 break;
2919 case RELEASE:
2920 case RELEASE_10:
2921 /*
2922 * The SPC-2 RELEASE does not contain a size in the SCSI CDB.
2923 * Assume the passthrough or $FABRIC_MOD will tell us about it.
2924 */
2925 if (cdb[0] == RELEASE_10)
2926 size = (cdb[7] << 8) | cdb[8];
2927 else
2928 size = cmd->data_length;
2929
Christoph Hellwige76a35d2011-11-03 17:50:42 -04002930 if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
2931 cmd->execute_task = target_scsi2_reservation_release;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002932 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2933 break;
2934 case SYNCHRONIZE_CACHE:
2935 case 0x91: /* SYNCHRONIZE_CACHE_16: */
2936 /*
2937 * Extract LBA and range to be flushed for emulated SYNCHRONIZE_CACHE
2938 */
2939 if (cdb[0] == SYNCHRONIZE_CACHE) {
2940 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
Andy Grovera1d8b492011-05-02 17:12:10 -07002941 cmd->t_task_lba = transport_lba_32(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002942 } else {
2943 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
Andy Grovera1d8b492011-05-02 17:12:10 -07002944 cmd->t_task_lba = transport_lba_64(cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002945 }
2946 if (sector_ret)
2947 goto out_unsupported_cdb;
2948
2949 size = transport_get_size(sectors, cdb, cmd);
2950 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
2951
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002952 if (passthrough)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002953 break;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002954
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002955 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002956 * Check to ensure that LBA + Range does not exceed past end of
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002957 * device for IBLOCK and FILEIO ->do_sync_cache() backend calls
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002958 */
Nicholas Bellinger7abbe7f32011-08-10 18:41:14 -07002959 if ((cmd->t_task_lba != 0) || (sectors != 0)) {
2960 if (transport_cmd_get_valid_sectors(cmd) < 0)
2961 goto out_invalid_cdb_field;
2962 }
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002963 cmd->execute_task = target_emulate_synchronize_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002964 break;
2965 case UNMAP:
2966 size = get_unaligned_be16(&cdb[7]);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002967 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002968 if (!passthrough)
2969 cmd->execute_task = target_emulate_unmap;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002970 break;
2971 case WRITE_SAME_16:
2972 sectors = transport_get_sectors_16(cdb, cmd, &sector_ret);
2973 if (sector_ret)
2974 goto out_unsupported_cdb;
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002975
Andy Grover6708bb22011-06-08 10:36:43 -07002976 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07002977 size = transport_get_size(1, cdb, cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002978 else {
2979 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
2980 goto out_invalid_cdb_field;
2981 }
Nicholas Bellingerdd3a5ad2011-05-06 17:55:35 -07002982
Nicholas Bellinger5db07532011-07-27 22:18:52 -07002983 cmd->t_task_lba = get_unaligned_be64(&cdb[2]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002984 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002985
2986 if (target_check_write_same_discard(&cdb[1], dev) < 0)
2987 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04002988 if (!passthrough)
2989 cmd->execute_task = target_emulate_write_same;
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002990 break;
2991 case WRITE_SAME:
2992 sectors = transport_get_sectors_10(cdb, cmd, &sector_ret);
2993 if (sector_ret)
2994 goto out_unsupported_cdb;
2995
2996 if (sectors)
Nicholas Bellinger12850622011-08-08 19:08:23 -07002997 size = transport_get_size(1, cdb, cmd);
Nicholas Bellinger706d5862011-07-28 00:07:03 -07002998 else {
2999 pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
3000 goto out_invalid_cdb_field;
3001 }
3002
3003 cmd->t_task_lba = get_unaligned_be32(&cdb[2]);
3004 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
3005 /*
3006 * Follow sbcr26 with WRITE_SAME (10) and check for the existence
3007 * of byte 1 bit 3 UNMAP instead of original reserved field
3008 */
3009 if (target_check_write_same_discard(&cdb[1], dev) < 0)
3010 goto out_invalid_cdb_field;
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003011 if (!passthrough)
3012 cmd->execute_task = target_emulate_write_same;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003013 break;
3014 case ALLOW_MEDIUM_REMOVAL:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003015 case ERASE:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003016 case REZERO_UNIT:
3017 case SEEK_10:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003018 case SPACE:
3019 case START_STOP:
3020 case TEST_UNIT_READY:
3021 case VERIFY:
3022 case WRITE_FILEMARKS:
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003023 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
3024 if (!passthrough)
3025 cmd->execute_task = target_emulate_noop;
3026 break;
3027 case GPCMD_CLOSE_TRACK:
3028 case INITIALIZE_ELEMENT_STATUS:
3029 case GPCMD_LOAD_UNLOAD:
3030 case GPCMD_SET_SPEED:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003031 case MOVE_MEDIUM:
3032 cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB;
3033 break;
3034 case REPORT_LUNS:
Christoph Hellwige76a35d2011-11-03 17:50:42 -04003035 cmd->execute_task = target_report_luns;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003036 size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
3037 /*
3038 * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
3039 * See spc4r17 section 5.3
3040 */
Andy Grover5951146d2011-07-19 10:26:37 +00003041 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003042 cmd->sam_task_attr = MSG_HEAD_TAG;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003043 cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003044 break;
3045 default:
Andy Grover6708bb22011-06-08 10:36:43 -07003046 pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003047 " 0x%02x, sending CHECK_CONDITION.\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00003048 cmd->se_tfo->get_fabric_name(), cdb[0]);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003049 goto out_unsupported_cdb;
3050 }
3051
3052 if (size != cmd->data_length) {
Andy Grover6708bb22011-06-08 10:36:43 -07003053 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003054 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
Andy Grovere3d6f902011-07-19 08:55:10 +00003055 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003056 cmd->data_length, size, cdb[0]);
3057
3058 cmd->cmd_spdtl = size;
3059
3060 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grover6708bb22011-06-08 10:36:43 -07003061 pr_err("Rejecting underflow/overflow"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003062 " WRITE data\n");
3063 goto out_invalid_cdb_field;
3064 }
3065 /*
3066 * Reject READ_* or WRITE_* with overflow/underflow for
3067 * type SCF_SCSI_DATA_SG_IO_CDB.
3068 */
Andy Grover6708bb22011-06-08 10:36:43 -07003069 if (!ret && (dev->se_sub_dev->se_dev_attrib.block_size != 512)) {
3070 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003071 " CDB on non 512-byte sector setup subsystem"
Andy Grovere3d6f902011-07-19 08:55:10 +00003072 " plugin: %s\n", dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003073 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
3074 goto out_invalid_cdb_field;
3075 }
3076
3077 if (size > cmd->data_length) {
3078 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
3079 cmd->residual_count = (size - cmd->data_length);
3080 } else {
3081 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
3082 cmd->residual_count = (cmd->data_length - size);
3083 }
3084 cmd->data_length = size;
3085 }
3086
Christoph Hellwig5bda90c2011-11-03 17:50:45 -04003087 /* reject any command that we don't have a handler for */
3088 if (!(passthrough || cmd->execute_task ||
3089 (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB)))
3090 goto out_unsupported_cdb;
3091
Andy Groverd0229ae2011-07-08 17:04:53 -07003092 /* Let's limit control cdbs to a page, for simplicity's sake. */
3093 if ((cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) &&
3094 size > PAGE_SIZE)
3095 goto out_invalid_cdb_field;
3096
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003097 transport_set_supported_SAM_opcode(cmd);
3098 return ret;
3099
3100out_unsupported_cdb:
3101 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3102 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Andy Grover5951146d2011-07-19 10:26:37 +00003103 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003104out_invalid_cdb_field:
3105 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3106 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00003107 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003108}
3109
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003110/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003111 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003112 * and ordered cmds need to have their tasks added to the execution queue.
3113 */
3114static void transport_complete_task_attr(struct se_cmd *cmd)
3115{
Andy Grover5951146d2011-07-19 10:26:37 +00003116 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003117 struct se_cmd *cmd_p, *cmd_tmp;
3118 int new_active_tasks = 0;
3119
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003120 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003121 atomic_dec(&dev->simple_cmds);
3122 smp_mb__after_atomic_dec();
3123 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003124 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003125 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
3126 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003127 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003128 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003129 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003130 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
3131 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003132 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003133 atomic_dec(&dev->dev_ordered_sync);
3134 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003135
3136 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07003137 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003138 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
3139 }
3140 /*
3141 * Process all commands up to the last received
3142 * ORDERED task attribute which requires another blocking
3143 * boundary
3144 */
3145 spin_lock(&dev->delayed_cmd_lock);
3146 list_for_each_entry_safe(cmd_p, cmd_tmp,
Andy Grover5951146d2011-07-19 10:26:37 +00003147 &dev->delayed_cmd_list, se_delayed_node) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003148
Andy Grover5951146d2011-07-19 10:26:37 +00003149 list_del(&cmd_p->se_delayed_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003150 spin_unlock(&dev->delayed_cmd_lock);
3151
Andy Grover6708bb22011-06-08 10:36:43 -07003152 pr_debug("Calling add_tasks() for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003153 " cmd_p: 0x%02x Task Attr: 0x%02x"
3154 " Dormant -> Active, se_ordered_id: %u\n",
Andy Grover6708bb22011-06-08 10:36:43 -07003155 cmd_p->t_task_cdb[0],
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003156 cmd_p->sam_task_attr, cmd_p->se_ordered_id);
3157
3158 transport_add_tasks_from_cmd(cmd_p);
3159 new_active_tasks++;
3160
3161 spin_lock(&dev->delayed_cmd_lock);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07003162 if (cmd_p->sam_task_attr == MSG_ORDERED_TAG)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003163 break;
3164 }
3165 spin_unlock(&dev->delayed_cmd_lock);
3166 /*
3167 * If new tasks have become active, wake up the transport thread
3168 * to do the processing of the Active tasks.
3169 */
3170 if (new_active_tasks != 0)
Andy Grovere3d6f902011-07-19 08:55:10 +00003171 wake_up_interruptible(&dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003172}
3173
Christoph Hellwige057f532011-10-17 13:56:41 -04003174static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003175{
3176 int ret = 0;
3177
Christoph Hellwige057f532011-10-17 13:56:41 -04003178 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
3179 transport_complete_task_attr(cmd);
3180
3181 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
3182 ret = cmd->se_tfo->queue_status(cmd);
3183 if (ret)
3184 goto out;
3185 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003186
3187 switch (cmd->data_direction) {
3188 case DMA_FROM_DEVICE:
3189 ret = cmd->se_tfo->queue_data_in(cmd);
3190 break;
3191 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00003192 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003193 ret = cmd->se_tfo->queue_data_in(cmd);
3194 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04003195 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003196 }
3197 /* Fall through for DMA_TO_DEVICE */
3198 case DMA_NONE:
3199 ret = cmd->se_tfo->queue_status(cmd);
3200 break;
3201 default:
3202 break;
3203 }
3204
Christoph Hellwige057f532011-10-17 13:56:41 -04003205out:
3206 if (ret < 0) {
3207 transport_handle_queue_full(cmd, cmd->se_dev);
3208 return;
3209 }
3210 transport_lun_remove_cmd(cmd);
3211 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003212}
3213
3214static void transport_handle_queue_full(
3215 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04003216 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003217{
3218 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003219 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
3220 atomic_inc(&dev->dev_qf_count);
3221 smp_mb__after_atomic_inc();
3222 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
3223
3224 schedule_work(&cmd->se_dev->qf_work_queue);
3225}
3226
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003227static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003228{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003229 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003230 int reason = 0, ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04003231
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003232 /*
3233 * Check if we need to move delayed/dormant tasks from cmds on the
3234 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
3235 * Attribute.
3236 */
Andy Grover5951146d2011-07-19 10:26:37 +00003237 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003238 transport_complete_task_attr(cmd);
3239 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003240 * Check to schedule QUEUE_FULL work, or execute an existing
3241 * cmd->transport_qf_callback()
3242 */
3243 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
3244 schedule_work(&cmd->se_dev->qf_work_queue);
3245
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003246 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003247 * Check if we need to retrieve a sense buffer from
3248 * the struct se_cmd in question.
3249 */
3250 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
3251 if (transport_get_sense_data(cmd) < 0)
3252 reason = TCM_NON_EXISTENT_LUN;
3253
3254 /*
3255 * Only set when an struct se_task->task_scsi_status returned
3256 * a non GOOD status.
3257 */
3258 if (cmd->scsi_status) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003259 ret = transport_send_check_condition_and_sense(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003260 cmd, reason, 1);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003261 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003262 goto queue_full;
3263
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003264 transport_lun_remove_cmd(cmd);
3265 transport_cmd_check_stop_to_fabric(cmd);
3266 return;
3267 }
3268 }
3269 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003270 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003271 * XDWRITE_READ_10 emulation.
3272 */
3273 if (cmd->transport_complete_callback)
3274 cmd->transport_complete_callback(cmd);
3275
3276 switch (cmd->data_direction) {
3277 case DMA_FROM_DEVICE:
3278 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003279 if (cmd->se_lun->lun_sep) {
3280 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003281 cmd->data_length;
3282 }
3283 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003284
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003285 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003286 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003287 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003288 break;
3289 case DMA_TO_DEVICE:
3290 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003291 if (cmd->se_lun->lun_sep) {
3292 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003293 cmd->data_length;
3294 }
3295 spin_unlock(&cmd->se_lun->lun_sep_lock);
3296 /*
3297 * Check if we need to send READ payload for BIDI-COMMAND
3298 */
Andy Groverec98f782011-07-20 19:28:46 +00003299 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003300 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00003301 if (cmd->se_lun->lun_sep) {
3302 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003303 cmd->data_length;
3304 }
3305 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003306 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003307 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003308 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003309 break;
3310 }
3311 /* Fall through for DMA_TO_DEVICE */
3312 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003313 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003314 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003315 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003316 break;
3317 default:
3318 break;
3319 }
3320
3321 transport_lun_remove_cmd(cmd);
3322 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003323 return;
3324
3325queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07003326 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003327 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04003328 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
3329 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003330}
3331
3332static void transport_free_dev_tasks(struct se_cmd *cmd)
3333{
3334 struct se_task *task, *task_tmp;
3335 unsigned long flags;
Christoph Hellwig0c2cfe52011-10-17 13:56:45 -04003336 LIST_HEAD(dispose_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003337
Andy Grovera1d8b492011-05-02 17:12:10 -07003338 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003339 list_for_each_entry_safe(task, task_tmp,
Andy Grovera1d8b492011-05-02 17:12:10 -07003340 &cmd->t_task_list, t_list) {
Christoph Hellwig0c2cfe52011-10-17 13:56:45 -04003341 if (!(task->task_flags & TF_ACTIVE))
3342 list_move_tail(&task->t_list, &dispose_list);
3343 }
3344 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3345
3346 while (!list_empty(&dispose_list)) {
3347 task = list_first_entry(&dispose_list, struct se_task, t_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003348
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003349 if (task->task_sg != cmd->t_data_sg &&
3350 task->task_sg != cmd->t_bidi_data_sg)
3351 kfree(task->task_sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003352
3353 list_del(&task->t_list);
3354
Christoph Hellwig42bf8292011-10-12 11:07:00 -04003355 cmd->se_dev->transport->free_task(task);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003356 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003357}
3358
Andy Grover6708bb22011-06-08 10:36:43 -07003359static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003360{
Andy Groverec98f782011-07-20 19:28:46 +00003361 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00003362 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003363
Andy Grover6708bb22011-06-08 10:36:43 -07003364 for_each_sg(sgl, sg, nents, count)
3365 __free_page(sg_page(sg));
3366
3367 kfree(sgl);
3368}
3369
3370static inline void transport_free_pages(struct se_cmd *cmd)
3371{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003372 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07003373 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003374
Andy Grover6708bb22011-06-08 10:36:43 -07003375 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00003376 cmd->t_data_sg = NULL;
3377 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003378
Andy Grover6708bb22011-06-08 10:36:43 -07003379 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00003380 cmd->t_bidi_data_sg = NULL;
3381 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003382}
3383
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003384/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003385 * transport_release_cmd - free a command
3386 * @cmd: command to free
3387 *
3388 * This routine unconditionally frees a command, and reference counting
3389 * or list removal must be done in the caller.
3390 */
3391static void transport_release_cmd(struct se_cmd *cmd)
3392{
3393 BUG_ON(!cmd->se_tfo);
3394
3395 if (cmd->se_tmr_req)
3396 core_tmr_release_req(cmd->se_tmr_req);
3397 if (cmd->t_task_cdb != cmd->__t_task_cdb)
3398 kfree(cmd->t_task_cdb);
3399 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003400 * If this cmd has been setup with target_get_sess_cmd(), drop
3401 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003402 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003403 if (cmd->check_release != 0) {
3404 target_put_sess_cmd(cmd->se_sess, cmd);
3405 return;
3406 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05003407 cmd->se_tfo->release_cmd(cmd);
3408}
3409
3410/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003411 * transport_put_cmd - release a reference to a command
3412 * @cmd: command to release
3413 *
3414 * This routine releases our reference to the command and frees it if possible.
3415 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003416static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003417{
3418 unsigned long flags;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003419 int free_tasks = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003420
Andy Grovera1d8b492011-05-02 17:12:10 -07003421 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003422 if (atomic_read(&cmd->t_fe_count)) {
3423 if (!atomic_dec_and_test(&cmd->t_fe_count))
3424 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003425 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003426
3427 if (atomic_read(&cmd->t_se_count)) {
3428 if (!atomic_dec_and_test(&cmd->t_se_count))
3429 goto out_busy;
3430 }
3431
3432 if (atomic_read(&cmd->transport_dev_active)) {
3433 atomic_set(&cmd->transport_dev_active, 0);
3434 transport_all_task_dev_remove_state(cmd);
3435 free_tasks = 1;
3436 }
Andy Grovera1d8b492011-05-02 17:12:10 -07003437 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003438
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003439 if (free_tasks != 0)
3440 transport_free_dev_tasks(cmd);
Christoph Hellwigd3df7822011-09-13 23:08:32 +02003441
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003442 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02003443 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003444 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02003445out_busy:
3446 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003447}
3448
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003449/*
Andy Groverec98f782011-07-20 19:28:46 +00003450 * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of
3451 * allocating in the core.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003452 * @cmd: Associated se_cmd descriptor
3453 * @mem: SGL style memory for TCM WRITE / READ
3454 * @sg_mem_num: Number of SGL elements
3455 * @mem_bidi_in: SGL style memory for TCM BIDI READ
3456 * @sg_mem_bidi_num: Number of BIDI READ SGL elements
3457 *
3458 * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage
3459 * of parameters.
3460 */
3461int transport_generic_map_mem_to_cmd(
3462 struct se_cmd *cmd,
Andy Grover5951146d2011-07-19 10:26:37 +00003463 struct scatterlist *sgl,
3464 u32 sgl_count,
3465 struct scatterlist *sgl_bidi,
3466 u32 sgl_bidi_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003467{
Andy Grover5951146d2011-07-19 10:26:37 +00003468 if (!sgl || !sgl_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003469 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003470
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003471 if ((cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) ||
3472 (cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB)) {
Nicholas Bellingerfef58a62011-11-15 22:13:24 -08003473 /*
3474 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
3475 * scatterlists already have been set to follow what the fabric
3476 * passes for the original expected data transfer length.
3477 */
3478 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
3479 pr_warn("Rejecting SCSI DATA overflow for fabric using"
3480 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
3481 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3482 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
3483 return -EINVAL;
3484 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003485
Andy Groverec98f782011-07-20 19:28:46 +00003486 cmd->t_data_sg = sgl;
3487 cmd->t_data_nents = sgl_count;
3488
Andy Grover5951146d2011-07-19 10:26:37 +00003489 if (sgl_bidi && sgl_bidi_count) {
Andy Groverec98f782011-07-20 19:28:46 +00003490 cmd->t_bidi_data_sg = sgl_bidi;
3491 cmd->t_bidi_data_nents = sgl_bidi_count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003492 }
3493 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003494 }
3495
3496 return 0;
3497}
3498EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
3499
Andy Grover05d1c7c2011-07-20 19:13:28 +00003500void *transport_kmap_first_data_page(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003501{
Andy Groverec98f782011-07-20 19:28:46 +00003502 struct scatterlist *sg = cmd->t_data_sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003503
Andy Groverec98f782011-07-20 19:28:46 +00003504 BUG_ON(!sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00003505 /*
Andy Groverec98f782011-07-20 19:28:46 +00003506 * We need to take into account a possible offset here for fabrics like
3507 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
3508 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00003509 */
Andy Groverec98f782011-07-20 19:28:46 +00003510 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003511}
3512EXPORT_SYMBOL(transport_kmap_first_data_page);
3513
3514void transport_kunmap_first_data_page(struct se_cmd *cmd)
3515{
Andy Groverec98f782011-07-20 19:28:46 +00003516 kunmap(sg_page(cmd->t_data_sg));
Andy Grover05d1c7c2011-07-20 19:13:28 +00003517}
3518EXPORT_SYMBOL(transport_kunmap_first_data_page);
3519
3520static int
3521transport_generic_get_mem(struct se_cmd *cmd)
3522{
Andy Groverec98f782011-07-20 19:28:46 +00003523 u32 length = cmd->data_length;
3524 unsigned int nents;
3525 struct page *page;
3526 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00003527
Andy Groverec98f782011-07-20 19:28:46 +00003528 nents = DIV_ROUND_UP(length, PAGE_SIZE);
3529 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
3530 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00003531 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003532
Andy Groverec98f782011-07-20 19:28:46 +00003533 cmd->t_data_nents = nents;
3534 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003535
Andy Groverec98f782011-07-20 19:28:46 +00003536 while (length) {
3537 u32 page_len = min_t(u32, length, PAGE_SIZE);
3538 page = alloc_page(GFP_KERNEL | __GFP_ZERO);
3539 if (!page)
3540 goto out;
3541
3542 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
3543 length -= page_len;
3544 i++;
3545 }
3546 return 0;
3547
3548out:
3549 while (i >= 0) {
3550 __free_page(sg_page(&cmd->t_data_sg[i]));
3551 i--;
3552 }
3553 kfree(cmd->t_data_sg);
3554 cmd->t_data_sg = NULL;
3555 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003556}
3557
Andy Grovera1d8b492011-05-02 17:12:10 -07003558/* Reduce sectors if they are too long for the device */
3559static inline sector_t transport_limit_task_sectors(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003560 struct se_device *dev,
3561 unsigned long long lba,
Andy Grovera1d8b492011-05-02 17:12:10 -07003562 sector_t sectors)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003563{
Andy Grovera1d8b492011-05-02 17:12:10 -07003564 sectors = min_t(sector_t, sectors, dev->se_sub_dev->se_dev_attrib.max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003565
Andy Grovera1d8b492011-05-02 17:12:10 -07003566 if (dev->transport->get_device_type(dev) == TYPE_DISK)
3567 if ((lba + sectors) > transport_dev_end_lba(dev))
3568 sectors = ((transport_dev_end_lba(dev) - lba) + 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003569
Andy Grovera1d8b492011-05-02 17:12:10 -07003570 return sectors;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003571}
3572
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003573
3574/*
3575 * This function can be used by HW target mode drivers to create a linked
3576 * scatterlist from all contiguously allocated struct se_task->task_sg[].
3577 * This is intended to be called during the completion path by TCM Core
3578 * when struct target_core_fabric_ops->check_task_sg_chaining is enabled.
3579 */
3580void transport_do_task_sg_chain(struct se_cmd *cmd)
3581{
Andy Groverec98f782011-07-20 19:28:46 +00003582 struct scatterlist *sg_first = NULL;
3583 struct scatterlist *sg_prev = NULL;
3584 int sg_prev_nents = 0;
3585 struct scatterlist *sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003586 struct se_task *task;
Andy Groverec98f782011-07-20 19:28:46 +00003587 u32 chained_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003588 int i;
3589
Andy Groverec98f782011-07-20 19:28:46 +00003590 BUG_ON(!cmd->se_tfo->task_sg_chaining);
3591
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003592 /*
3593 * Walk the struct se_task list and setup scatterlist chains
Andy Grovera1d8b492011-05-02 17:12:10 -07003594 * for each contiguously allocated struct se_task->task_sg[].
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003595 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003596 list_for_each_entry(task, &cmd->t_task_list, t_list) {
Andy Groverec98f782011-07-20 19:28:46 +00003597 if (!task->task_sg)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003598 continue;
3599
Andy Groverec98f782011-07-20 19:28:46 +00003600 if (!sg_first) {
3601 sg_first = task->task_sg;
Andy Grover6708bb22011-06-08 10:36:43 -07003602 chained_nents = task->task_sg_nents;
Nicholas Bellinger97868c82011-05-19 20:19:09 -07003603 } else {
Andy Groverec98f782011-07-20 19:28:46 +00003604 sg_chain(sg_prev, sg_prev_nents, task->task_sg);
Andy Grover6708bb22011-06-08 10:36:43 -07003605 chained_nents += task->task_sg_nents;
Nicholas Bellinger97868c82011-05-19 20:19:09 -07003606 }
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003607 /*
3608 * For the padded tasks, use the extra SGL vector allocated
3609 * in transport_allocate_data_tasks() for the sg_prev_nents
Christoph Hellwig04629b72011-10-12 11:07:04 -04003610 * offset into sg_chain() above.
3611 *
3612 * We do not need the padding for the last task (or a single
3613 * task), but in that case we will never use the sg_prev_nents
3614 * value below which would be incorrect.
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003615 */
Christoph Hellwig04629b72011-10-12 11:07:04 -04003616 sg_prev_nents = (task->task_sg_nents + 1);
Andy Groverec98f782011-07-20 19:28:46 +00003617 sg_prev = task->task_sg;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003618 }
3619 /*
3620 * Setup the starting pointer and total t_tasks_sg_linked_no including
3621 * padding SGs for linking and to mark the end.
3622 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003623 cmd->t_tasks_sg_chained = sg_first;
Andy Groverec98f782011-07-20 19:28:46 +00003624 cmd->t_tasks_sg_chained_no = chained_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003625
Andy Grover6708bb22011-06-08 10:36:43 -07003626 pr_debug("Setup cmd: %p cmd->t_tasks_sg_chained: %p and"
Andy Grovera1d8b492011-05-02 17:12:10 -07003627 " t_tasks_sg_chained_no: %u\n", cmd, cmd->t_tasks_sg_chained,
3628 cmd->t_tasks_sg_chained_no);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003629
Andy Grovera1d8b492011-05-02 17:12:10 -07003630 for_each_sg(cmd->t_tasks_sg_chained, sg,
3631 cmd->t_tasks_sg_chained_no, i) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003632
Andy Grover6708bb22011-06-08 10:36:43 -07003633 pr_debug("SG[%d]: %p page: %p length: %d offset: %d\n",
Andy Grover5951146d2011-07-19 10:26:37 +00003634 i, sg, sg_page(sg), sg->length, sg->offset);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003635 if (sg_is_chain(sg))
Andy Grover6708bb22011-06-08 10:36:43 -07003636 pr_debug("SG: %p sg_is_chain=1\n", sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003637 if (sg_is_last(sg))
Andy Grover6708bb22011-06-08 10:36:43 -07003638 pr_debug("SG: %p sg_is_last=1\n", sg);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003639 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003640}
3641EXPORT_SYMBOL(transport_do_task_sg_chain);
3642
Andy Grovera1d8b492011-05-02 17:12:10 -07003643/*
3644 * Break up cmd into chunks transport can handle
3645 */
Christoph Hellwig38b400672011-10-18 06:57:02 -04003646static int
3647transport_allocate_data_tasks(struct se_cmd *cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003648 enum dma_data_direction data_direction,
Christoph Hellwig38b400672011-10-18 06:57:02 -04003649 struct scatterlist *cmd_sg, unsigned int sgl_nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003650{
Andy Grover5951146d2011-07-19 10:26:37 +00003651 struct se_device *dev = cmd->se_dev;
Christoph Hellwiga3eedc22011-09-25 14:56:43 -04003652 int task_count, i;
Christoph Hellwig38b400672011-10-18 06:57:02 -04003653 unsigned long long lba;
3654 sector_t sectors, dev_max_sectors;
3655 u32 sector_size;
3656
3657 if (transport_cmd_get_valid_sectors(cmd) < 0)
3658 return -EINVAL;
3659
3660 dev_max_sectors = dev->se_sub_dev->se_dev_attrib.max_sectors;
3661 sector_size = dev->se_sub_dev->se_dev_attrib.block_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003662
Andy Groverec98f782011-07-20 19:28:46 +00003663 WARN_ON(cmd->data_length % sector_size);
Christoph Hellwig38b400672011-10-18 06:57:02 -04003664
3665 lba = cmd->t_task_lba;
Andy Groverec98f782011-07-20 19:28:46 +00003666 sectors = DIV_ROUND_UP(cmd->data_length, sector_size);
Nicholas Bellinger277c5f22011-07-26 00:38:40 -07003667 task_count = DIV_ROUND_UP_SECTOR_T(sectors, dev_max_sectors);
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003668
3669 /*
3670 * If we need just a single task reuse the SG list in the command
3671 * and avoid a lot of work.
3672 */
3673 if (task_count == 1) {
3674 struct se_task *task;
3675 unsigned long flags;
3676
3677 task = transport_generic_get_task(cmd, data_direction);
3678 if (!task)
3679 return -ENOMEM;
3680
3681 task->task_sg = cmd_sg;
3682 task->task_sg_nents = sgl_nents;
3683
3684 task->task_lba = lba;
3685 task->task_sectors = sectors;
3686 task->task_size = task->task_sectors * sector_size;
3687
3688 spin_lock_irqsave(&cmd->t_state_lock, flags);
3689 list_add_tail(&task->t_list, &cmd->t_task_list);
3690 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3691
3692 return task_count;
3693 }
3694
Andy Groverec98f782011-07-20 19:28:46 +00003695 for (i = 0; i < task_count; i++) {
Christoph Hellwig38b400672011-10-18 06:57:02 -04003696 struct se_task *task;
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003697 unsigned int task_size, task_sg_nents_padded;
Christoph Hellwig38b400672011-10-18 06:57:02 -04003698 struct scatterlist *sg;
3699 unsigned long flags;
Andy Groverec98f782011-07-20 19:28:46 +00003700 int count;
Andy Grovera1d8b492011-05-02 17:12:10 -07003701
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003702 task = transport_generic_get_task(cmd, data_direction);
Andy Grovera1d8b492011-05-02 17:12:10 -07003703 if (!task)
Andy Groverec98f782011-07-20 19:28:46 +00003704 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003705
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003706 task->task_lba = lba;
Andy Groverec98f782011-07-20 19:28:46 +00003707 task->task_sectors = min(sectors, dev_max_sectors);
3708 task->task_size = task->task_sectors * sector_size;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003709
Nicholas Bellinger525a48a2011-08-13 02:11:38 -07003710 /*
3711 * This now assumes that passed sg_ents are in PAGE_SIZE chunks
3712 * in order to calculate the number per task SGL entries
3713 */
3714 task->task_sg_nents = DIV_ROUND_UP(task->task_size, PAGE_SIZE);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003715 /*
Andy Groverec98f782011-07-20 19:28:46 +00003716 * Check if the fabric module driver is requesting that all
3717 * struct se_task->task_sg[] be chained together.. If so,
3718 * then allocate an extra padding SG entry for linking and
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003719 * marking the end of the chained SGL for every task except
3720 * the last one for (task_count > 1) operation, or skipping
3721 * the extra padding for the (task_count == 1) case.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003722 */
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003723 if (cmd->se_tfo->task_sg_chaining && (i < (task_count - 1))) {
3724 task_sg_nents_padded = (task->task_sg_nents + 1);
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003725 } else
3726 task_sg_nents_padded = task->task_sg_nents;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003727
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003728 task->task_sg = kmalloc(sizeof(struct scatterlist) *
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003729 task_sg_nents_padded, GFP_KERNEL);
Andy Groverec98f782011-07-20 19:28:46 +00003730 if (!task->task_sg) {
3731 cmd->se_dev->transport->free_task(task);
3732 return -ENOMEM;
3733 }
3734
Nicholas Bellingerc3c74c72011-08-13 05:30:31 -07003735 sg_init_table(task->task_sg, task_sg_nents_padded);
Andy Groverec98f782011-07-20 19:28:46 +00003736
3737 task_size = task->task_size;
3738
3739 /* Build new sgl, only up to task_size */
Andy Grover6708bb22011-06-08 10:36:43 -07003740 for_each_sg(task->task_sg, sg, task->task_sg_nents, count) {
Andy Groverec98f782011-07-20 19:28:46 +00003741 if (cmd_sg->length > task_size)
3742 break;
3743
3744 *sg = *cmd_sg;
3745 task_size -= cmd_sg->length;
3746 cmd_sg = sg_next(cmd_sg);
3747 }
3748
3749 lba += task->task_sectors;
3750 sectors -= task->task_sectors;
3751
3752 spin_lock_irqsave(&cmd->t_state_lock, flags);
3753 list_add_tail(&task->t_list, &cmd->t_task_list);
3754 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003755 }
3756
Andy Groverec98f782011-07-20 19:28:46 +00003757 return task_count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003758}
3759
3760static int
Andy Groverec98f782011-07-20 19:28:46 +00003761transport_allocate_control_task(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003762{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003763 struct se_task *task;
Andy Groverec98f782011-07-20 19:28:46 +00003764 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003765
3766 task = transport_generic_get_task(cmd, cmd->data_direction);
3767 if (!task)
Andy Groverec98f782011-07-20 19:28:46 +00003768 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003769
Christoph Hellwigaf3f00c2011-10-18 06:57:03 -04003770 task->task_sg = cmd->t_data_sg;
Andy Groverec98f782011-07-20 19:28:46 +00003771 task->task_size = cmd->data_length;
Andy Grover6708bb22011-06-08 10:36:43 -07003772 task->task_sg_nents = cmd->t_data_nents;
Andy Groverec98f782011-07-20 19:28:46 +00003773
3774 spin_lock_irqsave(&cmd->t_state_lock, flags);
3775 list_add_tail(&task->t_list, &cmd->t_task_list);
3776 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003777
Andy Grover6708bb22011-06-08 10:36:43 -07003778 /* Success! Return number of tasks allocated */
Christoph Hellwiga3eedc22011-09-25 14:56:43 -04003779 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003780}
3781
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003782/*
3783 * Allocate any required ressources to execute the command, and either place
3784 * it on the execution queue if possible. For writes we might not have the
3785 * payload yet, thus notify the fabric via a call to ->write_pending instead.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003786 */
Andy Grovera1d8b492011-05-02 17:12:10 -07003787int transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003788{
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003789 struct se_device *dev = cmd->se_dev;
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003790 int task_cdbs, task_cdbs_bidi = 0;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003791 int set_counts = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003792 int ret = 0;
3793
3794 /*
3795 * Determine is the TCM fabric module has already allocated physical
3796 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00003797 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003798 */
Andy Groverec98f782011-07-20 19:28:46 +00003799 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
3800 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00003801 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003802 if (ret < 0)
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07003803 goto out_fail;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003804 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003805
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003806 /*
Christoph Hellwig38b400672011-10-18 06:57:02 -04003807 * For BIDI command set up the read tasks first.
Nicholas Bellinger1d20bb62011-07-21 04:41:48 +00003808 */
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003809 if (cmd->t_bidi_data_sg &&
Christoph Hellwig38b400672011-10-18 06:57:02 -04003810 dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
3811 BUG_ON(!(cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB));
3812
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003813 task_cdbs_bidi = transport_allocate_data_tasks(cmd,
3814 DMA_FROM_DEVICE, cmd->t_bidi_data_sg,
3815 cmd->t_bidi_data_nents);
3816 if (task_cdbs_bidi <= 0)
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003817 goto out_fail;
3818
3819 atomic_inc(&cmd->t_fe_count);
3820 atomic_inc(&cmd->t_se_count);
3821 set_counts = 0;
3822 }
Christoph Hellwig38b400672011-10-18 06:57:02 -04003823
3824 if (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) {
3825 task_cdbs = transport_allocate_data_tasks(cmd,
3826 cmd->data_direction, cmd->t_data_sg,
3827 cmd->t_data_nents);
3828 } else {
3829 task_cdbs = transport_allocate_control_task(cmd);
3830 }
3831
Roland Dreier410f6702011-11-22 13:51:32 -08003832 if (task_cdbs < 0)
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003833 goto out_fail;
Roland Dreier410f6702011-11-22 13:51:32 -08003834 else if (!task_cdbs && (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB)) {
3835 cmd->t_state = TRANSPORT_COMPLETE;
3836 atomic_set(&cmd->t_transport_active, 1);
3837 INIT_WORK(&cmd->work, target_complete_ok_work);
3838 queue_work(target_completion_wq, &cmd->work);
3839 return 0;
3840 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003841
3842 if (set_counts) {
3843 atomic_inc(&cmd->t_fe_count);
3844 atomic_inc(&cmd->t_se_count);
3845 }
3846
Nicholas Bellinger9ac54982011-10-22 04:06:23 -07003847 cmd->t_task_list_num = (task_cdbs + task_cdbs_bidi);
3848 atomic_set(&cmd->t_task_cdbs_left, cmd->t_task_list_num);
3849 atomic_set(&cmd->t_task_cdbs_ex_left, cmd->t_task_list_num);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003850
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003851 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07003852 * For WRITEs, let the fabric know its buffer is ready..
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003853 * This WRITE struct se_cmd (and all of its associated struct se_task's)
3854 * will be added to the struct se_device execution queue after its WRITE
3855 * data has arrived. (ie: It gets handled by the transport processing
3856 * thread a second time)
3857 */
3858 if (cmd->data_direction == DMA_TO_DEVICE) {
3859 transport_add_tasks_to_state_queue(cmd);
3860 return transport_generic_write_pending(cmd);
3861 }
3862 /*
3863 * Everything else but a WRITE, add the struct se_cmd's struct se_task's
3864 * to the execution queue.
3865 */
3866 transport_execute_tasks(cmd);
3867 return 0;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04003868
3869out_fail:
3870 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
3871 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
3872 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003873}
Andy Grovera1d8b492011-05-02 17:12:10 -07003874EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003875
3876/* transport_generic_process_write():
3877 *
3878 *
3879 */
3880void transport_generic_process_write(struct se_cmd *cmd)
3881{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003882 transport_execute_tasks(cmd);
3883}
3884EXPORT_SYMBOL(transport_generic_process_write);
3885
Christoph Hellwige057f532011-10-17 13:56:41 -04003886static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003887{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003888 int ret;
3889
3890 ret = cmd->se_tfo->write_pending(cmd);
3891 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04003892 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
3893 cmd);
3894 transport_handle_queue_full(cmd, cmd->se_dev);
3895 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003896}
3897
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003898static int transport_generic_write_pending(struct se_cmd *cmd)
3899{
3900 unsigned long flags;
3901 int ret;
3902
Andy Grovera1d8b492011-05-02 17:12:10 -07003903 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003904 cmd->t_state = TRANSPORT_WRITE_PENDING;
Andy Grovera1d8b492011-05-02 17:12:10 -07003905 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003906
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003907 /*
3908 * Clear the se_cmd for WRITE_PENDING status in order to set
Andy Grovera1d8b492011-05-02 17:12:10 -07003909 * cmd->t_transport_active=0 so that transport_generic_handle_data
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003910 * can be called from HW target mode interrupt code. This is safe
Andy Grovere3d6f902011-07-19 08:55:10 +00003911 * to be called with transport_off=1 before the cmd->se_tfo->write_pending
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003912 * because the se_cmd->se_lun pointer is not being cleared.
3913 */
3914 transport_cmd_check_stop(cmd, 1, 0);
3915
3916 /*
3917 * Call the fabric write_pending function here to let the
3918 * frontend know that WRITE buffers are ready.
3919 */
Andy Grovere3d6f902011-07-19 08:55:10 +00003920 ret = cmd->se_tfo->write_pending(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003921 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003922 goto queue_full;
3923 else if (ret < 0)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003924 return ret;
3925
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07003926 return 1;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003927
3928queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07003929 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003930 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
Christoph Hellwige057f532011-10-17 13:56:41 -04003931 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07003932 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003933}
3934
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003935void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003936{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07003937 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
3938 if (wait_for_tasks && cmd->se_tmr_req)
3939 transport_wait_for_tasks(cmd);
3940
Christoph Hellwig35462972011-05-31 23:56:57 -04003941 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07003942 } else {
3943 if (wait_for_tasks)
3944 transport_wait_for_tasks(cmd);
3945
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003946 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
3947
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02003948 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003949 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003950
Nicholas Bellingerf4366772011-05-19 20:19:11 -07003951 transport_free_dev_tasks(cmd);
3952
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07003953 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003954 }
3955}
3956EXPORT_SYMBOL(transport_generic_free_cmd);
3957
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003958/* target_get_sess_cmd - Add command to active ->sess_cmd_list
3959 * @se_sess: session to reference
3960 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08003961 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003962 */
Nicholas Bellingera6360782011-11-18 20:36:22 -08003963void target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
3964 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003965{
3966 unsigned long flags;
3967
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003968 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08003969 /*
3970 * Add a second kref if the fabric caller is expecting to handle
3971 * fabric acknowledgement that requires two target_put_sess_cmd()
3972 * invocations before se_cmd descriptor release.
3973 */
3974 if (ack_kref == true)
3975 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003976
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003977 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
3978 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
3979 se_cmd->check_release = 1;
3980 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
3981}
3982EXPORT_SYMBOL(target_get_sess_cmd);
3983
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003984static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003985{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003986 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
3987 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003988 unsigned long flags;
3989
3990 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
3991 if (list_empty(&se_cmd->se_cmd_list)) {
3992 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
3993 WARN_ON(1);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003994 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003995 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07003996 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
3997 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
3998 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08003999 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004000 }
4001 list_del(&se_cmd->se_cmd_list);
4002 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4003
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08004004 se_cmd->se_tfo->release_cmd(se_cmd);
4005}
4006
4007/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
4008 * @se_sess: session to reference
4009 * @se_cmd: command descriptor to drop
4010 */
4011int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
4012{
4013 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004014}
4015EXPORT_SYMBOL(target_put_sess_cmd);
4016
4017/* target_splice_sess_cmd_list - Split active cmds into sess_wait_list
4018 * @se_sess: session to split
4019 */
4020void target_splice_sess_cmd_list(struct se_session *se_sess)
4021{
4022 struct se_cmd *se_cmd;
4023 unsigned long flags;
4024
4025 WARN_ON(!list_empty(&se_sess->sess_wait_list));
4026 INIT_LIST_HEAD(&se_sess->sess_wait_list);
4027
4028 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
4029 se_sess->sess_tearing_down = 1;
4030
4031 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
4032
4033 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
4034 se_cmd->cmd_wait_set = 1;
4035
4036 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
4037}
4038EXPORT_SYMBOL(target_splice_sess_cmd_list);
4039
4040/* target_wait_for_sess_cmds - Wait for outstanding descriptors
4041 * @se_sess: session to wait for active I/O
4042 * @wait_for_tasks: Make extra transport_wait_for_tasks call
4043 */
4044void target_wait_for_sess_cmds(
4045 struct se_session *se_sess,
4046 int wait_for_tasks)
4047{
4048 struct se_cmd *se_cmd, *tmp_cmd;
4049 bool rc = false;
4050
4051 list_for_each_entry_safe(se_cmd, tmp_cmd,
4052 &se_sess->sess_wait_list, se_cmd_list) {
4053 list_del(&se_cmd->se_cmd_list);
4054
4055 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
4056 " %d\n", se_cmd, se_cmd->t_state,
4057 se_cmd->se_tfo->get_cmd_state(se_cmd));
4058
4059 if (wait_for_tasks) {
4060 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
4061 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4062 se_cmd->se_tfo->get_cmd_state(se_cmd));
4063
4064 rc = transport_wait_for_tasks(se_cmd);
4065
4066 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
4067 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4068 se_cmd->se_tfo->get_cmd_state(se_cmd));
4069 }
4070
4071 if (!rc) {
4072 wait_for_completion(&se_cmd->cmd_wait_comp);
4073 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
4074 " fabric state: %d\n", se_cmd, se_cmd->t_state,
4075 se_cmd->se_tfo->get_cmd_state(se_cmd));
4076 }
4077
4078 se_cmd->se_tfo->release_cmd(se_cmd);
4079 }
4080}
4081EXPORT_SYMBOL(target_wait_for_sess_cmds);
4082
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004083/* transport_lun_wait_for_tasks():
4084 *
4085 * Called from ConfigFS context to stop the passed struct se_cmd to allow
4086 * an struct se_lun to be successfully shutdown.
4087 */
4088static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
4089{
4090 unsigned long flags;
4091 int ret;
4092 /*
4093 * If the frontend has already requested this struct se_cmd to
4094 * be stopped, we can safely ignore this struct se_cmd.
4095 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004096 spin_lock_irqsave(&cmd->t_state_lock, flags);
4097 if (atomic_read(&cmd->t_transport_stop)) {
4098 atomic_set(&cmd->transport_lun_stop, 0);
Andy Grover6708bb22011-06-08 10:36:43 -07004099 pr_debug("ConfigFS ITT[0x%08x] - t_transport_stop =="
Andy Grovere3d6f902011-07-19 08:55:10 +00004100 " TRUE, skipping\n", cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004101 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004102 transport_cmd_check_stop(cmd, 1, 0);
Andy Grovere3d6f902011-07-19 08:55:10 +00004103 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004104 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004105 atomic_set(&cmd->transport_lun_fe_stop, 1);
4106 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004107
Andy Grover5951146d2011-07-19 10:26:37 +00004108 wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004109
4110 ret = transport_stop_tasks_for_cmd(cmd);
4111
Andy Grover6708bb22011-06-08 10:36:43 -07004112 pr_debug("ConfigFS: cmd: %p t_tasks: %d stop tasks ret:"
4113 " %d\n", cmd, cmd->t_task_list_num, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004114 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07004115 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004116 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004117 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07004118 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004119 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004120 }
Christoph Hellwig3df8d402011-10-17 13:56:43 -04004121 transport_remove_cmd_from_queue(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004122
4123 return 0;
4124}
4125
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004126static void __transport_clear_lun_from_sessions(struct se_lun *lun)
4127{
4128 struct se_cmd *cmd = NULL;
4129 unsigned long lun_flags, cmd_flags;
4130 /*
4131 * Do exception processing and return CHECK_CONDITION status to the
4132 * Initiator Port.
4133 */
4134 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00004135 while (!list_empty(&lun->lun_cmd_list)) {
4136 cmd = list_first_entry(&lun->lun_cmd_list,
4137 struct se_cmd, se_lun_node);
4138 list_del(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004139
Andy Grovera1d8b492011-05-02 17:12:10 -07004140 atomic_set(&cmd->transport_lun_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004141 /*
4142 * This will notify iscsi_target_transport.c:
4143 * transport_cmd_check_stop() that a LUN shutdown is in
4144 * progress for the iscsi_cmd_t.
4145 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004146 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07004147 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004148 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004149 cmd->se_lun->unpacked_lun,
4150 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07004151 atomic_set(&cmd->transport_lun_stop, 1);
4152 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004153
4154 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
4155
Andy Grover6708bb22011-06-08 10:36:43 -07004156 if (!cmd->se_lun) {
4157 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004158 cmd->se_tfo->get_task_tag(cmd),
4159 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004160 BUG();
4161 }
4162 /*
4163 * If the Storage engine still owns the iscsi_cmd_t, determine
4164 * and/or stop its context.
4165 */
Andy Grover6708bb22011-06-08 10:36:43 -07004166 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00004167 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
4168 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004169
Andy Grovere3d6f902011-07-19 08:55:10 +00004170 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004171 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4172 continue;
4173 }
4174
Andy Grover6708bb22011-06-08 10:36:43 -07004175 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004176 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004177 cmd->se_lun->unpacked_lun,
4178 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004179
Andy Grovera1d8b492011-05-02 17:12:10 -07004180 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Andy Grover6708bb22011-06-08 10:36:43 -07004181 if (!atomic_read(&cmd->transport_dev_active)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004182 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004183 goto check_cond;
4184 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004185 atomic_set(&cmd->transport_dev_active, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004186 transport_all_task_dev_remove_state(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07004187 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004188
4189 transport_free_dev_tasks(cmd);
4190 /*
4191 * The Storage engine stopped this struct se_cmd before it was
4192 * send to the fabric frontend for delivery back to the
4193 * Initiator Node. Return this SCSI CDB back with an
4194 * CHECK_CONDITION status.
4195 */
4196check_cond:
4197 transport_send_check_condition_and_sense(cmd,
4198 TCM_NON_EXISTENT_LUN, 0);
4199 /*
4200 * If the fabric frontend is waiting for this iscsi_cmd_t to
4201 * be released, notify the waiting thread now that LU has
4202 * finished accessing it.
4203 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004204 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
4205 if (atomic_read(&cmd->transport_lun_fe_stop)) {
Andy Grover6708bb22011-06-08 10:36:43 -07004206 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004207 " struct se_cmd: %p ITT: 0x%08x\n",
4208 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00004209 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004210
Andy Grovera1d8b492011-05-02 17:12:10 -07004211 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004212 cmd_flags);
4213 transport_cmd_check_stop(cmd, 1, 0);
Andy Grovera1d8b492011-05-02 17:12:10 -07004214 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004215 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4216 continue;
4217 }
Andy Grover6708bb22011-06-08 10:36:43 -07004218 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004219 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004220
Andy Grovera1d8b492011-05-02 17:12:10 -07004221 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004222 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
4223 }
4224 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
4225}
4226
4227static int transport_clear_lun_thread(void *p)
4228{
Jörn Engel8359cf42011-11-24 02:05:51 +01004229 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004230
4231 __transport_clear_lun_from_sessions(lun);
4232 complete(&lun->lun_shutdown_comp);
4233
4234 return 0;
4235}
4236
4237int transport_clear_lun_from_sessions(struct se_lun *lun)
4238{
4239 struct task_struct *kt;
4240
Andy Grover5951146d2011-07-19 10:26:37 +00004241 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004242 "tcm_cl_%u", lun->unpacked_lun);
4243 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07004244 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00004245 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004246 }
4247 wait_for_completion(&lun->lun_shutdown_comp);
4248
4249 return 0;
4250}
4251
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004252/**
4253 * transport_wait_for_tasks - wait for completion to occur
4254 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004255 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004256 * Called from frontend fabric context to wait for storage engine
4257 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004258 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004259bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004260{
4261 unsigned long flags;
4262
Andy Grovera1d8b492011-05-02 17:12:10 -07004263 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004264 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) && !(cmd->se_tmr_req)) {
4265 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004266 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004267 }
4268 /*
4269 * Only perform a possible wait_for_tasks if SCF_SUPPORTED_SAM_OPCODE
4270 * has been set in transport_set_supported_SAM_opcode().
4271 */
4272 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) && !cmd->se_tmr_req) {
4273 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004274 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004275 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004276 /*
4277 * If we are already stopped due to an external event (ie: LUN shutdown)
4278 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07004279 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004280 * transport_clear_lun_from_sessions() once the ConfigFS context caller
4281 * has completed its operation on the struct se_cmd.
4282 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004283 if (atomic_read(&cmd->transport_lun_stop)) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004284
Andy Grover6708bb22011-06-08 10:36:43 -07004285 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00004286 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004287 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004288 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004289 /*
4290 * There is a special case for WRITES where a FE exception +
4291 * LUN shutdown means ConfigFS context is still sleeping on
4292 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
4293 * We go ahead and up transport_lun_stop_comp just to be sure
4294 * here.
4295 */
Andy Grovera1d8b492011-05-02 17:12:10 -07004296 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4297 complete(&cmd->transport_lun_stop_comp);
4298 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
4299 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004300
4301 transport_all_task_dev_remove_state(cmd);
4302 /*
4303 * At this point, the frontend who was the originator of this
4304 * struct se_cmd, now owns the structure and can be released through
4305 * normal means below.
4306 */
Andy Grover6708bb22011-06-08 10:36:43 -07004307 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00004308 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004309 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004310 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004311
Andy Grovera1d8b492011-05-02 17:12:10 -07004312 atomic_set(&cmd->transport_lun_stop, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004313 }
Andy Grovera1d8b492011-05-02 17:12:10 -07004314 if (!atomic_read(&cmd->t_transport_active) ||
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004315 atomic_read(&cmd->t_transport_aborted)) {
4316 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004317 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004318 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004319
Andy Grovera1d8b492011-05-02 17:12:10 -07004320 atomic_set(&cmd->t_transport_stop, 1);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004321
Andy Grover6708bb22011-06-08 10:36:43 -07004322 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04004323 " i_state: %d, t_state: %d, t_transport_stop = TRUE\n",
4324 cmd, cmd->se_tfo->get_task_tag(cmd),
4325 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004326
Andy Grovera1d8b492011-05-02 17:12:10 -07004327 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004328
Andy Grover5951146d2011-07-19 10:26:37 +00004329 wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004330
Andy Grovera1d8b492011-05-02 17:12:10 -07004331 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004332
Andy Grovera1d8b492011-05-02 17:12:10 -07004333 spin_lock_irqsave(&cmd->t_state_lock, flags);
4334 atomic_set(&cmd->t_transport_active, 0);
4335 atomic_set(&cmd->t_transport_stop, 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004336
Andy Grover6708bb22011-06-08 10:36:43 -07004337 pr_debug("wait_for_tasks: Stopped wait_for_compltion("
Andy Grovera1d8b492011-05-02 17:12:10 -07004338 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00004339 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004340
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004341 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07004342
4343 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004344}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07004345EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004346
4347static int transport_get_sense_codes(
4348 struct se_cmd *cmd,
4349 u8 *asc,
4350 u8 *ascq)
4351{
4352 *asc = cmd->scsi_asc;
4353 *ascq = cmd->scsi_ascq;
4354
4355 return 0;
4356}
4357
4358static int transport_set_sense_codes(
4359 struct se_cmd *cmd,
4360 u8 asc,
4361 u8 ascq)
4362{
4363 cmd->scsi_asc = asc;
4364 cmd->scsi_ascq = ascq;
4365
4366 return 0;
4367}
4368
4369int transport_send_check_condition_and_sense(
4370 struct se_cmd *cmd,
4371 u8 reason,
4372 int from_transport)
4373{
4374 unsigned char *buffer = cmd->sense_buffer;
4375 unsigned long flags;
4376 int offset;
4377 u8 asc = 0, ascq = 0;
4378
Andy Grovera1d8b492011-05-02 17:12:10 -07004379 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004380 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004381 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004382 return 0;
4383 }
4384 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07004385 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004386
4387 if (!reason && from_transport)
4388 goto after_reason;
4389
4390 if (!from_transport)
4391 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
4392 /*
4393 * Data Segment and SenseLength of the fabric response PDU.
4394 *
4395 * TRANSPORT_SENSE_BUFFER is now set to SCSI_SENSE_BUFFERSIZE
4396 * from include/scsi/scsi_cmnd.h
4397 */
Andy Grovere3d6f902011-07-19 08:55:10 +00004398 offset = cmd->se_tfo->set_fabric_sense_len(cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004399 TRANSPORT_SENSE_BUFFER);
4400 /*
4401 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
4402 * SENSE KEY values from include/scsi/scsi.h
4403 */
4404 switch (reason) {
4405 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07004406 /* CURRENT ERROR */
4407 buffer[offset] = 0x70;
4408 /* ILLEGAL REQUEST */
4409 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4410 /* LOGICAL UNIT NOT SUPPORTED */
4411 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x25;
4412 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004413 case TCM_UNSUPPORTED_SCSI_OPCODE:
4414 case TCM_SECTOR_COUNT_TOO_MANY:
4415 /* CURRENT ERROR */
4416 buffer[offset] = 0x70;
4417 /* ILLEGAL REQUEST */
4418 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4419 /* INVALID COMMAND OPERATION CODE */
4420 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x20;
4421 break;
4422 case TCM_UNKNOWN_MODE_PAGE:
4423 /* CURRENT ERROR */
4424 buffer[offset] = 0x70;
4425 /* ILLEGAL REQUEST */
4426 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4427 /* INVALID FIELD IN CDB */
4428 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
4429 break;
4430 case TCM_CHECK_CONDITION_ABORT_CMD:
4431 /* CURRENT ERROR */
4432 buffer[offset] = 0x70;
4433 /* ABORTED COMMAND */
4434 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4435 /* BUS DEVICE RESET FUNCTION OCCURRED */
4436 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x29;
4437 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x03;
4438 break;
4439 case TCM_INCORRECT_AMOUNT_OF_DATA:
4440 /* CURRENT ERROR */
4441 buffer[offset] = 0x70;
4442 /* ABORTED COMMAND */
4443 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4444 /* WRITE ERROR */
4445 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c;
4446 /* NOT ENOUGH UNSOLICITED DATA */
4447 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0d;
4448 break;
4449 case TCM_INVALID_CDB_FIELD:
4450 /* CURRENT ERROR */
4451 buffer[offset] = 0x70;
4452 /* ABORTED COMMAND */
4453 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4454 /* INVALID FIELD IN CDB */
4455 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
4456 break;
4457 case TCM_INVALID_PARAMETER_LIST:
4458 /* CURRENT ERROR */
4459 buffer[offset] = 0x70;
4460 /* ABORTED COMMAND */
4461 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4462 /* INVALID FIELD IN PARAMETER LIST */
4463 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x26;
4464 break;
4465 case TCM_UNEXPECTED_UNSOLICITED_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 /* UNEXPECTED_UNSOLICITED_DATA */
4473 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0c;
4474 break;
4475 case TCM_SERVICE_CRC_ERROR:
4476 /* CURRENT ERROR */
4477 buffer[offset] = 0x70;
4478 /* ABORTED COMMAND */
4479 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4480 /* PROTOCOL SERVICE CRC ERROR */
4481 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x47;
4482 /* N/A */
4483 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x05;
4484 break;
4485 case TCM_SNACK_REJECTED:
4486 /* CURRENT ERROR */
4487 buffer[offset] = 0x70;
4488 /* ABORTED COMMAND */
4489 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
4490 /* READ ERROR */
4491 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x11;
4492 /* FAILED RETRANSMISSION REQUEST */
4493 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x13;
4494 break;
4495 case TCM_WRITE_PROTECTED:
4496 /* CURRENT ERROR */
4497 buffer[offset] = 0x70;
4498 /* DATA PROTECT */
4499 buffer[offset+SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
4500 /* WRITE PROTECTED */
4501 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x27;
4502 break;
4503 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
4504 /* CURRENT ERROR */
4505 buffer[offset] = 0x70;
4506 /* UNIT ATTENTION */
4507 buffer[offset+SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
4508 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
4509 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
4510 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
4511 break;
4512 case TCM_CHECK_CONDITION_NOT_READY:
4513 /* CURRENT ERROR */
4514 buffer[offset] = 0x70;
4515 /* Not Ready */
4516 buffer[offset+SPC_SENSE_KEY_OFFSET] = NOT_READY;
4517 transport_get_sense_codes(cmd, &asc, &ascq);
4518 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
4519 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
4520 break;
4521 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
4522 default:
4523 /* CURRENT ERROR */
4524 buffer[offset] = 0x70;
4525 /* ILLEGAL REQUEST */
4526 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
4527 /* LOGICAL UNIT COMMUNICATION FAILURE */
4528 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x80;
4529 break;
4530 }
4531 /*
4532 * This code uses linux/include/scsi/scsi.h SAM status codes!
4533 */
4534 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
4535 /*
4536 * Automatically padded, this value is encoded in the fabric's
4537 * data_length response PDU containing the SCSI defined sense data.
4538 */
4539 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER + offset;
4540
4541after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004542 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004543}
4544EXPORT_SYMBOL(transport_send_check_condition_and_sense);
4545
4546int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
4547{
4548 int ret = 0;
4549
Andy Grovera1d8b492011-05-02 17:12:10 -07004550 if (atomic_read(&cmd->t_transport_aborted) != 0) {
Andy Grover6708bb22011-06-08 10:36:43 -07004551 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004552 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
4553 return 1;
4554#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07004555 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004556 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07004557 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00004558 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004559#endif
4560 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00004561 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004562 ret = 1;
4563 }
4564 return ret;
4565}
4566EXPORT_SYMBOL(transport_check_aborted_status);
4567
4568void transport_send_task_abort(struct se_cmd *cmd)
4569{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07004570 unsigned long flags;
4571
4572 spin_lock_irqsave(&cmd->t_state_lock, flags);
4573 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
4574 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4575 return;
4576 }
4577 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
4578
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004579 /*
4580 * If there are still expected incoming fabric WRITEs, we wait
4581 * until until they have completed before sending a TASK_ABORTED
4582 * response. This response with TASK_ABORTED status will be
4583 * queued back to fabric module by transport_check_aborted_status().
4584 */
4585 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00004586 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Andy Grovera1d8b492011-05-02 17:12:10 -07004587 atomic_inc(&cmd->t_transport_aborted);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004588 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004589 }
4590 }
4591 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
4592#if 0
Andy Grover6708bb22011-06-08 10:36:43 -07004593 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07004594 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00004595 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004596#endif
Andy Grovere3d6f902011-07-19 08:55:10 +00004597 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004598}
4599
Christoph Hellwige26d99a2011-11-14 12:30:30 -05004600static int transport_generic_do_tmr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004601{
Andy Grover5951146d2011-07-19 10:26:37 +00004602 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004603 struct se_tmr_req *tmr = cmd->se_tmr_req;
4604 int ret;
4605
4606 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004607 case TMR_ABORT_TASK:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004608 tmr->response = TMR_FUNCTION_REJECTED;
4609 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004610 case TMR_ABORT_TASK_SET:
4611 case TMR_CLEAR_ACA:
4612 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004613 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
4614 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004615 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004616 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
4617 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
4618 TMR_FUNCTION_REJECTED;
4619 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004620 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004621 tmr->response = TMR_FUNCTION_REJECTED;
4622 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07004623 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004624 tmr->response = TMR_FUNCTION_REJECTED;
4625 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004626 default:
Andy Grover6708bb22011-06-08 10:36:43 -07004627 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004628 tmr->function);
4629 tmr->response = TMR_FUNCTION_REJECTED;
4630 break;
4631 }
4632
4633 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00004634 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004635
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04004636 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004637 return 0;
4638}
4639
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004640/* transport_processing_thread():
4641 *
4642 *
4643 */
4644static int transport_processing_thread(void *param)
4645{
Andy Grover5951146d2011-07-19 10:26:37 +00004646 int ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004647 struct se_cmd *cmd;
Jörn Engel8359cf42011-11-24 02:05:51 +01004648 struct se_device *dev = param;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004649
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004650 while (!kthread_should_stop()) {
Andy Grovere3d6f902011-07-19 08:55:10 +00004651 ret = wait_event_interruptible(dev->dev_queue_obj.thread_wq,
4652 atomic_read(&dev->dev_queue_obj.queue_cnt) ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004653 kthread_should_stop());
4654 if (ret < 0)
4655 goto out;
4656
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004657get_cmd:
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -08004658 __transport_execute_tasks(dev, NULL);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004659
Andy Grover5951146d2011-07-19 10:26:37 +00004660 cmd = transport_get_cmd_from_queue(&dev->dev_queue_obj);
4661 if (!cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004662 continue;
4663
Andy Grover5951146d2011-07-19 10:26:37 +00004664 switch (cmd->t_state) {
Christoph Hellwig680b73c2011-09-12 21:51:14 +02004665 case TRANSPORT_NEW_CMD:
4666 BUG();
4667 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004668 case TRANSPORT_NEW_CMD_MAP:
Andy Grover6708bb22011-06-08 10:36:43 -07004669 if (!cmd->se_tfo->new_cmd_map) {
4670 pr_err("cmd->se_tfo->new_cmd_map is"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004671 " NULL for TRANSPORT_NEW_CMD_MAP\n");
4672 BUG();
4673 }
Andy Grovere3d6f902011-07-19 08:55:10 +00004674 ret = cmd->se_tfo->new_cmd_map(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004675 if (ret < 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07004676 transport_generic_request_failure(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004677 break;
4678 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004679 ret = transport_generic_new_cmd(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07004680 if (ret < 0) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07004681 transport_generic_request_failure(cmd);
4682 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004683 }
4684 break;
4685 case TRANSPORT_PROCESS_WRITE:
4686 transport_generic_process_write(cmd);
4687 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004688 case TRANSPORT_PROCESS_TMR:
4689 transport_generic_do_tmr(cmd);
4690 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004691 case TRANSPORT_COMPLETE_QF_WP:
Christoph Hellwige057f532011-10-17 13:56:41 -04004692 transport_write_pending_qf(cmd);
4693 break;
4694 case TRANSPORT_COMPLETE_QF_OK:
4695 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07004696 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004697 default:
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04004698 pr_err("Unknown t_state: %d for ITT: 0x%08x "
4699 "i_state: %d on SE LUN: %u\n",
4700 cmd->t_state,
Andy Grovere3d6f902011-07-19 08:55:10 +00004701 cmd->se_tfo->get_task_tag(cmd),
4702 cmd->se_tfo->get_cmd_state(cmd),
4703 cmd->se_lun->unpacked_lun);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004704 BUG();
4705 }
4706
4707 goto get_cmd;
4708 }
4709
4710out:
Nicholas Bellingerce8762f2011-10-09 02:19:01 -07004711 WARN_ON(!list_empty(&dev->state_task_list));
4712 WARN_ON(!list_empty(&dev->dev_queue_obj.qobj_list));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08004713 dev->process_thread = NULL;
4714 return 0;
4715}