blob: 81e945eefbbdd0572181d84e3cd9d014895e4eb7 [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 Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2002-2013 Datera, Inc.
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);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -070070static int transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040071static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072
Andy Grovere3d6f902011-07-19 08:55:10 +000073int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080074{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075 se_sess_cache = kmem_cache_create("se_sess_cache",
76 sizeof(struct se_session), __alignof__(struct se_session),
77 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070078 if (!se_sess_cache) {
79 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080081 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080082 }
83 se_ua_cache = kmem_cache_create("se_ua_cache",
84 sizeof(struct se_ua), __alignof__(struct se_ua),
85 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070086 if (!se_ua_cache) {
87 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040088 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080089 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
91 sizeof(struct t10_pr_registration),
92 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070093 if (!t10_pr_reg_cache) {
94 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080095 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040096 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080097 }
98 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
99 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
100 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700101 if (!t10_alua_lu_gp_cache) {
102 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800103 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400104 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800105 }
106 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
107 sizeof(struct t10_alua_lu_gp_member),
108 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700109 if (!t10_alua_lu_gp_mem_cache) {
110 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800111 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400112 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800113 }
114 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
115 sizeof(struct t10_alua_tg_pt_gp),
116 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700117 if (!t10_alua_tg_pt_gp_cache) {
118 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800119 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400120 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800121 }
122 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
123 "t10_alua_tg_pt_gp_mem_cache",
124 sizeof(struct t10_alua_tg_pt_gp_member),
125 __alignof__(struct t10_alua_tg_pt_gp_member),
126 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700127 if (!t10_alua_tg_pt_gp_mem_cache) {
128 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800129 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400130 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800131 }
132
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400133 target_completion_wq = alloc_workqueue("target_completion",
134 WQ_MEM_RECLAIM, 0);
135 if (!target_completion_wq)
136 goto out_free_tg_pt_gp_mem_cache;
137
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800138 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400139
140out_free_tg_pt_gp_mem_cache:
141 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
142out_free_tg_pt_gp_cache:
143 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
144out_free_lu_gp_mem_cache:
145 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
146out_free_lu_gp_cache:
147 kmem_cache_destroy(t10_alua_lu_gp_cache);
148out_free_pr_reg_cache:
149 kmem_cache_destroy(t10_pr_reg_cache);
150out_free_ua_cache:
151 kmem_cache_destroy(se_ua_cache);
152out_free_sess_cache:
153 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000155 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800156}
157
Andy Grovere3d6f902011-07-19 08:55:10 +0000158void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800159{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400160 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161 kmem_cache_destroy(se_sess_cache);
162 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800163 kmem_cache_destroy(t10_pr_reg_cache);
164 kmem_cache_destroy(t10_alua_lu_gp_cache);
165 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
166 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
167 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800168}
169
Andy Grovere3d6f902011-07-19 08:55:10 +0000170/* This code ensures unique mib indexes are handed out. */
171static DEFINE_SPINLOCK(scsi_mib_index_lock);
172static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800173
174/*
175 * Allocate a new row index for the entry type specified
176 */
177u32 scsi_get_new_index(scsi_index_t type)
178{
179 u32 new_index;
180
Andy Grovere3d6f902011-07-19 08:55:10 +0000181 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800182
Andy Grovere3d6f902011-07-19 08:55:10 +0000183 spin_lock(&scsi_mib_index_lock);
184 new_index = ++scsi_mib_index[type];
185 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800186
187 return new_index;
188}
189
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700190void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800191{
192 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700193 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800194
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700195 if (sub_api_initialized)
196 return;
197
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800198 ret = request_module("target_core_iblock");
199 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700200 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800201
202 ret = request_module("target_core_file");
203 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700204 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800205
206 ret = request_module("target_core_pscsi");
207 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700208 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800209
Andy Grovere3d6f902011-07-19 08:55:10 +0000210 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800211}
212
213struct se_session *transport_init_session(void)
214{
215 struct se_session *se_sess;
216
217 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700218 if (!se_sess) {
219 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800220 " se_sess_cache\n");
221 return ERR_PTR(-ENOMEM);
222 }
223 INIT_LIST_HEAD(&se_sess->sess_list);
224 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700225 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -0700226 INIT_LIST_HEAD(&se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700227 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800228 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800229
230 return se_sess;
231}
232EXPORT_SYMBOL(transport_init_session);
233
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700234int transport_alloc_session_tags(struct se_session *se_sess,
235 unsigned int tag_num, unsigned int tag_size)
236{
237 int rc;
238
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700239 se_sess->sess_cmd_map = kzalloc(tag_num * tag_size,
240 GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700241 if (!se_sess->sess_cmd_map) {
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700242 se_sess->sess_cmd_map = vzalloc(tag_num * tag_size);
243 if (!se_sess->sess_cmd_map) {
244 pr_err("Unable to allocate se_sess->sess_cmd_map\n");
245 return -ENOMEM;
246 }
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700247 }
248
249 rc = percpu_ida_init(&se_sess->sess_tag_pool, tag_num);
250 if (rc < 0) {
251 pr_err("Unable to init se_sess->sess_tag_pool,"
252 " tag_num: %u\n", tag_num);
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700253 if (is_vmalloc_addr(se_sess->sess_cmd_map))
254 vfree(se_sess->sess_cmd_map);
255 else
256 kfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700257 se_sess->sess_cmd_map = NULL;
258 return -ENOMEM;
259 }
260
261 return 0;
262}
263EXPORT_SYMBOL(transport_alloc_session_tags);
264
265struct se_session *transport_init_session_tags(unsigned int tag_num,
266 unsigned int tag_size)
267{
268 struct se_session *se_sess;
269 int rc;
270
271 se_sess = transport_init_session();
272 if (IS_ERR(se_sess))
273 return se_sess;
274
275 rc = transport_alloc_session_tags(se_sess, tag_num, tag_size);
276 if (rc < 0) {
277 transport_free_session(se_sess);
278 return ERR_PTR(-ENOMEM);
279 }
280
281 return se_sess;
282}
283EXPORT_SYMBOL(transport_init_session_tags);
284
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800285/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700286 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800287 */
288void __transport_register_session(
289 struct se_portal_group *se_tpg,
290 struct se_node_acl *se_nacl,
291 struct se_session *se_sess,
292 void *fabric_sess_ptr)
293{
294 unsigned char buf[PR_REG_ISID_LEN];
295
296 se_sess->se_tpg = se_tpg;
297 se_sess->fabric_sess_ptr = fabric_sess_ptr;
298 /*
299 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
300 *
301 * Only set for struct se_session's that will actually be moving I/O.
302 * eg: *NOT* discovery sessions.
303 */
304 if (se_nacl) {
305 /*
306 * If the fabric module supports an ISID based TransportID,
307 * save this value in binary from the fabric I_T Nexus now.
308 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000309 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800310 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000311 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800312 &buf[0], PR_REG_ISID_LEN);
313 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
314 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800315 kref_get(&se_nacl->acl_kref);
316
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800317 spin_lock_irq(&se_nacl->nacl_sess_lock);
318 /*
319 * The se_nacl->nacl_sess pointer will be set to the
320 * last active I_T Nexus for each struct se_node_acl.
321 */
322 se_nacl->nacl_sess = se_sess;
323
324 list_add_tail(&se_sess->sess_acl_list,
325 &se_nacl->acl_sess_list);
326 spin_unlock_irq(&se_nacl->nacl_sess_lock);
327 }
328 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
329
Andy Grover6708bb22011-06-08 10:36:43 -0700330 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000331 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800332}
333EXPORT_SYMBOL(__transport_register_session);
334
335void transport_register_session(
336 struct se_portal_group *se_tpg,
337 struct se_node_acl *se_nacl,
338 struct se_session *se_sess,
339 void *fabric_sess_ptr)
340{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700341 unsigned long flags;
342
343 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800344 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700345 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800346}
347EXPORT_SYMBOL(transport_register_session);
348
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800349static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800350{
351 struct se_session *se_sess = container_of(kref,
352 struct se_session, sess_kref);
353 struct se_portal_group *se_tpg = se_sess->se_tpg;
354
355 se_tpg->se_tpg_tfo->close_session(se_sess);
356}
357
358void target_get_session(struct se_session *se_sess)
359{
360 kref_get(&se_sess->sess_kref);
361}
362EXPORT_SYMBOL(target_get_session);
363
Jörn Engel33933a02012-05-11 10:35:08 -0400364void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800365{
Joern Engel41492682012-05-18 13:57:19 -0700366 struct se_portal_group *tpg = se_sess->se_tpg;
367
368 if (tpg->se_tpg_tfo->put_session != NULL) {
369 tpg->se_tpg_tfo->put_session(se_sess);
370 return;
371 }
Jörn Engel33933a02012-05-11 10:35:08 -0400372 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800373}
374EXPORT_SYMBOL(target_put_session);
375
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800376static void target_complete_nacl(struct kref *kref)
377{
378 struct se_node_acl *nacl = container_of(kref,
379 struct se_node_acl, acl_kref);
380
381 complete(&nacl->acl_free_comp);
382}
383
384void target_put_nacl(struct se_node_acl *nacl)
385{
386 kref_put(&nacl->acl_kref, target_complete_nacl);
387}
388
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389void transport_deregister_session_configfs(struct se_session *se_sess)
390{
391 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700392 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800393 /*
394 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
395 */
396 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700397 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700398 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800399 if (se_nacl->acl_stop == 0)
400 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800401 /*
402 * If the session list is empty, then clear the pointer.
403 * Otherwise, set the struct se_session pointer from the tail
404 * element of the per struct se_node_acl active session list.
405 */
406 if (list_empty(&se_nacl->acl_sess_list))
407 se_nacl->nacl_sess = NULL;
408 else {
409 se_nacl->nacl_sess = container_of(
410 se_nacl->acl_sess_list.prev,
411 struct se_session, sess_acl_list);
412 }
Roland Dreier23388862011-06-22 01:02:21 -0700413 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414 }
415}
416EXPORT_SYMBOL(transport_deregister_session_configfs);
417
418void transport_free_session(struct se_session *se_sess)
419{
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700420 if (se_sess->sess_cmd_map) {
421 percpu_ida_destroy(&se_sess->sess_tag_pool);
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700422 if (is_vmalloc_addr(se_sess->sess_cmd_map))
423 vfree(se_sess->sess_cmd_map);
424 else
425 kfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700426 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800427 kmem_cache_free(se_sess_cache, se_sess);
428}
429EXPORT_SYMBOL(transport_free_session);
430
431void transport_deregister_session(struct se_session *se_sess)
432{
433 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800434 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800435 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700436 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800437 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800438
Andy Grover6708bb22011-06-08 10:36:43 -0700439 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440 transport_free_session(se_sess);
441 return;
442 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800443 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444
Roland Dreiere63a8e12011-08-12 16:01:02 -0700445 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446 list_del(&se_sess->sess_list);
447 se_sess->se_tpg = NULL;
448 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700449 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450
451 /*
452 * Determine if we need to do extra work for this initiator node's
453 * struct se_node_acl if it had been previously dynamically generated.
454 */
455 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800456
Nicholas Bellinger01468342012-03-10 14:32:52 -0800457 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
458 if (se_nacl && se_nacl->dynamic_node_acl) {
459 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
460 list_del(&se_nacl->acl_list);
461 se_tpg->num_node_acls--;
462 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
463 core_tpg_wait_for_nacl_pr_ref(se_nacl);
464 core_free_device_list_for_node(se_nacl, se_tpg);
465 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
466
467 comp_nacl = false;
468 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800471 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800472
Andy Grover6708bb22011-06-08 10:36:43 -0700473 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000474 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800475 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800476 * If last kref is dropping now for an explict NodeACL, awake sleeping
477 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
478 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800479 */
480 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800481 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800482
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800483 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800484}
485EXPORT_SYMBOL(transport_deregister_session);
486
487/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700488 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800489 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400490static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400492 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493 unsigned long flags;
494
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400495 if (!dev)
496 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400498 if (cmd->transport_state & CMD_T_BUSY)
499 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800500
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400501 spin_lock_irqsave(&dev->execute_task_lock, flags);
502 if (cmd->state_active) {
503 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400504 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800505 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400506 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800507}
508
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700509static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
510 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800511{
512 unsigned long flags;
513
Andy Grovera1d8b492011-05-02 17:12:10 -0700514 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700515 if (write_pending)
516 cmd->t_state = TRANSPORT_WRITE_PENDING;
517
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518 /*
519 * Determine if IOCTL context caller in requesting the stopping of this
520 * command for LUN shutdown purposes.
521 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500522 if (cmd->transport_state & CMD_T_LUN_STOP) {
523 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
524 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800525
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500526 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400527 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400528 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700529 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800530
Andy Grovera1d8b492011-05-02 17:12:10 -0700531 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800532 return 1;
533 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400534
535 if (remove_from_lists) {
536 target_remove_from_state_list(cmd);
537
538 /*
539 * Clear struct se_cmd->se_lun before the handoff to FE.
540 */
541 cmd->se_lun = NULL;
542 }
543
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800544 /*
545 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000546 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500548 if (cmd->transport_state & CMD_T_STOP) {
549 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
550 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000551 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800552
Andy Grovera1d8b492011-05-02 17:12:10 -0700553 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554
Andy Grovera1d8b492011-05-02 17:12:10 -0700555 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800556 return 1;
557 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800558
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400559 cmd->transport_state &= ~CMD_T_ACTIVE;
560 if (remove_from_lists) {
561 /*
562 * Some fabric modules like tcm_loop can release
563 * their internally allocated I/O reference now and
564 * struct se_cmd now.
565 *
566 * Fabric modules are expected to return '1' here if the
567 * se_cmd being passed is released at this point,
568 * or zero if not being released.
569 */
570 if (cmd->se_tfo->check_stop_free != NULL) {
571 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
572 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800573 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400574 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800575
Andy Grovera1d8b492011-05-02 17:12:10 -0700576 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800577 return 0;
578}
579
580static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
581{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700582 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583}
584
585static void transport_lun_remove_cmd(struct se_cmd *cmd)
586{
Andy Grovere3d6f902011-07-19 08:55:10 +0000587 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588 unsigned long flags;
589
590 if (!lun)
591 return;
592
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800593 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500594 if (!list_empty(&cmd->se_lun_node))
595 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
597}
598
599void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
600{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800601 if (transport_cmd_check_stop_to_fabric(cmd))
602 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400603 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200604 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800605}
606
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400607static void target_complete_failure_work(struct work_struct *work)
608{
609 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
610
Christoph Hellwigde103c92012-11-06 12:24:09 -0800611 transport_generic_request_failure(cmd,
612 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400613}
614
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200615/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200616 * Used when asking transport to copy Sense Data from the underlying
617 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200618 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200619static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200620{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200621 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200622
623 WARN_ON(!cmd->se_lun);
624
625 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200626 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200627
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200628 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
629 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200630
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700631 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200632
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200633 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200634 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700635 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200636}
637
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400638void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400640 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400641 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800642 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800643
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400644 cmd->scsi_status = scsi_status;
645
646
Andy Grovera1d8b492011-05-02 17:12:10 -0700647 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400648 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800649
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800650 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200651 dev->transport->transport_complete(cmd,
652 cmd->t_data_sg,
653 transport_get_sense_buffer(cmd));
654 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800655 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800656 }
657
658 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400659 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800660 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400661 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700662 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400663 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800664 return;
665 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700666
667 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500668 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700669
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800670 /*
671 * Check for case where an explict ABORT_TASK has been received
672 * and transport_wait_for_tasks() will be waiting for completion..
673 */
674 if (cmd->transport_state & CMD_T_ABORTED &&
675 cmd->transport_state & CMD_T_STOP) {
676 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
677 complete(&cmd->t_transport_stop_comp);
678 return;
679 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400680 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800681 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400682 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800683 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400684
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400685 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800686 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700687 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800688
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400689 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800690}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400691EXPORT_SYMBOL(target_complete_cmd);
692
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400693static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400695 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800696 unsigned long flags;
697
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800698 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400699 if (!cmd->state_active) {
700 list_add_tail(&cmd->state_list, &dev->state_list);
701 cmd->state_active = true;
702 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800703 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800704}
705
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700706/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700707 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700708 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400709static void transport_write_pending_qf(struct se_cmd *cmd);
710static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700711
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400712void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700713{
714 struct se_device *dev = container_of(work, struct se_device,
715 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700716 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700717 struct se_cmd *cmd, *cmd_tmp;
718
719 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700720 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
721 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700722
Roland Dreierbcac3642011-08-27 21:33:16 -0700723 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700724 list_del(&cmd->se_qf_node);
725 atomic_dec(&dev->dev_qf_count);
726 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700727
Andy Grover6708bb22011-06-08 10:36:43 -0700728 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700729 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400730 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700731 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
732 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400733
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400734 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
735 transport_write_pending_qf(cmd);
736 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
737 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700738 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700739}
740
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800741unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
742{
743 switch (cmd->data_direction) {
744 case DMA_NONE:
745 return "NONE";
746 case DMA_FROM_DEVICE:
747 return "READ";
748 case DMA_TO_DEVICE:
749 return "WRITE";
750 case DMA_BIDIRECTIONAL:
751 return "BIDI";
752 default:
753 break;
754 }
755
756 return "UNKNOWN";
757}
758
759void transport_dump_dev_state(
760 struct se_device *dev,
761 char *b,
762 int *bl)
763{
764 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400765 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800766 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400767 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800768 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800769
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400770 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700771 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400772 dev->dev_attrib.block_size,
773 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800774 *bl += sprintf(b + *bl, " ");
775}
776
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800777void transport_dump_vpd_proto_id(
778 struct t10_vpd *vpd,
779 unsigned char *p_buf,
780 int p_buf_len)
781{
782 unsigned char buf[VPD_TMP_BUF_SIZE];
783 int len;
784
785 memset(buf, 0, VPD_TMP_BUF_SIZE);
786 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
787
788 switch (vpd->protocol_identifier) {
789 case 0x00:
790 sprintf(buf+len, "Fibre Channel\n");
791 break;
792 case 0x10:
793 sprintf(buf+len, "Parallel SCSI\n");
794 break;
795 case 0x20:
796 sprintf(buf+len, "SSA\n");
797 break;
798 case 0x30:
799 sprintf(buf+len, "IEEE 1394\n");
800 break;
801 case 0x40:
802 sprintf(buf+len, "SCSI Remote Direct Memory Access"
803 " Protocol\n");
804 break;
805 case 0x50:
806 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
807 break;
808 case 0x60:
809 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
810 break;
811 case 0x70:
812 sprintf(buf+len, "Automation/Drive Interface Transport"
813 " Protocol\n");
814 break;
815 case 0x80:
816 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
817 break;
818 default:
819 sprintf(buf+len, "Unknown 0x%02x\n",
820 vpd->protocol_identifier);
821 break;
822 }
823
824 if (p_buf)
825 strncpy(p_buf, buf, p_buf_len);
826 else
Andy Grover6708bb22011-06-08 10:36:43 -0700827 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800828}
829
830void
831transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
832{
833 /*
834 * Check if the Protocol Identifier Valid (PIV) bit is set..
835 *
836 * from spc3r23.pdf section 7.5.1
837 */
838 if (page_83[1] & 0x80) {
839 vpd->protocol_identifier = (page_83[0] & 0xf0);
840 vpd->protocol_identifier_set = 1;
841 transport_dump_vpd_proto_id(vpd, NULL, 0);
842 }
843}
844EXPORT_SYMBOL(transport_set_vpd_proto_id);
845
846int transport_dump_vpd_assoc(
847 struct t10_vpd *vpd,
848 unsigned char *p_buf,
849 int p_buf_len)
850{
851 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000852 int ret = 0;
853 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800854
855 memset(buf, 0, VPD_TMP_BUF_SIZE);
856 len = sprintf(buf, "T10 VPD Identifier Association: ");
857
858 switch (vpd->association) {
859 case 0x00:
860 sprintf(buf+len, "addressed logical unit\n");
861 break;
862 case 0x10:
863 sprintf(buf+len, "target port\n");
864 break;
865 case 0x20:
866 sprintf(buf+len, "SCSI target device\n");
867 break;
868 default:
869 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000870 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800871 break;
872 }
873
874 if (p_buf)
875 strncpy(p_buf, buf, p_buf_len);
876 else
Andy Grover6708bb22011-06-08 10:36:43 -0700877 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878
879 return ret;
880}
881
882int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
883{
884 /*
885 * The VPD identification association..
886 *
887 * from spc3r23.pdf Section 7.6.3.1 Table 297
888 */
889 vpd->association = (page_83[1] & 0x30);
890 return transport_dump_vpd_assoc(vpd, NULL, 0);
891}
892EXPORT_SYMBOL(transport_set_vpd_assoc);
893
894int transport_dump_vpd_ident_type(
895 struct t10_vpd *vpd,
896 unsigned char *p_buf,
897 int p_buf_len)
898{
899 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000900 int ret = 0;
901 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800902
903 memset(buf, 0, VPD_TMP_BUF_SIZE);
904 len = sprintf(buf, "T10 VPD Identifier Type: ");
905
906 switch (vpd->device_identifier_type) {
907 case 0x00:
908 sprintf(buf+len, "Vendor specific\n");
909 break;
910 case 0x01:
911 sprintf(buf+len, "T10 Vendor ID based\n");
912 break;
913 case 0x02:
914 sprintf(buf+len, "EUI-64 based\n");
915 break;
916 case 0x03:
917 sprintf(buf+len, "NAA\n");
918 break;
919 case 0x04:
920 sprintf(buf+len, "Relative target port identifier\n");
921 break;
922 case 0x08:
923 sprintf(buf+len, "SCSI name string\n");
924 break;
925 default:
926 sprintf(buf+len, "Unsupported: 0x%02x\n",
927 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000928 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800929 break;
930 }
931
Andy Grovere3d6f902011-07-19 08:55:10 +0000932 if (p_buf) {
933 if (p_buf_len < strlen(buf)+1)
934 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800935 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000936 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700937 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000938 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800939
940 return ret;
941}
942
943int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
944{
945 /*
946 * The VPD identifier type..
947 *
948 * from spc3r23.pdf Section 7.6.3.1 Table 298
949 */
950 vpd->device_identifier_type = (page_83[1] & 0x0f);
951 return transport_dump_vpd_ident_type(vpd, NULL, 0);
952}
953EXPORT_SYMBOL(transport_set_vpd_ident_type);
954
955int transport_dump_vpd_ident(
956 struct t10_vpd *vpd,
957 unsigned char *p_buf,
958 int p_buf_len)
959{
960 unsigned char buf[VPD_TMP_BUF_SIZE];
961 int ret = 0;
962
963 memset(buf, 0, VPD_TMP_BUF_SIZE);
964
965 switch (vpd->device_identifier_code_set) {
966 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300967 snprintf(buf, sizeof(buf),
968 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800969 &vpd->device_identifier[0]);
970 break;
971 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300972 snprintf(buf, sizeof(buf),
973 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800974 &vpd->device_identifier[0]);
975 break;
976 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300977 snprintf(buf, sizeof(buf),
978 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800979 &vpd->device_identifier[0]);
980 break;
981 default:
982 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
983 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000984 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800985 break;
986 }
987
988 if (p_buf)
989 strncpy(p_buf, buf, p_buf_len);
990 else
Andy Grover6708bb22011-06-08 10:36:43 -0700991 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800992
993 return ret;
994}
995
996int
997transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
998{
999 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +09001000 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001001
1002 /*
1003 * The VPD Code Set (encoding)
1004 *
1005 * from spc3r23.pdf Section 7.6.3.1 Table 296
1006 */
1007 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
1008 switch (vpd->device_identifier_code_set) {
1009 case 0x01: /* Binary */
1010 vpd->device_identifier[j++] =
1011 hex_str[vpd->device_identifier_type];
1012 while (i < (4 + page_83[3])) {
1013 vpd->device_identifier[j++] =
1014 hex_str[(page_83[i] & 0xf0) >> 4];
1015 vpd->device_identifier[j++] =
1016 hex_str[page_83[i] & 0x0f];
1017 i++;
1018 }
1019 break;
1020 case 0x02: /* ASCII */
1021 case 0x03: /* UTF-8 */
1022 while (i < (4 + page_83[3]))
1023 vpd->device_identifier[j++] = page_83[i++];
1024 break;
1025 default:
1026 break;
1027 }
1028
1029 return transport_dump_vpd_ident(vpd, NULL, 0);
1030}
1031EXPORT_SYMBOL(transport_set_vpd_ident);
1032
Christoph Hellwigde103c92012-11-06 12:24:09 -08001033sense_reason_t
1034target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001035{
1036 struct se_device *dev = cmd->se_dev;
1037
1038 if (cmd->unknown_data_length) {
1039 cmd->data_length = size;
1040 } else if (size != cmd->data_length) {
1041 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1042 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1043 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1044 cmd->data_length, size, cmd->t_task_cdb[0]);
1045
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001046 if (cmd->data_direction == DMA_TO_DEVICE) {
1047 pr_err("Rejecting underflow/overflow"
1048 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001049 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001050 }
1051 /*
1052 * Reject READ_* or WRITE_* with overflow/underflow for
1053 * type SCF_SCSI_DATA_CDB.
1054 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001055 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001056 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1057 " CDB on non 512-byte sector setup subsystem"
1058 " plugin: %s\n", dev->transport->name);
1059 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001060 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001061 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001062 /*
1063 * For the overflow case keep the existing fabric provided
1064 * ->data_length. Otherwise for the underflow case, reset
1065 * ->data_length to the smaller SCSI expected data transfer
1066 * length.
1067 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001068 if (size > cmd->data_length) {
1069 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1070 cmd->residual_count = (size - cmd->data_length);
1071 } else {
1072 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1073 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001074 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001075 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001076 }
1077
1078 return 0;
1079
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001080}
1081
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001082/*
1083 * Used by fabric modules containing a local struct se_cmd within their
1084 * fabric dependent per I/O descriptor.
1085 */
1086void transport_init_se_cmd(
1087 struct se_cmd *cmd,
1088 struct target_core_fabric_ops *tfo,
1089 struct se_session *se_sess,
1090 u32 data_length,
1091 int data_direction,
1092 int task_attr,
1093 unsigned char *sense_buffer)
1094{
Andy Grover5951146d2011-07-19 10:26:37 +00001095 INIT_LIST_HEAD(&cmd->se_lun_node);
1096 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001097 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001098 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001099 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001100 init_completion(&cmd->transport_lun_fe_stop_comp);
1101 init_completion(&cmd->transport_lun_stop_comp);
1102 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001103 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001104 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001105 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001106 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107
1108 cmd->se_tfo = tfo;
1109 cmd->se_sess = se_sess;
1110 cmd->data_length = data_length;
1111 cmd->data_direction = data_direction;
1112 cmd->sam_task_attr = task_attr;
1113 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001114
1115 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001116}
1117EXPORT_SYMBOL(transport_init_se_cmd);
1118
Christoph Hellwigde103c92012-11-06 12:24:09 -08001119static sense_reason_t
1120transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001121{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001122 struct se_device *dev = cmd->se_dev;
1123
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001124 /*
1125 * Check if SAM Task Attribute emulation is enabled for this
1126 * struct se_device storage object
1127 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001128 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001129 return 0;
1130
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001131 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001132 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001133 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001134 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001135 }
1136 /*
1137 * Used to determine when ORDERED commands should go from
1138 * Dormant to Active status.
1139 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001140 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001141 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001142 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001143 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001144 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001145 return 0;
1146}
1147
Christoph Hellwigde103c92012-11-06 12:24:09 -08001148sense_reason_t
1149target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001150{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001151 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001152 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001153
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 /*
1155 * Ensure that the received CDB is less than the max (252 + 8) bytes
1156 * for VARIABLE_LENGTH_CMD
1157 */
1158 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001159 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001160 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1161 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001162 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001163 }
1164 /*
1165 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1166 * allocate the additional extended CDB buffer now.. Otherwise
1167 * setup the pointer from __t_task_cdb to t_task_cdb.
1168 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001169 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1170 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001171 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001172 if (!cmd->t_task_cdb) {
1173 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001174 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001175 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001176 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001177 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001178 }
1179 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001180 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001181 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001182 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001183 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001184 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001185
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001186 trace_target_sequencer_start(cmd);
1187
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001188 /*
1189 * Check for an existing UNIT ATTENTION condition
1190 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001191 ret = target_scsi3_ua_check(cmd);
1192 if (ret)
1193 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001194
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001195 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001196 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001197 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001198
Christoph Hellwigde103c92012-11-06 12:24:09 -08001199 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001200 if (ret) {
1201 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001202 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001203 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001204
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001205 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001206 if (ret)
1207 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001208
Christoph Hellwigde103c92012-11-06 12:24:09 -08001209 ret = transport_check_alloc_task_attr(cmd);
1210 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001211 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001212
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001213 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001214
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001215 spin_lock(&cmd->se_lun->lun_sep_lock);
1216 if (cmd->se_lun->lun_sep)
1217 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1218 spin_unlock(&cmd->se_lun->lun_sep_lock);
1219 return 0;
1220}
Andy Grovera12f41f2012-04-03 15:51:20 -07001221EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001222
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001223/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001224 * Used by fabric module frontends to queue tasks directly.
1225 * Many only be used from process context only
1226 */
1227int transport_handle_cdb_direct(
1228 struct se_cmd *cmd)
1229{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001230 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001231
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001232 if (!cmd->se_lun) {
1233 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001234 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001235 return -EINVAL;
1236 }
1237 if (in_interrupt()) {
1238 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001239 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001240 " from interrupt context\n");
1241 return -EINVAL;
1242 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001243 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001244 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1245 * outstanding descriptors are handled correctly during shutdown via
1246 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001247 *
1248 * Also, we don't take cmd->t_state_lock here as we only expect
1249 * this to be called for initial descriptor submission.
1250 */
1251 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001252 cmd->transport_state |= CMD_T_ACTIVE;
1253
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001254 /*
1255 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1256 * so follow TRANSPORT_NEW_CMD processing thread context usage
1257 * and call transport_generic_request_failure() if necessary..
1258 */
1259 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001260 if (ret)
1261 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001262 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001263}
1264EXPORT_SYMBOL(transport_handle_cdb_direct);
1265
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07001266sense_reason_t
Christoph Hellwigde103c92012-11-06 12:24:09 -08001267transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1268 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1269{
1270 if (!sgl || !sgl_count)
1271 return 0;
1272
1273 /*
1274 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1275 * scatterlists already have been set to follow what the fabric
1276 * passes for the original expected data transfer length.
1277 */
1278 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1279 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1280 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1281 return TCM_INVALID_CDB_FIELD;
1282 }
1283
1284 cmd->t_data_sg = sgl;
1285 cmd->t_data_nents = sgl_count;
1286
1287 if (sgl_bidi && sgl_bidi_count) {
1288 cmd->t_bidi_data_sg = sgl_bidi;
1289 cmd->t_bidi_data_nents = sgl_bidi_count;
1290 }
1291 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1292 return 0;
1293}
1294
Nicholas Bellingera0267572012-10-01 17:23:22 -07001295/*
1296 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1297 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001298 *
1299 * @se_cmd: command descriptor to submit
1300 * @se_sess: associated se_sess for endpoint
1301 * @cdb: pointer to SCSI CDB
1302 * @sense: pointer to SCSI sense buffer
1303 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1304 * @data_length: fabric expected data transfer length
1305 * @task_addr: SAM task attribute
1306 * @data_dir: DMA data direction
1307 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001308 * @sgl: struct scatterlist memory for unidirectional mapping
1309 * @sgl_count: scatterlist count for unidirectional mapping
1310 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1311 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001312 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001313 * Returns non zero to signal active I/O shutdown failure. All other
1314 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1315 * but still return zero here.
1316 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001317 * This may only be called from process context, and also currently
1318 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001319 */
1320int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001321 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001322 u32 data_length, int task_attr, int data_dir, int flags,
1323 struct scatterlist *sgl, u32 sgl_count,
1324 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001325{
1326 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001327 sense_reason_t rc;
1328 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001329
1330 se_tpg = se_sess->se_tpg;
1331 BUG_ON(!se_tpg);
1332 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1333 BUG_ON(in_interrupt());
1334 /*
1335 * Initialize se_cmd for target operation. From this point
1336 * exceptions are handled by sending exception status via
1337 * target_core_fabric_ops->queue_status() callback
1338 */
1339 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1340 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001341 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1342 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001343 /*
1344 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1345 * se_sess->sess_cmd_list. A second kref_get here is necessary
1346 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1347 * kref_put() to happen during fabric packet acknowledgement.
1348 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001349 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1350 if (ret)
1351 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001352 /*
1353 * Signal bidirectional data payloads to target-core
1354 */
1355 if (flags & TARGET_SCF_BIDI_OP)
1356 se_cmd->se_cmd_flags |= SCF_BIDI;
1357 /*
1358 * Locate se_lun pointer and attach it to struct se_cmd
1359 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001360 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1361 if (rc) {
1362 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001363 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001364 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001365 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001366
Andy Grovera12f41f2012-04-03 15:51:20 -07001367 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001368 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001369 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001370 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001371 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001372 /*
1373 * When a non zero sgl_count has been passed perform SGL passthrough
1374 * mapping for pre-allocated fabric memory instead of having target
1375 * core perform an internal SGL allocation..
1376 */
1377 if (sgl_count != 0) {
1378 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001379
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001380 /*
1381 * A work-around for tcm_loop as some userspace code via
1382 * scsi-generic do not memset their associated read buffers,
1383 * so go ahead and do that here for type non-data CDBs. Also
1384 * note that this is currently guaranteed to be a single SGL
1385 * for this case by target core in target_setup_cmd_from_cdb()
1386 * -> transport_generic_cmd_sequencer().
1387 */
1388 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1389 se_cmd->data_direction == DMA_FROM_DEVICE) {
1390 unsigned char *buf = NULL;
1391
1392 if (sgl)
1393 buf = kmap(sg_page(sgl)) + sgl->offset;
1394
1395 if (buf) {
1396 memset(buf, 0, sgl->length);
1397 kunmap(sg_page(sgl));
1398 }
1399 }
1400
Nicholas Bellingera0267572012-10-01 17:23:22 -07001401 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1402 sgl_bidi, sgl_bidi_count);
1403 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001404 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001405 return 0;
1406 }
1407 }
Andy Grover11e319e2012-04-03 15:51:28 -07001408 /*
1409 * Check if we need to delay processing because of ALUA
1410 * Active/NonOptimized primary access state..
1411 */
1412 core_alua_check_nonop_delay(se_cmd);
1413
Nicholas Bellingera6360782011-11-18 20:36:22 -08001414 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001415 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001416}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001417EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1418
1419/*
1420 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1421 *
1422 * @se_cmd: command descriptor to submit
1423 * @se_sess: associated se_sess for endpoint
1424 * @cdb: pointer to SCSI CDB
1425 * @sense: pointer to SCSI sense buffer
1426 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1427 * @data_length: fabric expected data transfer length
1428 * @task_addr: SAM task attribute
1429 * @data_dir: DMA data direction
1430 * @flags: flags for command submission from target_sc_flags_tables
1431 *
1432 * Returns non zero to signal active I/O shutdown failure. All other
1433 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1434 * but still return zero here.
1435 *
1436 * This may only be called from process context, and also currently
1437 * assumes internal allocation of fabric payload buffer by target-core.
1438 *
1439 * It also assumes interal target core SGL memory allocation.
1440 */
1441int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1442 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1443 u32 data_length, int task_attr, int data_dir, int flags)
1444{
1445 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1446 unpacked_lun, data_length, task_attr, data_dir,
1447 flags, NULL, 0, NULL, 0);
1448}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001449EXPORT_SYMBOL(target_submit_cmd);
1450
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001451static void target_complete_tmr_failure(struct work_struct *work)
1452{
1453 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1454
1455 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1456 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001457
1458 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001459}
1460
Andy Groverea98d7f2012-01-19 13:39:21 -08001461/**
1462 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1463 * for TMR CDBs
1464 *
1465 * @se_cmd: command descriptor to submit
1466 * @se_sess: associated se_sess for endpoint
1467 * @sense: pointer to SCSI sense buffer
1468 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1469 * @fabric_context: fabric context for TMR req
1470 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001471 * @gfp: gfp type for caller
1472 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001473 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001474 *
1475 * Callable from all contexts.
1476 **/
1477
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001478int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001479 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001480 void *fabric_tmr_ptr, unsigned char tm_type,
1481 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001482{
1483 struct se_portal_group *se_tpg;
1484 int ret;
1485
1486 se_tpg = se_sess->se_tpg;
1487 BUG_ON(!se_tpg);
1488
1489 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1490 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001491 /*
1492 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1493 * allocation failure.
1494 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001495 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001496 if (ret < 0)
1497 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001498
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001499 if (tm_type == TMR_ABORT_TASK)
1500 se_cmd->se_tmr_req->ref_task_tag = tag;
1501
Andy Groverea98d7f2012-01-19 13:39:21 -08001502 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001503 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1504 if (ret) {
1505 core_tmr_release_req(se_cmd->se_tmr_req);
1506 return ret;
1507 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001508
Andy Groverea98d7f2012-01-19 13:39:21 -08001509 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1510 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001511 /*
1512 * For callback during failure handling, push this work off
1513 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1514 */
1515 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1516 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001517 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001518 }
1519 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001520 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001521}
1522EXPORT_SYMBOL(target_submit_tmr);
1523
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001524/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001525 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001526 * has completed.
1527 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001528bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001529{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001530 bool was_active = false;
1531
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001532 if (cmd->transport_state & CMD_T_BUSY) {
1533 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001534 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1535
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001536 pr_debug("cmd %p waiting to complete\n", cmd);
1537 wait_for_completion(&cmd->task_stop_comp);
1538 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001539
1540 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001541 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1542 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001543 was_active = true;
1544 }
1545
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001546 return was_active;
1547}
1548
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001549/*
1550 * Handle SAM-esque emulation for generic transport request failures.
1551 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001552void transport_generic_request_failure(struct se_cmd *cmd,
1553 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001554{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001555 int ret = 0;
1556
Andy Grover6708bb22011-06-08 10:36:43 -07001557 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001558 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001559 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001560 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001561 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001562 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001563 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001564 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1565 (cmd->transport_state & CMD_T_STOP) != 0,
1566 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001567
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001568 /*
1569 * For SAM Task Attribute emulation for failed struct se_cmd
1570 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001571 transport_complete_task_attr(cmd);
Nicholas Bellingercf6d1f02013-08-21 19:34:43 -07001572 /*
1573 * Handle special case for COMPARE_AND_WRITE failure, where the
1574 * callback is expected to drop the per device ->caw_mutex.
1575 */
1576 if ((cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) &&
1577 cmd->transport_complete_callback)
1578 cmd->transport_complete_callback(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001579
Christoph Hellwigde103c92012-11-06 12:24:09 -08001580 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001581 case TCM_NON_EXISTENT_LUN:
1582 case TCM_UNSUPPORTED_SCSI_OPCODE:
1583 case TCM_INVALID_CDB_FIELD:
1584 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001585 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001586 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1587 case TCM_UNKNOWN_MODE_PAGE:
1588 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001589 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001590 case TCM_CHECK_CONDITION_ABORT_CMD:
1591 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1592 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001593 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001594 case TCM_OUT_OF_RESOURCES:
1595 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1596 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001597 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001598 /*
1599 * No SENSE Data payload for this case, set SCSI Status
1600 * and queue the response to $FABRIC_MOD.
1601 *
1602 * Uses linux/include/scsi/scsi.h SAM status codes defs
1603 */
1604 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1605 /*
1606 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1607 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1608 * CONFLICT STATUS.
1609 *
1610 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1611 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001612 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001613 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001614 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001615 cmd->orig_fe_lun, 0x2C,
1616 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1617
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001618 trace_target_cmd_complete(cmd);
1619 ret = cmd->se_tfo-> queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001620 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001621 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001622 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001623 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001624 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001625 cmd->t_task_cdb[0], sense_reason);
1626 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001627 break;
1628 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001629
Christoph Hellwigde103c92012-11-06 12:24:09 -08001630 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001631 if (ret == -EAGAIN || ret == -ENOMEM)
1632 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001633
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001634check_stop:
1635 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001636 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001637 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001638 return;
1639
1640queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001641 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1642 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001643}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001644EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001645
Nicholas Bellinger76dde502013-08-21 16:04:10 -07001646void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001647{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001648 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001649
Christoph Hellwigde103c92012-11-06 12:24:09 -08001650 if (cmd->execute_cmd) {
1651 ret = cmd->execute_cmd(cmd);
1652 if (ret) {
1653 spin_lock_irq(&cmd->t_state_lock);
1654 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1655 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001656
Christoph Hellwigde103c92012-11-06 12:24:09 -08001657 transport_generic_request_failure(cmd, ret);
1658 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001659 }
1660}
1661
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001662static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001663{
1664 struct se_device *dev = cmd->se_dev;
1665
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001666 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1667 return false;
1668
1669 /*
1670 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1671 * to allow the passed struct se_cmd list of tasks to the front of the list.
1672 */
1673 switch (cmd->sam_task_attr) {
1674 case MSG_HEAD_TAG:
1675 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1676 "se_ordered_id: %u\n",
1677 cmd->t_task_cdb[0], cmd->se_ordered_id);
1678 return false;
1679 case MSG_ORDERED_TAG:
1680 atomic_inc(&dev->dev_ordered_sync);
1681 smp_mb__after_atomic_inc();
1682
1683 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1684 " se_ordered_id: %u\n",
1685 cmd->t_task_cdb[0], cmd->se_ordered_id);
1686
1687 /*
1688 * Execute an ORDERED command if no other older commands
1689 * exist that need to be completed first.
1690 */
1691 if (!atomic_read(&dev->simple_cmds))
1692 return false;
1693 break;
1694 default:
1695 /*
1696 * For SIMPLE and UNTAGGED Task Attribute commands
1697 */
1698 atomic_inc(&dev->simple_cmds);
1699 smp_mb__after_atomic_inc();
1700 break;
1701 }
1702
1703 if (atomic_read(&dev->dev_ordered_sync) == 0)
1704 return false;
1705
1706 spin_lock(&dev->delayed_cmd_lock);
1707 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1708 spin_unlock(&dev->delayed_cmd_lock);
1709
1710 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1711 " delayed CMD list, se_ordered_id: %u\n",
1712 cmd->t_task_cdb[0], cmd->sam_task_attr,
1713 cmd->se_ordered_id);
1714 return true;
1715}
1716
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001717void target_execute_cmd(struct se_cmd *cmd)
1718{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001719 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001720 * If the received CDB has aleady been aborted stop processing it here.
1721 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001722 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001723 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001724 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001725 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001726
1727 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001728 * Determine if IOCTL context caller in requesting the stopping of this
1729 * command for LUN shutdown purposes.
1730 */
1731 spin_lock_irq(&cmd->t_state_lock);
1732 if (cmd->transport_state & CMD_T_LUN_STOP) {
1733 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1734 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1735
1736 cmd->transport_state &= ~CMD_T_ACTIVE;
1737 spin_unlock_irq(&cmd->t_state_lock);
1738 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001739 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001740 }
1741 /*
1742 * Determine if frontend context caller is requesting the stopping of
1743 * this command for frontend exceptions.
1744 */
1745 if (cmd->transport_state & CMD_T_STOP) {
1746 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1747 __func__, __LINE__,
1748 cmd->se_tfo->get_task_tag(cmd));
1749
1750 spin_unlock_irq(&cmd->t_state_lock);
1751 complete(&cmd->t_transport_stop_comp);
1752 return;
1753 }
1754
1755 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001756 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001757 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001758
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001759 if (target_handle_task_attr(cmd)) {
1760 spin_lock_irq(&cmd->t_state_lock);
1761 cmd->transport_state &= ~CMD_T_BUSY|CMD_T_SENT;
1762 spin_unlock_irq(&cmd->t_state_lock);
1763 return;
1764 }
1765
1766 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001767}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001768EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001769
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001770/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001771 * Process all commands up to the last received ORDERED task attribute which
1772 * requires another blocking boundary
1773 */
1774static void target_restart_delayed_cmds(struct se_device *dev)
1775{
1776 for (;;) {
1777 struct se_cmd *cmd;
1778
1779 spin_lock(&dev->delayed_cmd_lock);
1780 if (list_empty(&dev->delayed_cmd_list)) {
1781 spin_unlock(&dev->delayed_cmd_lock);
1782 break;
1783 }
1784
1785 cmd = list_entry(dev->delayed_cmd_list.next,
1786 struct se_cmd, se_delayed_node);
1787 list_del(&cmd->se_delayed_node);
1788 spin_unlock(&dev->delayed_cmd_lock);
1789
1790 __target_execute_cmd(cmd);
1791
1792 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1793 break;
1794 }
1795}
1796
1797/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001798 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001799 * and ordered cmds need to have their tasks added to the execution queue.
1800 */
1801static void transport_complete_task_attr(struct se_cmd *cmd)
1802{
Andy Grover5951146d2011-07-19 10:26:37 +00001803 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001804
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001805 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1806 return;
1807
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001808 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001809 atomic_dec(&dev->simple_cmds);
1810 smp_mb__after_atomic_dec();
1811 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001812 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001813 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1814 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001815 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001816 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001817 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001818 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1819 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001820 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001821 atomic_dec(&dev->dev_ordered_sync);
1822 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001823
1824 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001825 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001826 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1827 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001828
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001829 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001830}
1831
Christoph Hellwige057f532011-10-17 13:56:41 -04001832static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001833{
1834 int ret = 0;
1835
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001836 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001837
1838 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001839 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001840 ret = cmd->se_tfo->queue_status(cmd);
1841 if (ret)
1842 goto out;
1843 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001844
1845 switch (cmd->data_direction) {
1846 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001847 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001848 ret = cmd->se_tfo->queue_data_in(cmd);
1849 break;
1850 case DMA_TO_DEVICE:
Nicholas Bellinger64577402013-08-21 14:39:19 -07001851 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001852 ret = cmd->se_tfo->queue_data_in(cmd);
1853 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001854 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001855 }
1856 /* Fall through for DMA_TO_DEVICE */
1857 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001858 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001859 ret = cmd->se_tfo->queue_status(cmd);
1860 break;
1861 default:
1862 break;
1863 }
1864
Christoph Hellwige057f532011-10-17 13:56:41 -04001865out:
1866 if (ret < 0) {
1867 transport_handle_queue_full(cmd, cmd->se_dev);
1868 return;
1869 }
1870 transport_lun_remove_cmd(cmd);
1871 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001872}
1873
1874static void transport_handle_queue_full(
1875 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001876 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001877{
1878 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001879 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1880 atomic_inc(&dev->dev_qf_count);
1881 smp_mb__after_atomic_inc();
1882 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1883
1884 schedule_work(&cmd->se_dev->qf_work_queue);
1885}
1886
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001887static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001888{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001889 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001890 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001891
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001892 /*
1893 * Check if we need to move delayed/dormant tasks from cmds on the
1894 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1895 * Attribute.
1896 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001897 transport_complete_task_attr(cmd);
1898
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001899 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001900 * Check to schedule QUEUE_FULL work, or execute an existing
1901 * cmd->transport_qf_callback()
1902 */
1903 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1904 schedule_work(&cmd->se_dev->qf_work_queue);
1905
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001906 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001907 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908 * the struct se_cmd in question.
1909 */
1910 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001911 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001912 ret = transport_send_check_condition_and_sense(
1913 cmd, 0, 1);
1914 if (ret == -EAGAIN || ret == -ENOMEM)
1915 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001916
Paolo Bonzini27a27092012-09-05 17:09:14 +02001917 transport_lun_remove_cmd(cmd);
1918 transport_cmd_check_stop_to_fabric(cmd);
1919 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001920 }
1921 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001922 * Check for a callback, used by amongst other things
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001923 * XDWRITE_READ_10 and COMPARE_AND_WRITE emulation.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001924 */
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001925 if (cmd->transport_complete_callback) {
1926 sense_reason_t rc;
1927
1928 rc = cmd->transport_complete_callback(cmd);
Nicholas Bellingera2890082013-08-21 18:10:04 -07001929 if (!rc && !(cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE_POST)) {
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001930 return;
Nicholas Bellingera2890082013-08-21 18:10:04 -07001931 } else if (rc) {
1932 ret = transport_send_check_condition_and_sense(cmd,
1933 rc, 0);
1934 if (ret == -EAGAIN || ret == -ENOMEM)
1935 goto queue_full;
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001936
Nicholas Bellingera2890082013-08-21 18:10:04 -07001937 transport_lun_remove_cmd(cmd);
1938 transport_cmd_check_stop_to_fabric(cmd);
1939 return;
1940 }
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001941 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001942
1943 switch (cmd->data_direction) {
1944 case DMA_FROM_DEVICE:
1945 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001946 if (cmd->se_lun->lun_sep) {
1947 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001948 cmd->data_length;
1949 }
1950 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001951
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001952 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001953 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001954 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001955 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001956 break;
1957 case DMA_TO_DEVICE:
1958 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001959 if (cmd->se_lun->lun_sep) {
1960 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001961 cmd->data_length;
1962 }
1963 spin_unlock(&cmd->se_lun->lun_sep_lock);
1964 /*
1965 * Check if we need to send READ payload for BIDI-COMMAND
1966 */
Nicholas Bellinger64577402013-08-21 14:39:19 -07001967 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001968 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001969 if (cmd->se_lun->lun_sep) {
1970 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001971 cmd->data_length;
1972 }
1973 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001974 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001975 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001976 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001977 break;
1978 }
1979 /* Fall through for DMA_TO_DEVICE */
1980 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001981 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001982 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001983 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001984 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985 break;
1986 default:
1987 break;
1988 }
1989
1990 transport_lun_remove_cmd(cmd);
1991 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001992 return;
1993
1994queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001995 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001996 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001997 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1998 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001999}
2000
Andy Grover6708bb22011-06-08 10:36:43 -07002001static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002002{
Andy Groverec98f782011-07-20 19:28:46 +00002003 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002004 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002005
Andy Grover6708bb22011-06-08 10:36:43 -07002006 for_each_sg(sgl, sg, nents, count)
2007 __free_page(sg_page(sg));
2008
2009 kfree(sgl);
2010}
2011
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002012static inline void transport_reset_sgl_orig(struct se_cmd *cmd)
2013{
2014 /*
2015 * Check for saved t_data_sg that may be used for COMPARE_AND_WRITE
2016 * emulation, and free + reset pointers if necessary..
2017 */
2018 if (!cmd->t_data_sg_orig)
2019 return;
2020
2021 kfree(cmd->t_data_sg);
2022 cmd->t_data_sg = cmd->t_data_sg_orig;
2023 cmd->t_data_sg_orig = NULL;
2024 cmd->t_data_nents = cmd->t_data_nents_orig;
2025 cmd->t_data_nents_orig = 0;
2026}
2027
Andy Grover6708bb22011-06-08 10:36:43 -07002028static inline void transport_free_pages(struct se_cmd *cmd)
2029{
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002030 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) {
2031 transport_reset_sgl_orig(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002032 return;
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002033 }
2034 transport_reset_sgl_orig(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002035
Andy Grover6708bb22011-06-08 10:36:43 -07002036 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002037 cmd->t_data_sg = NULL;
2038 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002039
Andy Grover6708bb22011-06-08 10:36:43 -07002040 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002041 cmd->t_bidi_data_sg = NULL;
2042 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002043}
2044
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002045/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002046 * transport_release_cmd - free a command
2047 * @cmd: command to free
2048 *
2049 * This routine unconditionally frees a command, and reference counting
2050 * or list removal must be done in the caller.
2051 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002052static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002053{
2054 BUG_ON(!cmd->se_tfo);
2055
Andy Groverc8e31f22012-01-19 13:39:17 -08002056 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002057 core_tmr_release_req(cmd->se_tmr_req);
2058 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2059 kfree(cmd->t_task_cdb);
2060 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002061 * If this cmd has been setup with target_get_sess_cmd(), drop
2062 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002063 */
Nicholas Bellingerca249762013-06-06 02:06:14 -07002064 return target_put_sess_cmd(cmd->se_sess, cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002065}
2066
2067/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002068 * transport_put_cmd - release a reference to a command
2069 * @cmd: command to release
2070 *
2071 * This routine releases our reference to the command and frees it if possible.
2072 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002073static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002074{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002075 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002076 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002077}
2078
Andy Grover49493142012-01-16 16:57:08 -08002079void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002080{
Andy Groverec98f782011-07-20 19:28:46 +00002081 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002082 struct page **pages;
2083 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002084
Andy Grover05d1c7c2011-07-20 19:13:28 +00002085 /*
Andy Groverec98f782011-07-20 19:28:46 +00002086 * We need to take into account a possible offset here for fabrics like
2087 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2088 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002089 */
Andy Grover49493142012-01-16 16:57:08 -08002090 if (!cmd->t_data_nents)
2091 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002092
2093 BUG_ON(!sg);
2094 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002095 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002096
Andy Grover49493142012-01-16 16:57:08 -08002097 /* >1 page. use vmap */
2098 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002099 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002100 return NULL;
2101
2102 /* convert sg[] to pages[] */
2103 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2104 pages[i] = sg_page(sg);
2105 }
2106
2107 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2108 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002109 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002110 return NULL;
2111
2112 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002113}
Andy Grover49493142012-01-16 16:57:08 -08002114EXPORT_SYMBOL(transport_kmap_data_sg);
2115
2116void transport_kunmap_data_sg(struct se_cmd *cmd)
2117{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002118 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002119 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002120 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002121 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002122 return;
2123 }
Andy Grover49493142012-01-16 16:57:08 -08002124
2125 vunmap(cmd->t_data_vmap);
2126 cmd->t_data_vmap = NULL;
2127}
2128EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002129
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07002130int
Nicholas Bellinger20093992013-08-25 15:44:03 -07002131target_alloc_sgl(struct scatterlist **sgl, unsigned int *nents, u32 length,
2132 bool zero_page)
Andy Grover05d1c7c2011-07-20 19:13:28 +00002133{
Nicholas Bellinger20093992013-08-25 15:44:03 -07002134 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002135 struct page *page;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002136 gfp_t zero_flag = (zero_page) ? __GFP_ZERO : 0;
2137 unsigned int nent;
Andy Groverec98f782011-07-20 19:28:46 +00002138 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002139
Nicholas Bellinger20093992013-08-25 15:44:03 -07002140 nent = DIV_ROUND_UP(length, PAGE_SIZE);
2141 sg = kmalloc(sizeof(struct scatterlist) * nent, GFP_KERNEL);
2142 if (!sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002143 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002144
Nicholas Bellinger20093992013-08-25 15:44:03 -07002145 sg_init_table(sg, nent);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002146
Andy Groverec98f782011-07-20 19:28:46 +00002147 while (length) {
2148 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002149 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002150 if (!page)
2151 goto out;
2152
Nicholas Bellinger20093992013-08-25 15:44:03 -07002153 sg_set_page(&sg[i], page, page_len, 0);
Andy Groverec98f782011-07-20 19:28:46 +00002154 length -= page_len;
2155 i++;
2156 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002157 *sgl = sg;
2158 *nents = nent;
Andy Groverec98f782011-07-20 19:28:46 +00002159 return 0;
2160
2161out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002162 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002163 i--;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002164 __free_page(sg_page(&sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002165 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002166 kfree(sg);
Andy Groverec98f782011-07-20 19:28:46 +00002167 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002168}
2169
Andy Grovera1d8b492011-05-02 17:12:10 -07002170/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002171 * Allocate any required resources to execute the command. For writes we
2172 * might not have the payload yet, so notify the fabric via a call to
2173 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002174 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002175sense_reason_t
2176transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002177{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002178 int ret = 0;
2179
2180 /*
2181 * Determine is the TCM fabric module has already allocated physical
2182 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002183 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002184 */
Andy Groverec98f782011-07-20 19:28:46 +00002185 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2186 cmd->data_length) {
Nicholas Bellinger20093992013-08-25 15:44:03 -07002187 bool zero_flag = !(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB);
2188
Nicholas Bellinger8cefe072013-08-25 16:10:57 -07002189 if ((cmd->se_cmd_flags & SCF_BIDI) ||
2190 (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)) {
2191 u32 bidi_length;
2192
2193 if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)
2194 bidi_length = cmd->t_task_nolb *
2195 cmd->se_dev->dev_attrib.block_size;
2196 else
2197 bidi_length = cmd->data_length;
2198
2199 ret = target_alloc_sgl(&cmd->t_bidi_data_sg,
2200 &cmd->t_bidi_data_nents,
2201 bidi_length, zero_flag);
2202 if (ret < 0)
2203 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2204 }
2205
Nicholas Bellinger20093992013-08-25 15:44:03 -07002206 ret = target_alloc_sgl(&cmd->t_data_sg, &cmd->t_data_nents,
2207 cmd->data_length, zero_flag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002208 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002209 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002210 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002211 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002212 * If this command is not a write we can execute it right here,
2213 * for write buffers we need to notify the fabric driver first
2214 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002215 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002216 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002217 if (cmd->data_direction != DMA_TO_DEVICE) {
2218 target_execute_cmd(cmd);
2219 return 0;
2220 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002221 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002222
2223 ret = cmd->se_tfo->write_pending(cmd);
2224 if (ret == -EAGAIN || ret == -ENOMEM)
2225 goto queue_full;
2226
Christoph Hellwigde103c92012-11-06 12:24:09 -08002227 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2228 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002229
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002230 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002231
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002232queue_full:
2233 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2234 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2235 transport_handle_queue_full(cmd, cmd->se_dev);
2236 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002237}
Andy Grovera1d8b492011-05-02 17:12:10 -07002238EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002239
Christoph Hellwige057f532011-10-17 13:56:41 -04002240static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002241{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002242 int ret;
2243
2244 ret = cmd->se_tfo->write_pending(cmd);
2245 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002246 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2247 cmd);
2248 transport_handle_queue_full(cmd, cmd->se_dev);
2249 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002250}
2251
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002252int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002253{
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002254 unsigned long flags;
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002255 int ret = 0;
2256
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002257 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002258 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002259 transport_wait_for_tasks(cmd);
2260
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002261 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002262 } else {
2263 if (wait_for_tasks)
2264 transport_wait_for_tasks(cmd);
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002265 /*
2266 * Handle WRITE failure case where transport_generic_new_cmd()
2267 * has already added se_cmd to state_list, but fabric has
2268 * failed command before I/O submission.
2269 */
2270 if (cmd->state_active) {
2271 spin_lock_irqsave(&cmd->t_state_lock, flags);
2272 target_remove_from_state_list(cmd);
2273 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2274 }
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002275
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002276 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002277 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002278
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002279 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002280 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002281 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002282}
2283EXPORT_SYMBOL(transport_generic_free_cmd);
2284
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002285/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2286 * @se_sess: session to reference
2287 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002288 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002289 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002290int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002291 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002292{
2293 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002294 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002295
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002296 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002297 /*
2298 * Add a second kref if the fabric caller is expecting to handle
2299 * fabric acknowledgement that requires two target_put_sess_cmd()
2300 * invocations before se_cmd descriptor release.
2301 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002302 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002303 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002304 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2305 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002306
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002307 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002308 if (se_sess->sess_tearing_down) {
2309 ret = -ESHUTDOWN;
2310 goto out;
2311 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002312 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002313out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002314 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002315 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002316}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002317EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002318
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002319static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002320{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002321 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2322 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002323
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002324 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002325 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002326 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002327 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002328 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002329 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002330 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002331 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002332 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002333 }
2334 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002335 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002336
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002337 se_cmd->se_tfo->release_cmd(se_cmd);
2338}
2339
2340/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2341 * @se_sess: session to reference
2342 * @se_cmd: command descriptor to drop
2343 */
2344int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2345{
Joern Engelccf5ae82013-05-13 16:30:06 -04002346 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2347 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002348}
2349EXPORT_SYMBOL(target_put_sess_cmd);
2350
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002351/* target_sess_cmd_list_set_waiting - Flag all commands in
2352 * sess_cmd_list to complete cmd_wait_comp. Set
2353 * sess_tearing_down so no more commands are queued.
2354 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002355 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002356void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002357{
2358 struct se_cmd *se_cmd;
2359 unsigned long flags;
2360
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002361 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002362 if (se_sess->sess_tearing_down) {
2363 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2364 return;
2365 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002366 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002367 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002368
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002369 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002370 se_cmd->cmd_wait_set = 1;
2371
2372 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2373}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002374EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002375
2376/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2377 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002378 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002379void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002380{
2381 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002382 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002383
2384 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002385 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002386 list_del(&se_cmd->se_cmd_list);
2387
2388 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2389 " %d\n", se_cmd, se_cmd->t_state,
2390 se_cmd->se_tfo->get_cmd_state(se_cmd));
2391
Joern Engelbe646c2d2013-05-15 00:44:07 -07002392 wait_for_completion(&se_cmd->cmd_wait_comp);
2393 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2394 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2395 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002396
2397 se_cmd->se_tfo->release_cmd(se_cmd);
2398 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002399
2400 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2401 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2402 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2403
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002404}
2405EXPORT_SYMBOL(target_wait_for_sess_cmds);
2406
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002407/* transport_lun_wait_for_tasks():
2408 *
2409 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2410 * an struct se_lun to be successfully shutdown.
2411 */
2412static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2413{
2414 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002415 int ret = 0;
2416
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002417 /*
2418 * If the frontend has already requested this struct se_cmd to
2419 * be stopped, we can safely ignore this struct se_cmd.
2420 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002421 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002422 if (cmd->transport_state & CMD_T_STOP) {
2423 cmd->transport_state &= ~CMD_T_LUN_STOP;
2424
2425 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2426 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002427 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002428 transport_cmd_check_stop(cmd, false, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002429 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002431 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002432 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002434 // XXX: audit task_flags checks.
2435 spin_lock_irqsave(&cmd->t_state_lock, flags);
2436 if ((cmd->transport_state & CMD_T_BUSY) &&
2437 (cmd->transport_state & CMD_T_SENT)) {
2438 if (!target_stop_cmd(cmd, &flags))
2439 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002440 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002441 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002442
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002443 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2444 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002445 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002446 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002447 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002448 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002449 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002450 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002451 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002452
2453 return 0;
2454}
2455
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002456static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2457{
2458 struct se_cmd *cmd = NULL;
2459 unsigned long lun_flags, cmd_flags;
2460 /*
2461 * Do exception processing and return CHECK_CONDITION status to the
2462 * Initiator Port.
2463 */
2464 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002465 while (!list_empty(&lun->lun_cmd_list)) {
2466 cmd = list_first_entry(&lun->lun_cmd_list,
2467 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002468 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002469
Andy Grovera1d8b492011-05-02 17:12:10 -07002470 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002471 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002472 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002473 cmd->se_lun->unpacked_lun,
2474 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002475 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002476 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002477
2478 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2479
Andy Grover6708bb22011-06-08 10:36:43 -07002480 if (!cmd->se_lun) {
2481 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002482 cmd->se_tfo->get_task_tag(cmd),
2483 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002484 BUG();
2485 }
2486 /*
2487 * If the Storage engine still owns the iscsi_cmd_t, determine
2488 * and/or stop its context.
2489 */
Andy Grover6708bb22011-06-08 10:36:43 -07002490 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002491 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2492 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002493
Andy Grovere3d6f902011-07-19 08:55:10 +00002494 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002495 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2496 continue;
2497 }
2498
Andy Grover6708bb22011-06-08 10:36:43 -07002499 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002500 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002501 cmd->se_lun->unpacked_lun,
2502 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002503
Andy Grovera1d8b492011-05-02 17:12:10 -07002504 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002505 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002506 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002507 goto check_cond;
2508 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002509 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002510 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002511 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002512
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002513 /*
2514 * The Storage engine stopped this struct se_cmd before it was
2515 * send to the fabric frontend for delivery back to the
2516 * Initiator Node. Return this SCSI CDB back with an
2517 * CHECK_CONDITION status.
2518 */
2519check_cond:
2520 transport_send_check_condition_and_sense(cmd,
2521 TCM_NON_EXISTENT_LUN, 0);
2522 /*
2523 * If the fabric frontend is waiting for this iscsi_cmd_t to
2524 * be released, notify the waiting thread now that LU has
2525 * finished accessing it.
2526 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002527 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002528 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002529 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530 " struct se_cmd: %p ITT: 0x%08x\n",
2531 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002532 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002533
Andy Grovera1d8b492011-05-02 17:12:10 -07002534 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535 cmd_flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002536 transport_cmd_check_stop(cmd, false, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002537 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002538 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2539 continue;
2540 }
Andy Grover6708bb22011-06-08 10:36:43 -07002541 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002542 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002543
Andy Grovera1d8b492011-05-02 17:12:10 -07002544 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002545 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2546 }
2547 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2548}
2549
2550static int transport_clear_lun_thread(void *p)
2551{
Jörn Engel8359cf42011-11-24 02:05:51 +01002552 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553
2554 __transport_clear_lun_from_sessions(lun);
2555 complete(&lun->lun_shutdown_comp);
2556
2557 return 0;
2558}
2559
2560int transport_clear_lun_from_sessions(struct se_lun *lun)
2561{
2562 struct task_struct *kt;
2563
Andy Grover5951146d2011-07-19 10:26:37 +00002564 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002565 "tcm_cl_%u", lun->unpacked_lun);
2566 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002567 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002568 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002569 }
2570 wait_for_completion(&lun->lun_shutdown_comp);
2571
2572 return 0;
2573}
2574
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002575/**
2576 * transport_wait_for_tasks - wait for completion to occur
2577 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002578 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002579 * Called from frontend fabric context to wait for storage engine
2580 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002581 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002582bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002583{
2584 unsigned long flags;
2585
Andy Grovera1d8b492011-05-02 17:12:10 -07002586 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002587 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2588 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002589 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002590 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002591 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002592
Andy Groverc8e31f22012-01-19 13:39:17 -08002593 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2594 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002595 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002596 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002597 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002598 /*
2599 * If we are already stopped due to an external event (ie: LUN shutdown)
2600 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002601 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002602 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2603 * has completed its operation on the struct se_cmd.
2604 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002605 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002606 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002607 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002609 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002610 /*
2611 * There is a special case for WRITES where a FE exception +
2612 * LUN shutdown means ConfigFS context is still sleeping on
2613 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2614 * We go ahead and up transport_lun_stop_comp just to be sure
2615 * here.
2616 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002617 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2618 complete(&cmd->transport_lun_stop_comp);
2619 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2620 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002621
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002622 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002623 /*
2624 * At this point, the frontend who was the originator of this
2625 * struct se_cmd, now owns the structure and can be released through
2626 * normal means below.
2627 */
Andy Grover6708bb22011-06-08 10:36:43 -07002628 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002629 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002630 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002631 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002633 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002634 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002635
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002636 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002637 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002638 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002639 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002641 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002642
Andy Grover6708bb22011-06-08 10:36:43 -07002643 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002644 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002645 cmd, cmd->se_tfo->get_task_tag(cmd),
2646 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002647
Andy Grovera1d8b492011-05-02 17:12:10 -07002648 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002649
Andy Grovera1d8b492011-05-02 17:12:10 -07002650 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651
Andy Grovera1d8b492011-05-02 17:12:10 -07002652 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002653 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002654
Masanari Iida35d1efe2012-08-16 22:43:13 +09002655 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002656 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002657 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002658
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002659 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002660
2661 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002662}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002663EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002664
2665static int transport_get_sense_codes(
2666 struct se_cmd *cmd,
2667 u8 *asc,
2668 u8 *ascq)
2669{
2670 *asc = cmd->scsi_asc;
2671 *ascq = cmd->scsi_ascq;
2672
2673 return 0;
2674}
2675
Christoph Hellwigde103c92012-11-06 12:24:09 -08002676int
2677transport_send_check_condition_and_sense(struct se_cmd *cmd,
2678 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679{
2680 unsigned char *buffer = cmd->sense_buffer;
2681 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 u8 asc = 0, ascq = 0;
2683
Andy Grovera1d8b492011-05-02 17:12:10 -07002684 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002685 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002686 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002687 return 0;
2688 }
2689 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002690 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691
2692 if (!reason && from_transport)
2693 goto after_reason;
2694
2695 if (!from_transport)
2696 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002697
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002698 /*
2699 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2700 * SENSE KEY values from include/scsi/scsi.h
2701 */
2702 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002703 case TCM_NO_SENSE:
2704 /* CURRENT ERROR */
2705 buffer[0] = 0x70;
2706 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2707 /* Not Ready */
2708 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2709 /* NO ADDITIONAL SENSE INFORMATION */
2710 buffer[SPC_ASC_KEY_OFFSET] = 0;
2711 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2712 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002714 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002715 buffer[0] = 0x70;
2716 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002717 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002718 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002719 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002720 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002721 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002722 case TCM_UNSUPPORTED_SCSI_OPCODE:
2723 case TCM_SECTOR_COUNT_TOO_MANY:
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 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002728 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002729 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002730 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 break;
2732 case TCM_UNKNOWN_MODE_PAGE:
2733 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002734 buffer[0] = 0x70;
2735 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002736 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002737 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002738 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002739 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 break;
2741 case TCM_CHECK_CONDITION_ABORT_CMD:
2742 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[0] = 0x70;
2744 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002745 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002746 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002747 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002748 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2749 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002750 break;
2751 case TCM_INCORRECT_AMOUNT_OF_DATA:
2752 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002753 buffer[0] = 0x70;
2754 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002755 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002756 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002757 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002758 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002760 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002761 break;
2762 case TCM_INVALID_CDB_FIELD:
2763 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002764 buffer[0] = 0x70;
2765 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002766 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002767 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002768 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002769 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002770 break;
2771 case TCM_INVALID_PARAMETER_LIST:
2772 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002773 buffer[0] = 0x70;
2774 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002775 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002776 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002777 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002778 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002779 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002780 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2781 /* CURRENT ERROR */
2782 buffer[0] = 0x70;
2783 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2784 /* ILLEGAL REQUEST */
2785 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2786 /* PARAMETER LIST LENGTH ERROR */
2787 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2788 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002789 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2790 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002791 buffer[0] = 0x70;
2792 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002793 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002794 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002795 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002796 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002797 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002798 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002799 break;
2800 case TCM_SERVICE_CRC_ERROR:
2801 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002802 buffer[0] = 0x70;
2803 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002804 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002805 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002807 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002809 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002810 break;
2811 case TCM_SNACK_REJECTED:
2812 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002813 buffer[0] = 0x70;
2814 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002815 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002816 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002817 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002818 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002819 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002820 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002821 break;
2822 case TCM_WRITE_PROTECTED:
2823 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002824 buffer[0] = 0x70;
2825 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002826 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002827 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002828 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002829 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002830 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002831 case TCM_ADDRESS_OUT_OF_RANGE:
2832 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002833 buffer[0] = 0x70;
2834 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002835 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002836 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002837 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002838 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002839 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002840 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2841 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002842 buffer[0] = 0x70;
2843 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002844 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002845 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002846 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002847 buffer[SPC_ASC_KEY_OFFSET] = asc;
2848 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002849 break;
2850 case TCM_CHECK_CONDITION_NOT_READY:
2851 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002852 buffer[0] = 0x70;
2853 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002854 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002855 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002857 buffer[SPC_ASC_KEY_OFFSET] = asc;
2858 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002859 break;
Nicholas Bellinger818b5712013-08-19 15:10:38 -07002860 case TCM_MISCOMPARE_VERIFY:
2861 /* CURRENT ERROR */
2862 buffer[0] = 0x70;
2863 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2864 buffer[SPC_SENSE_KEY_OFFSET] = MISCOMPARE;
2865 /* MISCOMPARE DURING VERIFY OPERATION */
2866 buffer[SPC_ASC_KEY_OFFSET] = 0x1d;
2867 buffer[SPC_ASCQ_KEY_OFFSET] = 0x00;
2868 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002869 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2870 default:
2871 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002872 buffer[0] = 0x70;
2873 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002874 /*
2875 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2876 * Solaris initiators. Returning NOT READY instead means the
2877 * operations will be retried a finite number of times and we
2878 * can survive intermittent errors.
2879 */
2880 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002881 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002882 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002883 break;
2884 }
2885 /*
2886 * This code uses linux/include/scsi/scsi.h SAM status codes!
2887 */
2888 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2889 /*
2890 * Automatically padded, this value is encoded in the fabric's
2891 * data_length response PDU containing the SCSI defined sense data.
2892 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002893 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002894
2895after_reason:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002896 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002897 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002898}
2899EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2900
2901int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2902{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002903 if (!(cmd->transport_state & CMD_T_ABORTED))
2904 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002905
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002906 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2907 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002908
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002909 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2910 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002911
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002912 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002913 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002914 cmd->se_tfo->queue_status(cmd);
2915
2916 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002917}
2918EXPORT_SYMBOL(transport_check_aborted_status);
2919
2920void transport_send_task_abort(struct se_cmd *cmd)
2921{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002922 unsigned long flags;
2923
2924 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002925 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002926 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2927 return;
2928 }
2929 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2930
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002931 /*
2932 * If there are still expected incoming fabric WRITEs, we wait
2933 * until until they have completed before sending a TASK_ABORTED
2934 * response. This response with TASK_ABORTED status will be
2935 * queued back to fabric module by transport_check_aborted_status().
2936 */
2937 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002938 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002939 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002940 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002941 }
2942 }
2943 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002944
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002945 transport_lun_remove_cmd(cmd);
2946
Andy Grover6708bb22011-06-08 10:36:43 -07002947 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002948 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002949 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002950
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002951 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002952 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002953}
2954
Christoph Hellwigaf877292012-07-08 15:58:49 -04002955static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002956{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002957 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002958 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002959 struct se_tmr_req *tmr = cmd->se_tmr_req;
2960 int ret;
2961
2962 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002963 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002964 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002965 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002966 case TMR_ABORT_TASK_SET:
2967 case TMR_CLEAR_ACA:
2968 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002969 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2970 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002971 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002972 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2973 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2974 TMR_FUNCTION_REJECTED;
2975 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002976 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002977 tmr->response = TMR_FUNCTION_REJECTED;
2978 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002979 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002980 tmr->response = TMR_FUNCTION_REJECTED;
2981 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002982 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002983 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002984 tmr->function);
2985 tmr->response = TMR_FUNCTION_REJECTED;
2986 break;
2987 }
2988
2989 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002990 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002991
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002992 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002993}
2994
Christoph Hellwigaf877292012-07-08 15:58:49 -04002995int transport_generic_handle_tmr(
2996 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002997{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002998 INIT_WORK(&cmd->work, target_tmr_work);
2999 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003000 return 0;
3001}
Christoph Hellwigaf877292012-07-08 15:58:49 -04003002EXPORT_SYMBOL(transport_generic_handle_tmr);