blob: 53d1d756f7f532afea85bd8842ca2d726c878abf [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 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08006 * (c) Copyright 2002-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/net.h>
27#include <linux/delay.h>
28#include <linux/string.h>
29#include <linux/timer.h>
30#include <linux/slab.h>
31#include <linux/blkdev.h>
32#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <linux/kthread.h>
34#include <linux/in.h>
35#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040036#include <linux/module.h>
Roland Dreier015487b2012-02-13 16:18:17 -080037#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <asm/unaligned.h>
39#include <net/sock.h>
40#include <net/tcp.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070043#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044
45#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050046#include <target/target_core_backend.h>
47#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include <target/target_core_configfs.h>
49
Christoph Hellwige26d99a2011-11-14 12:30:30 -050050#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080053#include "target_core_ua.h"
54
Roland Dreiere5c0d6a2013-06-26 17:36:17 -070055#define CREATE_TRACE_POINTS
56#include <trace/events/target.h>
57
Christoph Hellwig35e0e752011-10-17 13:56:53 -040058static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061struct kmem_cache *t10_pr_reg_cache;
62struct kmem_cache *t10_alua_lu_gp_cache;
63struct kmem_cache *t10_alua_lu_gp_mem_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_cache;
65struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
66
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070068static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040069 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000070static int transport_generic_get_mem(struct se_cmd *cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -070071static int transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040072static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073
Andy Grovere3d6f902011-07-19 08:55:10 +000074int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080076 se_sess_cache = kmem_cache_create("se_sess_cache",
77 sizeof(struct se_session), __alignof__(struct se_session),
78 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070079 if (!se_sess_cache) {
80 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080082 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083 }
84 se_ua_cache = kmem_cache_create("se_ua_cache",
85 sizeof(struct se_ua), __alignof__(struct se_ua),
86 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070087 if (!se_ua_cache) {
88 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040089 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080091 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
92 sizeof(struct t10_pr_registration),
93 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070094 if (!t10_pr_reg_cache) {
95 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040097 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098 }
99 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
100 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
101 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700102 if (!t10_alua_lu_gp_cache) {
103 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800104 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400105 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 }
107 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
108 sizeof(struct t10_alua_lu_gp_member),
109 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700110 if (!t10_alua_lu_gp_mem_cache) {
111 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400113 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800114 }
115 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
116 sizeof(struct t10_alua_tg_pt_gp),
117 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700118 if (!t10_alua_tg_pt_gp_cache) {
119 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400121 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800122 }
123 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
124 "t10_alua_tg_pt_gp_mem_cache",
125 sizeof(struct t10_alua_tg_pt_gp_member),
126 __alignof__(struct t10_alua_tg_pt_gp_member),
127 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700128 if (!t10_alua_tg_pt_gp_mem_cache) {
129 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400131 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800132 }
133
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400134 target_completion_wq = alloc_workqueue("target_completion",
135 WQ_MEM_RECLAIM, 0);
136 if (!target_completion_wq)
137 goto out_free_tg_pt_gp_mem_cache;
138
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800139 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400140
141out_free_tg_pt_gp_mem_cache:
142 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
143out_free_tg_pt_gp_cache:
144 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
145out_free_lu_gp_mem_cache:
146 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
147out_free_lu_gp_cache:
148 kmem_cache_destroy(t10_alua_lu_gp_cache);
149out_free_pr_reg_cache:
150 kmem_cache_destroy(t10_pr_reg_cache);
151out_free_ua_cache:
152 kmem_cache_destroy(se_ua_cache);
153out_free_sess_cache:
154 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800155out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000156 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157}
158
Andy Grovere3d6f902011-07-19 08:55:10 +0000159void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800160{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400161 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 kmem_cache_destroy(se_sess_cache);
163 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 kmem_cache_destroy(t10_pr_reg_cache);
165 kmem_cache_destroy(t10_alua_lu_gp_cache);
166 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
167 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
168 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169}
170
Andy Grovere3d6f902011-07-19 08:55:10 +0000171/* This code ensures unique mib indexes are handed out. */
172static DEFINE_SPINLOCK(scsi_mib_index_lock);
173static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800174
175/*
176 * Allocate a new row index for the entry type specified
177 */
178u32 scsi_get_new_index(scsi_index_t type)
179{
180 u32 new_index;
181
Andy Grovere3d6f902011-07-19 08:55:10 +0000182 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800183
Andy Grovere3d6f902011-07-19 08:55:10 +0000184 spin_lock(&scsi_mib_index_lock);
185 new_index = ++scsi_mib_index[type];
186 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800187
188 return new_index;
189}
190
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700191void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800192{
193 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700194 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800195
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700196 if (sub_api_initialized)
197 return;
198
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800199 ret = request_module("target_core_iblock");
200 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700201 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800202
203 ret = request_module("target_core_file");
204 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700205 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800206
207 ret = request_module("target_core_pscsi");
208 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700209 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210
Andy Grovere3d6f902011-07-19 08:55:10 +0000211 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212}
213
214struct se_session *transport_init_session(void)
215{
216 struct se_session *se_sess;
217
218 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700219 if (!se_sess) {
220 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800221 " se_sess_cache\n");
222 return ERR_PTR(-ENOMEM);
223 }
224 INIT_LIST_HEAD(&se_sess->sess_list);
225 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700226 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -0700227 INIT_LIST_HEAD(&se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700228 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800229 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230
231 return se_sess;
232}
233EXPORT_SYMBOL(transport_init_session);
234
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700235int transport_alloc_session_tags(struct se_session *se_sess,
236 unsigned int tag_num, unsigned int tag_size)
237{
238 int rc;
239
240 se_sess->sess_cmd_map = kzalloc(tag_num * tag_size, GFP_KERNEL);
241 if (!se_sess->sess_cmd_map) {
242 pr_err("Unable to allocate se_sess->sess_cmd_map\n");
243 return -ENOMEM;
244 }
245
246 rc = percpu_ida_init(&se_sess->sess_tag_pool, tag_num);
247 if (rc < 0) {
248 pr_err("Unable to init se_sess->sess_tag_pool,"
249 " tag_num: %u\n", tag_num);
250 kfree(se_sess->sess_cmd_map);
251 se_sess->sess_cmd_map = NULL;
252 return -ENOMEM;
253 }
254
255 return 0;
256}
257EXPORT_SYMBOL(transport_alloc_session_tags);
258
259struct se_session *transport_init_session_tags(unsigned int tag_num,
260 unsigned int tag_size)
261{
262 struct se_session *se_sess;
263 int rc;
264
265 se_sess = transport_init_session();
266 if (IS_ERR(se_sess))
267 return se_sess;
268
269 rc = transport_alloc_session_tags(se_sess, tag_num, tag_size);
270 if (rc < 0) {
271 transport_free_session(se_sess);
272 return ERR_PTR(-ENOMEM);
273 }
274
275 return se_sess;
276}
277EXPORT_SYMBOL(transport_init_session_tags);
278
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800279/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700280 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800281 */
282void __transport_register_session(
283 struct se_portal_group *se_tpg,
284 struct se_node_acl *se_nacl,
285 struct se_session *se_sess,
286 void *fabric_sess_ptr)
287{
288 unsigned char buf[PR_REG_ISID_LEN];
289
290 se_sess->se_tpg = se_tpg;
291 se_sess->fabric_sess_ptr = fabric_sess_ptr;
292 /*
293 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
294 *
295 * Only set for struct se_session's that will actually be moving I/O.
296 * eg: *NOT* discovery sessions.
297 */
298 if (se_nacl) {
299 /*
300 * If the fabric module supports an ISID based TransportID,
301 * save this value in binary from the fabric I_T Nexus now.
302 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000303 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800304 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000305 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800306 &buf[0], PR_REG_ISID_LEN);
307 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
308 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800309 kref_get(&se_nacl->acl_kref);
310
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800311 spin_lock_irq(&se_nacl->nacl_sess_lock);
312 /*
313 * The se_nacl->nacl_sess pointer will be set to the
314 * last active I_T Nexus for each struct se_node_acl.
315 */
316 se_nacl->nacl_sess = se_sess;
317
318 list_add_tail(&se_sess->sess_acl_list,
319 &se_nacl->acl_sess_list);
320 spin_unlock_irq(&se_nacl->nacl_sess_lock);
321 }
322 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
323
Andy Grover6708bb22011-06-08 10:36:43 -0700324 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000325 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800326}
327EXPORT_SYMBOL(__transport_register_session);
328
329void transport_register_session(
330 struct se_portal_group *se_tpg,
331 struct se_node_acl *se_nacl,
332 struct se_session *se_sess,
333 void *fabric_sess_ptr)
334{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700335 unsigned long flags;
336
337 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800338 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700339 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800340}
341EXPORT_SYMBOL(transport_register_session);
342
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800343static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800344{
345 struct se_session *se_sess = container_of(kref,
346 struct se_session, sess_kref);
347 struct se_portal_group *se_tpg = se_sess->se_tpg;
348
349 se_tpg->se_tpg_tfo->close_session(se_sess);
350}
351
352void target_get_session(struct se_session *se_sess)
353{
354 kref_get(&se_sess->sess_kref);
355}
356EXPORT_SYMBOL(target_get_session);
357
Jörn Engel33933a02012-05-11 10:35:08 -0400358void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800359{
Joern Engel41492682012-05-18 13:57:19 -0700360 struct se_portal_group *tpg = se_sess->se_tpg;
361
362 if (tpg->se_tpg_tfo->put_session != NULL) {
363 tpg->se_tpg_tfo->put_session(se_sess);
364 return;
365 }
Jörn Engel33933a02012-05-11 10:35:08 -0400366 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800367}
368EXPORT_SYMBOL(target_put_session);
369
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800370static void target_complete_nacl(struct kref *kref)
371{
372 struct se_node_acl *nacl = container_of(kref,
373 struct se_node_acl, acl_kref);
374
375 complete(&nacl->acl_free_comp);
376}
377
378void target_put_nacl(struct se_node_acl *nacl)
379{
380 kref_put(&nacl->acl_kref, target_complete_nacl);
381}
382
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383void transport_deregister_session_configfs(struct se_session *se_sess)
384{
385 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700386 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800387 /*
388 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
389 */
390 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700391 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700392 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800393 if (se_nacl->acl_stop == 0)
394 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800395 /*
396 * If the session list is empty, then clear the pointer.
397 * Otherwise, set the struct se_session pointer from the tail
398 * element of the per struct se_node_acl active session list.
399 */
400 if (list_empty(&se_nacl->acl_sess_list))
401 se_nacl->nacl_sess = NULL;
402 else {
403 se_nacl->nacl_sess = container_of(
404 se_nacl->acl_sess_list.prev,
405 struct se_session, sess_acl_list);
406 }
Roland Dreier23388862011-06-22 01:02:21 -0700407 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800408 }
409}
410EXPORT_SYMBOL(transport_deregister_session_configfs);
411
412void transport_free_session(struct se_session *se_sess)
413{
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700414 if (se_sess->sess_cmd_map) {
415 percpu_ida_destroy(&se_sess->sess_tag_pool);
416 kfree(se_sess->sess_cmd_map);
417 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800418 kmem_cache_free(se_sess_cache, se_sess);
419}
420EXPORT_SYMBOL(transport_free_session);
421
422void transport_deregister_session(struct se_session *se_sess)
423{
424 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800425 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800426 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700427 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800428 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800429
Andy Grover6708bb22011-06-08 10:36:43 -0700430 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800431 transport_free_session(se_sess);
432 return;
433 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800434 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800435
Roland Dreiere63a8e12011-08-12 16:01:02 -0700436 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800437 list_del(&se_sess->sess_list);
438 se_sess->se_tpg = NULL;
439 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700440 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800441
442 /*
443 * Determine if we need to do extra work for this initiator node's
444 * struct se_node_acl if it had been previously dynamically generated.
445 */
446 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800447
Nicholas Bellinger01468342012-03-10 14:32:52 -0800448 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
449 if (se_nacl && se_nacl->dynamic_node_acl) {
450 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
451 list_del(&se_nacl->acl_list);
452 se_tpg->num_node_acls--;
453 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
454 core_tpg_wait_for_nacl_pr_ref(se_nacl);
455 core_free_device_list_for_node(se_nacl, se_tpg);
456 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
457
458 comp_nacl = false;
459 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800461 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800462 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800463
Andy Grover6708bb22011-06-08 10:36:43 -0700464 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000465 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800466 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800467 * If last kref is dropping now for an explict NodeACL, awake sleeping
468 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
469 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800470 */
471 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800472 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800473
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800474 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800475}
476EXPORT_SYMBOL(transport_deregister_session);
477
478/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700479 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800480 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400481static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800482{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400483 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800484 unsigned long flags;
485
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400486 if (!dev)
487 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800488
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400489 if (cmd->transport_state & CMD_T_BUSY)
490 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400492 spin_lock_irqsave(&dev->execute_task_lock, flags);
493 if (cmd->state_active) {
494 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400495 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400497 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498}
499
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700500static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
501 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800502{
503 unsigned long flags;
504
Andy Grovera1d8b492011-05-02 17:12:10 -0700505 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700506 if (write_pending)
507 cmd->t_state = TRANSPORT_WRITE_PENDING;
508
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800509 /*
510 * Determine if IOCTL context caller in requesting the stopping of this
511 * command for LUN shutdown purposes.
512 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500513 if (cmd->transport_state & CMD_T_LUN_STOP) {
514 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
515 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800516
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500517 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400518 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400519 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700520 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800521
Andy Grovera1d8b492011-05-02 17:12:10 -0700522 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800523 return 1;
524 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400525
526 if (remove_from_lists) {
527 target_remove_from_state_list(cmd);
528
529 /*
530 * Clear struct se_cmd->se_lun before the handoff to FE.
531 */
532 cmd->se_lun = NULL;
533 }
534
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535 /*
536 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000537 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800538 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500539 if (cmd->transport_state & CMD_T_STOP) {
540 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
541 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000542 cmd->se_tfo->get_task_tag(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
Andy Grovera1d8b492011-05-02 17:12:10 -0700546 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547 return 1;
548 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800549
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400550 cmd->transport_state &= ~CMD_T_ACTIVE;
551 if (remove_from_lists) {
552 /*
553 * Some fabric modules like tcm_loop can release
554 * their internally allocated I/O reference now and
555 * struct se_cmd now.
556 *
557 * Fabric modules are expected to return '1' here if the
558 * se_cmd being passed is released at this point,
559 * or zero if not being released.
560 */
561 if (cmd->se_tfo->check_stop_free != NULL) {
562 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
563 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800564 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400565 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800566
Andy Grovera1d8b492011-05-02 17:12:10 -0700567 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800568 return 0;
569}
570
571static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
572{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700573 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800574}
575
576static void transport_lun_remove_cmd(struct se_cmd *cmd)
577{
Andy Grovere3d6f902011-07-19 08:55:10 +0000578 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800579 unsigned long flags;
580
581 if (!lun)
582 return;
583
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800584 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500585 if (!list_empty(&cmd->se_lun_node))
586 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800587 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
588}
589
590void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
591{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592 if (transport_cmd_check_stop_to_fabric(cmd))
593 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400594 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200595 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596}
597
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400598static void target_complete_failure_work(struct work_struct *work)
599{
600 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
601
Christoph Hellwigde103c92012-11-06 12:24:09 -0800602 transport_generic_request_failure(cmd,
603 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400604}
605
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200606/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200607 * Used when asking transport to copy Sense Data from the underlying
608 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200609 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200610static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200611{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200612 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200613
614 WARN_ON(!cmd->se_lun);
615
616 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200617 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200618
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200619 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
620 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200621
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700622 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200623
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200624 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200625 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700626 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200627}
628
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400629void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400631 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400632 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800634
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400635 cmd->scsi_status = scsi_status;
636
637
Andy Grovera1d8b492011-05-02 17:12:10 -0700638 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400639 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800640
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800641 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200642 dev->transport->transport_complete(cmd,
643 cmd->t_data_sg,
644 transport_get_sense_buffer(cmd));
645 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800647 }
648
649 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400650 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800651 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400652 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700653 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400654 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800655 return;
656 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700657
658 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500659 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700660
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800661 /*
662 * Check for case where an explict ABORT_TASK has been received
663 * and transport_wait_for_tasks() will be waiting for completion..
664 */
665 if (cmd->transport_state & CMD_T_ABORTED &&
666 cmd->transport_state & CMD_T_STOP) {
667 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
668 complete(&cmd->t_transport_stop_comp);
669 return;
670 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400671 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800672 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400673 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800674 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400675
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400676 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800677 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700678 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800679
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400680 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800681}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400682EXPORT_SYMBOL(target_complete_cmd);
683
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400684static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800685{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400686 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800687 unsigned long flags;
688
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800689 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400690 if (!cmd->state_active) {
691 list_add_tail(&cmd->state_list, &dev->state_list);
692 cmd->state_active = true;
693 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800695}
696
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700697/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700698 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700699 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400700static void transport_write_pending_qf(struct se_cmd *cmd);
701static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700702
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400703void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700704{
705 struct se_device *dev = container_of(work, struct se_device,
706 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700707 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700708 struct se_cmd *cmd, *cmd_tmp;
709
710 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700711 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
712 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700713
Roland Dreierbcac3642011-08-27 21:33:16 -0700714 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700715 list_del(&cmd->se_qf_node);
716 atomic_dec(&dev->dev_qf_count);
717 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700718
Andy Grover6708bb22011-06-08 10:36:43 -0700719 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700720 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400721 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700722 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
723 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400724
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400725 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
726 transport_write_pending_qf(cmd);
727 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
728 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700729 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700730}
731
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800732unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
733{
734 switch (cmd->data_direction) {
735 case DMA_NONE:
736 return "NONE";
737 case DMA_FROM_DEVICE:
738 return "READ";
739 case DMA_TO_DEVICE:
740 return "WRITE";
741 case DMA_BIDIRECTIONAL:
742 return "BIDI";
743 default:
744 break;
745 }
746
747 return "UNKNOWN";
748}
749
750void transport_dump_dev_state(
751 struct se_device *dev,
752 char *b,
753 int *bl)
754{
755 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400756 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800757 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400758 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800759 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800760
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400761 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700762 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400763 dev->dev_attrib.block_size,
764 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800765 *bl += sprintf(b + *bl, " ");
766}
767
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800768void transport_dump_vpd_proto_id(
769 struct t10_vpd *vpd,
770 unsigned char *p_buf,
771 int p_buf_len)
772{
773 unsigned char buf[VPD_TMP_BUF_SIZE];
774 int len;
775
776 memset(buf, 0, VPD_TMP_BUF_SIZE);
777 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
778
779 switch (vpd->protocol_identifier) {
780 case 0x00:
781 sprintf(buf+len, "Fibre Channel\n");
782 break;
783 case 0x10:
784 sprintf(buf+len, "Parallel SCSI\n");
785 break;
786 case 0x20:
787 sprintf(buf+len, "SSA\n");
788 break;
789 case 0x30:
790 sprintf(buf+len, "IEEE 1394\n");
791 break;
792 case 0x40:
793 sprintf(buf+len, "SCSI Remote Direct Memory Access"
794 " Protocol\n");
795 break;
796 case 0x50:
797 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
798 break;
799 case 0x60:
800 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
801 break;
802 case 0x70:
803 sprintf(buf+len, "Automation/Drive Interface Transport"
804 " Protocol\n");
805 break;
806 case 0x80:
807 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
808 break;
809 default:
810 sprintf(buf+len, "Unknown 0x%02x\n",
811 vpd->protocol_identifier);
812 break;
813 }
814
815 if (p_buf)
816 strncpy(p_buf, buf, p_buf_len);
817 else
Andy Grover6708bb22011-06-08 10:36:43 -0700818 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800819}
820
821void
822transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
823{
824 /*
825 * Check if the Protocol Identifier Valid (PIV) bit is set..
826 *
827 * from spc3r23.pdf section 7.5.1
828 */
829 if (page_83[1] & 0x80) {
830 vpd->protocol_identifier = (page_83[0] & 0xf0);
831 vpd->protocol_identifier_set = 1;
832 transport_dump_vpd_proto_id(vpd, NULL, 0);
833 }
834}
835EXPORT_SYMBOL(transport_set_vpd_proto_id);
836
837int transport_dump_vpd_assoc(
838 struct t10_vpd *vpd,
839 unsigned char *p_buf,
840 int p_buf_len)
841{
842 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000843 int ret = 0;
844 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800845
846 memset(buf, 0, VPD_TMP_BUF_SIZE);
847 len = sprintf(buf, "T10 VPD Identifier Association: ");
848
849 switch (vpd->association) {
850 case 0x00:
851 sprintf(buf+len, "addressed logical unit\n");
852 break;
853 case 0x10:
854 sprintf(buf+len, "target port\n");
855 break;
856 case 0x20:
857 sprintf(buf+len, "SCSI target device\n");
858 break;
859 default:
860 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000861 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800862 break;
863 }
864
865 if (p_buf)
866 strncpy(p_buf, buf, p_buf_len);
867 else
Andy Grover6708bb22011-06-08 10:36:43 -0700868 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800869
870 return ret;
871}
872
873int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
874{
875 /*
876 * The VPD identification association..
877 *
878 * from spc3r23.pdf Section 7.6.3.1 Table 297
879 */
880 vpd->association = (page_83[1] & 0x30);
881 return transport_dump_vpd_assoc(vpd, NULL, 0);
882}
883EXPORT_SYMBOL(transport_set_vpd_assoc);
884
885int transport_dump_vpd_ident_type(
886 struct t10_vpd *vpd,
887 unsigned char *p_buf,
888 int p_buf_len)
889{
890 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000891 int ret = 0;
892 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800893
894 memset(buf, 0, VPD_TMP_BUF_SIZE);
895 len = sprintf(buf, "T10 VPD Identifier Type: ");
896
897 switch (vpd->device_identifier_type) {
898 case 0x00:
899 sprintf(buf+len, "Vendor specific\n");
900 break;
901 case 0x01:
902 sprintf(buf+len, "T10 Vendor ID based\n");
903 break;
904 case 0x02:
905 sprintf(buf+len, "EUI-64 based\n");
906 break;
907 case 0x03:
908 sprintf(buf+len, "NAA\n");
909 break;
910 case 0x04:
911 sprintf(buf+len, "Relative target port identifier\n");
912 break;
913 case 0x08:
914 sprintf(buf+len, "SCSI name string\n");
915 break;
916 default:
917 sprintf(buf+len, "Unsupported: 0x%02x\n",
918 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000919 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800920 break;
921 }
922
Andy Grovere3d6f902011-07-19 08:55:10 +0000923 if (p_buf) {
924 if (p_buf_len < strlen(buf)+1)
925 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800926 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000927 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700928 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000929 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800930
931 return ret;
932}
933
934int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
935{
936 /*
937 * The VPD identifier type..
938 *
939 * from spc3r23.pdf Section 7.6.3.1 Table 298
940 */
941 vpd->device_identifier_type = (page_83[1] & 0x0f);
942 return transport_dump_vpd_ident_type(vpd, NULL, 0);
943}
944EXPORT_SYMBOL(transport_set_vpd_ident_type);
945
946int transport_dump_vpd_ident(
947 struct t10_vpd *vpd,
948 unsigned char *p_buf,
949 int p_buf_len)
950{
951 unsigned char buf[VPD_TMP_BUF_SIZE];
952 int ret = 0;
953
954 memset(buf, 0, VPD_TMP_BUF_SIZE);
955
956 switch (vpd->device_identifier_code_set) {
957 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300958 snprintf(buf, sizeof(buf),
959 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800960 &vpd->device_identifier[0]);
961 break;
962 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300963 snprintf(buf, sizeof(buf),
964 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800965 &vpd->device_identifier[0]);
966 break;
967 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300968 snprintf(buf, sizeof(buf),
969 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800970 &vpd->device_identifier[0]);
971 break;
972 default:
973 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
974 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000975 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800976 break;
977 }
978
979 if (p_buf)
980 strncpy(p_buf, buf, p_buf_len);
981 else
Andy Grover6708bb22011-06-08 10:36:43 -0700982 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800983
984 return ret;
985}
986
987int
988transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
989{
990 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900991 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800992
993 /*
994 * The VPD Code Set (encoding)
995 *
996 * from spc3r23.pdf Section 7.6.3.1 Table 296
997 */
998 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
999 switch (vpd->device_identifier_code_set) {
1000 case 0x01: /* Binary */
1001 vpd->device_identifier[j++] =
1002 hex_str[vpd->device_identifier_type];
1003 while (i < (4 + page_83[3])) {
1004 vpd->device_identifier[j++] =
1005 hex_str[(page_83[i] & 0xf0) >> 4];
1006 vpd->device_identifier[j++] =
1007 hex_str[page_83[i] & 0x0f];
1008 i++;
1009 }
1010 break;
1011 case 0x02: /* ASCII */
1012 case 0x03: /* UTF-8 */
1013 while (i < (4 + page_83[3]))
1014 vpd->device_identifier[j++] = page_83[i++];
1015 break;
1016 default:
1017 break;
1018 }
1019
1020 return transport_dump_vpd_ident(vpd, NULL, 0);
1021}
1022EXPORT_SYMBOL(transport_set_vpd_ident);
1023
Christoph Hellwigde103c92012-11-06 12:24:09 -08001024sense_reason_t
1025target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001026{
1027 struct se_device *dev = cmd->se_dev;
1028
1029 if (cmd->unknown_data_length) {
1030 cmd->data_length = size;
1031 } else if (size != cmd->data_length) {
1032 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1033 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1034 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1035 cmd->data_length, size, cmd->t_task_cdb[0]);
1036
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001037 if (cmd->data_direction == DMA_TO_DEVICE) {
1038 pr_err("Rejecting underflow/overflow"
1039 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001040 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001041 }
1042 /*
1043 * Reject READ_* or WRITE_* with overflow/underflow for
1044 * type SCF_SCSI_DATA_CDB.
1045 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001046 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001047 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1048 " CDB on non 512-byte sector setup subsystem"
1049 " plugin: %s\n", dev->transport->name);
1050 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001051 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001052 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001053 /*
1054 * For the overflow case keep the existing fabric provided
1055 * ->data_length. Otherwise for the underflow case, reset
1056 * ->data_length to the smaller SCSI expected data transfer
1057 * length.
1058 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001059 if (size > cmd->data_length) {
1060 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1061 cmd->residual_count = (size - cmd->data_length);
1062 } else {
1063 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1064 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001065 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001066 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001067 }
1068
1069 return 0;
1070
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001071}
1072
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001073/*
1074 * Used by fabric modules containing a local struct se_cmd within their
1075 * fabric dependent per I/O descriptor.
1076 */
1077void transport_init_se_cmd(
1078 struct se_cmd *cmd,
1079 struct target_core_fabric_ops *tfo,
1080 struct se_session *se_sess,
1081 u32 data_length,
1082 int data_direction,
1083 int task_attr,
1084 unsigned char *sense_buffer)
1085{
Andy Grover5951146d2011-07-19 10:26:37 +00001086 INIT_LIST_HEAD(&cmd->se_lun_node);
1087 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001088 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001089 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001090 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001091 init_completion(&cmd->transport_lun_fe_stop_comp);
1092 init_completion(&cmd->transport_lun_stop_comp);
1093 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001094 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001095 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001096 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001097 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001098
1099 cmd->se_tfo = tfo;
1100 cmd->se_sess = se_sess;
1101 cmd->data_length = data_length;
1102 cmd->data_direction = data_direction;
1103 cmd->sam_task_attr = task_attr;
1104 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001105
1106 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107}
1108EXPORT_SYMBOL(transport_init_se_cmd);
1109
Christoph Hellwigde103c92012-11-06 12:24:09 -08001110static sense_reason_t
1111transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001112{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001113 struct se_device *dev = cmd->se_dev;
1114
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001115 /*
1116 * Check if SAM Task Attribute emulation is enabled for this
1117 * struct se_device storage object
1118 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001119 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001120 return 0;
1121
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001122 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001123 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001124 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001125 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001126 }
1127 /*
1128 * Used to determine when ORDERED commands should go from
1129 * Dormant to Active status.
1130 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001131 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001132 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001133 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001134 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001135 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001136 return 0;
1137}
1138
Christoph Hellwigde103c92012-11-06 12:24:09 -08001139sense_reason_t
1140target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001141{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001142 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001143 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001144
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001145 /*
1146 * Ensure that the received CDB is less than the max (252 + 8) bytes
1147 * for VARIABLE_LENGTH_CMD
1148 */
1149 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001150 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1152 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001153 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 }
1155 /*
1156 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1157 * allocate the additional extended CDB buffer now.. Otherwise
1158 * setup the pointer from __t_task_cdb to t_task_cdb.
1159 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001160 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1161 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001162 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001163 if (!cmd->t_task_cdb) {
1164 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001165 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001166 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001167 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001168 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001169 }
1170 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001171 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001172 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001173 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001174 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001175 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001176
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001177 trace_target_sequencer_start(cmd);
1178
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001179 /*
1180 * Check for an existing UNIT ATTENTION condition
1181 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001182 ret = target_scsi3_ua_check(cmd);
1183 if (ret)
1184 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001185
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001186 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001187 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001188 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001189
Christoph Hellwigde103c92012-11-06 12:24:09 -08001190 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001191 if (ret) {
1192 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001193 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001194 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001195
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001196 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001197 if (ret)
1198 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001199
Christoph Hellwigde103c92012-11-06 12:24:09 -08001200 ret = transport_check_alloc_task_attr(cmd);
1201 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001202 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001203
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001204 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001205
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001206 spin_lock(&cmd->se_lun->lun_sep_lock);
1207 if (cmd->se_lun->lun_sep)
1208 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1209 spin_unlock(&cmd->se_lun->lun_sep_lock);
1210 return 0;
1211}
Andy Grovera12f41f2012-04-03 15:51:20 -07001212EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001213
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001214/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001215 * Used by fabric module frontends to queue tasks directly.
1216 * Many only be used from process context only
1217 */
1218int transport_handle_cdb_direct(
1219 struct se_cmd *cmd)
1220{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001221 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001222
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001223 if (!cmd->se_lun) {
1224 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001225 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001226 return -EINVAL;
1227 }
1228 if (in_interrupt()) {
1229 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001230 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001231 " from interrupt context\n");
1232 return -EINVAL;
1233 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001234 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001235 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1236 * outstanding descriptors are handled correctly during shutdown via
1237 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001238 *
1239 * Also, we don't take cmd->t_state_lock here as we only expect
1240 * this to be called for initial descriptor submission.
1241 */
1242 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001243 cmd->transport_state |= CMD_T_ACTIVE;
1244
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001245 /*
1246 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1247 * so follow TRANSPORT_NEW_CMD processing thread context usage
1248 * and call transport_generic_request_failure() if necessary..
1249 */
1250 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001251 if (ret)
1252 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001253 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001254}
1255EXPORT_SYMBOL(transport_handle_cdb_direct);
1256
Christoph Hellwigde103c92012-11-06 12:24:09 -08001257static sense_reason_t
1258transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1259 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1260{
1261 if (!sgl || !sgl_count)
1262 return 0;
1263
1264 /*
1265 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1266 * scatterlists already have been set to follow what the fabric
1267 * passes for the original expected data transfer length.
1268 */
1269 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1270 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1271 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1272 return TCM_INVALID_CDB_FIELD;
1273 }
1274
1275 cmd->t_data_sg = sgl;
1276 cmd->t_data_nents = sgl_count;
1277
1278 if (sgl_bidi && sgl_bidi_count) {
1279 cmd->t_bidi_data_sg = sgl_bidi;
1280 cmd->t_bidi_data_nents = sgl_bidi_count;
1281 }
1282 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1283 return 0;
1284}
1285
Nicholas Bellingera0267572012-10-01 17:23:22 -07001286/*
1287 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1288 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001289 *
1290 * @se_cmd: command descriptor to submit
1291 * @se_sess: associated se_sess for endpoint
1292 * @cdb: pointer to SCSI CDB
1293 * @sense: pointer to SCSI sense buffer
1294 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1295 * @data_length: fabric expected data transfer length
1296 * @task_addr: SAM task attribute
1297 * @data_dir: DMA data direction
1298 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001299 * @sgl: struct scatterlist memory for unidirectional mapping
1300 * @sgl_count: scatterlist count for unidirectional mapping
1301 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1302 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001303 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001304 * Returns non zero to signal active I/O shutdown failure. All other
1305 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1306 * but still return zero here.
1307 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001308 * This may only be called from process context, and also currently
1309 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001310 */
1311int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001312 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001313 u32 data_length, int task_attr, int data_dir, int flags,
1314 struct scatterlist *sgl, u32 sgl_count,
1315 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001316{
1317 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001318 sense_reason_t rc;
1319 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001320
1321 se_tpg = se_sess->se_tpg;
1322 BUG_ON(!se_tpg);
1323 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1324 BUG_ON(in_interrupt());
1325 /*
1326 * Initialize se_cmd for target operation. From this point
1327 * exceptions are handled by sending exception status via
1328 * target_core_fabric_ops->queue_status() callback
1329 */
1330 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1331 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001332 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1333 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001334 /*
1335 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1336 * se_sess->sess_cmd_list. A second kref_get here is necessary
1337 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1338 * kref_put() to happen during fabric packet acknowledgement.
1339 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001340 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1341 if (ret)
1342 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001343 /*
1344 * Signal bidirectional data payloads to target-core
1345 */
1346 if (flags & TARGET_SCF_BIDI_OP)
1347 se_cmd->se_cmd_flags |= SCF_BIDI;
1348 /*
1349 * Locate se_lun pointer and attach it to struct se_cmd
1350 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001351 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1352 if (rc) {
1353 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001354 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001355 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001356 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001357
Andy Grovera12f41f2012-04-03 15:51:20 -07001358 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001359 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001360 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001361 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001362 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001363 /*
1364 * When a non zero sgl_count has been passed perform SGL passthrough
1365 * mapping for pre-allocated fabric memory instead of having target
1366 * core perform an internal SGL allocation..
1367 */
1368 if (sgl_count != 0) {
1369 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001370
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001371 /*
1372 * A work-around for tcm_loop as some userspace code via
1373 * scsi-generic do not memset their associated read buffers,
1374 * so go ahead and do that here for type non-data CDBs. Also
1375 * note that this is currently guaranteed to be a single SGL
1376 * for this case by target core in target_setup_cmd_from_cdb()
1377 * -> transport_generic_cmd_sequencer().
1378 */
1379 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1380 se_cmd->data_direction == DMA_FROM_DEVICE) {
1381 unsigned char *buf = NULL;
1382
1383 if (sgl)
1384 buf = kmap(sg_page(sgl)) + sgl->offset;
1385
1386 if (buf) {
1387 memset(buf, 0, sgl->length);
1388 kunmap(sg_page(sgl));
1389 }
1390 }
1391
Nicholas Bellingera0267572012-10-01 17:23:22 -07001392 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1393 sgl_bidi, sgl_bidi_count);
1394 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001395 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001396 return 0;
1397 }
1398 }
Andy Grover11e319e2012-04-03 15:51:28 -07001399 /*
1400 * Check if we need to delay processing because of ALUA
1401 * Active/NonOptimized primary access state..
1402 */
1403 core_alua_check_nonop_delay(se_cmd);
1404
Nicholas Bellingera6360782011-11-18 20:36:22 -08001405 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001406 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001407}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001408EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1409
1410/*
1411 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1412 *
1413 * @se_cmd: command descriptor to submit
1414 * @se_sess: associated se_sess for endpoint
1415 * @cdb: pointer to SCSI CDB
1416 * @sense: pointer to SCSI sense buffer
1417 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1418 * @data_length: fabric expected data transfer length
1419 * @task_addr: SAM task attribute
1420 * @data_dir: DMA data direction
1421 * @flags: flags for command submission from target_sc_flags_tables
1422 *
1423 * Returns non zero to signal active I/O shutdown failure. All other
1424 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1425 * but still return zero here.
1426 *
1427 * This may only be called from process context, and also currently
1428 * assumes internal allocation of fabric payload buffer by target-core.
1429 *
1430 * It also assumes interal target core SGL memory allocation.
1431 */
1432int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1433 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1434 u32 data_length, int task_attr, int data_dir, int flags)
1435{
1436 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1437 unpacked_lun, data_length, task_attr, data_dir,
1438 flags, NULL, 0, NULL, 0);
1439}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001440EXPORT_SYMBOL(target_submit_cmd);
1441
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001442static void target_complete_tmr_failure(struct work_struct *work)
1443{
1444 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1445
1446 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1447 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001448
1449 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001450}
1451
Andy Groverea98d7f2012-01-19 13:39:21 -08001452/**
1453 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1454 * for TMR CDBs
1455 *
1456 * @se_cmd: command descriptor to submit
1457 * @se_sess: associated se_sess for endpoint
1458 * @sense: pointer to SCSI sense buffer
1459 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1460 * @fabric_context: fabric context for TMR req
1461 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001462 * @gfp: gfp type for caller
1463 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001464 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001465 *
1466 * Callable from all contexts.
1467 **/
1468
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001469int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001470 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001471 void *fabric_tmr_ptr, unsigned char tm_type,
1472 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001473{
1474 struct se_portal_group *se_tpg;
1475 int ret;
1476
1477 se_tpg = se_sess->se_tpg;
1478 BUG_ON(!se_tpg);
1479
1480 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1481 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001482 /*
1483 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1484 * allocation failure.
1485 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001486 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001487 if (ret < 0)
1488 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001489
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001490 if (tm_type == TMR_ABORT_TASK)
1491 se_cmd->se_tmr_req->ref_task_tag = tag;
1492
Andy Groverea98d7f2012-01-19 13:39:21 -08001493 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001494 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1495 if (ret) {
1496 core_tmr_release_req(se_cmd->se_tmr_req);
1497 return ret;
1498 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001499
Andy Groverea98d7f2012-01-19 13:39:21 -08001500 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1501 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001502 /*
1503 * For callback during failure handling, push this work off
1504 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1505 */
1506 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1507 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001508 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001509 }
1510 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001511 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001512}
1513EXPORT_SYMBOL(target_submit_tmr);
1514
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001515/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001516 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001517 * has completed.
1518 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001519bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001520{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001521 bool was_active = false;
1522
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001523 if (cmd->transport_state & CMD_T_BUSY) {
1524 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001525 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1526
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001527 pr_debug("cmd %p waiting to complete\n", cmd);
1528 wait_for_completion(&cmd->task_stop_comp);
1529 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001530
1531 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001532 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1533 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001534 was_active = true;
1535 }
1536
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001537 return was_active;
1538}
1539
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001540/*
1541 * Handle SAM-esque emulation for generic transport request failures.
1542 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001543void transport_generic_request_failure(struct se_cmd *cmd,
1544 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001545{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001546 int ret = 0;
1547
Andy Grover6708bb22011-06-08 10:36:43 -07001548 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001549 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001550 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001551 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001552 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001553 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001554 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001555 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1556 (cmd->transport_state & CMD_T_STOP) != 0,
1557 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001558
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001559 /*
1560 * For SAM Task Attribute emulation for failed struct se_cmd
1561 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001562 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001563
Christoph Hellwigde103c92012-11-06 12:24:09 -08001564 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001565 case TCM_NON_EXISTENT_LUN:
1566 case TCM_UNSUPPORTED_SCSI_OPCODE:
1567 case TCM_INVALID_CDB_FIELD:
1568 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001569 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001570 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1571 case TCM_UNKNOWN_MODE_PAGE:
1572 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001573 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001574 case TCM_CHECK_CONDITION_ABORT_CMD:
1575 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1576 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001577 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001578 case TCM_OUT_OF_RESOURCES:
1579 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1580 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001581 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001582 /*
1583 * No SENSE Data payload for this case, set SCSI Status
1584 * and queue the response to $FABRIC_MOD.
1585 *
1586 * Uses linux/include/scsi/scsi.h SAM status codes defs
1587 */
1588 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1589 /*
1590 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1591 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1592 * CONFLICT STATUS.
1593 *
1594 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1595 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001596 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001597 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001598 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001599 cmd->orig_fe_lun, 0x2C,
1600 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1601
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001602 trace_target_cmd_complete(cmd);
1603 ret = cmd->se_tfo-> queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001604 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001605 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001606 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001607 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001608 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001609 cmd->t_task_cdb[0], sense_reason);
1610 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001611 break;
1612 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001613
Christoph Hellwigde103c92012-11-06 12:24:09 -08001614 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001615 if (ret == -EAGAIN || ret == -ENOMEM)
1616 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001617
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001618check_stop:
1619 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001620 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001621 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001622 return;
1623
1624queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001625 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1626 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001627}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001628EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001629
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001630static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001631{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001632 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001633
Christoph Hellwigde103c92012-11-06 12:24:09 -08001634 if (cmd->execute_cmd) {
1635 ret = cmd->execute_cmd(cmd);
1636 if (ret) {
1637 spin_lock_irq(&cmd->t_state_lock);
1638 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1639 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001640
Christoph Hellwigde103c92012-11-06 12:24:09 -08001641 transport_generic_request_failure(cmd, ret);
1642 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001643 }
1644}
1645
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001646static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001647{
1648 struct se_device *dev = cmd->se_dev;
1649
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001650 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1651 return false;
1652
1653 /*
1654 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1655 * to allow the passed struct se_cmd list of tasks to the front of the list.
1656 */
1657 switch (cmd->sam_task_attr) {
1658 case MSG_HEAD_TAG:
1659 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1660 "se_ordered_id: %u\n",
1661 cmd->t_task_cdb[0], cmd->se_ordered_id);
1662 return false;
1663 case MSG_ORDERED_TAG:
1664 atomic_inc(&dev->dev_ordered_sync);
1665 smp_mb__after_atomic_inc();
1666
1667 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1668 " se_ordered_id: %u\n",
1669 cmd->t_task_cdb[0], cmd->se_ordered_id);
1670
1671 /*
1672 * Execute an ORDERED command if no other older commands
1673 * exist that need to be completed first.
1674 */
1675 if (!atomic_read(&dev->simple_cmds))
1676 return false;
1677 break;
1678 default:
1679 /*
1680 * For SIMPLE and UNTAGGED Task Attribute commands
1681 */
1682 atomic_inc(&dev->simple_cmds);
1683 smp_mb__after_atomic_inc();
1684 break;
1685 }
1686
1687 if (atomic_read(&dev->dev_ordered_sync) == 0)
1688 return false;
1689
1690 spin_lock(&dev->delayed_cmd_lock);
1691 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1692 spin_unlock(&dev->delayed_cmd_lock);
1693
1694 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1695 " delayed CMD list, se_ordered_id: %u\n",
1696 cmd->t_task_cdb[0], cmd->sam_task_attr,
1697 cmd->se_ordered_id);
1698 return true;
1699}
1700
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001701void target_execute_cmd(struct se_cmd *cmd)
1702{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001703 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001704 * If the received CDB has aleady been aborted stop processing it here.
1705 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001706 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001707 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001708 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001709 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001710
1711 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001712 * Determine if IOCTL context caller in requesting the stopping of this
1713 * command for LUN shutdown purposes.
1714 */
1715 spin_lock_irq(&cmd->t_state_lock);
1716 if (cmd->transport_state & CMD_T_LUN_STOP) {
1717 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1718 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1719
1720 cmd->transport_state &= ~CMD_T_ACTIVE;
1721 spin_unlock_irq(&cmd->t_state_lock);
1722 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001723 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001724 }
1725 /*
1726 * Determine if frontend context caller is requesting the stopping of
1727 * this command for frontend exceptions.
1728 */
1729 if (cmd->transport_state & CMD_T_STOP) {
1730 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1731 __func__, __LINE__,
1732 cmd->se_tfo->get_task_tag(cmd));
1733
1734 spin_unlock_irq(&cmd->t_state_lock);
1735 complete(&cmd->t_transport_stop_comp);
1736 return;
1737 }
1738
1739 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001740 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001741 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001742
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001743 if (target_handle_task_attr(cmd)) {
1744 spin_lock_irq(&cmd->t_state_lock);
1745 cmd->transport_state &= ~CMD_T_BUSY|CMD_T_SENT;
1746 spin_unlock_irq(&cmd->t_state_lock);
1747 return;
1748 }
1749
1750 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001751}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001752EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001753
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001755 * Process all commands up to the last received ORDERED task attribute which
1756 * requires another blocking boundary
1757 */
1758static void target_restart_delayed_cmds(struct se_device *dev)
1759{
1760 for (;;) {
1761 struct se_cmd *cmd;
1762
1763 spin_lock(&dev->delayed_cmd_lock);
1764 if (list_empty(&dev->delayed_cmd_list)) {
1765 spin_unlock(&dev->delayed_cmd_lock);
1766 break;
1767 }
1768
1769 cmd = list_entry(dev->delayed_cmd_list.next,
1770 struct se_cmd, se_delayed_node);
1771 list_del(&cmd->se_delayed_node);
1772 spin_unlock(&dev->delayed_cmd_lock);
1773
1774 __target_execute_cmd(cmd);
1775
1776 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1777 break;
1778 }
1779}
1780
1781/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001782 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001783 * and ordered cmds need to have their tasks added to the execution queue.
1784 */
1785static void transport_complete_task_attr(struct se_cmd *cmd)
1786{
Andy Grover5951146d2011-07-19 10:26:37 +00001787 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001788
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001789 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1790 return;
1791
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001792 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001793 atomic_dec(&dev->simple_cmds);
1794 smp_mb__after_atomic_dec();
1795 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001796 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001797 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1798 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001799 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001800 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001801 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001802 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1803 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001804 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001805 atomic_dec(&dev->dev_ordered_sync);
1806 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001807
1808 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001809 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001810 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1811 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001812
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001813 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001814}
1815
Christoph Hellwige057f532011-10-17 13:56:41 -04001816static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001817{
1818 int ret = 0;
1819
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001820 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001821
1822 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001823 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001824 ret = cmd->se_tfo->queue_status(cmd);
1825 if (ret)
1826 goto out;
1827 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001828
1829 switch (cmd->data_direction) {
1830 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001831 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001832 ret = cmd->se_tfo->queue_data_in(cmd);
1833 break;
1834 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001835 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001836 ret = cmd->se_tfo->queue_data_in(cmd);
1837 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001838 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001839 }
1840 /* Fall through for DMA_TO_DEVICE */
1841 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001842 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001843 ret = cmd->se_tfo->queue_status(cmd);
1844 break;
1845 default:
1846 break;
1847 }
1848
Christoph Hellwige057f532011-10-17 13:56:41 -04001849out:
1850 if (ret < 0) {
1851 transport_handle_queue_full(cmd, cmd->se_dev);
1852 return;
1853 }
1854 transport_lun_remove_cmd(cmd);
1855 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001856}
1857
1858static void transport_handle_queue_full(
1859 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001860 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001861{
1862 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001863 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1864 atomic_inc(&dev->dev_qf_count);
1865 smp_mb__after_atomic_inc();
1866 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1867
1868 schedule_work(&cmd->se_dev->qf_work_queue);
1869}
1870
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001871static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001872{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001873 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001874 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001875
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001876 /*
1877 * Check if we need to move delayed/dormant tasks from cmds on the
1878 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1879 * Attribute.
1880 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001881 transport_complete_task_attr(cmd);
1882
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001883 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001884 * Check to schedule QUEUE_FULL work, or execute an existing
1885 * cmd->transport_qf_callback()
1886 */
1887 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1888 schedule_work(&cmd->se_dev->qf_work_queue);
1889
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001890 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001891 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001892 * the struct se_cmd in question.
1893 */
1894 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001895 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001896 ret = transport_send_check_condition_and_sense(
1897 cmd, 0, 1);
1898 if (ret == -EAGAIN || ret == -ENOMEM)
1899 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001900
Paolo Bonzini27a27092012-09-05 17:09:14 +02001901 transport_lun_remove_cmd(cmd);
1902 transport_cmd_check_stop_to_fabric(cmd);
1903 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001904 }
1905 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001906 * Check for a callback, used by amongst other things
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001907 * XDWRITE_READ_10 and COMPARE_AND_WRITE emulation.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908 */
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001909 if (cmd->transport_complete_callback) {
1910 sense_reason_t rc;
1911
1912 rc = cmd->transport_complete_callback(cmd);
1913 if (!rc)
1914 return;
1915
1916 ret = transport_send_check_condition_and_sense(cmd,
1917 rc, 0);
1918 if (ret == -EAGAIN || ret == -ENOMEM)
1919 goto queue_full;
1920
1921 transport_lun_remove_cmd(cmd);
1922 transport_cmd_check_stop_to_fabric(cmd);
1923 return;
1924 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001925
1926 switch (cmd->data_direction) {
1927 case DMA_FROM_DEVICE:
1928 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001929 if (cmd->se_lun->lun_sep) {
1930 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001931 cmd->data_length;
1932 }
1933 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001934
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001935 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001936 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001937 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001938 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001939 break;
1940 case DMA_TO_DEVICE:
1941 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001942 if (cmd->se_lun->lun_sep) {
1943 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001944 cmd->data_length;
1945 }
1946 spin_unlock(&cmd->se_lun->lun_sep_lock);
1947 /*
1948 * Check if we need to send READ payload for BIDI-COMMAND
1949 */
Andy Groverec98f782011-07-20 19:28:46 +00001950 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001951 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001952 if (cmd->se_lun->lun_sep) {
1953 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001954 cmd->data_length;
1955 }
1956 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001957 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001958 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001959 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001960 break;
1961 }
1962 /* Fall through for DMA_TO_DEVICE */
1963 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001964 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001965 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001966 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001967 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001968 break;
1969 default:
1970 break;
1971 }
1972
1973 transport_lun_remove_cmd(cmd);
1974 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001975 return;
1976
1977queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001978 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001979 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001980 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1981 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982}
1983
Andy Grover6708bb22011-06-08 10:36:43 -07001984static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985{
Andy Groverec98f782011-07-20 19:28:46 +00001986 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001987 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001988
Andy Grover6708bb22011-06-08 10:36:43 -07001989 for_each_sg(sgl, sg, nents, count)
1990 __free_page(sg_page(sg));
1991
1992 kfree(sgl);
1993}
1994
1995static inline void transport_free_pages(struct se_cmd *cmd)
1996{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001997 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001998 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001999
Andy Grover6708bb22011-06-08 10:36:43 -07002000 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002001 cmd->t_data_sg = NULL;
2002 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002003
Andy Grover6708bb22011-06-08 10:36:43 -07002004 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002005 cmd->t_bidi_data_sg = NULL;
2006 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002007}
2008
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002009/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002010 * transport_release_cmd - free a command
2011 * @cmd: command to free
2012 *
2013 * This routine unconditionally frees a command, and reference counting
2014 * or list removal must be done in the caller.
2015 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002016static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002017{
2018 BUG_ON(!cmd->se_tfo);
2019
Andy Groverc8e31f22012-01-19 13:39:17 -08002020 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002021 core_tmr_release_req(cmd->se_tmr_req);
2022 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2023 kfree(cmd->t_task_cdb);
2024 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002025 * If this cmd has been setup with target_get_sess_cmd(), drop
2026 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002027 */
Nicholas Bellingerca249762013-06-06 02:06:14 -07002028 return target_put_sess_cmd(cmd->se_sess, cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002029}
2030
2031/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002032 * transport_put_cmd - release a reference to a command
2033 * @cmd: command to release
2034 *
2035 * This routine releases our reference to the command and frees it if possible.
2036 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002037static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002038{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002039 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002040 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002041}
2042
Andy Grover49493142012-01-16 16:57:08 -08002043void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002044{
Andy Groverec98f782011-07-20 19:28:46 +00002045 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002046 struct page **pages;
2047 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002048
Andy Grover05d1c7c2011-07-20 19:13:28 +00002049 /*
Andy Groverec98f782011-07-20 19:28:46 +00002050 * We need to take into account a possible offset here for fabrics like
2051 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2052 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002053 */
Andy Grover49493142012-01-16 16:57:08 -08002054 if (!cmd->t_data_nents)
2055 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002056
2057 BUG_ON(!sg);
2058 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002059 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002060
Andy Grover49493142012-01-16 16:57:08 -08002061 /* >1 page. use vmap */
2062 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002063 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002064 return NULL;
2065
2066 /* convert sg[] to pages[] */
2067 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2068 pages[i] = sg_page(sg);
2069 }
2070
2071 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2072 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002073 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002074 return NULL;
2075
2076 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002077}
Andy Grover49493142012-01-16 16:57:08 -08002078EXPORT_SYMBOL(transport_kmap_data_sg);
2079
2080void transport_kunmap_data_sg(struct se_cmd *cmd)
2081{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002082 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002083 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002084 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002085 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002086 return;
2087 }
Andy Grover49493142012-01-16 16:57:08 -08002088
2089 vunmap(cmd->t_data_vmap);
2090 cmd->t_data_vmap = NULL;
2091}
2092EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002093
2094static int
2095transport_generic_get_mem(struct se_cmd *cmd)
2096{
Andy Groverec98f782011-07-20 19:28:46 +00002097 u32 length = cmd->data_length;
2098 unsigned int nents;
2099 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002100 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002101 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002102
Andy Groverec98f782011-07-20 19:28:46 +00002103 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2104 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2105 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002106 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002107
Andy Groverec98f782011-07-20 19:28:46 +00002108 cmd->t_data_nents = nents;
2109 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002110
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002111 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002112
Andy Groverec98f782011-07-20 19:28:46 +00002113 while (length) {
2114 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002115 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002116 if (!page)
2117 goto out;
2118
2119 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2120 length -= page_len;
2121 i++;
2122 }
2123 return 0;
2124
2125out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002126 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002127 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002128 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002129 }
2130 kfree(cmd->t_data_sg);
2131 cmd->t_data_sg = NULL;
2132 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002133}
2134
Andy Grovera1d8b492011-05-02 17:12:10 -07002135/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002136 * Allocate any required resources to execute the command. For writes we
2137 * might not have the payload yet, so notify the fabric via a call to
2138 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002139 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002140sense_reason_t
2141transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002142{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002143 int ret = 0;
2144
2145 /*
2146 * Determine is the TCM fabric module has already allocated physical
2147 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002148 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149 */
Andy Groverec98f782011-07-20 19:28:46 +00002150 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2151 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002152 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002153 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002154 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002155 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002156 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002157 * If this command is not a write we can execute it right here,
2158 * for write buffers we need to notify the fabric driver first
2159 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002160 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002161 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002162 if (cmd->data_direction != DMA_TO_DEVICE) {
2163 target_execute_cmd(cmd);
2164 return 0;
2165 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002166 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002167
2168 ret = cmd->se_tfo->write_pending(cmd);
2169 if (ret == -EAGAIN || ret == -ENOMEM)
2170 goto queue_full;
2171
Christoph Hellwigde103c92012-11-06 12:24:09 -08002172 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2173 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002174
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002175 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002176
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002177queue_full:
2178 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2179 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2180 transport_handle_queue_full(cmd, cmd->se_dev);
2181 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002182}
Andy Grovera1d8b492011-05-02 17:12:10 -07002183EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002184
Christoph Hellwige057f532011-10-17 13:56:41 -04002185static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002186{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002187 int ret;
2188
2189 ret = cmd->se_tfo->write_pending(cmd);
2190 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002191 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2192 cmd);
2193 transport_handle_queue_full(cmd, cmd->se_dev);
2194 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002195}
2196
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002197int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002198{
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002199 int ret = 0;
2200
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002201 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002202 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002203 transport_wait_for_tasks(cmd);
2204
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002205 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002206 } else {
2207 if (wait_for_tasks)
2208 transport_wait_for_tasks(cmd);
2209
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002210 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002211 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002212
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002213 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002214 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002215 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002216}
2217EXPORT_SYMBOL(transport_generic_free_cmd);
2218
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002219/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2220 * @se_sess: session to reference
2221 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002222 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002223 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002224int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002225 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002226{
2227 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002228 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002229
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002230 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002231 /*
2232 * Add a second kref if the fabric caller is expecting to handle
2233 * fabric acknowledgement that requires two target_put_sess_cmd()
2234 * invocations before se_cmd descriptor release.
2235 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002236 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002237 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002238 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2239 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002240
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002241 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002242 if (se_sess->sess_tearing_down) {
2243 ret = -ESHUTDOWN;
2244 goto out;
2245 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002246 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002247out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002248 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002249 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002250}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002251EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002252
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002253static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002254{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002255 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2256 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002257
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002259 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002260 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002261 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002262 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002263 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002264 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002265 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002266 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002267 }
2268 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002269 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002270
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002271 se_cmd->se_tfo->release_cmd(se_cmd);
2272}
2273
2274/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2275 * @se_sess: session to reference
2276 * @se_cmd: command descriptor to drop
2277 */
2278int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2279{
Joern Engelccf5ae82013-05-13 16:30:06 -04002280 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2281 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002282}
2283EXPORT_SYMBOL(target_put_sess_cmd);
2284
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002285/* target_sess_cmd_list_set_waiting - Flag all commands in
2286 * sess_cmd_list to complete cmd_wait_comp. Set
2287 * sess_tearing_down so no more commands are queued.
2288 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002289 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002290void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002291{
2292 struct se_cmd *se_cmd;
2293 unsigned long flags;
2294
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002295 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002296 if (se_sess->sess_tearing_down) {
2297 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2298 return;
2299 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002300 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002301 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002302
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002303 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002304 se_cmd->cmd_wait_set = 1;
2305
2306 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2307}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002308EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002309
2310/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2311 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002312 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002313void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002314{
2315 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002316 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002317
2318 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002319 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002320 list_del(&se_cmd->se_cmd_list);
2321
2322 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2323 " %d\n", se_cmd, se_cmd->t_state,
2324 se_cmd->se_tfo->get_cmd_state(se_cmd));
2325
Joern Engelbe646c2d2013-05-15 00:44:07 -07002326 wait_for_completion(&se_cmd->cmd_wait_comp);
2327 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2328 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2329 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002330
2331 se_cmd->se_tfo->release_cmd(se_cmd);
2332 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002333
2334 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2335 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2336 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2337
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002338}
2339EXPORT_SYMBOL(target_wait_for_sess_cmds);
2340
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002341/* transport_lun_wait_for_tasks():
2342 *
2343 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2344 * an struct se_lun to be successfully shutdown.
2345 */
2346static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2347{
2348 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002349 int ret = 0;
2350
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002351 /*
2352 * If the frontend has already requested this struct se_cmd to
2353 * be stopped, we can safely ignore this struct se_cmd.
2354 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002355 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002356 if (cmd->transport_state & CMD_T_STOP) {
2357 cmd->transport_state &= ~CMD_T_LUN_STOP;
2358
2359 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2360 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002361 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002362 transport_cmd_check_stop(cmd, false, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002363 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002364 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002365 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002366 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002367
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002368 // XXX: audit task_flags checks.
2369 spin_lock_irqsave(&cmd->t_state_lock, flags);
2370 if ((cmd->transport_state & CMD_T_BUSY) &&
2371 (cmd->transport_state & CMD_T_SENT)) {
2372 if (!target_stop_cmd(cmd, &flags))
2373 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002374 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002375 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002376
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002377 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2378 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002379 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002380 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002381 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002382 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002383 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002384 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002385 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002386
2387 return 0;
2388}
2389
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002390static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2391{
2392 struct se_cmd *cmd = NULL;
2393 unsigned long lun_flags, cmd_flags;
2394 /*
2395 * Do exception processing and return CHECK_CONDITION status to the
2396 * Initiator Port.
2397 */
2398 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002399 while (!list_empty(&lun->lun_cmd_list)) {
2400 cmd = list_first_entry(&lun->lun_cmd_list,
2401 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002402 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002403
Andy Grovera1d8b492011-05-02 17:12:10 -07002404 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002405 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002406 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002407 cmd->se_lun->unpacked_lun,
2408 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002409 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002410 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002411
2412 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2413
Andy Grover6708bb22011-06-08 10:36:43 -07002414 if (!cmd->se_lun) {
2415 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002416 cmd->se_tfo->get_task_tag(cmd),
2417 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002418 BUG();
2419 }
2420 /*
2421 * If the Storage engine still owns the iscsi_cmd_t, determine
2422 * and/or stop its context.
2423 */
Andy Grover6708bb22011-06-08 10:36:43 -07002424 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002425 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2426 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002427
Andy Grovere3d6f902011-07-19 08:55:10 +00002428 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002429 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2430 continue;
2431 }
2432
Andy Grover6708bb22011-06-08 10:36:43 -07002433 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002434 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002435 cmd->se_lun->unpacked_lun,
2436 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002437
Andy Grovera1d8b492011-05-02 17:12:10 -07002438 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002439 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002440 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002441 goto check_cond;
2442 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002443 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002444 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002445 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002446
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002447 /*
2448 * The Storage engine stopped this struct se_cmd before it was
2449 * send to the fabric frontend for delivery back to the
2450 * Initiator Node. Return this SCSI CDB back with an
2451 * CHECK_CONDITION status.
2452 */
2453check_cond:
2454 transport_send_check_condition_and_sense(cmd,
2455 TCM_NON_EXISTENT_LUN, 0);
2456 /*
2457 * If the fabric frontend is waiting for this iscsi_cmd_t to
2458 * be released, notify the waiting thread now that LU has
2459 * finished accessing it.
2460 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002461 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002462 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002463 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464 " struct se_cmd: %p ITT: 0x%08x\n",
2465 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002466 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002467
Andy Grovera1d8b492011-05-02 17:12:10 -07002468 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002469 cmd_flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002470 transport_cmd_check_stop(cmd, false, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002471 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002472 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2473 continue;
2474 }
Andy Grover6708bb22011-06-08 10:36:43 -07002475 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002476 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002477
Andy Grovera1d8b492011-05-02 17:12:10 -07002478 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002479 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2480 }
2481 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2482}
2483
2484static int transport_clear_lun_thread(void *p)
2485{
Jörn Engel8359cf42011-11-24 02:05:51 +01002486 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002487
2488 __transport_clear_lun_from_sessions(lun);
2489 complete(&lun->lun_shutdown_comp);
2490
2491 return 0;
2492}
2493
2494int transport_clear_lun_from_sessions(struct se_lun *lun)
2495{
2496 struct task_struct *kt;
2497
Andy Grover5951146d2011-07-19 10:26:37 +00002498 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002499 "tcm_cl_%u", lun->unpacked_lun);
2500 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002501 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002502 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002503 }
2504 wait_for_completion(&lun->lun_shutdown_comp);
2505
2506 return 0;
2507}
2508
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002509/**
2510 * transport_wait_for_tasks - wait for completion to occur
2511 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002512 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002513 * Called from frontend fabric context to wait for storage engine
2514 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002515 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002516bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002517{
2518 unsigned long flags;
2519
Andy Grovera1d8b492011-05-02 17:12:10 -07002520 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002521 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2522 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002523 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002524 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002525 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002526
Andy Groverc8e31f22012-01-19 13:39:17 -08002527 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2528 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002529 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002530 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002531 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002532 /*
2533 * If we are already stopped due to an external event (ie: LUN shutdown)
2534 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002535 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002536 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2537 * has completed its operation on the struct se_cmd.
2538 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002539 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002540 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002541 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002542 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002543 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002544 /*
2545 * There is a special case for WRITES where a FE exception +
2546 * LUN shutdown means ConfigFS context is still sleeping on
2547 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2548 * We go ahead and up transport_lun_stop_comp just to be sure
2549 * here.
2550 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002551 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2552 complete(&cmd->transport_lun_stop_comp);
2553 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2554 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002555
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002556 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557 /*
2558 * At this point, the frontend who was the originator of this
2559 * struct se_cmd, now owns the structure and can be released through
2560 * normal means below.
2561 */
Andy Grover6708bb22011-06-08 10:36:43 -07002562 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002563 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002564 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002565 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002566
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002567 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002568 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002569
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002570 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002571 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002572 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002573 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002574
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002575 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002576
Andy Grover6708bb22011-06-08 10:36:43 -07002577 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002578 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002579 cmd, cmd->se_tfo->get_task_tag(cmd),
2580 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002581
Andy Grovera1d8b492011-05-02 17:12:10 -07002582 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002583
Andy Grovera1d8b492011-05-02 17:12:10 -07002584 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585
Andy Grovera1d8b492011-05-02 17:12:10 -07002586 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002587 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002588
Masanari Iida35d1efe2012-08-16 22:43:13 +09002589 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002590 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002591 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002592
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002593 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002594
2595 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002596}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002597EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002598
2599static int transport_get_sense_codes(
2600 struct se_cmd *cmd,
2601 u8 *asc,
2602 u8 *ascq)
2603{
2604 *asc = cmd->scsi_asc;
2605 *ascq = cmd->scsi_ascq;
2606
2607 return 0;
2608}
2609
Christoph Hellwigde103c92012-11-06 12:24:09 -08002610int
2611transport_send_check_condition_and_sense(struct se_cmd *cmd,
2612 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002613{
2614 unsigned char *buffer = cmd->sense_buffer;
2615 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 u8 asc = 0, ascq = 0;
2617
Andy Grovera1d8b492011-05-02 17:12:10 -07002618 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002619 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002620 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002621 return 0;
2622 }
2623 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002624 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002625
2626 if (!reason && from_transport)
2627 goto after_reason;
2628
2629 if (!from_transport)
2630 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002631
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632 /*
2633 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2634 * SENSE KEY values from include/scsi/scsi.h
2635 */
2636 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002637 case TCM_NO_SENSE:
2638 /* CURRENT ERROR */
2639 buffer[0] = 0x70;
2640 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2641 /* Not Ready */
2642 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2643 /* NO ADDITIONAL SENSE INFORMATION */
2644 buffer[SPC_ASC_KEY_OFFSET] = 0;
2645 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2646 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002647 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002648 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002649 buffer[0] = 0x70;
2650 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002651 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002652 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002653 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002654 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002655 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002656 case TCM_UNSUPPORTED_SCSI_OPCODE:
2657 case TCM_SECTOR_COUNT_TOO_MANY:
2658 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002659 buffer[0] = 0x70;
2660 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002661 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002662 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002663 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002664 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002665 break;
2666 case TCM_UNKNOWN_MODE_PAGE:
2667 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002668 buffer[0] = 0x70;
2669 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002670 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002671 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002672 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002673 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002674 break;
2675 case TCM_CHECK_CONDITION_ABORT_CMD:
2676 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002677 buffer[0] = 0x70;
2678 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002680 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002681 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2683 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002684 break;
2685 case TCM_INCORRECT_AMOUNT_OF_DATA:
2686 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002687 buffer[0] = 0x70;
2688 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002689 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002690 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002692 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002693 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002694 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002695 break;
2696 case TCM_INVALID_CDB_FIELD:
2697 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002698 buffer[0] = 0x70;
2699 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002700 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002701 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002703 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002704 break;
2705 case TCM_INVALID_PARAMETER_LIST:
2706 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002707 buffer[0] = 0x70;
2708 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002709 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002710 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002711 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002712 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002714 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2715 /* CURRENT ERROR */
2716 buffer[0] = 0x70;
2717 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2718 /* ILLEGAL REQUEST */
2719 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2720 /* PARAMETER LIST LENGTH ERROR */
2721 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2722 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002723 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2724 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002725 buffer[0] = 0x70;
2726 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002727 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002728 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002729 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002730 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002732 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002733 break;
2734 case TCM_SERVICE_CRC_ERROR:
2735 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002736 buffer[0] = 0x70;
2737 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002738 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002739 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002741 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002744 break;
2745 case TCM_SNACK_REJECTED:
2746 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002747 buffer[0] = 0x70;
2748 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002749 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002750 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002751 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002752 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002753 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002754 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002755 break;
2756 case TCM_WRITE_PROTECTED:
2757 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002758 buffer[0] = 0x70;
2759 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002760 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002761 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002762 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002763 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002764 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002765 case TCM_ADDRESS_OUT_OF_RANGE:
2766 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002767 buffer[0] = 0x70;
2768 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002769 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002770 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002771 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002772 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002773 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002774 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2775 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002776 buffer[0] = 0x70;
2777 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002779 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002781 buffer[SPC_ASC_KEY_OFFSET] = asc;
2782 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002783 break;
2784 case TCM_CHECK_CONDITION_NOT_READY:
2785 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002786 buffer[0] = 0x70;
2787 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002788 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002789 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002790 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002791 buffer[SPC_ASC_KEY_OFFSET] = asc;
2792 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002793 break;
2794 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2795 default:
2796 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002797 buffer[0] = 0x70;
2798 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002799 /*
2800 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2801 * Solaris initiators. Returning NOT READY instead means the
2802 * operations will be retried a finite number of times and we
2803 * can survive intermittent errors.
2804 */
2805 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002807 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808 break;
2809 }
2810 /*
2811 * This code uses linux/include/scsi/scsi.h SAM status codes!
2812 */
2813 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2814 /*
2815 * Automatically padded, this value is encoded in the fabric's
2816 * data_length response PDU containing the SCSI defined sense data.
2817 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002818 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002819
2820after_reason:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002821 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002822 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002823}
2824EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2825
2826int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2827{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002828 if (!(cmd->transport_state & CMD_T_ABORTED))
2829 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002830
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002831 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2832 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002833
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002834 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2835 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002836
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002837 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002838 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002839 cmd->se_tfo->queue_status(cmd);
2840
2841 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002842}
2843EXPORT_SYMBOL(transport_check_aborted_status);
2844
2845void transport_send_task_abort(struct se_cmd *cmd)
2846{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002847 unsigned long flags;
2848
2849 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002850 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002851 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2852 return;
2853 }
2854 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2855
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856 /*
2857 * If there are still expected incoming fabric WRITEs, we wait
2858 * until until they have completed before sending a TASK_ABORTED
2859 * response. This response with TASK_ABORTED status will be
2860 * queued back to fabric module by transport_check_aborted_status().
2861 */
2862 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002863 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002864 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002865 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002866 }
2867 }
2868 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002869
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002870 transport_lun_remove_cmd(cmd);
2871
Andy Grover6708bb22011-06-08 10:36:43 -07002872 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002873 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002874 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002875
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002876 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002877 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002878}
2879
Christoph Hellwigaf877292012-07-08 15:58:49 -04002880static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002881{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002882 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002883 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002884 struct se_tmr_req *tmr = cmd->se_tmr_req;
2885 int ret;
2886
2887 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002888 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002889 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002890 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002891 case TMR_ABORT_TASK_SET:
2892 case TMR_CLEAR_ACA:
2893 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002894 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2895 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002896 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002897 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2898 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2899 TMR_FUNCTION_REJECTED;
2900 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002901 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002902 tmr->response = TMR_FUNCTION_REJECTED;
2903 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002904 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002905 tmr->response = TMR_FUNCTION_REJECTED;
2906 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002907 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002908 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002909 tmr->function);
2910 tmr->response = TMR_FUNCTION_REJECTED;
2911 break;
2912 }
2913
2914 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002915 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002916
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002917 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002918}
2919
Christoph Hellwigaf877292012-07-08 15:58:49 -04002920int transport_generic_handle_tmr(
2921 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002922{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002923 INIT_WORK(&cmd->work, target_tmr_work);
2924 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002925 return 0;
2926}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002927EXPORT_SYMBOL(transport_generic_handle_tmr);