blob: 357bb24afba2105575ff46d3fc44e632cc3ce2b5 [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
Andy Grovere3d6f902011-07-19 08:55:10 +000058static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059
Christoph Hellwig35e0e752011-10-17 13:56:53 -040060static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080062struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080063struct kmem_cache *t10_pr_reg_cache;
64struct kmem_cache *t10_alua_lu_gp_cache;
65struct kmem_cache *t10_alua_lu_gp_mem_cache;
66struct kmem_cache *t10_alua_tg_pt_gp_cache;
67struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
68
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080069static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070070static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040071 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000072static int transport_generic_get_mem(struct se_cmd *cmd);
Roland Dreierbc187ea2012-07-16 11:04:40 -070073static int target_get_sess_cmd(struct se_session *, struct se_cmd *, bool);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070074static void transport_put_cmd(struct se_cmd *cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075static int transport_set_sense_codes(struct se_cmd *cmd, u8 asc, u8 ascq);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040076static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077
Andy Grovere3d6f902011-07-19 08:55:10 +000078int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 se_sess_cache = kmem_cache_create("se_sess_cache",
81 sizeof(struct se_session), __alignof__(struct se_session),
82 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070083 if (!se_sess_cache) {
84 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080085 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080086 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087 }
88 se_ua_cache = kmem_cache_create("se_ua_cache",
89 sizeof(struct se_ua), __alignof__(struct se_ua),
90 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070091 if (!se_ua_cache) {
92 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040093 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080094 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080095 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
96 sizeof(struct t10_pr_registration),
97 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070098 if (!t10_pr_reg_cache) {
99 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400101 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800102 }
103 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
104 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
105 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700106 if (!t10_alua_lu_gp_cache) {
107 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800108 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400109 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800110 }
111 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
112 sizeof(struct t10_alua_lu_gp_member),
113 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700114 if (!t10_alua_lu_gp_mem_cache) {
115 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800116 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400117 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800118 }
119 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
120 sizeof(struct t10_alua_tg_pt_gp),
121 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700122 if (!t10_alua_tg_pt_gp_cache) {
123 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800124 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400125 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800126 }
127 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
128 "t10_alua_tg_pt_gp_mem_cache",
129 sizeof(struct t10_alua_tg_pt_gp_member),
130 __alignof__(struct t10_alua_tg_pt_gp_member),
131 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700132 if (!t10_alua_tg_pt_gp_mem_cache) {
133 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800134 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400135 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800136 }
137
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400138 target_completion_wq = alloc_workqueue("target_completion",
139 WQ_MEM_RECLAIM, 0);
140 if (!target_completion_wq)
141 goto out_free_tg_pt_gp_mem_cache;
142
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800143 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400144
145out_free_tg_pt_gp_mem_cache:
146 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
147out_free_tg_pt_gp_cache:
148 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
149out_free_lu_gp_mem_cache:
150 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
151out_free_lu_gp_cache:
152 kmem_cache_destroy(t10_alua_lu_gp_cache);
153out_free_pr_reg_cache:
154 kmem_cache_destroy(t10_pr_reg_cache);
155out_free_ua_cache:
156 kmem_cache_destroy(se_ua_cache);
157out_free_sess_cache:
158 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800159out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000160 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161}
162
Andy Grovere3d6f902011-07-19 08:55:10 +0000163void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400165 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166 kmem_cache_destroy(se_sess_cache);
167 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168 kmem_cache_destroy(t10_pr_reg_cache);
169 kmem_cache_destroy(t10_alua_lu_gp_cache);
170 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
171 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
172 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800173}
174
Andy Grovere3d6f902011-07-19 08:55:10 +0000175/* This code ensures unique mib indexes are handed out. */
176static DEFINE_SPINLOCK(scsi_mib_index_lock);
177static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800178
179/*
180 * Allocate a new row index for the entry type specified
181 */
182u32 scsi_get_new_index(scsi_index_t type)
183{
184 u32 new_index;
185
Andy Grovere3d6f902011-07-19 08:55:10 +0000186 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800187
Andy Grovere3d6f902011-07-19 08:55:10 +0000188 spin_lock(&scsi_mib_index_lock);
189 new_index = ++scsi_mib_index[type];
190 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800191
192 return new_index;
193}
194
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700195void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800196{
197 int ret;
198
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700199 if (sub_api_initialized)
200 return;
201
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800202 ret = request_module("target_core_iblock");
203 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700204 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800205
206 ret = request_module("target_core_file");
207 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700208 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800209
210 ret = request_module("target_core_pscsi");
211 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700212 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800213
214 ret = request_module("target_core_stgt");
215 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700216 pr_err("Unable to load target_core_stgt\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800217
Andy Grovere3d6f902011-07-19 08:55:10 +0000218 sub_api_initialized = 1;
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700219 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800220}
221
222struct se_session *transport_init_session(void)
223{
224 struct se_session *se_sess;
225
226 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700227 if (!se_sess) {
228 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800229 " se_sess_cache\n");
230 return ERR_PTR(-ENOMEM);
231 }
232 INIT_LIST_HEAD(&se_sess->sess_list);
233 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700234 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700235 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800236 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237
238 return se_sess;
239}
240EXPORT_SYMBOL(transport_init_session);
241
242/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700243 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800244 */
245void __transport_register_session(
246 struct se_portal_group *se_tpg,
247 struct se_node_acl *se_nacl,
248 struct se_session *se_sess,
249 void *fabric_sess_ptr)
250{
251 unsigned char buf[PR_REG_ISID_LEN];
252
253 se_sess->se_tpg = se_tpg;
254 se_sess->fabric_sess_ptr = fabric_sess_ptr;
255 /*
256 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
257 *
258 * Only set for struct se_session's that will actually be moving I/O.
259 * eg: *NOT* discovery sessions.
260 */
261 if (se_nacl) {
262 /*
263 * If the fabric module supports an ISID based TransportID,
264 * save this value in binary from the fabric I_T Nexus now.
265 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000266 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800267 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000268 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800269 &buf[0], PR_REG_ISID_LEN);
270 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
271 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800272 kref_get(&se_nacl->acl_kref);
273
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800274 spin_lock_irq(&se_nacl->nacl_sess_lock);
275 /*
276 * The se_nacl->nacl_sess pointer will be set to the
277 * last active I_T Nexus for each struct se_node_acl.
278 */
279 se_nacl->nacl_sess = se_sess;
280
281 list_add_tail(&se_sess->sess_acl_list,
282 &se_nacl->acl_sess_list);
283 spin_unlock_irq(&se_nacl->nacl_sess_lock);
284 }
285 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
286
Andy Grover6708bb22011-06-08 10:36:43 -0700287 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000288 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800289}
290EXPORT_SYMBOL(__transport_register_session);
291
292void transport_register_session(
293 struct se_portal_group *se_tpg,
294 struct se_node_acl *se_nacl,
295 struct se_session *se_sess,
296 void *fabric_sess_ptr)
297{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700298 unsigned long flags;
299
300 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800301 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700302 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800303}
304EXPORT_SYMBOL(transport_register_session);
305
Joern Engel41492682012-05-18 13:57:19 -0700306void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800307{
308 struct se_session *se_sess = container_of(kref,
309 struct se_session, sess_kref);
310 struct se_portal_group *se_tpg = se_sess->se_tpg;
311
312 se_tpg->se_tpg_tfo->close_session(se_sess);
313}
314
315void target_get_session(struct se_session *se_sess)
316{
317 kref_get(&se_sess->sess_kref);
318}
319EXPORT_SYMBOL(target_get_session);
320
Jörn Engel33933a02012-05-11 10:35:08 -0400321void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800322{
Joern Engel41492682012-05-18 13:57:19 -0700323 struct se_portal_group *tpg = se_sess->se_tpg;
324
325 if (tpg->se_tpg_tfo->put_session != NULL) {
326 tpg->se_tpg_tfo->put_session(se_sess);
327 return;
328 }
Jörn Engel33933a02012-05-11 10:35:08 -0400329 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800330}
331EXPORT_SYMBOL(target_put_session);
332
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800333static void target_complete_nacl(struct kref *kref)
334{
335 struct se_node_acl *nacl = container_of(kref,
336 struct se_node_acl, acl_kref);
337
338 complete(&nacl->acl_free_comp);
339}
340
341void target_put_nacl(struct se_node_acl *nacl)
342{
343 kref_put(&nacl->acl_kref, target_complete_nacl);
344}
345
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800346void transport_deregister_session_configfs(struct se_session *se_sess)
347{
348 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700349 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800350 /*
351 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
352 */
353 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700354 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700355 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800356 if (se_nacl->acl_stop == 0)
357 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800358 /*
359 * If the session list is empty, then clear the pointer.
360 * Otherwise, set the struct se_session pointer from the tail
361 * element of the per struct se_node_acl active session list.
362 */
363 if (list_empty(&se_nacl->acl_sess_list))
364 se_nacl->nacl_sess = NULL;
365 else {
366 se_nacl->nacl_sess = container_of(
367 se_nacl->acl_sess_list.prev,
368 struct se_session, sess_acl_list);
369 }
Roland Dreier23388862011-06-22 01:02:21 -0700370 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800371 }
372}
373EXPORT_SYMBOL(transport_deregister_session_configfs);
374
375void transport_free_session(struct se_session *se_sess)
376{
377 kmem_cache_free(se_sess_cache, se_sess);
378}
379EXPORT_SYMBOL(transport_free_session);
380
381void transport_deregister_session(struct se_session *se_sess)
382{
383 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800384 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800385 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700386 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800387 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800388
Andy Grover6708bb22011-06-08 10:36:43 -0700389 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390 transport_free_session(se_sess);
391 return;
392 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800393 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394
Roland Dreiere63a8e12011-08-12 16:01:02 -0700395 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800396 list_del(&se_sess->sess_list);
397 se_sess->se_tpg = NULL;
398 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700399 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800400
401 /*
402 * Determine if we need to do extra work for this initiator node's
403 * struct se_node_acl if it had been previously dynamically generated.
404 */
405 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800406
Nicholas Bellinger01468342012-03-10 14:32:52 -0800407 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
408 if (se_nacl && se_nacl->dynamic_node_acl) {
409 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
410 list_del(&se_nacl->acl_list);
411 se_tpg->num_node_acls--;
412 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
413 core_tpg_wait_for_nacl_pr_ref(se_nacl);
414 core_free_device_list_for_node(se_nacl, se_tpg);
415 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
416
417 comp_nacl = false;
418 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800419 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800420 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800421 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800422
Andy Grover6708bb22011-06-08 10:36:43 -0700423 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000424 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800425 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800426 * If last kref is dropping now for an explict NodeACL, awake sleeping
427 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
428 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800429 */
430 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800431 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800432
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800433 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434}
435EXPORT_SYMBOL(transport_deregister_session);
436
437/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700438 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800439 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400440static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800441{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400442 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800443 unsigned long flags;
444
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400445 if (!dev)
446 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800447
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400448 if (cmd->transport_state & CMD_T_BUSY)
449 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400451 spin_lock_irqsave(&dev->execute_task_lock, flags);
452 if (cmd->state_active) {
453 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400454 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800455 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400456 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800457}
458
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400459static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460{
461 unsigned long flags;
462
Andy Grovera1d8b492011-05-02 17:12:10 -0700463 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800464 /*
465 * Determine if IOCTL context caller in requesting the stopping of this
466 * command for LUN shutdown purposes.
467 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500468 if (cmd->transport_state & CMD_T_LUN_STOP) {
469 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
470 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500472 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400473 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400474 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700475 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800476
Andy Grovera1d8b492011-05-02 17:12:10 -0700477 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800478 return 1;
479 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400480
481 if (remove_from_lists) {
482 target_remove_from_state_list(cmd);
483
484 /*
485 * Clear struct se_cmd->se_lun before the handoff to FE.
486 */
487 cmd->se_lun = NULL;
488 }
489
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490 /*
491 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000492 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500494 if (cmd->transport_state & CMD_T_STOP) {
495 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
496 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000497 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498
Andy Grovera1d8b492011-05-02 17:12:10 -0700499 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800500
Andy Grovera1d8b492011-05-02 17:12:10 -0700501 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800502 return 1;
503 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800504
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400505 cmd->transport_state &= ~CMD_T_ACTIVE;
506 if (remove_from_lists) {
507 /*
508 * Some fabric modules like tcm_loop can release
509 * their internally allocated I/O reference now and
510 * struct se_cmd now.
511 *
512 * Fabric modules are expected to return '1' here if the
513 * se_cmd being passed is released at this point,
514 * or zero if not being released.
515 */
516 if (cmd->se_tfo->check_stop_free != NULL) {
517 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
518 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800519 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400520 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800521
Andy Grovera1d8b492011-05-02 17:12:10 -0700522 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800523 return 0;
524}
525
526static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
527{
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400528 return transport_cmd_check_stop(cmd, true);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800529}
530
531static void transport_lun_remove_cmd(struct se_cmd *cmd)
532{
Andy Grovere3d6f902011-07-19 08:55:10 +0000533 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800534 unsigned long flags;
535
536 if (!lun)
537 return;
538
Andy Grovera1d8b492011-05-02 17:12:10 -0700539 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500540 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
541 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400542 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700544 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800545
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800546 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500547 if (!list_empty(&cmd->se_lun_node))
548 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
550}
551
552void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
553{
Andy Groverc8e31f22012-01-19 13:39:17 -0800554 if (!(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellinger8dc52b52011-10-09 02:02:51 -0700555 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800556
557 if (transport_cmd_check_stop_to_fabric(cmd))
558 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400559 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200560 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800561}
562
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400563static void target_complete_failure_work(struct work_struct *work)
564{
565 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
566
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700567 transport_generic_request_failure(cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400568}
569
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400570void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800571{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400572 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400573 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800574 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800575
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400576 cmd->scsi_status = scsi_status;
577
578
Andy Grovera1d8b492011-05-02 17:12:10 -0700579 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400580 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800581
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582 if (dev && dev->transport->transport_complete) {
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400583 if (dev->transport->transport_complete(cmd,
584 cmd->t_data_sg) != 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800586 success = 1;
587 }
588 }
589
590 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400591 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400593 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700594 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400595 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596 return;
597 }
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700598
599 if (!success)
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500600 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700601
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800602 /*
603 * Check for case where an explict ABORT_TASK has been received
604 * and transport_wait_for_tasks() will be waiting for completion..
605 */
606 if (cmd->transport_state & CMD_T_ABORTED &&
607 cmd->transport_state & CMD_T_STOP) {
608 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
609 complete(&cmd->t_transport_stop_comp);
610 return;
611 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig41e16e92011-11-23 06:54:15 -0500612 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400613 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800614 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400615 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800616 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400617
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400618 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800619 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700620 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800621
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400622 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800623}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400624EXPORT_SYMBOL(target_complete_cmd);
625
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400626static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800627{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400628 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629 unsigned long flags;
630
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800631 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400632 if (!cmd->state_active) {
633 list_add_tail(&cmd->state_list, &dev->state_list);
634 cmd->state_active = true;
635 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800636 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800637}
638
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700639/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700640 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700641 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400642static void transport_write_pending_qf(struct se_cmd *cmd);
643static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700644
645static void target_qf_do_work(struct work_struct *work)
646{
647 struct se_device *dev = container_of(work, struct se_device,
648 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700649 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700650 struct se_cmd *cmd, *cmd_tmp;
651
652 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700653 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
654 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700655
Roland Dreierbcac3642011-08-27 21:33:16 -0700656 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700657 list_del(&cmd->se_qf_node);
658 atomic_dec(&dev->dev_qf_count);
659 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700660
Andy Grover6708bb22011-06-08 10:36:43 -0700661 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700662 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400663 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700664 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
665 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400666
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400667 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
668 transport_write_pending_qf(cmd);
669 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
670 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700671 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700672}
673
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800674unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
675{
676 switch (cmd->data_direction) {
677 case DMA_NONE:
678 return "NONE";
679 case DMA_FROM_DEVICE:
680 return "READ";
681 case DMA_TO_DEVICE:
682 return "WRITE";
683 case DMA_BIDIRECTIONAL:
684 return "BIDI";
685 default:
686 break;
687 }
688
689 return "UNKNOWN";
690}
691
692void transport_dump_dev_state(
693 struct se_device *dev,
694 char *b,
695 int *bl)
696{
697 *bl += sprintf(b + *bl, "Status: ");
698 switch (dev->dev_status) {
699 case TRANSPORT_DEVICE_ACTIVATED:
700 *bl += sprintf(b + *bl, "ACTIVATED");
701 break;
702 case TRANSPORT_DEVICE_DEACTIVATED:
703 *bl += sprintf(b + *bl, "DEACTIVATED");
704 break;
705 case TRANSPORT_DEVICE_SHUTDOWN:
706 *bl += sprintf(b + *bl, "SHUTDOWN");
707 break;
708 case TRANSPORT_DEVICE_OFFLINE_ACTIVATED:
709 case TRANSPORT_DEVICE_OFFLINE_DEACTIVATED:
710 *bl += sprintf(b + *bl, "OFFLINE");
711 break;
712 default:
713 *bl += sprintf(b + *bl, "UNKNOWN=%d", dev->dev_status);
714 break;
715 }
716
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400717 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700718 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
719 dev->se_sub_dev->se_dev_attrib.block_size,
720 dev->se_sub_dev->se_dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800721 *bl += sprintf(b + *bl, " ");
722}
723
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800724void transport_dump_vpd_proto_id(
725 struct t10_vpd *vpd,
726 unsigned char *p_buf,
727 int p_buf_len)
728{
729 unsigned char buf[VPD_TMP_BUF_SIZE];
730 int len;
731
732 memset(buf, 0, VPD_TMP_BUF_SIZE);
733 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
734
735 switch (vpd->protocol_identifier) {
736 case 0x00:
737 sprintf(buf+len, "Fibre Channel\n");
738 break;
739 case 0x10:
740 sprintf(buf+len, "Parallel SCSI\n");
741 break;
742 case 0x20:
743 sprintf(buf+len, "SSA\n");
744 break;
745 case 0x30:
746 sprintf(buf+len, "IEEE 1394\n");
747 break;
748 case 0x40:
749 sprintf(buf+len, "SCSI Remote Direct Memory Access"
750 " Protocol\n");
751 break;
752 case 0x50:
753 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
754 break;
755 case 0x60:
756 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
757 break;
758 case 0x70:
759 sprintf(buf+len, "Automation/Drive Interface Transport"
760 " Protocol\n");
761 break;
762 case 0x80:
763 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
764 break;
765 default:
766 sprintf(buf+len, "Unknown 0x%02x\n",
767 vpd->protocol_identifier);
768 break;
769 }
770
771 if (p_buf)
772 strncpy(p_buf, buf, p_buf_len);
773 else
Andy Grover6708bb22011-06-08 10:36:43 -0700774 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800775}
776
777void
778transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
779{
780 /*
781 * Check if the Protocol Identifier Valid (PIV) bit is set..
782 *
783 * from spc3r23.pdf section 7.5.1
784 */
785 if (page_83[1] & 0x80) {
786 vpd->protocol_identifier = (page_83[0] & 0xf0);
787 vpd->protocol_identifier_set = 1;
788 transport_dump_vpd_proto_id(vpd, NULL, 0);
789 }
790}
791EXPORT_SYMBOL(transport_set_vpd_proto_id);
792
793int transport_dump_vpd_assoc(
794 struct t10_vpd *vpd,
795 unsigned char *p_buf,
796 int p_buf_len)
797{
798 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000799 int ret = 0;
800 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800801
802 memset(buf, 0, VPD_TMP_BUF_SIZE);
803 len = sprintf(buf, "T10 VPD Identifier Association: ");
804
805 switch (vpd->association) {
806 case 0x00:
807 sprintf(buf+len, "addressed logical unit\n");
808 break;
809 case 0x10:
810 sprintf(buf+len, "target port\n");
811 break;
812 case 0x20:
813 sprintf(buf+len, "SCSI target device\n");
814 break;
815 default:
816 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000817 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818 break;
819 }
820
821 if (p_buf)
822 strncpy(p_buf, buf, p_buf_len);
823 else
Andy Grover6708bb22011-06-08 10:36:43 -0700824 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800825
826 return ret;
827}
828
829int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
830{
831 /*
832 * The VPD identification association..
833 *
834 * from spc3r23.pdf Section 7.6.3.1 Table 297
835 */
836 vpd->association = (page_83[1] & 0x30);
837 return transport_dump_vpd_assoc(vpd, NULL, 0);
838}
839EXPORT_SYMBOL(transport_set_vpd_assoc);
840
841int transport_dump_vpd_ident_type(
842 struct t10_vpd *vpd,
843 unsigned char *p_buf,
844 int p_buf_len)
845{
846 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000847 int ret = 0;
848 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800849
850 memset(buf, 0, VPD_TMP_BUF_SIZE);
851 len = sprintf(buf, "T10 VPD Identifier Type: ");
852
853 switch (vpd->device_identifier_type) {
854 case 0x00:
855 sprintf(buf+len, "Vendor specific\n");
856 break;
857 case 0x01:
858 sprintf(buf+len, "T10 Vendor ID based\n");
859 break;
860 case 0x02:
861 sprintf(buf+len, "EUI-64 based\n");
862 break;
863 case 0x03:
864 sprintf(buf+len, "NAA\n");
865 break;
866 case 0x04:
867 sprintf(buf+len, "Relative target port identifier\n");
868 break;
869 case 0x08:
870 sprintf(buf+len, "SCSI name string\n");
871 break;
872 default:
873 sprintf(buf+len, "Unsupported: 0x%02x\n",
874 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000875 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800876 break;
877 }
878
Andy Grovere3d6f902011-07-19 08:55:10 +0000879 if (p_buf) {
880 if (p_buf_len < strlen(buf)+1)
881 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800882 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000883 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700884 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000885 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800886
887 return ret;
888}
889
890int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
891{
892 /*
893 * The VPD identifier type..
894 *
895 * from spc3r23.pdf Section 7.6.3.1 Table 298
896 */
897 vpd->device_identifier_type = (page_83[1] & 0x0f);
898 return transport_dump_vpd_ident_type(vpd, NULL, 0);
899}
900EXPORT_SYMBOL(transport_set_vpd_ident_type);
901
902int transport_dump_vpd_ident(
903 struct t10_vpd *vpd,
904 unsigned char *p_buf,
905 int p_buf_len)
906{
907 unsigned char buf[VPD_TMP_BUF_SIZE];
908 int ret = 0;
909
910 memset(buf, 0, VPD_TMP_BUF_SIZE);
911
912 switch (vpd->device_identifier_code_set) {
913 case 0x01: /* Binary */
914 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
915 &vpd->device_identifier[0]);
916 break;
917 case 0x02: /* ASCII */
918 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
919 &vpd->device_identifier[0]);
920 break;
921 case 0x03: /* UTF-8 */
922 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
923 &vpd->device_identifier[0]);
924 break;
925 default:
926 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
927 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000928 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800929 break;
930 }
931
932 if (p_buf)
933 strncpy(p_buf, buf, p_buf_len);
934 else
Andy Grover6708bb22011-06-08 10:36:43 -0700935 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800936
937 return ret;
938}
939
940int
941transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
942{
943 static const char hex_str[] = "0123456789abcdef";
944 int j = 0, i = 4; /* offset to start of the identifer */
945
946 /*
947 * The VPD Code Set (encoding)
948 *
949 * from spc3r23.pdf Section 7.6.3.1 Table 296
950 */
951 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
952 switch (vpd->device_identifier_code_set) {
953 case 0x01: /* Binary */
954 vpd->device_identifier[j++] =
955 hex_str[vpd->device_identifier_type];
956 while (i < (4 + page_83[3])) {
957 vpd->device_identifier[j++] =
958 hex_str[(page_83[i] & 0xf0) >> 4];
959 vpd->device_identifier[j++] =
960 hex_str[page_83[i] & 0x0f];
961 i++;
962 }
963 break;
964 case 0x02: /* ASCII */
965 case 0x03: /* UTF-8 */
966 while (i < (4 + page_83[3]))
967 vpd->device_identifier[j++] = page_83[i++];
968 break;
969 default:
970 break;
971 }
972
973 return transport_dump_vpd_ident(vpd, NULL, 0);
974}
975EXPORT_SYMBOL(transport_set_vpd_ident);
976
977static void core_setup_task_attr_emulation(struct se_device *dev)
978{
979 /*
980 * If this device is from Target_Core_Mod/pSCSI, disable the
981 * SAM Task Attribute emulation.
982 *
983 * This is currently not available in upsream Linux/SCSI Target
984 * mode code, and is assumed to be disabled while using TCM/pSCSI.
985 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000986 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800987 dev->dev_task_attr_type = SAM_TASK_ATTR_PASSTHROUGH;
988 return;
989 }
990
991 dev->dev_task_attr_type = SAM_TASK_ATTR_EMULATED;
Andy Grover6708bb22011-06-08 10:36:43 -0700992 pr_debug("%s: Using SAM_TASK_ATTR_EMULATED for SPC: 0x%02x"
Andy Grovere3d6f902011-07-19 08:55:10 +0000993 " device\n", dev->transport->name,
994 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800995}
996
997static void scsi_dump_inquiry(struct se_device *dev)
998{
Andy Grovere3d6f902011-07-19 08:55:10 +0000999 struct t10_wwn *wwn = &dev->se_sub_dev->t10_wwn;
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001000 char buf[17];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001001 int i, device_type;
1002 /*
1003 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
1004 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001005 for (i = 0; i < 8; i++)
1006 if (wwn->vendor[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001007 buf[i] = wwn->vendor[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001008 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001009 buf[i] = ' ';
1010 buf[i] = '\0';
1011 pr_debug(" Vendor: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001012
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001013 for (i = 0; i < 16; i++)
1014 if (wwn->model[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001015 buf[i] = wwn->model[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001016 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001017 buf[i] = ' ';
1018 buf[i] = '\0';
1019 pr_debug(" Model: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001020
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001021 for (i = 0; i < 4; i++)
1022 if (wwn->revision[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001023 buf[i] = wwn->revision[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001024 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001025 buf[i] = ' ';
1026 buf[i] = '\0';
1027 pr_debug(" Revision: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001028
Andy Grovere3d6f902011-07-19 08:55:10 +00001029 device_type = dev->transport->get_device_type(dev);
Andy Grover6708bb22011-06-08 10:36:43 -07001030 pr_debug(" Type: %s ", scsi_device_type(device_type));
1031 pr_debug(" ANSI SCSI revision: %02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001032 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001033}
1034
1035struct se_device *transport_add_device_to_core_hba(
1036 struct se_hba *hba,
1037 struct se_subsystem_api *transport,
1038 struct se_subsystem_dev *se_dev,
1039 u32 device_flags,
1040 void *transport_dev,
1041 struct se_dev_limits *dev_limits,
1042 const char *inquiry_prod,
1043 const char *inquiry_rev)
1044{
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001045 int force_pt;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001046 struct se_device *dev;
1047
1048 dev = kzalloc(sizeof(struct se_device), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001049 if (!dev) {
1050 pr_err("Unable to allocate memory for se_dev_t\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001051 return NULL;
1052 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001053
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001054 dev->dev_flags = device_flags;
1055 dev->dev_status |= TRANSPORT_DEVICE_DEACTIVATED;
Andy Grover5951146d2011-07-19 10:26:37 +00001056 dev->dev_ptr = transport_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001057 dev->se_hba = hba;
1058 dev->se_sub_dev = se_dev;
1059 dev->transport = transport;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001060 INIT_LIST_HEAD(&dev->dev_list);
1061 INIT_LIST_HEAD(&dev->dev_sep_list);
1062 INIT_LIST_HEAD(&dev->dev_tmr_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001063 INIT_LIST_HEAD(&dev->delayed_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001064 INIT_LIST_HEAD(&dev->state_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001065 INIT_LIST_HEAD(&dev->qf_cmd_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001066 spin_lock_init(&dev->execute_task_lock);
1067 spin_lock_init(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001068 spin_lock_init(&dev->dev_reservation_lock);
1069 spin_lock_init(&dev->dev_status_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001070 spin_lock_init(&dev->se_port_lock);
1071 spin_lock_init(&dev->se_tmr_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001072 spin_lock_init(&dev->qf_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001073 atomic_set(&dev->dev_ordered_id, 0);
1074
1075 se_dev_set_default_attribs(dev, dev_limits);
1076
1077 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
1078 dev->creation_time = get_jiffies_64();
1079 spin_lock_init(&dev->stats_lock);
1080
1081 spin_lock(&hba->device_lock);
1082 list_add_tail(&dev->dev_list, &hba->hba_dev_list);
1083 hba->dev_count++;
1084 spin_unlock(&hba->device_lock);
1085 /*
1086 * Setup the SAM Task Attribute emulation for struct se_device
1087 */
1088 core_setup_task_attr_emulation(dev);
1089 /*
1090 * Force PR and ALUA passthrough emulation with internal object use.
1091 */
1092 force_pt = (hba->hba_flags & HBA_FLAGS_INTERNAL_USE);
1093 /*
1094 * Setup the Reservations infrastructure for struct se_device
1095 */
1096 core_setup_reservations(dev, force_pt);
1097 /*
1098 * Setup the Asymmetric Logical Unit Assignment for struct se_device
1099 */
1100 if (core_setup_alua(dev, force_pt) < 0)
1101 goto out;
1102
1103 /*
1104 * Startup the struct se_device processing thread
1105 */
Christoph Hellwigaf877292012-07-08 15:58:49 -04001106 dev->tmr_wq = alloc_workqueue("tmr-%s", WQ_MEM_RECLAIM | WQ_UNBOUND, 1,
1107 dev->transport->name);
1108 if (!dev->tmr_wq) {
1109 pr_err("Unable to create tmr workqueue for %s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001110 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001111 goto out;
1112 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001113 /*
1114 * Setup work_queue for QUEUE_FULL
1115 */
1116 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001117 /*
1118 * Preload the initial INQUIRY const values if we are doing
1119 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
1120 * passthrough because this is being provided by the backend LLD.
1121 * This is required so that transport_get_inquiry() copies these
1122 * originals once back into DEV_T10_WWN(dev) for the virtual device
1123 * setup.
1124 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001125 if (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
Roland Dreierf22c1192011-05-02 22:15:37 -07001126 if (!inquiry_prod || !inquiry_rev) {
Andy Grover6708bb22011-06-08 10:36:43 -07001127 pr_err("All non TCM/pSCSI plugins require"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001128 " INQUIRY consts\n");
1129 goto out;
1130 }
1131
Andy Grovere3d6f902011-07-19 08:55:10 +00001132 strncpy(&dev->se_sub_dev->t10_wwn.vendor[0], "LIO-ORG", 8);
1133 strncpy(&dev->se_sub_dev->t10_wwn.model[0], inquiry_prod, 16);
1134 strncpy(&dev->se_sub_dev->t10_wwn.revision[0], inquiry_rev, 4);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001135 }
1136 scsi_dump_inquiry(dev);
1137
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001138 return dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001139out:
Christoph Hellwigaf877292012-07-08 15:58:49 -04001140 destroy_workqueue(dev->tmr_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001141
1142 spin_lock(&hba->device_lock);
1143 list_del(&dev->dev_list);
1144 hba->dev_count--;
1145 spin_unlock(&hba->device_lock);
1146
1147 se_release_vpd_for_dev(dev);
1148
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001149 kfree(dev);
1150
1151 return NULL;
1152}
1153EXPORT_SYMBOL(transport_add_device_to_core_hba);
1154
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001155int target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001156{
1157 struct se_device *dev = cmd->se_dev;
1158
1159 if (cmd->unknown_data_length) {
1160 cmd->data_length = size;
1161 } else if (size != cmd->data_length) {
1162 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1163 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1164 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1165 cmd->data_length, size, cmd->t_task_cdb[0]);
1166
1167 cmd->cmd_spdtl = size;
1168
1169 if (cmd->data_direction == DMA_TO_DEVICE) {
1170 pr_err("Rejecting underflow/overflow"
1171 " WRITE data\n");
1172 goto out_invalid_cdb_field;
1173 }
1174 /*
1175 * Reject READ_* or WRITE_* with overflow/underflow for
1176 * type SCF_SCSI_DATA_CDB.
1177 */
1178 if (dev->se_sub_dev->se_dev_attrib.block_size != 512) {
1179 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1180 " CDB on non 512-byte sector setup subsystem"
1181 " plugin: %s\n", dev->transport->name);
1182 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
1183 goto out_invalid_cdb_field;
1184 }
1185
1186 if (size > cmd->data_length) {
1187 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1188 cmd->residual_count = (size - cmd->data_length);
1189 } else {
1190 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1191 cmd->residual_count = (cmd->data_length - size);
1192 }
1193 cmd->data_length = size;
1194 }
1195
1196 return 0;
1197
1198out_invalid_cdb_field:
1199 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1200 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
1201 return -EINVAL;
1202}
1203
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001204/*
1205 * Used by fabric modules containing a local struct se_cmd within their
1206 * fabric dependent per I/O descriptor.
1207 */
1208void transport_init_se_cmd(
1209 struct se_cmd *cmd,
1210 struct target_core_fabric_ops *tfo,
1211 struct se_session *se_sess,
1212 u32 data_length,
1213 int data_direction,
1214 int task_attr,
1215 unsigned char *sense_buffer)
1216{
Andy Grover5951146d2011-07-19 10:26:37 +00001217 INIT_LIST_HEAD(&cmd->se_lun_node);
1218 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001219 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001220 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001221 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001222 init_completion(&cmd->transport_lun_fe_stop_comp);
1223 init_completion(&cmd->transport_lun_stop_comp);
1224 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001225 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001226 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001227 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001228 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001229
1230 cmd->se_tfo = tfo;
1231 cmd->se_sess = se_sess;
1232 cmd->data_length = data_length;
1233 cmd->data_direction = data_direction;
1234 cmd->sam_task_attr = task_attr;
1235 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001236
1237 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001238}
1239EXPORT_SYMBOL(transport_init_se_cmd);
1240
1241static int transport_check_alloc_task_attr(struct se_cmd *cmd)
1242{
1243 /*
1244 * Check if SAM Task Attribute emulation is enabled for this
1245 * struct se_device storage object
1246 */
Andy Grover5951146d2011-07-19 10:26:37 +00001247 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001248 return 0;
1249
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001250 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001251 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001252 " emulation is not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001253 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001254 }
1255 /*
1256 * Used to determine when ORDERED commands should go from
1257 * Dormant to Active status.
1258 */
Andy Grover5951146d2011-07-19 10:26:37 +00001259 cmd->se_ordered_id = atomic_inc_return(&cmd->se_dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001260 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001261 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001262 cmd->se_ordered_id, cmd->sam_task_attr,
Andy Grover6708bb22011-06-08 10:36:43 -07001263 cmd->se_dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001264 return 0;
1265}
1266
Andy Grovera12f41f2012-04-03 15:51:20 -07001267/* target_setup_cmd_from_cdb():
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001268 *
1269 * Called from fabric RX Thread.
1270 */
Andy Grovera12f41f2012-04-03 15:51:20 -07001271int target_setup_cmd_from_cdb(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001272 struct se_cmd *cmd,
1273 unsigned char *cdb)
1274{
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001275 struct se_subsystem_dev *su_dev = cmd->se_dev->se_sub_dev;
1276 u32 pr_reg_type = 0;
1277 u8 alua_ascq = 0;
1278 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001279 int ret;
1280
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001281 /*
1282 * Ensure that the received CDB is less than the max (252 + 8) bytes
1283 * for VARIABLE_LENGTH_CMD
1284 */
1285 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001286 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001287 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1288 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001289 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1290 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grovere3d6f902011-07-19 08:55:10 +00001291 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001292 }
1293 /*
1294 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1295 * allocate the additional extended CDB buffer now.. Otherwise
1296 * setup the pointer from __t_task_cdb to t_task_cdb.
1297 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001298 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1299 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001300 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001301 if (!cmd->t_task_cdb) {
1302 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001303 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001304 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001305 (unsigned long)sizeof(cmd->__t_task_cdb));
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001306 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1307 cmd->scsi_sense_reason =
1308 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grovere3d6f902011-07-19 08:55:10 +00001309 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001310 }
1311 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001312 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001313 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001314 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001315 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001316 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001317
1318 /*
1319 * Check for an existing UNIT ATTENTION condition
1320 */
1321 if (core_scsi3_ua_check(cmd, cdb) < 0) {
1322 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1323 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_UNIT_ATTENTION;
1324 return -EINVAL;
1325 }
1326
1327 ret = su_dev->t10_alua.alua_state_check(cmd, cdb, &alua_ascq);
1328 if (ret != 0) {
1329 /*
1330 * Set SCSI additional sense code (ASC) to 'LUN Not Accessible';
1331 * The ALUA additional sense code qualifier (ASCQ) is determined
1332 * by the ALUA primary or secondary access state..
1333 */
1334 if (ret > 0) {
1335 pr_debug("[%s]: ALUA TG Port not available, "
1336 "SenseKey: NOT_READY, ASC/ASCQ: "
1337 "0x04/0x%02x\n",
1338 cmd->se_tfo->get_fabric_name(), alua_ascq);
1339
1340 transport_set_sense_codes(cmd, 0x04, alua_ascq);
1341 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1342 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_NOT_READY;
1343 return -EINVAL;
1344 }
1345 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1346 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
1347 return -EINVAL;
1348 }
1349
1350 /*
1351 * Check status for SPC-3 Persistent Reservations
1352 */
1353 if (su_dev->t10_pr.pr_ops.t10_reservation_check(cmd, &pr_reg_type)) {
1354 if (su_dev->t10_pr.pr_ops.t10_seq_non_holder(
1355 cmd, cdb, pr_reg_type) != 0) {
1356 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1357 cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT;
1358 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1359 cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT;
1360 return -EBUSY;
1361 }
1362 /*
1363 * This means the CDB is allowed for the SCSI Initiator port
1364 * when said port is *NOT* holding the legacy SPC-2 or
1365 * SPC-3 Persistent Reservation.
1366 */
1367 }
1368
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001369 ret = cmd->se_dev->transport->parse_cdb(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001370 if (ret < 0)
1371 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001372
1373 spin_lock_irqsave(&cmd->t_state_lock, flags);
1374 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1375 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1376
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001377 /*
1378 * Check for SAM Task Attribute Emulation
1379 */
1380 if (transport_check_alloc_task_attr(cmd) < 0) {
1381 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1382 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00001383 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001384 }
1385 spin_lock(&cmd->se_lun->lun_sep_lock);
1386 if (cmd->se_lun->lun_sep)
1387 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1388 spin_unlock(&cmd->se_lun->lun_sep_lock);
1389 return 0;
1390}
Andy Grovera12f41f2012-04-03 15:51:20 -07001391EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001392
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001393/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001394 * Used by fabric module frontends to queue tasks directly.
1395 * Many only be used from process context only
1396 */
1397int transport_handle_cdb_direct(
1398 struct se_cmd *cmd)
1399{
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001400 int ret;
1401
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001402 if (!cmd->se_lun) {
1403 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001404 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001405 return -EINVAL;
1406 }
1407 if (in_interrupt()) {
1408 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001409 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001410 " from interrupt context\n");
1411 return -EINVAL;
1412 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001413 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001414 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1415 * outstanding descriptors are handled correctly during shutdown via
1416 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001417 *
1418 * Also, we don't take cmd->t_state_lock here as we only expect
1419 * this to be called for initial descriptor submission.
1420 */
1421 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001422 cmd->transport_state |= CMD_T_ACTIVE;
1423
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001424 /*
1425 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1426 * so follow TRANSPORT_NEW_CMD processing thread context usage
1427 * and call transport_generic_request_failure() if necessary..
1428 */
1429 ret = transport_generic_new_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001430 if (ret < 0)
1431 transport_generic_request_failure(cmd);
1432
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001433 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001434}
1435EXPORT_SYMBOL(transport_handle_cdb_direct);
1436
Nicholas Bellingera6360782011-11-18 20:36:22 -08001437/**
1438 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1439 *
1440 * @se_cmd: command descriptor to submit
1441 * @se_sess: associated se_sess for endpoint
1442 * @cdb: pointer to SCSI CDB
1443 * @sense: pointer to SCSI sense buffer
1444 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1445 * @data_length: fabric expected data transfer length
1446 * @task_addr: SAM task attribute
1447 * @data_dir: DMA data direction
1448 * @flags: flags for command submission from target_sc_flags_tables
1449 *
1450 * This may only be called from process context, and also currently
1451 * assumes internal allocation of fabric payload buffer by target-core.
1452 **/
Andy Grover1edcdb42012-01-19 13:39:23 -08001453void target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001454 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1455 u32 data_length, int task_attr, int data_dir, int flags)
1456{
1457 struct se_portal_group *se_tpg;
1458 int rc;
1459
1460 se_tpg = se_sess->se_tpg;
1461 BUG_ON(!se_tpg);
1462 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1463 BUG_ON(in_interrupt());
1464 /*
1465 * Initialize se_cmd for target operation. From this point
1466 * exceptions are handled by sending exception status via
1467 * target_core_fabric_ops->queue_status() callback
1468 */
1469 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1470 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001471 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1472 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001473 /*
1474 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1475 * se_sess->sess_cmd_list. A second kref_get here is necessary
1476 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1477 * kref_put() to happen during fabric packet acknowledgement.
1478 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001479 rc = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1480 if (rc)
1481 return;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001482 /*
1483 * Signal bidirectional data payloads to target-core
1484 */
1485 if (flags & TARGET_SCF_BIDI_OP)
1486 se_cmd->se_cmd_flags |= SCF_BIDI;
1487 /*
1488 * Locate se_lun pointer and attach it to struct se_cmd
1489 */
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001490 if (transport_lookup_cmd_lun(se_cmd, unpacked_lun) < 0) {
1491 transport_send_check_condition_and_sense(se_cmd,
1492 se_cmd->scsi_sense_reason, 0);
1493 target_put_sess_cmd(se_sess, se_cmd);
1494 return;
1495 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001496
Andy Grovera12f41f2012-04-03 15:51:20 -07001497 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001498 if (rc != 0) {
1499 transport_generic_request_failure(se_cmd);
1500 return;
1501 }
Andy Grover11e319e2012-04-03 15:51:28 -07001502
1503 /*
1504 * Check if we need to delay processing because of ALUA
1505 * Active/NonOptimized primary access state..
1506 */
1507 core_alua_check_nonop_delay(se_cmd);
1508
Nicholas Bellingera6360782011-11-18 20:36:22 -08001509 transport_handle_cdb_direct(se_cmd);
Andy Grover1edcdb42012-01-19 13:39:23 -08001510 return;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001511}
1512EXPORT_SYMBOL(target_submit_cmd);
1513
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001514static void target_complete_tmr_failure(struct work_struct *work)
1515{
1516 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1517
1518 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1519 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
1520 transport_generic_free_cmd(se_cmd, 0);
1521}
1522
Andy Groverea98d7f2012-01-19 13:39:21 -08001523/**
1524 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1525 * for TMR CDBs
1526 *
1527 * @se_cmd: command descriptor to submit
1528 * @se_sess: associated se_sess for endpoint
1529 * @sense: pointer to SCSI sense buffer
1530 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1531 * @fabric_context: fabric context for TMR req
1532 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001533 * @gfp: gfp type for caller
1534 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001535 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001536 *
1537 * Callable from all contexts.
1538 **/
1539
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001540int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001541 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001542 void *fabric_tmr_ptr, unsigned char tm_type,
1543 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001544{
1545 struct se_portal_group *se_tpg;
1546 int ret;
1547
1548 se_tpg = se_sess->se_tpg;
1549 BUG_ON(!se_tpg);
1550
1551 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1552 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001553 /*
1554 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1555 * allocation failure.
1556 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001557 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001558 if (ret < 0)
1559 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001560
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001561 if (tm_type == TMR_ABORT_TASK)
1562 se_cmd->se_tmr_req->ref_task_tag = tag;
1563
Andy Groverea98d7f2012-01-19 13:39:21 -08001564 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001565 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1566 if (ret) {
1567 core_tmr_release_req(se_cmd->se_tmr_req);
1568 return ret;
1569 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001570
Andy Groverea98d7f2012-01-19 13:39:21 -08001571 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1572 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001573 /*
1574 * For callback during failure handling, push this work off
1575 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1576 */
1577 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1578 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001579 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001580 }
1581 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001582 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001583}
1584EXPORT_SYMBOL(target_submit_tmr);
1585
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001586/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001587 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001588 * has completed.
1589 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001590bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001591{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001592 bool was_active = false;
1593
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001594 if (cmd->transport_state & CMD_T_BUSY) {
1595 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001596 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1597
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001598 pr_debug("cmd %p waiting to complete\n", cmd);
1599 wait_for_completion(&cmd->task_stop_comp);
1600 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001601
1602 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001603 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1604 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001605 was_active = true;
1606 }
1607
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001608 return was_active;
1609}
1610
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001611/*
1612 * Handle SAM-esque emulation for generic transport request failures.
1613 */
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001614void transport_generic_request_failure(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001615{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001616 int ret = 0;
1617
Andy Grover6708bb22011-06-08 10:36:43 -07001618 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001619 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001620 cmd->t_task_cdb[0]);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001621 pr_debug("-----[ i_state: %d t_state: %d scsi_sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001622 cmd->se_tfo->get_cmd_state(cmd),
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001623 cmd->t_state, cmd->scsi_sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001624 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001625 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1626 (cmd->transport_state & CMD_T_STOP) != 0,
1627 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001628
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001629 /*
1630 * For SAM Task Attribute emulation for failed struct se_cmd
1631 */
1632 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1633 transport_complete_task_attr(cmd);
1634
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001635 switch (cmd->scsi_sense_reason) {
1636 case TCM_NON_EXISTENT_LUN:
1637 case TCM_UNSUPPORTED_SCSI_OPCODE:
1638 case TCM_INVALID_CDB_FIELD:
1639 case TCM_INVALID_PARAMETER_LIST:
1640 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1641 case TCM_UNKNOWN_MODE_PAGE:
1642 case TCM_WRITE_PROTECTED:
1643 case TCM_CHECK_CONDITION_ABORT_CMD:
1644 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1645 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001646 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001647 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001648 /*
1649 * No SENSE Data payload for this case, set SCSI Status
1650 * and queue the response to $FABRIC_MOD.
1651 *
1652 * Uses linux/include/scsi/scsi.h SAM status codes defs
1653 */
1654 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1655 /*
1656 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1657 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1658 * CONFLICT STATUS.
1659 *
1660 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1661 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001662 if (cmd->se_sess &&
1663 cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2)
1664 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001665 cmd->orig_fe_lun, 0x2C,
1666 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1667
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001668 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001669 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001670 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001671 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001672 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001673 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001674 cmd->t_task_cdb[0], cmd->scsi_sense_reason);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001675 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1676 break;
1677 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001678
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001679 ret = transport_send_check_condition_and_sense(cmd,
1680 cmd->scsi_sense_reason, 0);
1681 if (ret == -EAGAIN || ret == -ENOMEM)
1682 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001683
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001684check_stop:
1685 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001686 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001687 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001688 return;
1689
1690queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001691 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1692 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001693}
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001694EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001695
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001696static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001697{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -04001698 int error = 0;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001699
1700 spin_lock_irq(&cmd->t_state_lock);
1701 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1702 spin_unlock_irq(&cmd->t_state_lock);
1703
1704 if (cmd->execute_cmd)
1705 error = cmd->execute_cmd(cmd);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001706
1707 if (error) {
1708 spin_lock_irq(&cmd->t_state_lock);
1709 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1710 spin_unlock_irq(&cmd->t_state_lock);
1711
1712 transport_generic_request_failure(cmd);
1713 }
1714}
1715
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001716void target_execute_cmd(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001717{
1718 struct se_device *dev = cmd->se_dev;
1719
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001720 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001721 * If the received CDB has aleady been aborted stop processing it here.
1722 */
1723 if (transport_check_aborted_status(cmd, 1))
1724 return;
1725
1726 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001727 * Determine if IOCTL context caller in requesting the stopping of this
1728 * command for LUN shutdown purposes.
1729 */
1730 spin_lock_irq(&cmd->t_state_lock);
1731 if (cmd->transport_state & CMD_T_LUN_STOP) {
1732 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1733 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1734
1735 cmd->transport_state &= ~CMD_T_ACTIVE;
1736 spin_unlock_irq(&cmd->t_state_lock);
1737 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001738 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001739 }
1740 /*
1741 * Determine if frontend context caller is requesting the stopping of
1742 * this command for frontend exceptions.
1743 */
1744 if (cmd->transport_state & CMD_T_STOP) {
1745 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1746 __func__, __LINE__,
1747 cmd->se_tfo->get_task_tag(cmd));
1748
1749 spin_unlock_irq(&cmd->t_state_lock);
1750 complete(&cmd->t_transport_stop_comp);
1751 return;
1752 }
1753
1754 cmd->t_state = TRANSPORT_PROCESSING;
1755 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001756
1757 if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
1758 goto execute;
1759
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001760 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001761 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001762 * to allow the passed struct se_cmd list of tasks to the front of the list.
1763 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001764 switch (cmd->sam_task_attr) {
1765 case MSG_HEAD_TAG:
1766 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1767 "se_ordered_id: %u\n",
1768 cmd->t_task_cdb[0], cmd->se_ordered_id);
1769 goto execute;
1770 case MSG_ORDERED_TAG:
1771 atomic_inc(&dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001772 smp_mb__after_atomic_inc();
1773
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001774 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1775 " se_ordered_id: %u\n",
1776 cmd->t_task_cdb[0], cmd->se_ordered_id);
1777
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001778 /*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001779 * Execute an ORDERED command if no other older commands
1780 * exist that need to be completed first.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001781 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001782 if (!atomic_read(&dev->simple_cmds))
1783 goto execute;
1784 break;
1785 default:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001786 /*
1787 * For SIMPLE and UNTAGGED Task Attribute commands
1788 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001789 atomic_inc(&dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001790 smp_mb__after_atomic_inc();
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001791 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001792 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001793
1794 if (atomic_read(&dev->dev_ordered_sync) != 0) {
1795 spin_lock(&dev->delayed_cmd_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001796 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1797 spin_unlock(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001798
Andy Grover6708bb22011-06-08 10:36:43 -07001799 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001800 " delayed CMD list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07001801 cmd->t_task_cdb[0], cmd->sam_task_attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001802 cmd->se_ordered_id);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001803 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001804 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001805
1806execute:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001807 /*
1808 * Otherwise, no ORDERED task attributes exist..
1809 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001810 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001811}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001812EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001813
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001814/*
1815 * Used to obtain Sense Data from underlying Linux/SCSI struct scsi_cmnd
1816 */
1817static int transport_get_sense_data(struct se_cmd *cmd)
1818{
1819 unsigned char *buffer = cmd->sense_buffer, *sense_buffer = NULL;
Christoph Hellwig42bf8292011-10-12 11:07:00 -04001820 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001821 unsigned long flags;
1822 u32 offset = 0;
1823
Andy Grovere3d6f902011-07-19 08:55:10 +00001824 WARN_ON(!cmd->se_lun);
1825
Christoph Hellwig42bf8292011-10-12 11:07:00 -04001826 if (!dev)
1827 return 0;
1828
Andy Grovera1d8b492011-05-02 17:12:10 -07001829 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001830 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07001831 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001832 return 0;
1833 }
1834
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001835 if (!(cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE))
1836 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001837
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001838 if (!dev->transport->get_sense_buffer) {
1839 pr_err("dev->transport->get_sense_buffer is NULL\n");
1840 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001841 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001842
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001843 sense_buffer = dev->transport->get_sense_buffer(cmd);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001844 if (!sense_buffer) {
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001845 pr_err("ITT 0x%08x cmd %p: Unable to locate"
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001846 " sense buffer for task with sense\n",
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001847 cmd->se_tfo->get_task_tag(cmd), cmd);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001848 goto out;
1849 }
Christoph Hellwig5787cac2012-04-24 00:25:06 -04001850
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001851 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1852
1853 offset = cmd->se_tfo->set_fabric_sense_len(cmd, TRANSPORT_SENSE_BUFFER);
1854
1855 memcpy(&buffer[offset], sense_buffer, TRANSPORT_SENSE_BUFFER);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001856
1857 /* Automatically padded */
1858 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER + offset;
1859
1860 pr_debug("HBA_[%u]_PLUG[%s]: Set SAM STATUS: 0x%02x and sense\n",
1861 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
1862 return 0;
1863
Christoph Hellwig785fdf72012-04-24 00:25:04 -04001864out:
Andy Grovera1d8b492011-05-02 17:12:10 -07001865 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001866 return -1;
1867}
1868
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001869/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001870 * Process all commands up to the last received ORDERED task attribute which
1871 * requires another blocking boundary
1872 */
1873static void target_restart_delayed_cmds(struct se_device *dev)
1874{
1875 for (;;) {
1876 struct se_cmd *cmd;
1877
1878 spin_lock(&dev->delayed_cmd_lock);
1879 if (list_empty(&dev->delayed_cmd_list)) {
1880 spin_unlock(&dev->delayed_cmd_lock);
1881 break;
1882 }
1883
1884 cmd = list_entry(dev->delayed_cmd_list.next,
1885 struct se_cmd, se_delayed_node);
1886 list_del(&cmd->se_delayed_node);
1887 spin_unlock(&dev->delayed_cmd_lock);
1888
1889 __target_execute_cmd(cmd);
1890
1891 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1892 break;
1893 }
1894}
1895
1896/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001897 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001898 * and ordered cmds need to have their tasks added to the execution queue.
1899 */
1900static void transport_complete_task_attr(struct se_cmd *cmd)
1901{
Andy Grover5951146d2011-07-19 10:26:37 +00001902 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001903
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001904 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001905 atomic_dec(&dev->simple_cmds);
1906 smp_mb__after_atomic_dec();
1907 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001908 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001909 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1910 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001911 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001912 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001913 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001914 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1915 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001916 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001917 atomic_dec(&dev->dev_ordered_sync);
1918 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001919
1920 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001921 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001922 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1923 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001924
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001925 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001926}
1927
Christoph Hellwige057f532011-10-17 13:56:41 -04001928static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001929{
1930 int ret = 0;
1931
Christoph Hellwige057f532011-10-17 13:56:41 -04001932 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1933 transport_complete_task_attr(cmd);
1934
1935 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1936 ret = cmd->se_tfo->queue_status(cmd);
1937 if (ret)
1938 goto out;
1939 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001940
1941 switch (cmd->data_direction) {
1942 case DMA_FROM_DEVICE:
1943 ret = cmd->se_tfo->queue_data_in(cmd);
1944 break;
1945 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001946 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001947 ret = cmd->se_tfo->queue_data_in(cmd);
1948 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001949 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001950 }
1951 /* Fall through for DMA_TO_DEVICE */
1952 case DMA_NONE:
1953 ret = cmd->se_tfo->queue_status(cmd);
1954 break;
1955 default:
1956 break;
1957 }
1958
Christoph Hellwige057f532011-10-17 13:56:41 -04001959out:
1960 if (ret < 0) {
1961 transport_handle_queue_full(cmd, cmd->se_dev);
1962 return;
1963 }
1964 transport_lun_remove_cmd(cmd);
1965 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001966}
1967
1968static void transport_handle_queue_full(
1969 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001970 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001971{
1972 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001973 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1974 atomic_inc(&dev->dev_qf_count);
1975 smp_mb__after_atomic_inc();
1976 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1977
1978 schedule_work(&cmd->se_dev->qf_work_queue);
1979}
1980
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001981static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001983 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001984 int reason = 0, ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001985
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001986 /*
1987 * Check if we need to move delayed/dormant tasks from cmds on the
1988 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1989 * Attribute.
1990 */
Andy Grover5951146d2011-07-19 10:26:37 +00001991 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001992 transport_complete_task_attr(cmd);
1993 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001994 * Check to schedule QUEUE_FULL work, or execute an existing
1995 * cmd->transport_qf_callback()
1996 */
1997 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1998 schedule_work(&cmd->se_dev->qf_work_queue);
1999
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002000 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002001 * Check if we need to retrieve a sense buffer from
2002 * the struct se_cmd in question.
2003 */
2004 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
2005 if (transport_get_sense_data(cmd) < 0)
2006 reason = TCM_NON_EXISTENT_LUN;
2007
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002008 if (cmd->scsi_status) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002009 ret = transport_send_check_condition_and_sense(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002010 cmd, reason, 1);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002011 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002012 goto queue_full;
2013
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002014 transport_lun_remove_cmd(cmd);
2015 transport_cmd_check_stop_to_fabric(cmd);
2016 return;
2017 }
2018 }
2019 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002020 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002021 * XDWRITE_READ_10 emulation.
2022 */
2023 if (cmd->transport_complete_callback)
2024 cmd->transport_complete_callback(cmd);
2025
2026 switch (cmd->data_direction) {
2027 case DMA_FROM_DEVICE:
2028 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002029 if (cmd->se_lun->lun_sep) {
2030 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002031 cmd->data_length;
2032 }
2033 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002034
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002035 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002036 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002037 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002038 break;
2039 case DMA_TO_DEVICE:
2040 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002041 if (cmd->se_lun->lun_sep) {
2042 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002043 cmd->data_length;
2044 }
2045 spin_unlock(&cmd->se_lun->lun_sep_lock);
2046 /*
2047 * Check if we need to send READ payload for BIDI-COMMAND
2048 */
Andy Groverec98f782011-07-20 19:28:46 +00002049 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002050 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002051 if (cmd->se_lun->lun_sep) {
2052 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002053 cmd->data_length;
2054 }
2055 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002056 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002057 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002058 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002059 break;
2060 }
2061 /* Fall through for DMA_TO_DEVICE */
2062 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002063 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002064 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002065 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002066 break;
2067 default:
2068 break;
2069 }
2070
2071 transport_lun_remove_cmd(cmd);
2072 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002073 return;
2074
2075queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07002076 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002077 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04002078 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
2079 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002080}
2081
Andy Grover6708bb22011-06-08 10:36:43 -07002082static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002083{
Andy Groverec98f782011-07-20 19:28:46 +00002084 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002085 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086
Andy Grover6708bb22011-06-08 10:36:43 -07002087 for_each_sg(sgl, sg, nents, count)
2088 __free_page(sg_page(sg));
2089
2090 kfree(sgl);
2091}
2092
2093static inline void transport_free_pages(struct se_cmd *cmd)
2094{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002095 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07002096 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002097
Andy Grover6708bb22011-06-08 10:36:43 -07002098 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002099 cmd->t_data_sg = NULL;
2100 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002101
Andy Grover6708bb22011-06-08 10:36:43 -07002102 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002103 cmd->t_bidi_data_sg = NULL;
2104 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002105}
2106
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002107/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002108 * transport_release_cmd - free a command
2109 * @cmd: command to free
2110 *
2111 * This routine unconditionally frees a command, and reference counting
2112 * or list removal must be done in the caller.
2113 */
2114static void transport_release_cmd(struct se_cmd *cmd)
2115{
2116 BUG_ON(!cmd->se_tfo);
2117
Andy Groverc8e31f22012-01-19 13:39:17 -08002118 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002119 core_tmr_release_req(cmd->se_tmr_req);
2120 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2121 kfree(cmd->t_task_cdb);
2122 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002123 * If this cmd has been setup with target_get_sess_cmd(), drop
2124 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002125 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002126 if (cmd->check_release != 0) {
2127 target_put_sess_cmd(cmd->se_sess, cmd);
2128 return;
2129 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002130 cmd->se_tfo->release_cmd(cmd);
2131}
2132
2133/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002134 * transport_put_cmd - release a reference to a command
2135 * @cmd: command to release
2136 *
2137 * This routine releases our reference to the command and frees it if possible.
2138 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002139static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002140{
2141 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002142
Andy Grovera1d8b492011-05-02 17:12:10 -07002143 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002144 if (atomic_read(&cmd->t_fe_count)) {
2145 if (!atomic_dec_and_test(&cmd->t_fe_count))
2146 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002147 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002148
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002149 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
2150 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002151 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002152 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002153 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002154
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002155 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02002156 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002157 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002158out_busy:
2159 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002160}
2161
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162/*
Andy Groverec98f782011-07-20 19:28:46 +00002163 * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of
2164 * allocating in the core.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002165 * @cmd: Associated se_cmd descriptor
2166 * @mem: SGL style memory for TCM WRITE / READ
2167 * @sg_mem_num: Number of SGL elements
2168 * @mem_bidi_in: SGL style memory for TCM BIDI READ
2169 * @sg_mem_bidi_num: Number of BIDI READ SGL elements
2170 *
2171 * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage
2172 * of parameters.
2173 */
2174int transport_generic_map_mem_to_cmd(
2175 struct se_cmd *cmd,
Andy Grover5951146d2011-07-19 10:26:37 +00002176 struct scatterlist *sgl,
2177 u32 sgl_count,
2178 struct scatterlist *sgl_bidi,
2179 u32 sgl_bidi_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002180{
Andy Grover5951146d2011-07-19 10:26:37 +00002181 if (!sgl || !sgl_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002182 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002183
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002184 /*
2185 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
2186 * scatterlists already have been set to follow what the fabric
2187 * passes for the original expected data transfer length.
2188 */
2189 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
2190 pr_warn("Rejecting SCSI DATA overflow for fabric using"
2191 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
2192 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2193 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
2194 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002195 }
2196
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002197 cmd->t_data_sg = sgl;
2198 cmd->t_data_nents = sgl_count;
2199
2200 if (sgl_bidi && sgl_bidi_count) {
2201 cmd->t_bidi_data_sg = sgl_bidi;
2202 cmd->t_bidi_data_nents = sgl_bidi_count;
2203 }
2204 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002205 return 0;
2206}
2207EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
2208
Andy Grover49493142012-01-16 16:57:08 -08002209void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002210{
Andy Groverec98f782011-07-20 19:28:46 +00002211 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002212 struct page **pages;
2213 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002214
Andy Groverec98f782011-07-20 19:28:46 +00002215 BUG_ON(!sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002216 /*
Andy Groverec98f782011-07-20 19:28:46 +00002217 * We need to take into account a possible offset here for fabrics like
2218 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2219 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002220 */
Andy Grover49493142012-01-16 16:57:08 -08002221 if (!cmd->t_data_nents)
2222 return NULL;
2223 else if (cmd->t_data_nents == 1)
2224 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002225
Andy Grover49493142012-01-16 16:57:08 -08002226 /* >1 page. use vmap */
2227 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
2228 if (!pages)
2229 return NULL;
2230
2231 /* convert sg[] to pages[] */
2232 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2233 pages[i] = sg_page(sg);
2234 }
2235
2236 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2237 kfree(pages);
2238 if (!cmd->t_data_vmap)
2239 return NULL;
2240
2241 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002242}
Andy Grover49493142012-01-16 16:57:08 -08002243EXPORT_SYMBOL(transport_kmap_data_sg);
2244
2245void transport_kunmap_data_sg(struct se_cmd *cmd)
2246{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002247 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002248 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002249 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002250 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002251 return;
2252 }
Andy Grover49493142012-01-16 16:57:08 -08002253
2254 vunmap(cmd->t_data_vmap);
2255 cmd->t_data_vmap = NULL;
2256}
2257EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002258
2259static int
2260transport_generic_get_mem(struct se_cmd *cmd)
2261{
Andy Groverec98f782011-07-20 19:28:46 +00002262 u32 length = cmd->data_length;
2263 unsigned int nents;
2264 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002265 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002266 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002267
Andy Groverec98f782011-07-20 19:28:46 +00002268 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2269 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2270 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002271 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002272
Andy Groverec98f782011-07-20 19:28:46 +00002273 cmd->t_data_nents = nents;
2274 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002275
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002276 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002277
Andy Groverec98f782011-07-20 19:28:46 +00002278 while (length) {
2279 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002280 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002281 if (!page)
2282 goto out;
2283
2284 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2285 length -= page_len;
2286 i++;
2287 }
2288 return 0;
2289
2290out:
2291 while (i >= 0) {
2292 __free_page(sg_page(&cmd->t_data_sg[i]));
2293 i--;
2294 }
2295 kfree(cmd->t_data_sg);
2296 cmd->t_data_sg = NULL;
2297 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002298}
2299
Andy Grovera1d8b492011-05-02 17:12:10 -07002300/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002301 * Allocate any required resources to execute the command. For writes we
2302 * might not have the payload yet, so notify the fabric via a call to
2303 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002304 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002305int transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002306{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002307 int ret = 0;
2308
2309 /*
2310 * Determine is the TCM fabric module has already allocated physical
2311 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002312 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002313 */
Andy Groverec98f782011-07-20 19:28:46 +00002314 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2315 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002316 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002317 if (ret < 0)
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002318 goto out_fail;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002319 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002320
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002321 /* Workaround for handling zero-length control CDBs */
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002322 if (!(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) && !cmd->data_length) {
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002323 spin_lock_irq(&cmd->t_state_lock);
Roland Dreier410f6702011-11-22 13:51:32 -08002324 cmd->t_state = TRANSPORT_COMPLETE;
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002325 cmd->transport_state |= CMD_T_ACTIVE;
2326 spin_unlock_irq(&cmd->t_state_lock);
Nicholas Bellinger91ec1d32012-01-13 12:01:34 -08002327
2328 if (cmd->t_task_cdb[0] == REQUEST_SENSE) {
2329 u8 ua_asc = 0, ua_ascq = 0;
2330
2331 core_scsi3_ua_clear_for_request_sense(cmd,
2332 &ua_asc, &ua_ascq);
2333 }
2334
Roland Dreier410f6702011-11-22 13:51:32 -08002335 INIT_WORK(&cmd->work, target_complete_ok_work);
2336 queue_work(target_completion_wq, &cmd->work);
2337 return 0;
2338 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002339
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002340 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002341
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002342 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002343 * If this command is not a write we can execute it right here,
2344 * for write buffers we need to notify the fabric driver first
2345 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002346 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002347 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002348 if (cmd->data_direction != DMA_TO_DEVICE) {
2349 target_execute_cmd(cmd);
2350 return 0;
2351 }
2352
2353 spin_lock_irq(&cmd->t_state_lock);
2354 cmd->t_state = TRANSPORT_WRITE_PENDING;
2355 spin_unlock_irq(&cmd->t_state_lock);
2356
2357 transport_cmd_check_stop(cmd, false);
2358
2359 ret = cmd->se_tfo->write_pending(cmd);
2360 if (ret == -EAGAIN || ret == -ENOMEM)
2361 goto queue_full;
2362
2363 if (ret < 0)
2364 return ret;
2365 return 1;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002366
2367out_fail:
2368 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2369 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2370 return -EINVAL;
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002371queue_full:
2372 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2373 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2374 transport_handle_queue_full(cmd, cmd->se_dev);
2375 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002376}
Andy Grovera1d8b492011-05-02 17:12:10 -07002377EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002378
Christoph Hellwige057f532011-10-17 13:56:41 -04002379static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002380{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002381 int ret;
2382
2383 ret = cmd->se_tfo->write_pending(cmd);
2384 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002385 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2386 cmd);
2387 transport_handle_queue_full(cmd, cmd->se_dev);
2388 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002389}
2390
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002391void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002392{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002393 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002394 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002395 transport_wait_for_tasks(cmd);
2396
Christoph Hellwig35462972011-05-31 23:56:57 -04002397 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002398 } else {
2399 if (wait_for_tasks)
2400 transport_wait_for_tasks(cmd);
2401
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2403
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002404 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002405 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002406
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002407 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002408 }
2409}
2410EXPORT_SYMBOL(transport_generic_free_cmd);
2411
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002412/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2413 * @se_sess: session to reference
2414 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002415 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002416 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002417static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2418 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002419{
2420 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002421 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002422
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002423 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002424 /*
2425 * Add a second kref if the fabric caller is expecting to handle
2426 * fabric acknowledgement that requires two target_put_sess_cmd()
2427 * invocations before se_cmd descriptor release.
2428 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002429 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002430 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002431 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2432 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002433
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002434 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002435 if (se_sess->sess_tearing_down) {
2436 ret = -ESHUTDOWN;
2437 goto out;
2438 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002439 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2440 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002441
2442out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002443 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002444 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002445}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002446
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002447static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002448{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002449 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2450 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002451 unsigned long flags;
2452
2453 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2454 if (list_empty(&se_cmd->se_cmd_list)) {
2455 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002456 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002457 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002458 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002459 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2460 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2461 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002462 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002463 }
2464 list_del(&se_cmd->se_cmd_list);
2465 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2466
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002467 se_cmd->se_tfo->release_cmd(se_cmd);
2468}
2469
2470/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2471 * @se_sess: session to reference
2472 * @se_cmd: command descriptor to drop
2473 */
2474int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2475{
2476 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002477}
2478EXPORT_SYMBOL(target_put_sess_cmd);
2479
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002480/* target_sess_cmd_list_set_waiting - Flag all commands in
2481 * sess_cmd_list to complete cmd_wait_comp. Set
2482 * sess_tearing_down so no more commands are queued.
2483 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002484 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002485void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002486{
2487 struct se_cmd *se_cmd;
2488 unsigned long flags;
2489
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002490 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002491
2492 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002493 se_sess->sess_tearing_down = 1;
2494
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002495 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002496 se_cmd->cmd_wait_set = 1;
2497
2498 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2499}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002500EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002501
2502/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2503 * @se_sess: session to wait for active I/O
2504 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2505 */
2506void target_wait_for_sess_cmds(
2507 struct se_session *se_sess,
2508 int wait_for_tasks)
2509{
2510 struct se_cmd *se_cmd, *tmp_cmd;
2511 bool rc = false;
2512
2513 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002514 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002515 list_del(&se_cmd->se_cmd_list);
2516
2517 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2518 " %d\n", se_cmd, se_cmd->t_state,
2519 se_cmd->se_tfo->get_cmd_state(se_cmd));
2520
2521 if (wait_for_tasks) {
2522 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2523 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2524 se_cmd->se_tfo->get_cmd_state(se_cmd));
2525
2526 rc = transport_wait_for_tasks(se_cmd);
2527
2528 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2529 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2530 se_cmd->se_tfo->get_cmd_state(se_cmd));
2531 }
2532
2533 if (!rc) {
2534 wait_for_completion(&se_cmd->cmd_wait_comp);
2535 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2536 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2537 se_cmd->se_tfo->get_cmd_state(se_cmd));
2538 }
2539
2540 se_cmd->se_tfo->release_cmd(se_cmd);
2541 }
2542}
2543EXPORT_SYMBOL(target_wait_for_sess_cmds);
2544
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002545/* transport_lun_wait_for_tasks():
2546 *
2547 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2548 * an struct se_lun to be successfully shutdown.
2549 */
2550static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2551{
2552 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002553 int ret = 0;
2554
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002555 /*
2556 * If the frontend has already requested this struct se_cmd to
2557 * be stopped, we can safely ignore this struct se_cmd.
2558 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002559 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002560 if (cmd->transport_state & CMD_T_STOP) {
2561 cmd->transport_state &= ~CMD_T_LUN_STOP;
2562
2563 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2564 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002565 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002566 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002567 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002568 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002569 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002570 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002571
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002572 // XXX: audit task_flags checks.
2573 spin_lock_irqsave(&cmd->t_state_lock, flags);
2574 if ((cmd->transport_state & CMD_T_BUSY) &&
2575 (cmd->transport_state & CMD_T_SENT)) {
2576 if (!target_stop_cmd(cmd, &flags))
2577 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002578 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002579 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002580
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002581 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2582 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002583 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002584 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002585 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002586 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002587 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002588 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002589 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002590
2591 return 0;
2592}
2593
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002594static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2595{
2596 struct se_cmd *cmd = NULL;
2597 unsigned long lun_flags, cmd_flags;
2598 /*
2599 * Do exception processing and return CHECK_CONDITION status to the
2600 * Initiator Port.
2601 */
2602 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002603 while (!list_empty(&lun->lun_cmd_list)) {
2604 cmd = list_first_entry(&lun->lun_cmd_list,
2605 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002606 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002607
Andy Grovera1d8b492011-05-02 17:12:10 -07002608 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002609 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002610 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002611 cmd->se_lun->unpacked_lun,
2612 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002613 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002614 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002615
2616 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2617
Andy Grover6708bb22011-06-08 10:36:43 -07002618 if (!cmd->se_lun) {
2619 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002620 cmd->se_tfo->get_task_tag(cmd),
2621 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002622 BUG();
2623 }
2624 /*
2625 * If the Storage engine still owns the iscsi_cmd_t, determine
2626 * and/or stop its context.
2627 */
Andy Grover6708bb22011-06-08 10:36:43 -07002628 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002629 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2630 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002631
Andy Grovere3d6f902011-07-19 08:55:10 +00002632 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002633 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2634 continue;
2635 }
2636
Andy Grover6708bb22011-06-08 10:36:43 -07002637 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002638 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002639 cmd->se_lun->unpacked_lun,
2640 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002641
Andy Grovera1d8b492011-05-02 17:12:10 -07002642 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002643 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002644 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002645 goto check_cond;
2646 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002647 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002648 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002649 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651 /*
2652 * The Storage engine stopped this struct se_cmd before it was
2653 * send to the fabric frontend for delivery back to the
2654 * Initiator Node. Return this SCSI CDB back with an
2655 * CHECK_CONDITION status.
2656 */
2657check_cond:
2658 transport_send_check_condition_and_sense(cmd,
2659 TCM_NON_EXISTENT_LUN, 0);
2660 /*
2661 * If the fabric frontend is waiting for this iscsi_cmd_t to
2662 * be released, notify the waiting thread now that LU has
2663 * finished accessing it.
2664 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002665 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002666 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002667 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002668 " struct se_cmd: %p ITT: 0x%08x\n",
2669 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002670 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002671
Andy Grovera1d8b492011-05-02 17:12:10 -07002672 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002673 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002674 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002675 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002676 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2677 continue;
2678 }
Andy Grover6708bb22011-06-08 10:36:43 -07002679 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002680 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002681
Andy Grovera1d8b492011-05-02 17:12:10 -07002682 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002683 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2684 }
2685 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2686}
2687
2688static int transport_clear_lun_thread(void *p)
2689{
Jörn Engel8359cf42011-11-24 02:05:51 +01002690 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691
2692 __transport_clear_lun_from_sessions(lun);
2693 complete(&lun->lun_shutdown_comp);
2694
2695 return 0;
2696}
2697
2698int transport_clear_lun_from_sessions(struct se_lun *lun)
2699{
2700 struct task_struct *kt;
2701
Andy Grover5951146d2011-07-19 10:26:37 +00002702 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002703 "tcm_cl_%u", lun->unpacked_lun);
2704 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002705 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002706 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 }
2708 wait_for_completion(&lun->lun_shutdown_comp);
2709
2710 return 0;
2711}
2712
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002713/**
2714 * transport_wait_for_tasks - wait for completion to occur
2715 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002717 * Called from frontend fabric context to wait for storage engine
2718 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002719 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002720bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002721{
2722 unsigned long flags;
2723
Andy Grovera1d8b492011-05-02 17:12:10 -07002724 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002725 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2726 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002727 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002728 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002729 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002730
Andy Groverc8e31f22012-01-19 13:39:17 -08002731 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2732 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002733 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002734 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002735 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002736 /*
2737 * If we are already stopped due to an external event (ie: LUN shutdown)
2738 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002739 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2741 * has completed its operation on the struct se_cmd.
2742 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002743 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002744 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002745 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002746 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002747 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002748 /*
2749 * There is a special case for WRITES where a FE exception +
2750 * LUN shutdown means ConfigFS context is still sleeping on
2751 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2752 * We go ahead and up transport_lun_stop_comp just to be sure
2753 * here.
2754 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002755 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2756 complete(&cmd->transport_lun_stop_comp);
2757 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2758 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002760 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002761 /*
2762 * At this point, the frontend who was the originator of this
2763 * struct se_cmd, now owns the structure and can be released through
2764 * normal means below.
2765 */
Andy Grover6708bb22011-06-08 10:36:43 -07002766 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002767 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002768 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002769 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002770
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002771 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002772 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002773
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002774 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002775 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002776 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002777 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002779 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780
Andy Grover6708bb22011-06-08 10:36:43 -07002781 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002782 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002783 cmd, cmd->se_tfo->get_task_tag(cmd),
2784 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002785
Andy Grovera1d8b492011-05-02 17:12:10 -07002786 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002787
Andy Grovera1d8b492011-05-02 17:12:10 -07002788 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002789
Andy Grovera1d8b492011-05-02 17:12:10 -07002790 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002791 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002792
Andy Grover6708bb22011-06-08 10:36:43 -07002793 pr_debug("wait_for_tasks: Stopped wait_for_compltion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002794 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002795 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002796
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002797 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002798
2799 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002800}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002801EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002802
2803static int transport_get_sense_codes(
2804 struct se_cmd *cmd,
2805 u8 *asc,
2806 u8 *ascq)
2807{
2808 *asc = cmd->scsi_asc;
2809 *ascq = cmd->scsi_ascq;
2810
2811 return 0;
2812}
2813
2814static int transport_set_sense_codes(
2815 struct se_cmd *cmd,
2816 u8 asc,
2817 u8 ascq)
2818{
2819 cmd->scsi_asc = asc;
2820 cmd->scsi_ascq = ascq;
2821
2822 return 0;
2823}
2824
2825int transport_send_check_condition_and_sense(
2826 struct se_cmd *cmd,
2827 u8 reason,
2828 int from_transport)
2829{
2830 unsigned char *buffer = cmd->sense_buffer;
2831 unsigned long flags;
2832 int offset;
2833 u8 asc = 0, ascq = 0;
2834
Andy Grovera1d8b492011-05-02 17:12:10 -07002835 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002836 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002837 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002838 return 0;
2839 }
2840 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002841 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002842
2843 if (!reason && from_transport)
2844 goto after_reason;
2845
2846 if (!from_transport)
2847 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
2848 /*
2849 * Data Segment and SenseLength of the fabric response PDU.
2850 *
2851 * TRANSPORT_SENSE_BUFFER is now set to SCSI_SENSE_BUFFERSIZE
2852 * from include/scsi/scsi_cmnd.h
2853 */
Andy Grovere3d6f902011-07-19 08:55:10 +00002854 offset = cmd->se_tfo->set_fabric_sense_len(cmd,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002855 TRANSPORT_SENSE_BUFFER);
2856 /*
2857 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2858 * SENSE KEY values from include/scsi/scsi.h
2859 */
2860 switch (reason) {
2861 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002862 /* CURRENT ERROR */
2863 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002864 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002865 /* ILLEGAL REQUEST */
2866 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2867 /* LOGICAL UNIT NOT SUPPORTED */
2868 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x25;
2869 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002870 case TCM_UNSUPPORTED_SCSI_OPCODE:
2871 case TCM_SECTOR_COUNT_TOO_MANY:
2872 /* CURRENT ERROR */
2873 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002874 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002875 /* ILLEGAL REQUEST */
2876 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2877 /* INVALID COMMAND OPERATION CODE */
2878 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x20;
2879 break;
2880 case TCM_UNKNOWN_MODE_PAGE:
2881 /* CURRENT ERROR */
2882 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002883 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002884 /* ILLEGAL REQUEST */
2885 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2886 /* INVALID FIELD IN CDB */
2887 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
2888 break;
2889 case TCM_CHECK_CONDITION_ABORT_CMD:
2890 /* CURRENT ERROR */
2891 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002892 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002893 /* ABORTED COMMAND */
2894 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
2895 /* BUS DEVICE RESET FUNCTION OCCURRED */
2896 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x29;
2897 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x03;
2898 break;
2899 case TCM_INCORRECT_AMOUNT_OF_DATA:
2900 /* CURRENT ERROR */
2901 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002902 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002903 /* ABORTED COMMAND */
2904 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
2905 /* WRITE ERROR */
2906 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c;
2907 /* NOT ENOUGH UNSOLICITED DATA */
2908 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0d;
2909 break;
2910 case TCM_INVALID_CDB_FIELD:
2911 /* CURRENT ERROR */
2912 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002913 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002914 /* ILLEGAL REQUEST */
2915 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002916 /* INVALID FIELD IN CDB */
2917 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24;
2918 break;
2919 case TCM_INVALID_PARAMETER_LIST:
2920 /* CURRENT ERROR */
2921 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002922 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002923 /* ILLEGAL REQUEST */
2924 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002925 /* INVALID FIELD IN PARAMETER LIST */
2926 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x26;
2927 break;
2928 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2929 /* CURRENT ERROR */
2930 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002931 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002932 /* ABORTED COMMAND */
2933 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
2934 /* WRITE ERROR */
2935 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c;
2936 /* UNEXPECTED_UNSOLICITED_DATA */
2937 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0c;
2938 break;
2939 case TCM_SERVICE_CRC_ERROR:
2940 /* CURRENT ERROR */
2941 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002942 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002943 /* ABORTED COMMAND */
2944 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
2945 /* PROTOCOL SERVICE CRC ERROR */
2946 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x47;
2947 /* N/A */
2948 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x05;
2949 break;
2950 case TCM_SNACK_REJECTED:
2951 /* CURRENT ERROR */
2952 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002953 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002954 /* ABORTED COMMAND */
2955 buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
2956 /* READ ERROR */
2957 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x11;
2958 /* FAILED RETRANSMISSION REQUEST */
2959 buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x13;
2960 break;
2961 case TCM_WRITE_PROTECTED:
2962 /* CURRENT ERROR */
2963 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002964 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002965 /* DATA PROTECT */
2966 buffer[offset+SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
2967 /* WRITE PROTECTED */
2968 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x27;
2969 break;
2970 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2971 /* CURRENT ERROR */
2972 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002973 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002974 /* UNIT ATTENTION */
2975 buffer[offset+SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
2976 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
2977 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
2978 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
2979 break;
2980 case TCM_CHECK_CONDITION_NOT_READY:
2981 /* CURRENT ERROR */
2982 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002983 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002984 /* Not Ready */
2985 buffer[offset+SPC_SENSE_KEY_OFFSET] = NOT_READY;
2986 transport_get_sense_codes(cmd, &asc, &ascq);
2987 buffer[offset+SPC_ASC_KEY_OFFSET] = asc;
2988 buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq;
2989 break;
2990 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2991 default:
2992 /* CURRENT ERROR */
2993 buffer[offset] = 0x70;
Roland Dreier895f3022011-12-13 14:55:33 -08002994 buffer[offset+SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002995 /* ILLEGAL REQUEST */
2996 buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2997 /* LOGICAL UNIT COMMUNICATION FAILURE */
2998 buffer[offset+SPC_ASC_KEY_OFFSET] = 0x80;
2999 break;
3000 }
3001 /*
3002 * This code uses linux/include/scsi/scsi.h SAM status codes!
3003 */
3004 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
3005 /*
3006 * Automatically padded, this value is encoded in the fabric's
3007 * data_length response PDU containing the SCSI defined sense data.
3008 */
3009 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER + offset;
3010
3011after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003012 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003013}
3014EXPORT_SYMBOL(transport_send_check_condition_and_sense);
3015
3016int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
3017{
3018 int ret = 0;
3019
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05003020 if (cmd->transport_state & CMD_T_ABORTED) {
Andy Grover6708bb22011-06-08 10:36:43 -07003021 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003022 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
3023 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07003024
Andy Grover6708bb22011-06-08 10:36:43 -07003025 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003026 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07003027 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00003028 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003029
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003030 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00003031 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003032 ret = 1;
3033 }
3034 return ret;
3035}
3036EXPORT_SYMBOL(transport_check_aborted_status);
3037
3038void transport_send_task_abort(struct se_cmd *cmd)
3039{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07003040 unsigned long flags;
3041
3042 spin_lock_irqsave(&cmd->t_state_lock, flags);
3043 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
3044 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3045 return;
3046 }
3047 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3048
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003049 /*
3050 * If there are still expected incoming fabric WRITEs, we wait
3051 * until until they have completed before sending a TASK_ABORTED
3052 * response. This response with TASK_ABORTED status will be
3053 * queued back to fabric module by transport_check_aborted_status().
3054 */
3055 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00003056 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05003057 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003058 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003059 }
3060 }
3061 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07003062
Andy Grover6708bb22011-06-08 10:36:43 -07003063 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07003064 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00003065 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003066
Andy Grovere3d6f902011-07-19 08:55:10 +00003067 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003068}
3069
Christoph Hellwigaf877292012-07-08 15:58:49 -04003070static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003071{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003072 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00003073 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003074 struct se_tmr_req *tmr = cmd->se_tmr_req;
3075 int ret;
3076
3077 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003078 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08003079 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003080 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003081 case TMR_ABORT_TASK_SET:
3082 case TMR_CLEAR_ACA:
3083 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003084 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
3085 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003086 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003087 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
3088 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
3089 TMR_FUNCTION_REJECTED;
3090 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003091 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003092 tmr->response = TMR_FUNCTION_REJECTED;
3093 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003094 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003095 tmr->response = TMR_FUNCTION_REJECTED;
3096 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003097 default:
Andy Grover6708bb22011-06-08 10:36:43 -07003098 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003099 tmr->function);
3100 tmr->response = TMR_FUNCTION_REJECTED;
3101 break;
3102 }
3103
3104 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00003105 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003106
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04003107 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003108}
3109
Christoph Hellwigaf877292012-07-08 15:58:49 -04003110int transport_generic_handle_tmr(
3111 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003112{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003113 INIT_WORK(&cmd->work, target_tmr_work);
3114 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003115 return 0;
3116}
Christoph Hellwigaf877292012-07-08 15:58:49 -04003117EXPORT_SYMBOL(transport_generic_handle_tmr);