blob: 63d7848bf96cb417b3023cbd070954498e1f418a [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>
Roland Dreier015487b2012-02-13 16:18:17 -080040#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041#include <asm/unaligned.h>
42#include <net/sock.h>
43#include <net/tcp.h>
44#include <scsi/scsi.h>
45#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070046#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080047
48#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050049#include <target/target_core_backend.h>
50#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include <target/target_core_configfs.h>
52
Christoph Hellwige26d99a2011-11-14 12:30:30 -050053#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080054#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080055#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056#include "target_core_ua.h"
57
Christoph Hellwig35e0e752011-10-17 13:56:53 -040058static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061struct kmem_cache *t10_pr_reg_cache;
62struct kmem_cache *t10_alua_lu_gp_cache;
63struct kmem_cache *t10_alua_lu_gp_mem_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_cache;
65struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
66
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070068static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040069 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000070static int transport_generic_get_mem(struct se_cmd *cmd);
Roland Dreierbc187ea2012-07-16 11:04:40 -070071static int target_get_sess_cmd(struct se_session *, struct se_cmd *, bool);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070072static void transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040073static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080074
Andy Grovere3d6f902011-07-19 08:55:10 +000075int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080076{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077 se_sess_cache = kmem_cache_create("se_sess_cache",
78 sizeof(struct se_session), __alignof__(struct se_session),
79 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070080 if (!se_sess_cache) {
81 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080082 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080083 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080084 }
85 se_ua_cache = kmem_cache_create("se_ua_cache",
86 sizeof(struct se_ua), __alignof__(struct se_ua),
87 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070088 if (!se_ua_cache) {
89 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040090 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080091 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
93 sizeof(struct t10_pr_registration),
94 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070095 if (!t10_pr_reg_cache) {
96 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080097 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040098 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080099 }
100 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
101 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
102 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700103 if (!t10_alua_lu_gp_cache) {
104 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800105 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400106 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800107 }
108 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
109 sizeof(struct t10_alua_lu_gp_member),
110 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700111 if (!t10_alua_lu_gp_mem_cache) {
112 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800113 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400114 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800115 }
116 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
117 sizeof(struct t10_alua_tg_pt_gp),
118 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700119 if (!t10_alua_tg_pt_gp_cache) {
120 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800121 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400122 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800123 }
124 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
125 "t10_alua_tg_pt_gp_mem_cache",
126 sizeof(struct t10_alua_tg_pt_gp_member),
127 __alignof__(struct t10_alua_tg_pt_gp_member),
128 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700129 if (!t10_alua_tg_pt_gp_mem_cache) {
130 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400132 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800133 }
134
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400135 target_completion_wq = alloc_workqueue("target_completion",
136 WQ_MEM_RECLAIM, 0);
137 if (!target_completion_wq)
138 goto out_free_tg_pt_gp_mem_cache;
139
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800140 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400141
142out_free_tg_pt_gp_mem_cache:
143 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
144out_free_tg_pt_gp_cache:
145 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
146out_free_lu_gp_mem_cache:
147 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
148out_free_lu_gp_cache:
149 kmem_cache_destroy(t10_alua_lu_gp_cache);
150out_free_pr_reg_cache:
151 kmem_cache_destroy(t10_pr_reg_cache);
152out_free_ua_cache:
153 kmem_cache_destroy(se_ua_cache);
154out_free_sess_cache:
155 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800156out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000157 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800158}
159
Andy Grovere3d6f902011-07-19 08:55:10 +0000160void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400162 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800163 kmem_cache_destroy(se_sess_cache);
164 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800165 kmem_cache_destroy(t10_pr_reg_cache);
166 kmem_cache_destroy(t10_alua_lu_gp_cache);
167 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
168 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
169 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800170}
171
Andy Grovere3d6f902011-07-19 08:55:10 +0000172/* This code ensures unique mib indexes are handed out. */
173static DEFINE_SPINLOCK(scsi_mib_index_lock);
174static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800175
176/*
177 * Allocate a new row index for the entry type specified
178 */
179u32 scsi_get_new_index(scsi_index_t type)
180{
181 u32 new_index;
182
Andy Grovere3d6f902011-07-19 08:55:10 +0000183 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800184
Andy Grovere3d6f902011-07-19 08:55:10 +0000185 spin_lock(&scsi_mib_index_lock);
186 new_index = ++scsi_mib_index[type];
187 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800188
189 return new_index;
190}
191
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700192void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800193{
194 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700195 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800196
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700197 if (sub_api_initialized)
198 return;
199
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800200 ret = request_module("target_core_iblock");
201 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700202 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800203
204 ret = request_module("target_core_file");
205 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700206 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207
208 ret = request_module("target_core_pscsi");
209 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700210 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800211
Andy Grovere3d6f902011-07-19 08:55:10 +0000212 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800213}
214
215struct se_session *transport_init_session(void)
216{
217 struct se_session *se_sess;
218
219 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700220 if (!se_sess) {
221 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800222 " se_sess_cache\n");
223 return ERR_PTR(-ENOMEM);
224 }
225 INIT_LIST_HEAD(&se_sess->sess_list);
226 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700227 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700228 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800229 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230
231 return se_sess;
232}
233EXPORT_SYMBOL(transport_init_session);
234
235/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700236 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237 */
238void __transport_register_session(
239 struct se_portal_group *se_tpg,
240 struct se_node_acl *se_nacl,
241 struct se_session *se_sess,
242 void *fabric_sess_ptr)
243{
244 unsigned char buf[PR_REG_ISID_LEN];
245
246 se_sess->se_tpg = se_tpg;
247 se_sess->fabric_sess_ptr = fabric_sess_ptr;
248 /*
249 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
250 *
251 * Only set for struct se_session's that will actually be moving I/O.
252 * eg: *NOT* discovery sessions.
253 */
254 if (se_nacl) {
255 /*
256 * If the fabric module supports an ISID based TransportID,
257 * save this value in binary from the fabric I_T Nexus now.
258 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000259 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800260 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000261 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800262 &buf[0], PR_REG_ISID_LEN);
263 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
264 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800265 kref_get(&se_nacl->acl_kref);
266
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800267 spin_lock_irq(&se_nacl->nacl_sess_lock);
268 /*
269 * The se_nacl->nacl_sess pointer will be set to the
270 * last active I_T Nexus for each struct se_node_acl.
271 */
272 se_nacl->nacl_sess = se_sess;
273
274 list_add_tail(&se_sess->sess_acl_list,
275 &se_nacl->acl_sess_list);
276 spin_unlock_irq(&se_nacl->nacl_sess_lock);
277 }
278 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
279
Andy Grover6708bb22011-06-08 10:36:43 -0700280 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000281 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800282}
283EXPORT_SYMBOL(__transport_register_session);
284
285void transport_register_session(
286 struct se_portal_group *se_tpg,
287 struct se_node_acl *se_nacl,
288 struct se_session *se_sess,
289 void *fabric_sess_ptr)
290{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700291 unsigned long flags;
292
293 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700295 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800296}
297EXPORT_SYMBOL(transport_register_session);
298
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800299static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800300{
301 struct se_session *se_sess = container_of(kref,
302 struct se_session, sess_kref);
303 struct se_portal_group *se_tpg = se_sess->se_tpg;
304
305 se_tpg->se_tpg_tfo->close_session(se_sess);
306}
307
308void target_get_session(struct se_session *se_sess)
309{
310 kref_get(&se_sess->sess_kref);
311}
312EXPORT_SYMBOL(target_get_session);
313
Jörn Engel33933a02012-05-11 10:35:08 -0400314void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800315{
Joern Engel41492682012-05-18 13:57:19 -0700316 struct se_portal_group *tpg = se_sess->se_tpg;
317
318 if (tpg->se_tpg_tfo->put_session != NULL) {
319 tpg->se_tpg_tfo->put_session(se_sess);
320 return;
321 }
Jörn Engel33933a02012-05-11 10:35:08 -0400322 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800323}
324EXPORT_SYMBOL(target_put_session);
325
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800326static void target_complete_nacl(struct kref *kref)
327{
328 struct se_node_acl *nacl = container_of(kref,
329 struct se_node_acl, acl_kref);
330
331 complete(&nacl->acl_free_comp);
332}
333
334void target_put_nacl(struct se_node_acl *nacl)
335{
336 kref_put(&nacl->acl_kref, target_complete_nacl);
337}
338
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339void transport_deregister_session_configfs(struct se_session *se_sess)
340{
341 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700342 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800343 /*
344 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
345 */
346 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700347 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700348 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800349 if (se_nacl->acl_stop == 0)
350 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800351 /*
352 * If the session list is empty, then clear the pointer.
353 * Otherwise, set the struct se_session pointer from the tail
354 * element of the per struct se_node_acl active session list.
355 */
356 if (list_empty(&se_nacl->acl_sess_list))
357 se_nacl->nacl_sess = NULL;
358 else {
359 se_nacl->nacl_sess = container_of(
360 se_nacl->acl_sess_list.prev,
361 struct se_session, sess_acl_list);
362 }
Roland Dreier23388862011-06-22 01:02:21 -0700363 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800364 }
365}
366EXPORT_SYMBOL(transport_deregister_session_configfs);
367
368void transport_free_session(struct se_session *se_sess)
369{
370 kmem_cache_free(se_sess_cache, se_sess);
371}
372EXPORT_SYMBOL(transport_free_session);
373
374void transport_deregister_session(struct se_session *se_sess)
375{
376 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800377 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800378 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700379 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800380 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800381
Andy Grover6708bb22011-06-08 10:36:43 -0700382 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383 transport_free_session(se_sess);
384 return;
385 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800386 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800387
Roland Dreiere63a8e12011-08-12 16:01:02 -0700388 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389 list_del(&se_sess->sess_list);
390 se_sess->se_tpg = NULL;
391 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700392 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800393
394 /*
395 * Determine if we need to do extra work for this initiator node's
396 * struct se_node_acl if it had been previously dynamically generated.
397 */
398 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800399
Nicholas Bellinger01468342012-03-10 14:32:52 -0800400 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
401 if (se_nacl && se_nacl->dynamic_node_acl) {
402 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
403 list_del(&se_nacl->acl_list);
404 se_tpg->num_node_acls--;
405 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
406 core_tpg_wait_for_nacl_pr_ref(se_nacl);
407 core_free_device_list_for_node(se_nacl, se_tpg);
408 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
409
410 comp_nacl = false;
411 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800412 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800413 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800414 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800415
Andy Grover6708bb22011-06-08 10:36:43 -0700416 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000417 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800418 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800419 * If last kref is dropping now for an explict NodeACL, awake sleeping
420 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
421 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800422 */
423 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800424 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800425
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800426 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800427}
428EXPORT_SYMBOL(transport_deregister_session);
429
430/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700431 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800432 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400433static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400435 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800436 unsigned long flags;
437
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400438 if (!dev)
439 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400441 if (cmd->transport_state & CMD_T_BUSY)
442 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800443
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400444 spin_lock_irqsave(&dev->execute_task_lock, flags);
445 if (cmd->state_active) {
446 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400447 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800448 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400449 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450}
451
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400452static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800453{
454 unsigned long flags;
455
Andy Grovera1d8b492011-05-02 17:12:10 -0700456 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457 /*
458 * Determine if IOCTL context caller in requesting the stopping of this
459 * command for LUN shutdown purposes.
460 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500461 if (cmd->transport_state & CMD_T_LUN_STOP) {
462 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
463 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800464
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500465 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400466 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400467 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700468 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469
Andy Grovera1d8b492011-05-02 17:12:10 -0700470 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471 return 1;
472 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400473
474 if (remove_from_lists) {
475 target_remove_from_state_list(cmd);
476
477 /*
478 * Clear struct se_cmd->se_lun before the handoff to FE.
479 */
480 cmd->se_lun = NULL;
481 }
482
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800483 /*
484 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000485 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800486 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500487 if (cmd->transport_state & CMD_T_STOP) {
488 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
489 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000490 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491
Andy Grovera1d8b492011-05-02 17:12:10 -0700492 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493
Andy Grovera1d8b492011-05-02 17:12:10 -0700494 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800495 return 1;
496 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400498 cmd->transport_state &= ~CMD_T_ACTIVE;
499 if (remove_from_lists) {
500 /*
501 * Some fabric modules like tcm_loop can release
502 * their internally allocated I/O reference now and
503 * struct se_cmd now.
504 *
505 * Fabric modules are expected to return '1' here if the
506 * se_cmd being passed is released at this point,
507 * or zero if not being released.
508 */
509 if (cmd->se_tfo->check_stop_free != NULL) {
510 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
511 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800512 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400513 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800514
Andy Grovera1d8b492011-05-02 17:12:10 -0700515 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800516 return 0;
517}
518
519static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
520{
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400521 return transport_cmd_check_stop(cmd, true);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800522}
523
524static void transport_lun_remove_cmd(struct se_cmd *cmd)
525{
Andy Grovere3d6f902011-07-19 08:55:10 +0000526 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800527 unsigned long flags;
528
529 if (!lun)
530 return;
531
Andy Grovera1d8b492011-05-02 17:12:10 -0700532 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500533 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
534 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400535 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800536 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700537 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800538
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800539 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500540 if (!list_empty(&cmd->se_lun_node))
541 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800542 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
543}
544
545void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
546{
Andy Groverc8e31f22012-01-19 13:39:17 -0800547 if (!(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellinger8dc52b52011-10-09 02:02:51 -0700548 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549
550 if (transport_cmd_check_stop_to_fabric(cmd))
551 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400552 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200553 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554}
555
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400556static void target_complete_failure_work(struct work_struct *work)
557{
558 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
559
Christoph Hellwigde103c92012-11-06 12:24:09 -0800560 transport_generic_request_failure(cmd,
561 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400562}
563
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200564/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200565 * Used when asking transport to copy Sense Data from the underlying
566 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200567 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200568static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200569{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200570 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200571
572 WARN_ON(!cmd->se_lun);
573
574 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200575 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200576
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200577 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
578 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200579
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700580 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200581
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200582 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200583 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700584 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200585}
586
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400587void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400589 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400590 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400593 cmd->scsi_status = scsi_status;
594
595
Andy Grovera1d8b492011-05-02 17:12:10 -0700596 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400597 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200600 dev->transport->transport_complete(cmd,
601 cmd->t_data_sg,
602 transport_get_sense_buffer(cmd));
603 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800605 }
606
607 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400608 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800609 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400610 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700611 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400612 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800613 return;
614 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700615
616 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500617 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700618
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800619 /*
620 * Check for case where an explict ABORT_TASK has been received
621 * and transport_wait_for_tasks() will be waiting for completion..
622 */
623 if (cmd->transport_state & CMD_T_ABORTED &&
624 cmd->transport_state & CMD_T_STOP) {
625 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
626 complete(&cmd->t_transport_stop_comp);
627 return;
628 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400629 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400631 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400633
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400634 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800635 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700636 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800637
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400638 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400640EXPORT_SYMBOL(target_complete_cmd);
641
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400642static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800643{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400644 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800645 unsigned long flags;
646
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800647 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400648 if (!cmd->state_active) {
649 list_add_tail(&cmd->state_list, &dev->state_list);
650 cmd->state_active = true;
651 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800652 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800653}
654
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700655/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700656 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700657 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400658static void transport_write_pending_qf(struct se_cmd *cmd);
659static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700660
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400661void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700662{
663 struct se_device *dev = container_of(work, struct se_device,
664 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700665 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700666 struct se_cmd *cmd, *cmd_tmp;
667
668 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700669 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
670 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700671
Roland Dreierbcac3642011-08-27 21:33:16 -0700672 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700673 list_del(&cmd->se_qf_node);
674 atomic_dec(&dev->dev_qf_count);
675 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700676
Andy Grover6708bb22011-06-08 10:36:43 -0700677 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700678 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400679 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700680 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
681 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400682
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400683 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
684 transport_write_pending_qf(cmd);
685 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
686 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700687 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700688}
689
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800690unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
691{
692 switch (cmd->data_direction) {
693 case DMA_NONE:
694 return "NONE";
695 case DMA_FROM_DEVICE:
696 return "READ";
697 case DMA_TO_DEVICE:
698 return "WRITE";
699 case DMA_BIDIRECTIONAL:
700 return "BIDI";
701 default:
702 break;
703 }
704
705 return "UNKNOWN";
706}
707
708void transport_dump_dev_state(
709 struct se_device *dev,
710 char *b,
711 int *bl)
712{
713 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400714 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800715 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400716 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800717 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800718
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400719 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700720 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400721 dev->dev_attrib.block_size,
722 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800723 *bl += sprintf(b + *bl, " ");
724}
725
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800726void transport_dump_vpd_proto_id(
727 struct t10_vpd *vpd,
728 unsigned char *p_buf,
729 int p_buf_len)
730{
731 unsigned char buf[VPD_TMP_BUF_SIZE];
732 int len;
733
734 memset(buf, 0, VPD_TMP_BUF_SIZE);
735 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
736
737 switch (vpd->protocol_identifier) {
738 case 0x00:
739 sprintf(buf+len, "Fibre Channel\n");
740 break;
741 case 0x10:
742 sprintf(buf+len, "Parallel SCSI\n");
743 break;
744 case 0x20:
745 sprintf(buf+len, "SSA\n");
746 break;
747 case 0x30:
748 sprintf(buf+len, "IEEE 1394\n");
749 break;
750 case 0x40:
751 sprintf(buf+len, "SCSI Remote Direct Memory Access"
752 " Protocol\n");
753 break;
754 case 0x50:
755 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
756 break;
757 case 0x60:
758 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
759 break;
760 case 0x70:
761 sprintf(buf+len, "Automation/Drive Interface Transport"
762 " Protocol\n");
763 break;
764 case 0x80:
765 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
766 break;
767 default:
768 sprintf(buf+len, "Unknown 0x%02x\n",
769 vpd->protocol_identifier);
770 break;
771 }
772
773 if (p_buf)
774 strncpy(p_buf, buf, p_buf_len);
775 else
Andy Grover6708bb22011-06-08 10:36:43 -0700776 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800777}
778
779void
780transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
781{
782 /*
783 * Check if the Protocol Identifier Valid (PIV) bit is set..
784 *
785 * from spc3r23.pdf section 7.5.1
786 */
787 if (page_83[1] & 0x80) {
788 vpd->protocol_identifier = (page_83[0] & 0xf0);
789 vpd->protocol_identifier_set = 1;
790 transport_dump_vpd_proto_id(vpd, NULL, 0);
791 }
792}
793EXPORT_SYMBOL(transport_set_vpd_proto_id);
794
795int transport_dump_vpd_assoc(
796 struct t10_vpd *vpd,
797 unsigned char *p_buf,
798 int p_buf_len)
799{
800 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000801 int ret = 0;
802 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800803
804 memset(buf, 0, VPD_TMP_BUF_SIZE);
805 len = sprintf(buf, "T10 VPD Identifier Association: ");
806
807 switch (vpd->association) {
808 case 0x00:
809 sprintf(buf+len, "addressed logical unit\n");
810 break;
811 case 0x10:
812 sprintf(buf+len, "target port\n");
813 break;
814 case 0x20:
815 sprintf(buf+len, "SCSI target device\n");
816 break;
817 default:
818 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000819 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800820 break;
821 }
822
823 if (p_buf)
824 strncpy(p_buf, buf, p_buf_len);
825 else
Andy Grover6708bb22011-06-08 10:36:43 -0700826 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800827
828 return ret;
829}
830
831int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
832{
833 /*
834 * The VPD identification association..
835 *
836 * from spc3r23.pdf Section 7.6.3.1 Table 297
837 */
838 vpd->association = (page_83[1] & 0x30);
839 return transport_dump_vpd_assoc(vpd, NULL, 0);
840}
841EXPORT_SYMBOL(transport_set_vpd_assoc);
842
843int transport_dump_vpd_ident_type(
844 struct t10_vpd *vpd,
845 unsigned char *p_buf,
846 int p_buf_len)
847{
848 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000849 int ret = 0;
850 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800851
852 memset(buf, 0, VPD_TMP_BUF_SIZE);
853 len = sprintf(buf, "T10 VPD Identifier Type: ");
854
855 switch (vpd->device_identifier_type) {
856 case 0x00:
857 sprintf(buf+len, "Vendor specific\n");
858 break;
859 case 0x01:
860 sprintf(buf+len, "T10 Vendor ID based\n");
861 break;
862 case 0x02:
863 sprintf(buf+len, "EUI-64 based\n");
864 break;
865 case 0x03:
866 sprintf(buf+len, "NAA\n");
867 break;
868 case 0x04:
869 sprintf(buf+len, "Relative target port identifier\n");
870 break;
871 case 0x08:
872 sprintf(buf+len, "SCSI name string\n");
873 break;
874 default:
875 sprintf(buf+len, "Unsupported: 0x%02x\n",
876 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000877 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878 break;
879 }
880
Andy Grovere3d6f902011-07-19 08:55:10 +0000881 if (p_buf) {
882 if (p_buf_len < strlen(buf)+1)
883 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800884 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000885 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700886 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000887 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800888
889 return ret;
890}
891
892int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
893{
894 /*
895 * The VPD identifier type..
896 *
897 * from spc3r23.pdf Section 7.6.3.1 Table 298
898 */
899 vpd->device_identifier_type = (page_83[1] & 0x0f);
900 return transport_dump_vpd_ident_type(vpd, NULL, 0);
901}
902EXPORT_SYMBOL(transport_set_vpd_ident_type);
903
904int transport_dump_vpd_ident(
905 struct t10_vpd *vpd,
906 unsigned char *p_buf,
907 int p_buf_len)
908{
909 unsigned char buf[VPD_TMP_BUF_SIZE];
910 int ret = 0;
911
912 memset(buf, 0, VPD_TMP_BUF_SIZE);
913
914 switch (vpd->device_identifier_code_set) {
915 case 0x01: /* Binary */
916 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
917 &vpd->device_identifier[0]);
918 break;
919 case 0x02: /* ASCII */
920 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
921 &vpd->device_identifier[0]);
922 break;
923 case 0x03: /* UTF-8 */
924 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
925 &vpd->device_identifier[0]);
926 break;
927 default:
928 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
929 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000930 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800931 break;
932 }
933
934 if (p_buf)
935 strncpy(p_buf, buf, p_buf_len);
936 else
Andy Grover6708bb22011-06-08 10:36:43 -0700937 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800938
939 return ret;
940}
941
942int
943transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
944{
945 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900946 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800947
948 /*
949 * The VPD Code Set (encoding)
950 *
951 * from spc3r23.pdf Section 7.6.3.1 Table 296
952 */
953 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
954 switch (vpd->device_identifier_code_set) {
955 case 0x01: /* Binary */
956 vpd->device_identifier[j++] =
957 hex_str[vpd->device_identifier_type];
958 while (i < (4 + page_83[3])) {
959 vpd->device_identifier[j++] =
960 hex_str[(page_83[i] & 0xf0) >> 4];
961 vpd->device_identifier[j++] =
962 hex_str[page_83[i] & 0x0f];
963 i++;
964 }
965 break;
966 case 0x02: /* ASCII */
967 case 0x03: /* UTF-8 */
968 while (i < (4 + page_83[3]))
969 vpd->device_identifier[j++] = page_83[i++];
970 break;
971 default:
972 break;
973 }
974
975 return transport_dump_vpd_ident(vpd, NULL, 0);
976}
977EXPORT_SYMBOL(transport_set_vpd_ident);
978
Christoph Hellwigde103c92012-11-06 12:24:09 -0800979sense_reason_t
980target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400981{
982 struct se_device *dev = cmd->se_dev;
983
984 if (cmd->unknown_data_length) {
985 cmd->data_length = size;
986 } else if (size != cmd->data_length) {
987 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
988 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
989 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
990 cmd->data_length, size, cmd->t_task_cdb[0]);
991
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400992 if (cmd->data_direction == DMA_TO_DEVICE) {
993 pr_err("Rejecting underflow/overflow"
994 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -0800995 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400996 }
997 /*
998 * Reject READ_* or WRITE_* with overflow/underflow for
999 * type SCF_SCSI_DATA_CDB.
1000 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001001 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001002 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1003 " CDB on non 512-byte sector setup subsystem"
1004 " plugin: %s\n", dev->transport->name);
1005 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001006 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001007 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001008 /*
1009 * For the overflow case keep the existing fabric provided
1010 * ->data_length. Otherwise for the underflow case, reset
1011 * ->data_length to the smaller SCSI expected data transfer
1012 * length.
1013 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001014 if (size > cmd->data_length) {
1015 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1016 cmd->residual_count = (size - cmd->data_length);
1017 } else {
1018 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1019 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001020 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001021 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001022 }
1023
1024 return 0;
1025
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001026}
1027
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001028/*
1029 * Used by fabric modules containing a local struct se_cmd within their
1030 * fabric dependent per I/O descriptor.
1031 */
1032void transport_init_se_cmd(
1033 struct se_cmd *cmd,
1034 struct target_core_fabric_ops *tfo,
1035 struct se_session *se_sess,
1036 u32 data_length,
1037 int data_direction,
1038 int task_attr,
1039 unsigned char *sense_buffer)
1040{
Andy Grover5951146d2011-07-19 10:26:37 +00001041 INIT_LIST_HEAD(&cmd->se_lun_node);
1042 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001043 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001044 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001045 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001046 init_completion(&cmd->transport_lun_fe_stop_comp);
1047 init_completion(&cmd->transport_lun_stop_comp);
1048 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001049 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001050 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001051 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001052 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001053
1054 cmd->se_tfo = tfo;
1055 cmd->se_sess = se_sess;
1056 cmd->data_length = data_length;
1057 cmd->data_direction = data_direction;
1058 cmd->sam_task_attr = task_attr;
1059 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001060
1061 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001062}
1063EXPORT_SYMBOL(transport_init_se_cmd);
1064
Christoph Hellwigde103c92012-11-06 12:24:09 -08001065static sense_reason_t
1066transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001067{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001068 struct se_device *dev = cmd->se_dev;
1069
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001070 /*
1071 * Check if SAM Task Attribute emulation is enabled for this
1072 * struct se_device storage object
1073 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001074 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001075 return 0;
1076
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001077 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001078 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001079 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001080 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001081 }
1082 /*
1083 * Used to determine when ORDERED commands should go from
1084 * Dormant to Active status.
1085 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001086 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001087 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001088 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001089 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001090 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001091 return 0;
1092}
1093
Christoph Hellwigde103c92012-11-06 12:24:09 -08001094sense_reason_t
1095target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001096{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001097 struct se_device *dev = cmd->se_dev;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001098 unsigned long flags;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001099 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001100
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001101 /*
1102 * Ensure that the received CDB is less than the max (252 + 8) bytes
1103 * for VARIABLE_LENGTH_CMD
1104 */
1105 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001106 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1108 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001109 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001110 }
1111 /*
1112 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1113 * allocate the additional extended CDB buffer now.. Otherwise
1114 * setup the pointer from __t_task_cdb to t_task_cdb.
1115 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001116 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1117 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001118 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001119 if (!cmd->t_task_cdb) {
1120 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001121 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001122 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001123 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001124 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001125 }
1126 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001127 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001128 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001129 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001130 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001131 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001132
1133 /*
1134 * Check for an existing UNIT ATTENTION condition
1135 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001136 ret = target_scsi3_ua_check(cmd);
1137 if (ret)
1138 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001139
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001140 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001141 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001142 return ret;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001143
1144 ret = target_check_reservation(cmd);
1145 if (ret)
1146 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001147
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001148 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001149 if (ret)
1150 return ret;
1151
1152 ret = transport_check_alloc_task_attr(cmd);
1153 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001155
1156 spin_lock_irqsave(&cmd->t_state_lock, flags);
1157 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1158 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1159
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001160 spin_lock(&cmd->se_lun->lun_sep_lock);
1161 if (cmd->se_lun->lun_sep)
1162 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1163 spin_unlock(&cmd->se_lun->lun_sep_lock);
1164 return 0;
1165}
Andy Grovera12f41f2012-04-03 15:51:20 -07001166EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001167
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001168/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001169 * Used by fabric module frontends to queue tasks directly.
1170 * Many only be used from process context only
1171 */
1172int transport_handle_cdb_direct(
1173 struct se_cmd *cmd)
1174{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001175 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001176
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001177 if (!cmd->se_lun) {
1178 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001179 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001180 return -EINVAL;
1181 }
1182 if (in_interrupt()) {
1183 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001184 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001185 " from interrupt context\n");
1186 return -EINVAL;
1187 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001188 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001189 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1190 * outstanding descriptors are handled correctly during shutdown via
1191 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001192 *
1193 * Also, we don't take cmd->t_state_lock here as we only expect
1194 * this to be called for initial descriptor submission.
1195 */
1196 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001197 cmd->transport_state |= CMD_T_ACTIVE;
1198
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001199 /*
1200 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1201 * so follow TRANSPORT_NEW_CMD processing thread context usage
1202 * and call transport_generic_request_failure() if necessary..
1203 */
1204 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001205 if (ret)
1206 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001207 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001208}
1209EXPORT_SYMBOL(transport_handle_cdb_direct);
1210
Christoph Hellwigde103c92012-11-06 12:24:09 -08001211static sense_reason_t
1212transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1213 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1214{
1215 if (!sgl || !sgl_count)
1216 return 0;
1217
1218 /*
1219 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1220 * scatterlists already have been set to follow what the fabric
1221 * passes for the original expected data transfer length.
1222 */
1223 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1224 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1225 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1226 return TCM_INVALID_CDB_FIELD;
1227 }
1228
1229 cmd->t_data_sg = sgl;
1230 cmd->t_data_nents = sgl_count;
1231
1232 if (sgl_bidi && sgl_bidi_count) {
1233 cmd->t_bidi_data_sg = sgl_bidi;
1234 cmd->t_bidi_data_nents = sgl_bidi_count;
1235 }
1236 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1237 return 0;
1238}
1239
Nicholas Bellingera0267572012-10-01 17:23:22 -07001240/*
1241 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1242 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001243 *
1244 * @se_cmd: command descriptor to submit
1245 * @se_sess: associated se_sess for endpoint
1246 * @cdb: pointer to SCSI CDB
1247 * @sense: pointer to SCSI sense buffer
1248 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1249 * @data_length: fabric expected data transfer length
1250 * @task_addr: SAM task attribute
1251 * @data_dir: DMA data direction
1252 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001253 * @sgl: struct scatterlist memory for unidirectional mapping
1254 * @sgl_count: scatterlist count for unidirectional mapping
1255 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1256 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001257 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001258 * Returns non zero to signal active I/O shutdown failure. All other
1259 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1260 * but still return zero here.
1261 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001262 * This may only be called from process context, and also currently
1263 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001264 */
1265int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001266 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001267 u32 data_length, int task_attr, int data_dir, int flags,
1268 struct scatterlist *sgl, u32 sgl_count,
1269 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001270{
1271 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001272 sense_reason_t rc;
1273 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001274
1275 se_tpg = se_sess->se_tpg;
1276 BUG_ON(!se_tpg);
1277 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1278 BUG_ON(in_interrupt());
1279 /*
1280 * Initialize se_cmd for target operation. From this point
1281 * exceptions are handled by sending exception status via
1282 * target_core_fabric_ops->queue_status() callback
1283 */
1284 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1285 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001286 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1287 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001288 /*
1289 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1290 * se_sess->sess_cmd_list. A second kref_get here is necessary
1291 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1292 * kref_put() to happen during fabric packet acknowledgement.
1293 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001294 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1295 if (ret)
1296 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001297 /*
1298 * Signal bidirectional data payloads to target-core
1299 */
1300 if (flags & TARGET_SCF_BIDI_OP)
1301 se_cmd->se_cmd_flags |= SCF_BIDI;
1302 /*
1303 * Locate se_lun pointer and attach it to struct se_cmd
1304 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001305 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1306 if (rc) {
1307 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001308 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001309 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001310 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001311
Andy Grovera12f41f2012-04-03 15:51:20 -07001312 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001313 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001314 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001315 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001316 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001317 /*
1318 * When a non zero sgl_count has been passed perform SGL passthrough
1319 * mapping for pre-allocated fabric memory instead of having target
1320 * core perform an internal SGL allocation..
1321 */
1322 if (sgl_count != 0) {
1323 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001324
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001325 /*
1326 * A work-around for tcm_loop as some userspace code via
1327 * scsi-generic do not memset their associated read buffers,
1328 * so go ahead and do that here for type non-data CDBs. Also
1329 * note that this is currently guaranteed to be a single SGL
1330 * for this case by target core in target_setup_cmd_from_cdb()
1331 * -> transport_generic_cmd_sequencer().
1332 */
1333 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1334 se_cmd->data_direction == DMA_FROM_DEVICE) {
1335 unsigned char *buf = NULL;
1336
1337 if (sgl)
1338 buf = kmap(sg_page(sgl)) + sgl->offset;
1339
1340 if (buf) {
1341 memset(buf, 0, sgl->length);
1342 kunmap(sg_page(sgl));
1343 }
1344 }
1345
Nicholas Bellingera0267572012-10-01 17:23:22 -07001346 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1347 sgl_bidi, sgl_bidi_count);
1348 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001349 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001350 return 0;
1351 }
1352 }
Andy Grover11e319e2012-04-03 15:51:28 -07001353 /*
1354 * Check if we need to delay processing because of ALUA
1355 * Active/NonOptimized primary access state..
1356 */
1357 core_alua_check_nonop_delay(se_cmd);
1358
Nicholas Bellingera6360782011-11-18 20:36:22 -08001359 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001360 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001361}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001362EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1363
1364/*
1365 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1366 *
1367 * @se_cmd: command descriptor to submit
1368 * @se_sess: associated se_sess for endpoint
1369 * @cdb: pointer to SCSI CDB
1370 * @sense: pointer to SCSI sense buffer
1371 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1372 * @data_length: fabric expected data transfer length
1373 * @task_addr: SAM task attribute
1374 * @data_dir: DMA data direction
1375 * @flags: flags for command submission from target_sc_flags_tables
1376 *
1377 * Returns non zero to signal active I/O shutdown failure. All other
1378 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1379 * but still return zero here.
1380 *
1381 * This may only be called from process context, and also currently
1382 * assumes internal allocation of fabric payload buffer by target-core.
1383 *
1384 * It also assumes interal target core SGL memory allocation.
1385 */
1386int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1387 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1388 u32 data_length, int task_attr, int data_dir, int flags)
1389{
1390 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1391 unpacked_lun, data_length, task_attr, data_dir,
1392 flags, NULL, 0, NULL, 0);
1393}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001394EXPORT_SYMBOL(target_submit_cmd);
1395
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001396static void target_complete_tmr_failure(struct work_struct *work)
1397{
1398 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1399
1400 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1401 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001402}
1403
Andy Groverea98d7f2012-01-19 13:39:21 -08001404/**
1405 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1406 * for TMR CDBs
1407 *
1408 * @se_cmd: command descriptor to submit
1409 * @se_sess: associated se_sess for endpoint
1410 * @sense: pointer to SCSI sense buffer
1411 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1412 * @fabric_context: fabric context for TMR req
1413 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001414 * @gfp: gfp type for caller
1415 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001416 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001417 *
1418 * Callable from all contexts.
1419 **/
1420
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001421int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001422 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001423 void *fabric_tmr_ptr, unsigned char tm_type,
1424 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001425{
1426 struct se_portal_group *se_tpg;
1427 int ret;
1428
1429 se_tpg = se_sess->se_tpg;
1430 BUG_ON(!se_tpg);
1431
1432 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1433 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001434 /*
1435 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1436 * allocation failure.
1437 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001438 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001439 if (ret < 0)
1440 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001441
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001442 if (tm_type == TMR_ABORT_TASK)
1443 se_cmd->se_tmr_req->ref_task_tag = tag;
1444
Andy Groverea98d7f2012-01-19 13:39:21 -08001445 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001446 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1447 if (ret) {
1448 core_tmr_release_req(se_cmd->se_tmr_req);
1449 return ret;
1450 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001451
Andy Groverea98d7f2012-01-19 13:39:21 -08001452 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1453 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001454 /*
1455 * For callback during failure handling, push this work off
1456 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1457 */
1458 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1459 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001460 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001461 }
1462 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001463 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001464}
1465EXPORT_SYMBOL(target_submit_tmr);
1466
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001467/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001468 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001469 * has completed.
1470 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001471bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001472{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001473 bool was_active = false;
1474
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001475 if (cmd->transport_state & CMD_T_BUSY) {
1476 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001477 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1478
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001479 pr_debug("cmd %p waiting to complete\n", cmd);
1480 wait_for_completion(&cmd->task_stop_comp);
1481 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001482
1483 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001484 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1485 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001486 was_active = true;
1487 }
1488
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001489 return was_active;
1490}
1491
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001492/*
1493 * Handle SAM-esque emulation for generic transport request failures.
1494 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001495void transport_generic_request_failure(struct se_cmd *cmd,
1496 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001497{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001498 int ret = 0;
1499
Andy Grover6708bb22011-06-08 10:36:43 -07001500 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001501 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001502 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001503 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001504 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001505 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001506 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001507 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1508 (cmd->transport_state & CMD_T_STOP) != 0,
1509 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001510
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001511 /*
1512 * For SAM Task Attribute emulation for failed struct se_cmd
1513 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001514 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001515
Christoph Hellwigde103c92012-11-06 12:24:09 -08001516 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001517 case TCM_NON_EXISTENT_LUN:
1518 case TCM_UNSUPPORTED_SCSI_OPCODE:
1519 case TCM_INVALID_CDB_FIELD:
1520 case TCM_INVALID_PARAMETER_LIST:
1521 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1522 case TCM_UNKNOWN_MODE_PAGE:
1523 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001524 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001525 case TCM_CHECK_CONDITION_ABORT_CMD:
1526 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1527 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001528 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001529 case TCM_OUT_OF_RESOURCES:
1530 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1531 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001532 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001533 /*
1534 * No SENSE Data payload for this case, set SCSI Status
1535 * and queue the response to $FABRIC_MOD.
1536 *
1537 * Uses linux/include/scsi/scsi.h SAM status codes defs
1538 */
1539 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1540 /*
1541 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1542 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1543 * CONFLICT STATUS.
1544 *
1545 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1546 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001547 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001548 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001549 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001550 cmd->orig_fe_lun, 0x2C,
1551 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1552
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001553 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001554 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001555 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001556 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001557 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001558 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001559 cmd->t_task_cdb[0], sense_reason);
1560 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001561 break;
1562 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001563
Christoph Hellwigde103c92012-11-06 12:24:09 -08001564 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001565 if (ret == -EAGAIN || ret == -ENOMEM)
1566 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001567
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001568check_stop:
1569 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001570 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001571 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001572 return;
1573
1574queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001575 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1576 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001577}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001578EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001579
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001580static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001581{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001582 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001583
1584 spin_lock_irq(&cmd->t_state_lock);
1585 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1586 spin_unlock_irq(&cmd->t_state_lock);
1587
Christoph Hellwigde103c92012-11-06 12:24:09 -08001588 if (cmd->execute_cmd) {
1589 ret = cmd->execute_cmd(cmd);
1590 if (ret) {
1591 spin_lock_irq(&cmd->t_state_lock);
1592 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1593 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001594
Christoph Hellwigde103c92012-11-06 12:24:09 -08001595 transport_generic_request_failure(cmd, ret);
1596 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001597 }
1598}
1599
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001600static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001601{
1602 struct se_device *dev = cmd->se_dev;
1603
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001604 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1605 return false;
1606
1607 /*
1608 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1609 * to allow the passed struct se_cmd list of tasks to the front of the list.
1610 */
1611 switch (cmd->sam_task_attr) {
1612 case MSG_HEAD_TAG:
1613 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1614 "se_ordered_id: %u\n",
1615 cmd->t_task_cdb[0], cmd->se_ordered_id);
1616 return false;
1617 case MSG_ORDERED_TAG:
1618 atomic_inc(&dev->dev_ordered_sync);
1619 smp_mb__after_atomic_inc();
1620
1621 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1622 " se_ordered_id: %u\n",
1623 cmd->t_task_cdb[0], cmd->se_ordered_id);
1624
1625 /*
1626 * Execute an ORDERED command if no other older commands
1627 * exist that need to be completed first.
1628 */
1629 if (!atomic_read(&dev->simple_cmds))
1630 return false;
1631 break;
1632 default:
1633 /*
1634 * For SIMPLE and UNTAGGED Task Attribute commands
1635 */
1636 atomic_inc(&dev->simple_cmds);
1637 smp_mb__after_atomic_inc();
1638 break;
1639 }
1640
1641 if (atomic_read(&dev->dev_ordered_sync) == 0)
1642 return false;
1643
1644 spin_lock(&dev->delayed_cmd_lock);
1645 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1646 spin_unlock(&dev->delayed_cmd_lock);
1647
1648 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1649 " delayed CMD list, se_ordered_id: %u\n",
1650 cmd->t_task_cdb[0], cmd->sam_task_attr,
1651 cmd->se_ordered_id);
1652 return true;
1653}
1654
1655void target_execute_cmd(struct se_cmd *cmd)
1656{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001657 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001658 * If the received CDB has aleady been aborted stop processing it here.
1659 */
1660 if (transport_check_aborted_status(cmd, 1))
1661 return;
1662
1663 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001664 * Determine if IOCTL context caller in requesting the stopping of this
1665 * command for LUN shutdown purposes.
1666 */
1667 spin_lock_irq(&cmd->t_state_lock);
1668 if (cmd->transport_state & CMD_T_LUN_STOP) {
1669 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1670 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1671
1672 cmd->transport_state &= ~CMD_T_ACTIVE;
1673 spin_unlock_irq(&cmd->t_state_lock);
1674 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001675 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001676 }
1677 /*
1678 * Determine if frontend context caller is requesting the stopping of
1679 * this command for frontend exceptions.
1680 */
1681 if (cmd->transport_state & CMD_T_STOP) {
1682 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1683 __func__, __LINE__,
1684 cmd->se_tfo->get_task_tag(cmd));
1685
1686 spin_unlock_irq(&cmd->t_state_lock);
1687 complete(&cmd->t_transport_stop_comp);
1688 return;
1689 }
1690
1691 cmd->t_state = TRANSPORT_PROCESSING;
1692 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001693
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001694 if (!target_handle_task_attr(cmd))
1695 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001696}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001697EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001698
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001699/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001700 * Process all commands up to the last received ORDERED task attribute which
1701 * requires another blocking boundary
1702 */
1703static void target_restart_delayed_cmds(struct se_device *dev)
1704{
1705 for (;;) {
1706 struct se_cmd *cmd;
1707
1708 spin_lock(&dev->delayed_cmd_lock);
1709 if (list_empty(&dev->delayed_cmd_list)) {
1710 spin_unlock(&dev->delayed_cmd_lock);
1711 break;
1712 }
1713
1714 cmd = list_entry(dev->delayed_cmd_list.next,
1715 struct se_cmd, se_delayed_node);
1716 list_del(&cmd->se_delayed_node);
1717 spin_unlock(&dev->delayed_cmd_lock);
1718
1719 __target_execute_cmd(cmd);
1720
1721 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1722 break;
1723 }
1724}
1725
1726/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001727 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001728 * and ordered cmds need to have their tasks added to the execution queue.
1729 */
1730static void transport_complete_task_attr(struct se_cmd *cmd)
1731{
Andy Grover5951146d2011-07-19 10:26:37 +00001732 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001733
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001734 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1735 return;
1736
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001737 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001738 atomic_dec(&dev->simple_cmds);
1739 smp_mb__after_atomic_dec();
1740 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001741 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001742 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1743 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001744 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001745 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001746 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001747 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1748 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001749 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001750 atomic_dec(&dev->dev_ordered_sync);
1751 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752
1753 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001754 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001755 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1756 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001757
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001758 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001759}
1760
Christoph Hellwige057f532011-10-17 13:56:41 -04001761static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001762{
1763 int ret = 0;
1764
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001765 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001766
1767 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1768 ret = cmd->se_tfo->queue_status(cmd);
1769 if (ret)
1770 goto out;
1771 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001772
1773 switch (cmd->data_direction) {
1774 case DMA_FROM_DEVICE:
1775 ret = cmd->se_tfo->queue_data_in(cmd);
1776 break;
1777 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001778 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001779 ret = cmd->se_tfo->queue_data_in(cmd);
1780 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001781 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001782 }
1783 /* Fall through for DMA_TO_DEVICE */
1784 case DMA_NONE:
1785 ret = cmd->se_tfo->queue_status(cmd);
1786 break;
1787 default:
1788 break;
1789 }
1790
Christoph Hellwige057f532011-10-17 13:56:41 -04001791out:
1792 if (ret < 0) {
1793 transport_handle_queue_full(cmd, cmd->se_dev);
1794 return;
1795 }
1796 transport_lun_remove_cmd(cmd);
1797 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001798}
1799
1800static void transport_handle_queue_full(
1801 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001802 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001803{
1804 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001805 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1806 atomic_inc(&dev->dev_qf_count);
1807 smp_mb__after_atomic_inc();
1808 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1809
1810 schedule_work(&cmd->se_dev->qf_work_queue);
1811}
1812
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001813static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001814{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001815 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001816 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001817
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001818 /*
1819 * Check if we need to move delayed/dormant tasks from cmds on the
1820 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1821 * Attribute.
1822 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001823 transport_complete_task_attr(cmd);
1824
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001825 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001826 * Check to schedule QUEUE_FULL work, or execute an existing
1827 * cmd->transport_qf_callback()
1828 */
1829 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1830 schedule_work(&cmd->se_dev->qf_work_queue);
1831
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001832 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001833 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001834 * the struct se_cmd in question.
1835 */
1836 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001837 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001838 ret = transport_send_check_condition_and_sense(
1839 cmd, 0, 1);
1840 if (ret == -EAGAIN || ret == -ENOMEM)
1841 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001842
Paolo Bonzini27a27092012-09-05 17:09:14 +02001843 transport_lun_remove_cmd(cmd);
1844 transport_cmd_check_stop_to_fabric(cmd);
1845 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001846 }
1847 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001848 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001849 * XDWRITE_READ_10 emulation.
1850 */
1851 if (cmd->transport_complete_callback)
1852 cmd->transport_complete_callback(cmd);
1853
1854 switch (cmd->data_direction) {
1855 case DMA_FROM_DEVICE:
1856 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001857 if (cmd->se_lun->lun_sep) {
1858 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001859 cmd->data_length;
1860 }
1861 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001862
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001863 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001864 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001865 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001866 break;
1867 case DMA_TO_DEVICE:
1868 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001869 if (cmd->se_lun->lun_sep) {
1870 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001871 cmd->data_length;
1872 }
1873 spin_unlock(&cmd->se_lun->lun_sep_lock);
1874 /*
1875 * Check if we need to send READ payload for BIDI-COMMAND
1876 */
Andy Groverec98f782011-07-20 19:28:46 +00001877 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001878 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001879 if (cmd->se_lun->lun_sep) {
1880 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001881 cmd->data_length;
1882 }
1883 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001884 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001885 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001886 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001887 break;
1888 }
1889 /* Fall through for DMA_TO_DEVICE */
1890 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001891 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001892 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001893 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001894 break;
1895 default:
1896 break;
1897 }
1898
1899 transport_lun_remove_cmd(cmd);
1900 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001901 return;
1902
1903queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001904 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001905 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001906 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1907 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908}
1909
Andy Grover6708bb22011-06-08 10:36:43 -07001910static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001911{
Andy Groverec98f782011-07-20 19:28:46 +00001912 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001913 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001914
Andy Grover6708bb22011-06-08 10:36:43 -07001915 for_each_sg(sgl, sg, nents, count)
1916 __free_page(sg_page(sg));
1917
1918 kfree(sgl);
1919}
1920
1921static inline void transport_free_pages(struct se_cmd *cmd)
1922{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001923 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001924 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001925
Andy Grover6708bb22011-06-08 10:36:43 -07001926 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001927 cmd->t_data_sg = NULL;
1928 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001929
Andy Grover6708bb22011-06-08 10:36:43 -07001930 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001931 cmd->t_bidi_data_sg = NULL;
1932 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001933}
1934
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001935/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001936 * transport_release_cmd - free a command
1937 * @cmd: command to free
1938 *
1939 * This routine unconditionally frees a command, and reference counting
1940 * or list removal must be done in the caller.
1941 */
1942static void transport_release_cmd(struct se_cmd *cmd)
1943{
1944 BUG_ON(!cmd->se_tfo);
1945
Andy Groverc8e31f22012-01-19 13:39:17 -08001946 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001947 core_tmr_release_req(cmd->se_tmr_req);
1948 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1949 kfree(cmd->t_task_cdb);
1950 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001951 * If this cmd has been setup with target_get_sess_cmd(), drop
1952 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001953 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001954 if (cmd->check_release != 0) {
1955 target_put_sess_cmd(cmd->se_sess, cmd);
1956 return;
1957 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001958 cmd->se_tfo->release_cmd(cmd);
1959}
1960
1961/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001962 * transport_put_cmd - release a reference to a command
1963 * @cmd: command to release
1964 *
1965 * This routine releases our reference to the command and frees it if possible.
1966 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001967static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001968{
1969 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001970
Andy Grovera1d8b492011-05-02 17:12:10 -07001971 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001972 if (atomic_read(&cmd->t_fe_count)) {
1973 if (!atomic_dec_and_test(&cmd->t_fe_count))
1974 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001975 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001976
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001977 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1978 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001979 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001980 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001981 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001983 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001984 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001985 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001986out_busy:
1987 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001988}
1989
Andy Grover49493142012-01-16 16:57:08 -08001990void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991{
Andy Groverec98f782011-07-20 19:28:46 +00001992 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001993 struct page **pages;
1994 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001995
Andy Grover05d1c7c2011-07-20 19:13:28 +00001996 /*
Andy Groverec98f782011-07-20 19:28:46 +00001997 * We need to take into account a possible offset here for fabrics like
1998 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
1999 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002000 */
Andy Grover49493142012-01-16 16:57:08 -08002001 if (!cmd->t_data_nents)
2002 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002003
2004 BUG_ON(!sg);
2005 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002006 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002007
Andy Grover49493142012-01-16 16:57:08 -08002008 /* >1 page. use vmap */
2009 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002010 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002011 return NULL;
2012
2013 /* convert sg[] to pages[] */
2014 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2015 pages[i] = sg_page(sg);
2016 }
2017
2018 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2019 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002020 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002021 return NULL;
2022
2023 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002024}
Andy Grover49493142012-01-16 16:57:08 -08002025EXPORT_SYMBOL(transport_kmap_data_sg);
2026
2027void transport_kunmap_data_sg(struct se_cmd *cmd)
2028{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002029 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002030 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002031 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002032 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002033 return;
2034 }
Andy Grover49493142012-01-16 16:57:08 -08002035
2036 vunmap(cmd->t_data_vmap);
2037 cmd->t_data_vmap = NULL;
2038}
2039EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002040
2041static int
2042transport_generic_get_mem(struct se_cmd *cmd)
2043{
Andy Groverec98f782011-07-20 19:28:46 +00002044 u32 length = cmd->data_length;
2045 unsigned int nents;
2046 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002047 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002048 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002049
Andy Groverec98f782011-07-20 19:28:46 +00002050 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2051 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2052 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002053 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002054
Andy Groverec98f782011-07-20 19:28:46 +00002055 cmd->t_data_nents = nents;
2056 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002057
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002058 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002059
Andy Groverec98f782011-07-20 19:28:46 +00002060 while (length) {
2061 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002062 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002063 if (!page)
2064 goto out;
2065
2066 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2067 length -= page_len;
2068 i++;
2069 }
2070 return 0;
2071
2072out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002073 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002074 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002075 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002076 }
2077 kfree(cmd->t_data_sg);
2078 cmd->t_data_sg = NULL;
2079 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002080}
2081
Andy Grovera1d8b492011-05-02 17:12:10 -07002082/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002083 * Allocate any required resources to execute the command. For writes we
2084 * might not have the payload yet, so notify the fabric via a call to
2085 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002087sense_reason_t
2088transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002089{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002090 int ret = 0;
2091
2092 /*
2093 * Determine is the TCM fabric module has already allocated physical
2094 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002095 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002096 */
Andy Groverec98f782011-07-20 19:28:46 +00002097 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2098 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002099 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002100 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002101 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002102 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002103
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002104 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002105
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002106 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002107 * If this command is not a write we can execute it right here,
2108 * for write buffers we need to notify the fabric driver first
2109 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002110 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002111 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002112 if (cmd->data_direction != DMA_TO_DEVICE) {
2113 target_execute_cmd(cmd);
2114 return 0;
2115 }
2116
2117 spin_lock_irq(&cmd->t_state_lock);
2118 cmd->t_state = TRANSPORT_WRITE_PENDING;
2119 spin_unlock_irq(&cmd->t_state_lock);
2120
2121 transport_cmd_check_stop(cmd, false);
2122
2123 ret = cmd->se_tfo->write_pending(cmd);
2124 if (ret == -EAGAIN || ret == -ENOMEM)
2125 goto queue_full;
2126
Christoph Hellwigde103c92012-11-06 12:24:09 -08002127 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2128 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002129
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002130 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002131
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002132queue_full:
2133 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2134 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2135 transport_handle_queue_full(cmd, cmd->se_dev);
2136 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002137}
Andy Grovera1d8b492011-05-02 17:12:10 -07002138EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002139
Christoph Hellwige057f532011-10-17 13:56:41 -04002140static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002141{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002142 int ret;
2143
2144 ret = cmd->se_tfo->write_pending(cmd);
2145 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002146 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2147 cmd);
2148 transport_handle_queue_full(cmd, cmd->se_dev);
2149 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002150}
2151
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002152void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002153{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002154 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002155 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002156 transport_wait_for_tasks(cmd);
2157
Christoph Hellwig35462972011-05-31 23:56:57 -04002158 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002159 } else {
2160 if (wait_for_tasks)
2161 transport_wait_for_tasks(cmd);
2162
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002163 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2164
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002165 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002166 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002167
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002168 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002169 }
2170}
2171EXPORT_SYMBOL(transport_generic_free_cmd);
2172
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002173/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2174 * @se_sess: session to reference
2175 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002176 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002177 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002178static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2179 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002180{
2181 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002182 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002183
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002184 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002185 /*
2186 * Add a second kref if the fabric caller is expecting to handle
2187 * fabric acknowledgement that requires two target_put_sess_cmd()
2188 * invocations before se_cmd descriptor release.
2189 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002190 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002191 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002192 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2193 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002194
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002195 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002196 if (se_sess->sess_tearing_down) {
2197 ret = -ESHUTDOWN;
2198 goto out;
2199 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002200 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2201 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002202
2203out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002204 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002205 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002206}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002207
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002208static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002209{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002210 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2211 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002212 unsigned long flags;
2213
2214 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2215 if (list_empty(&se_cmd->se_cmd_list)) {
2216 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002217 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002218 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002219 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002220 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2221 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2222 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002223 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002224 }
2225 list_del(&se_cmd->se_cmd_list);
2226 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2227
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002228 se_cmd->se_tfo->release_cmd(se_cmd);
2229}
2230
2231/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2232 * @se_sess: session to reference
2233 * @se_cmd: command descriptor to drop
2234 */
2235int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2236{
2237 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002238}
2239EXPORT_SYMBOL(target_put_sess_cmd);
2240
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002241/* target_sess_cmd_list_set_waiting - Flag all commands in
2242 * sess_cmd_list to complete cmd_wait_comp. Set
2243 * sess_tearing_down so no more commands are queued.
2244 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002245 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002246void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002247{
2248 struct se_cmd *se_cmd;
2249 unsigned long flags;
2250
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002251 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002252
2253 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002254 se_sess->sess_tearing_down = 1;
2255
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002256 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002257 se_cmd->cmd_wait_set = 1;
2258
2259 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2260}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002261EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002262
2263/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2264 * @se_sess: session to wait for active I/O
2265 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2266 */
2267void target_wait_for_sess_cmds(
2268 struct se_session *se_sess,
2269 int wait_for_tasks)
2270{
2271 struct se_cmd *se_cmd, *tmp_cmd;
2272 bool rc = false;
2273
2274 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002275 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002276 list_del(&se_cmd->se_cmd_list);
2277
2278 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2279 " %d\n", se_cmd, se_cmd->t_state,
2280 se_cmd->se_tfo->get_cmd_state(se_cmd));
2281
2282 if (wait_for_tasks) {
2283 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2284 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2285 se_cmd->se_tfo->get_cmd_state(se_cmd));
2286
2287 rc = transport_wait_for_tasks(se_cmd);
2288
2289 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2290 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2291 se_cmd->se_tfo->get_cmd_state(se_cmd));
2292 }
2293
2294 if (!rc) {
2295 wait_for_completion(&se_cmd->cmd_wait_comp);
2296 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2297 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2298 se_cmd->se_tfo->get_cmd_state(se_cmd));
2299 }
2300
2301 se_cmd->se_tfo->release_cmd(se_cmd);
2302 }
2303}
2304EXPORT_SYMBOL(target_wait_for_sess_cmds);
2305
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002306/* transport_lun_wait_for_tasks():
2307 *
2308 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2309 * an struct se_lun to be successfully shutdown.
2310 */
2311static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2312{
2313 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002314 int ret = 0;
2315
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002316 /*
2317 * If the frontend has already requested this struct se_cmd to
2318 * be stopped, we can safely ignore this struct se_cmd.
2319 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002320 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002321 if (cmd->transport_state & CMD_T_STOP) {
2322 cmd->transport_state &= ~CMD_T_LUN_STOP;
2323
2324 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2325 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002326 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002327 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002328 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002329 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002330 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002331 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002332
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002333 // XXX: audit task_flags checks.
2334 spin_lock_irqsave(&cmd->t_state_lock, flags);
2335 if ((cmd->transport_state & CMD_T_BUSY) &&
2336 (cmd->transport_state & CMD_T_SENT)) {
2337 if (!target_stop_cmd(cmd, &flags))
2338 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002339 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002340 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002341
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002342 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2343 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002344 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002345 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002346 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002347 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002348 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002349 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002350 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002351
2352 return 0;
2353}
2354
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002355static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2356{
2357 struct se_cmd *cmd = NULL;
2358 unsigned long lun_flags, cmd_flags;
2359 /*
2360 * Do exception processing and return CHECK_CONDITION status to the
2361 * Initiator Port.
2362 */
2363 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002364 while (!list_empty(&lun->lun_cmd_list)) {
2365 cmd = list_first_entry(&lun->lun_cmd_list,
2366 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002367 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002368
Andy Grovera1d8b492011-05-02 17:12:10 -07002369 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002370 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002371 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002372 cmd->se_lun->unpacked_lun,
2373 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002374 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002375 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002376
2377 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2378
Andy Grover6708bb22011-06-08 10:36:43 -07002379 if (!cmd->se_lun) {
2380 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002381 cmd->se_tfo->get_task_tag(cmd),
2382 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002383 BUG();
2384 }
2385 /*
2386 * If the Storage engine still owns the iscsi_cmd_t, determine
2387 * and/or stop its context.
2388 */
Andy Grover6708bb22011-06-08 10:36:43 -07002389 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002390 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2391 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002392
Andy Grovere3d6f902011-07-19 08:55:10 +00002393 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002394 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2395 continue;
2396 }
2397
Andy Grover6708bb22011-06-08 10:36:43 -07002398 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002399 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002400 cmd->se_lun->unpacked_lun,
2401 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402
Andy Grovera1d8b492011-05-02 17:12:10 -07002403 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002404 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002405 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002406 goto check_cond;
2407 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002408 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002409 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002410 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002411
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002412 /*
2413 * The Storage engine stopped this struct se_cmd before it was
2414 * send to the fabric frontend for delivery back to the
2415 * Initiator Node. Return this SCSI CDB back with an
2416 * CHECK_CONDITION status.
2417 */
2418check_cond:
2419 transport_send_check_condition_and_sense(cmd,
2420 TCM_NON_EXISTENT_LUN, 0);
2421 /*
2422 * If the fabric frontend is waiting for this iscsi_cmd_t to
2423 * be released, notify the waiting thread now that LU has
2424 * finished accessing it.
2425 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002426 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002427 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002428 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002429 " struct se_cmd: %p ITT: 0x%08x\n",
2430 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002431 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002432
Andy Grovera1d8b492011-05-02 17:12:10 -07002433 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002434 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002435 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002436 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002437 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2438 continue;
2439 }
Andy Grover6708bb22011-06-08 10:36:43 -07002440 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002441 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002442
Andy Grovera1d8b492011-05-02 17:12:10 -07002443 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002444 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2445 }
2446 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2447}
2448
2449static int transport_clear_lun_thread(void *p)
2450{
Jörn Engel8359cf42011-11-24 02:05:51 +01002451 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002452
2453 __transport_clear_lun_from_sessions(lun);
2454 complete(&lun->lun_shutdown_comp);
2455
2456 return 0;
2457}
2458
2459int transport_clear_lun_from_sessions(struct se_lun *lun)
2460{
2461 struct task_struct *kt;
2462
Andy Grover5951146d2011-07-19 10:26:37 +00002463 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464 "tcm_cl_%u", lun->unpacked_lun);
2465 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002466 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002467 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002468 }
2469 wait_for_completion(&lun->lun_shutdown_comp);
2470
2471 return 0;
2472}
2473
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002474/**
2475 * transport_wait_for_tasks - wait for completion to occur
2476 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002477 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002478 * Called from frontend fabric context to wait for storage engine
2479 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002480 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002481bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002482{
2483 unsigned long flags;
2484
Andy Grovera1d8b492011-05-02 17:12:10 -07002485 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002486 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2487 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002488 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002489 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002490 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002491
Andy Groverc8e31f22012-01-19 13:39:17 -08002492 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2493 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002494 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002495 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002496 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002497 /*
2498 * If we are already stopped due to an external event (ie: LUN shutdown)
2499 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002500 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002501 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2502 * has completed its operation on the struct se_cmd.
2503 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002504 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002505 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002506 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002507 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002508 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002509 /*
2510 * There is a special case for WRITES where a FE exception +
2511 * LUN shutdown means ConfigFS context is still sleeping on
2512 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2513 * We go ahead and up transport_lun_stop_comp just to be sure
2514 * here.
2515 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002516 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2517 complete(&cmd->transport_lun_stop_comp);
2518 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2519 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002520
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002521 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002522 /*
2523 * At this point, the frontend who was the originator of this
2524 * struct se_cmd, now owns the structure and can be released through
2525 * normal means below.
2526 */
Andy Grover6708bb22011-06-08 10:36:43 -07002527 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002528 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002529 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002530 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002531
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002532 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002533 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002534
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002535 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002536 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002537 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002538 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002539
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002540 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002541
Andy Grover6708bb22011-06-08 10:36:43 -07002542 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002543 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002544 cmd, cmd->se_tfo->get_task_tag(cmd),
2545 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546
Andy Grovera1d8b492011-05-02 17:12:10 -07002547 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002548
Andy Grovera1d8b492011-05-02 17:12:10 -07002549 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002550
Andy Grovera1d8b492011-05-02 17:12:10 -07002551 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002552 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553
Masanari Iida35d1efe2012-08-16 22:43:13 +09002554 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002555 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002556 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002558 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002559
2560 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002561}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002562EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002563
2564static int transport_get_sense_codes(
2565 struct se_cmd *cmd,
2566 u8 *asc,
2567 u8 *ascq)
2568{
2569 *asc = cmd->scsi_asc;
2570 *ascq = cmd->scsi_ascq;
2571
2572 return 0;
2573}
2574
Christoph Hellwigde103c92012-11-06 12:24:09 -08002575int
2576transport_send_check_condition_and_sense(struct se_cmd *cmd,
2577 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002578{
2579 unsigned char *buffer = cmd->sense_buffer;
2580 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002581 u8 asc = 0, ascq = 0;
2582
Andy Grovera1d8b492011-05-02 17:12:10 -07002583 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002584 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002585 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586 return 0;
2587 }
2588 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002589 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002590
2591 if (!reason && from_transport)
2592 goto after_reason;
2593
2594 if (!from_transport)
2595 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002596
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002597 /*
2598 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2599 * SENSE KEY values from include/scsi/scsi.h
2600 */
2601 switch (reason) {
2602 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002603 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002604 buffer[0] = 0x70;
2605 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002606 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002607 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002608 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002609 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002610 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002611 case TCM_UNSUPPORTED_SCSI_OPCODE:
2612 case TCM_SECTOR_COUNT_TOO_MANY:
2613 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002614 buffer[0] = 0x70;
2615 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002617 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002618 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002619 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002620 break;
2621 case TCM_UNKNOWN_MODE_PAGE:
2622 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002623 buffer[0] = 0x70;
2624 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002625 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002626 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002627 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002628 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002629 break;
2630 case TCM_CHECK_CONDITION_ABORT_CMD:
2631 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002632 buffer[0] = 0x70;
2633 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002634 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002635 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002636 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002637 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2638 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002639 break;
2640 case TCM_INCORRECT_AMOUNT_OF_DATA:
2641 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002642 buffer[0] = 0x70;
2643 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002644 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002645 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002646 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002647 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002648 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002649 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650 break;
2651 case TCM_INVALID_CDB_FIELD:
2652 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002653 buffer[0] = 0x70;
2654 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002655 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002656 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002657 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002658 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002659 break;
2660 case TCM_INVALID_PARAMETER_LIST:
2661 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002662 buffer[0] = 0x70;
2663 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002664 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002665 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002666 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002667 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002668 break;
2669 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2670 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002671 buffer[0] = 0x70;
2672 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002673 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002674 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002675 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002676 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002678 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 break;
2680 case TCM_SERVICE_CRC_ERROR:
2681 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[0] = 0x70;
2683 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002684 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002685 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002687 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002688 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002689 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002690 break;
2691 case TCM_SNACK_REJECTED:
2692 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002693 buffer[0] = 0x70;
2694 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002695 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002696 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002698 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002699 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002700 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002701 break;
2702 case TCM_WRITE_PROTECTED:
2703 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002704 buffer[0] = 0x70;
2705 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002706 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002707 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002708 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002709 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002710 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002711 case TCM_ADDRESS_OUT_OF_RANGE:
2712 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002713 buffer[0] = 0x70;
2714 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002715 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002716 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002717 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002718 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002719 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002720 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2721 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002722 buffer[0] = 0x70;
2723 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002724 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002725 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002726 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002727 buffer[SPC_ASC_KEY_OFFSET] = asc;
2728 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002729 break;
2730 case TCM_CHECK_CONDITION_NOT_READY:
2731 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002732 buffer[0] = 0x70;
2733 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002734 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002735 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002736 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002737 buffer[SPC_ASC_KEY_OFFSET] = asc;
2738 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002739 break;
2740 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2741 default:
2742 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[0] = 0x70;
2744 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002745 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002746 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002747 /* LOGICAL UNIT COMMUNICATION FAILURE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002748 buffer[SPC_ASC_KEY_OFFSET] = 0x80;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002749 break;
2750 }
2751 /*
2752 * This code uses linux/include/scsi/scsi.h SAM status codes!
2753 */
2754 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2755 /*
2756 * Automatically padded, this value is encoded in the fabric's
2757 * data_length response PDU containing the SCSI defined sense data.
2758 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002759 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002760
2761after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002762 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002763}
2764EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2765
2766int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2767{
2768 int ret = 0;
2769
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002770 if (cmd->transport_state & CMD_T_ABORTED) {
Andy Grover6708bb22011-06-08 10:36:43 -07002771 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002772 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2773 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002774
Andy Grover6708bb22011-06-08 10:36:43 -07002775 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002776 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002777 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002778 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002779
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00002781 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002782 ret = 1;
2783 }
2784 return ret;
2785}
2786EXPORT_SYMBOL(transport_check_aborted_status);
2787
2788void transport_send_task_abort(struct se_cmd *cmd)
2789{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002790 unsigned long flags;
2791
2792 spin_lock_irqsave(&cmd->t_state_lock, flags);
2793 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
2794 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2795 return;
2796 }
2797 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2798
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002799 /*
2800 * If there are still expected incoming fabric WRITEs, we wait
2801 * until until they have completed before sending a TASK_ABORTED
2802 * response. This response with TASK_ABORTED status will be
2803 * queued back to fabric module by transport_check_aborted_status().
2804 */
2805 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002806 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002807 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002809 }
2810 }
2811 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002812
Andy Grover6708bb22011-06-08 10:36:43 -07002813 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002814 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002815 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002816
Andy Grovere3d6f902011-07-19 08:55:10 +00002817 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002818}
2819
Christoph Hellwigaf877292012-07-08 15:58:49 -04002820static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002821{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002822 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002823 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002824 struct se_tmr_req *tmr = cmd->se_tmr_req;
2825 int ret;
2826
2827 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002828 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002829 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002830 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002831 case TMR_ABORT_TASK_SET:
2832 case TMR_CLEAR_ACA:
2833 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002834 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2835 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002836 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002837 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2838 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2839 TMR_FUNCTION_REJECTED;
2840 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002841 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002842 tmr->response = TMR_FUNCTION_REJECTED;
2843 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002844 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002845 tmr->response = TMR_FUNCTION_REJECTED;
2846 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002847 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002848 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002849 tmr->function);
2850 tmr->response = TMR_FUNCTION_REJECTED;
2851 break;
2852 }
2853
2854 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002855 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002857 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002858}
2859
Christoph Hellwigaf877292012-07-08 15:58:49 -04002860int transport_generic_handle_tmr(
2861 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002862{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002863 INIT_WORK(&cmd->work, target_tmr_work);
2864 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002865 return 0;
2866}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002867EXPORT_SYMBOL(transport_generic_handle_tmr);