blob: c974e1373c77275ac34b42289f30a7a9a869a145 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_transport.c
3 *
4 * This file contains the Generic Target Engine Core.
5 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08006 * (c) Copyright 2002-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/net.h>
27#include <linux/delay.h>
28#include <linux/string.h>
29#include <linux/timer.h>
30#include <linux/slab.h>
31#include <linux/blkdev.h>
32#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <linux/kthread.h>
34#include <linux/in.h>
35#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040036#include <linux/module.h>
Roland Dreier015487b2012-02-13 16:18:17 -080037#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <asm/unaligned.h>
39#include <net/sock.h>
40#include <net/tcp.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070043#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044
45#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050046#include <target/target_core_backend.h>
47#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include <target/target_core_configfs.h>
49
Christoph Hellwige26d99a2011-11-14 12:30:30 -050050#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080053#include "target_core_ua.h"
54
Roland Dreiere5c0d6a2013-06-26 17:36:17 -070055#define CREATE_TRACE_POINTS
56#include <trace/events/target.h>
57
Christoph Hellwig35e0e752011-10-17 13:56:53 -040058static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061struct kmem_cache *t10_pr_reg_cache;
62struct kmem_cache *t10_alua_lu_gp_cache;
63struct kmem_cache *t10_alua_lu_gp_mem_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_cache;
65struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
66
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070068static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040069 struct se_device *dev);
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
239 se_sess->sess_cmd_map = kzalloc(tag_num * tag_size, GFP_KERNEL);
240 if (!se_sess->sess_cmd_map) {
241 pr_err("Unable to allocate se_sess->sess_cmd_map\n");
242 return -ENOMEM;
243 }
244
245 rc = percpu_ida_init(&se_sess->sess_tag_pool, tag_num);
246 if (rc < 0) {
247 pr_err("Unable to init se_sess->sess_tag_pool,"
248 " tag_num: %u\n", tag_num);
249 kfree(se_sess->sess_cmd_map);
250 se_sess->sess_cmd_map = NULL;
251 return -ENOMEM;
252 }
253
254 return 0;
255}
256EXPORT_SYMBOL(transport_alloc_session_tags);
257
258struct se_session *transport_init_session_tags(unsigned int tag_num,
259 unsigned int tag_size)
260{
261 struct se_session *se_sess;
262 int rc;
263
264 se_sess = transport_init_session();
265 if (IS_ERR(se_sess))
266 return se_sess;
267
268 rc = transport_alloc_session_tags(se_sess, tag_num, tag_size);
269 if (rc < 0) {
270 transport_free_session(se_sess);
271 return ERR_PTR(-ENOMEM);
272 }
273
274 return se_sess;
275}
276EXPORT_SYMBOL(transport_init_session_tags);
277
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800278/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700279 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800280 */
281void __transport_register_session(
282 struct se_portal_group *se_tpg,
283 struct se_node_acl *se_nacl,
284 struct se_session *se_sess,
285 void *fabric_sess_ptr)
286{
287 unsigned char buf[PR_REG_ISID_LEN];
288
289 se_sess->se_tpg = se_tpg;
290 se_sess->fabric_sess_ptr = fabric_sess_ptr;
291 /*
292 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
293 *
294 * Only set for struct se_session's that will actually be moving I/O.
295 * eg: *NOT* discovery sessions.
296 */
297 if (se_nacl) {
298 /*
299 * If the fabric module supports an ISID based TransportID,
300 * save this value in binary from the fabric I_T Nexus now.
301 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000302 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800303 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000304 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800305 &buf[0], PR_REG_ISID_LEN);
306 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
307 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800308 kref_get(&se_nacl->acl_kref);
309
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800310 spin_lock_irq(&se_nacl->nacl_sess_lock);
311 /*
312 * The se_nacl->nacl_sess pointer will be set to the
313 * last active I_T Nexus for each struct se_node_acl.
314 */
315 se_nacl->nacl_sess = se_sess;
316
317 list_add_tail(&se_sess->sess_acl_list,
318 &se_nacl->acl_sess_list);
319 spin_unlock_irq(&se_nacl->nacl_sess_lock);
320 }
321 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
322
Andy Grover6708bb22011-06-08 10:36:43 -0700323 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000324 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800325}
326EXPORT_SYMBOL(__transport_register_session);
327
328void transport_register_session(
329 struct se_portal_group *se_tpg,
330 struct se_node_acl *se_nacl,
331 struct se_session *se_sess,
332 void *fabric_sess_ptr)
333{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700334 unsigned long flags;
335
336 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800337 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700338 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339}
340EXPORT_SYMBOL(transport_register_session);
341
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800342static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800343{
344 struct se_session *se_sess = container_of(kref,
345 struct se_session, sess_kref);
346 struct se_portal_group *se_tpg = se_sess->se_tpg;
347
348 se_tpg->se_tpg_tfo->close_session(se_sess);
349}
350
351void target_get_session(struct se_session *se_sess)
352{
353 kref_get(&se_sess->sess_kref);
354}
355EXPORT_SYMBOL(target_get_session);
356
Jörn Engel33933a02012-05-11 10:35:08 -0400357void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800358{
Joern Engel41492682012-05-18 13:57:19 -0700359 struct se_portal_group *tpg = se_sess->se_tpg;
360
361 if (tpg->se_tpg_tfo->put_session != NULL) {
362 tpg->se_tpg_tfo->put_session(se_sess);
363 return;
364 }
Jörn Engel33933a02012-05-11 10:35:08 -0400365 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800366}
367EXPORT_SYMBOL(target_put_session);
368
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800369static void target_complete_nacl(struct kref *kref)
370{
371 struct se_node_acl *nacl = container_of(kref,
372 struct se_node_acl, acl_kref);
373
374 complete(&nacl->acl_free_comp);
375}
376
377void target_put_nacl(struct se_node_acl *nacl)
378{
379 kref_put(&nacl->acl_kref, target_complete_nacl);
380}
381
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800382void transport_deregister_session_configfs(struct se_session *se_sess)
383{
384 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700385 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800386 /*
387 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
388 */
389 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700390 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700391 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800392 if (se_nacl->acl_stop == 0)
393 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394 /*
395 * If the session list is empty, then clear the pointer.
396 * Otherwise, set the struct se_session pointer from the tail
397 * element of the per struct se_node_acl active session list.
398 */
399 if (list_empty(&se_nacl->acl_sess_list))
400 se_nacl->nacl_sess = NULL;
401 else {
402 se_nacl->nacl_sess = container_of(
403 se_nacl->acl_sess_list.prev,
404 struct se_session, sess_acl_list);
405 }
Roland Dreier23388862011-06-22 01:02:21 -0700406 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800407 }
408}
409EXPORT_SYMBOL(transport_deregister_session_configfs);
410
411void transport_free_session(struct se_session *se_sess)
412{
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700413 if (se_sess->sess_cmd_map) {
414 percpu_ida_destroy(&se_sess->sess_tag_pool);
415 kfree(se_sess->sess_cmd_map);
416 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800417 kmem_cache_free(se_sess_cache, se_sess);
418}
419EXPORT_SYMBOL(transport_free_session);
420
421void transport_deregister_session(struct se_session *se_sess)
422{
423 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800424 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800425 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700426 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800427 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428
Andy Grover6708bb22011-06-08 10:36:43 -0700429 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430 transport_free_session(se_sess);
431 return;
432 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800433 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434
Roland Dreiere63a8e12011-08-12 16:01:02 -0700435 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800436 list_del(&se_sess->sess_list);
437 se_sess->se_tpg = NULL;
438 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700439 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440
441 /*
442 * Determine if we need to do extra work for this initiator node's
443 * struct se_node_acl if it had been previously dynamically generated.
444 */
445 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446
Nicholas Bellinger01468342012-03-10 14:32:52 -0800447 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
448 if (se_nacl && se_nacl->dynamic_node_acl) {
449 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
450 list_del(&se_nacl->acl_list);
451 se_tpg->num_node_acls--;
452 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
453 core_tpg_wait_for_nacl_pr_ref(se_nacl);
454 core_free_device_list_for_node(se_nacl, se_tpg);
455 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
456
457 comp_nacl = false;
458 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800459 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800461 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800462
Andy Grover6708bb22011-06-08 10:36:43 -0700463 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000464 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800465 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800466 * If last kref is dropping now for an explict NodeACL, awake sleeping
467 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
468 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800469 */
470 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800471 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800472
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800473 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800474}
475EXPORT_SYMBOL(transport_deregister_session);
476
477/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700478 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400480static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800481{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400482 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800483 unsigned long flags;
484
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400485 if (!dev)
486 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400488 if (cmd->transport_state & CMD_T_BUSY)
489 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400491 spin_lock_irqsave(&dev->execute_task_lock, flags);
492 if (cmd->state_active) {
493 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400494 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800495 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400496 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497}
498
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700499static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
500 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501{
502 unsigned long flags;
503
Andy Grovera1d8b492011-05-02 17:12:10 -0700504 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700505 if (write_pending)
506 cmd->t_state = TRANSPORT_WRITE_PENDING;
507
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800508 /*
509 * Determine if IOCTL context caller in requesting the stopping of this
510 * command for LUN shutdown purposes.
511 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500512 if (cmd->transport_state & CMD_T_LUN_STOP) {
513 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
514 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800515
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500516 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400517 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400518 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700519 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800520
Andy Grovera1d8b492011-05-02 17:12:10 -0700521 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800522 return 1;
523 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400524
525 if (remove_from_lists) {
526 target_remove_from_state_list(cmd);
527
528 /*
529 * Clear struct se_cmd->se_lun before the handoff to FE.
530 */
531 cmd->se_lun = NULL;
532 }
533
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800534 /*
535 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000536 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800537 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500538 if (cmd->transport_state & CMD_T_STOP) {
539 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
540 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000541 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800542
Andy Grovera1d8b492011-05-02 17:12:10 -0700543 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800544
Andy Grovera1d8b492011-05-02 17:12:10 -0700545 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800546 return 1;
547 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800548
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400549 cmd->transport_state &= ~CMD_T_ACTIVE;
550 if (remove_from_lists) {
551 /*
552 * Some fabric modules like tcm_loop can release
553 * their internally allocated I/O reference now and
554 * struct se_cmd now.
555 *
556 * Fabric modules are expected to return '1' here if the
557 * se_cmd being passed is released at this point,
558 * or zero if not being released.
559 */
560 if (cmd->se_tfo->check_stop_free != NULL) {
561 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
562 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800563 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400564 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800565
Andy Grovera1d8b492011-05-02 17:12:10 -0700566 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800567 return 0;
568}
569
570static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
571{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700572 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800573}
574
575static void transport_lun_remove_cmd(struct se_cmd *cmd)
576{
Andy Grovere3d6f902011-07-19 08:55:10 +0000577 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800578 unsigned long flags;
579
580 if (!lun)
581 return;
582
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500584 if (!list_empty(&cmd->se_lun_node))
585 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800586 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
587}
588
589void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
590{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591 if (transport_cmd_check_stop_to_fabric(cmd))
592 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400593 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200594 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800595}
596
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400597static void target_complete_failure_work(struct work_struct *work)
598{
599 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
600
Christoph Hellwigde103c92012-11-06 12:24:09 -0800601 transport_generic_request_failure(cmd,
602 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400603}
604
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200605/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200606 * Used when asking transport to copy Sense Data from the underlying
607 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200608 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200609static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200610{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200611 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200612
613 WARN_ON(!cmd->se_lun);
614
615 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200616 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200617
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200618 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
619 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200620
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700621 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200622
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200623 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200624 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700625 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200626}
627
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400628void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400630 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400631 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400634 cmd->scsi_status = scsi_status;
635
636
Andy Grovera1d8b492011-05-02 17:12:10 -0700637 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400638 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800640 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200641 dev->transport->transport_complete(cmd,
642 cmd->t_data_sg,
643 transport_get_sense_buffer(cmd));
644 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800645 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646 }
647
648 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400649 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800650 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400651 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700652 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400653 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800654 return;
655 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700656
657 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500658 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700659
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800660 /*
661 * Check for case where an explict ABORT_TASK has been received
662 * and transport_wait_for_tasks() will be waiting for completion..
663 */
664 if (cmd->transport_state & CMD_T_ABORTED &&
665 cmd->transport_state & CMD_T_STOP) {
666 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
667 complete(&cmd->t_transport_stop_comp);
668 return;
669 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400670 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800671 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400672 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800673 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400674
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400675 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800676 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700677 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800678
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400679 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800680}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400681EXPORT_SYMBOL(target_complete_cmd);
682
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400683static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800684{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400685 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800686 unsigned long flags;
687
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800688 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400689 if (!cmd->state_active) {
690 list_add_tail(&cmd->state_list, &dev->state_list);
691 cmd->state_active = true;
692 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800693 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694}
695
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700696/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700697 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700698 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400699static void transport_write_pending_qf(struct se_cmd *cmd);
700static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700701
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400702void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700703{
704 struct se_device *dev = container_of(work, struct se_device,
705 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700706 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700707 struct se_cmd *cmd, *cmd_tmp;
708
709 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700710 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
711 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700712
Roland Dreierbcac3642011-08-27 21:33:16 -0700713 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700714 list_del(&cmd->se_qf_node);
715 atomic_dec(&dev->dev_qf_count);
716 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700717
Andy Grover6708bb22011-06-08 10:36:43 -0700718 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700719 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400720 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700721 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
722 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400723
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400724 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
725 transport_write_pending_qf(cmd);
726 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
727 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700728 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700729}
730
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800731unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
732{
733 switch (cmd->data_direction) {
734 case DMA_NONE:
735 return "NONE";
736 case DMA_FROM_DEVICE:
737 return "READ";
738 case DMA_TO_DEVICE:
739 return "WRITE";
740 case DMA_BIDIRECTIONAL:
741 return "BIDI";
742 default:
743 break;
744 }
745
746 return "UNKNOWN";
747}
748
749void transport_dump_dev_state(
750 struct se_device *dev,
751 char *b,
752 int *bl)
753{
754 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400755 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800756 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400757 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800758 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800759
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400760 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700761 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400762 dev->dev_attrib.block_size,
763 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800764 *bl += sprintf(b + *bl, " ");
765}
766
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800767void transport_dump_vpd_proto_id(
768 struct t10_vpd *vpd,
769 unsigned char *p_buf,
770 int p_buf_len)
771{
772 unsigned char buf[VPD_TMP_BUF_SIZE];
773 int len;
774
775 memset(buf, 0, VPD_TMP_BUF_SIZE);
776 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
777
778 switch (vpd->protocol_identifier) {
779 case 0x00:
780 sprintf(buf+len, "Fibre Channel\n");
781 break;
782 case 0x10:
783 sprintf(buf+len, "Parallel SCSI\n");
784 break;
785 case 0x20:
786 sprintf(buf+len, "SSA\n");
787 break;
788 case 0x30:
789 sprintf(buf+len, "IEEE 1394\n");
790 break;
791 case 0x40:
792 sprintf(buf+len, "SCSI Remote Direct Memory Access"
793 " Protocol\n");
794 break;
795 case 0x50:
796 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
797 break;
798 case 0x60:
799 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
800 break;
801 case 0x70:
802 sprintf(buf+len, "Automation/Drive Interface Transport"
803 " Protocol\n");
804 break;
805 case 0x80:
806 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
807 break;
808 default:
809 sprintf(buf+len, "Unknown 0x%02x\n",
810 vpd->protocol_identifier);
811 break;
812 }
813
814 if (p_buf)
815 strncpy(p_buf, buf, p_buf_len);
816 else
Andy Grover6708bb22011-06-08 10:36:43 -0700817 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818}
819
820void
821transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
822{
823 /*
824 * Check if the Protocol Identifier Valid (PIV) bit is set..
825 *
826 * from spc3r23.pdf section 7.5.1
827 */
828 if (page_83[1] & 0x80) {
829 vpd->protocol_identifier = (page_83[0] & 0xf0);
830 vpd->protocol_identifier_set = 1;
831 transport_dump_vpd_proto_id(vpd, NULL, 0);
832 }
833}
834EXPORT_SYMBOL(transport_set_vpd_proto_id);
835
836int transport_dump_vpd_assoc(
837 struct t10_vpd *vpd,
838 unsigned char *p_buf,
839 int p_buf_len)
840{
841 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000842 int ret = 0;
843 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800844
845 memset(buf, 0, VPD_TMP_BUF_SIZE);
846 len = sprintf(buf, "T10 VPD Identifier Association: ");
847
848 switch (vpd->association) {
849 case 0x00:
850 sprintf(buf+len, "addressed logical unit\n");
851 break;
852 case 0x10:
853 sprintf(buf+len, "target port\n");
854 break;
855 case 0x20:
856 sprintf(buf+len, "SCSI target device\n");
857 break;
858 default:
859 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000860 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800861 break;
862 }
863
864 if (p_buf)
865 strncpy(p_buf, buf, p_buf_len);
866 else
Andy Grover6708bb22011-06-08 10:36:43 -0700867 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800868
869 return ret;
870}
871
872int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
873{
874 /*
875 * The VPD identification association..
876 *
877 * from spc3r23.pdf Section 7.6.3.1 Table 297
878 */
879 vpd->association = (page_83[1] & 0x30);
880 return transport_dump_vpd_assoc(vpd, NULL, 0);
881}
882EXPORT_SYMBOL(transport_set_vpd_assoc);
883
884int transport_dump_vpd_ident_type(
885 struct t10_vpd *vpd,
886 unsigned char *p_buf,
887 int p_buf_len)
888{
889 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000890 int ret = 0;
891 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800892
893 memset(buf, 0, VPD_TMP_BUF_SIZE);
894 len = sprintf(buf, "T10 VPD Identifier Type: ");
895
896 switch (vpd->device_identifier_type) {
897 case 0x00:
898 sprintf(buf+len, "Vendor specific\n");
899 break;
900 case 0x01:
901 sprintf(buf+len, "T10 Vendor ID based\n");
902 break;
903 case 0x02:
904 sprintf(buf+len, "EUI-64 based\n");
905 break;
906 case 0x03:
907 sprintf(buf+len, "NAA\n");
908 break;
909 case 0x04:
910 sprintf(buf+len, "Relative target port identifier\n");
911 break;
912 case 0x08:
913 sprintf(buf+len, "SCSI name string\n");
914 break;
915 default:
916 sprintf(buf+len, "Unsupported: 0x%02x\n",
917 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000918 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800919 break;
920 }
921
Andy Grovere3d6f902011-07-19 08:55:10 +0000922 if (p_buf) {
923 if (p_buf_len < strlen(buf)+1)
924 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800925 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000926 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700927 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000928 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800929
930 return ret;
931}
932
933int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
934{
935 /*
936 * The VPD identifier type..
937 *
938 * from spc3r23.pdf Section 7.6.3.1 Table 298
939 */
940 vpd->device_identifier_type = (page_83[1] & 0x0f);
941 return transport_dump_vpd_ident_type(vpd, NULL, 0);
942}
943EXPORT_SYMBOL(transport_set_vpd_ident_type);
944
945int transport_dump_vpd_ident(
946 struct t10_vpd *vpd,
947 unsigned char *p_buf,
948 int p_buf_len)
949{
950 unsigned char buf[VPD_TMP_BUF_SIZE];
951 int ret = 0;
952
953 memset(buf, 0, VPD_TMP_BUF_SIZE);
954
955 switch (vpd->device_identifier_code_set) {
956 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300957 snprintf(buf, sizeof(buf),
958 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800959 &vpd->device_identifier[0]);
960 break;
961 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300962 snprintf(buf, sizeof(buf),
963 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800964 &vpd->device_identifier[0]);
965 break;
966 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300967 snprintf(buf, sizeof(buf),
968 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800969 &vpd->device_identifier[0]);
970 break;
971 default:
972 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
973 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000974 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800975 break;
976 }
977
978 if (p_buf)
979 strncpy(p_buf, buf, p_buf_len);
980 else
Andy Grover6708bb22011-06-08 10:36:43 -0700981 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800982
983 return ret;
984}
985
986int
987transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
988{
989 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900990 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800991
992 /*
993 * The VPD Code Set (encoding)
994 *
995 * from spc3r23.pdf Section 7.6.3.1 Table 296
996 */
997 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
998 switch (vpd->device_identifier_code_set) {
999 case 0x01: /* Binary */
1000 vpd->device_identifier[j++] =
1001 hex_str[vpd->device_identifier_type];
1002 while (i < (4 + page_83[3])) {
1003 vpd->device_identifier[j++] =
1004 hex_str[(page_83[i] & 0xf0) >> 4];
1005 vpd->device_identifier[j++] =
1006 hex_str[page_83[i] & 0x0f];
1007 i++;
1008 }
1009 break;
1010 case 0x02: /* ASCII */
1011 case 0x03: /* UTF-8 */
1012 while (i < (4 + page_83[3]))
1013 vpd->device_identifier[j++] = page_83[i++];
1014 break;
1015 default:
1016 break;
1017 }
1018
1019 return transport_dump_vpd_ident(vpd, NULL, 0);
1020}
1021EXPORT_SYMBOL(transport_set_vpd_ident);
1022
Christoph Hellwigde103c92012-11-06 12:24:09 -08001023sense_reason_t
1024target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001025{
1026 struct se_device *dev = cmd->se_dev;
1027
1028 if (cmd->unknown_data_length) {
1029 cmd->data_length = size;
1030 } else if (size != cmd->data_length) {
1031 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1032 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1033 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1034 cmd->data_length, size, cmd->t_task_cdb[0]);
1035
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001036 if (cmd->data_direction == DMA_TO_DEVICE) {
1037 pr_err("Rejecting underflow/overflow"
1038 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001039 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001040 }
1041 /*
1042 * Reject READ_* or WRITE_* with overflow/underflow for
1043 * type SCF_SCSI_DATA_CDB.
1044 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001045 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001046 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1047 " CDB on non 512-byte sector setup subsystem"
1048 " plugin: %s\n", dev->transport->name);
1049 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001050 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001051 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001052 /*
1053 * For the overflow case keep the existing fabric provided
1054 * ->data_length. Otherwise for the underflow case, reset
1055 * ->data_length to the smaller SCSI expected data transfer
1056 * length.
1057 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001058 if (size > cmd->data_length) {
1059 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1060 cmd->residual_count = (size - cmd->data_length);
1061 } else {
1062 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1063 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001064 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001065 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001066 }
1067
1068 return 0;
1069
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001070}
1071
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001072/*
1073 * Used by fabric modules containing a local struct se_cmd within their
1074 * fabric dependent per I/O descriptor.
1075 */
1076void transport_init_se_cmd(
1077 struct se_cmd *cmd,
1078 struct target_core_fabric_ops *tfo,
1079 struct se_session *se_sess,
1080 u32 data_length,
1081 int data_direction,
1082 int task_attr,
1083 unsigned char *sense_buffer)
1084{
Andy Grover5951146d2011-07-19 10:26:37 +00001085 INIT_LIST_HEAD(&cmd->se_lun_node);
1086 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001087 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001088 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001089 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001090 init_completion(&cmd->transport_lun_fe_stop_comp);
1091 init_completion(&cmd->transport_lun_stop_comp);
1092 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001093 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001094 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001095 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001096 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001097
1098 cmd->se_tfo = tfo;
1099 cmd->se_sess = se_sess;
1100 cmd->data_length = data_length;
1101 cmd->data_direction = data_direction;
1102 cmd->sam_task_attr = task_attr;
1103 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001104
1105 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001106}
1107EXPORT_SYMBOL(transport_init_se_cmd);
1108
Christoph Hellwigde103c92012-11-06 12:24:09 -08001109static sense_reason_t
1110transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001111{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001112 struct se_device *dev = cmd->se_dev;
1113
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001114 /*
1115 * Check if SAM Task Attribute emulation is enabled for this
1116 * struct se_device storage object
1117 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001118 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001119 return 0;
1120
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001121 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001122 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001123 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001124 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001125 }
1126 /*
1127 * Used to determine when ORDERED commands should go from
1128 * Dormant to Active status.
1129 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001130 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001131 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001132 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001133 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001134 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001135 return 0;
1136}
1137
Christoph Hellwigde103c92012-11-06 12:24:09 -08001138sense_reason_t
1139target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001140{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001141 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001142 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001143
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001144 /*
1145 * Ensure that the received CDB is less than the max (252 + 8) bytes
1146 * for VARIABLE_LENGTH_CMD
1147 */
1148 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001149 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001150 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1151 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001152 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001153 }
1154 /*
1155 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1156 * allocate the additional extended CDB buffer now.. Otherwise
1157 * setup the pointer from __t_task_cdb to t_task_cdb.
1158 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001159 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1160 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001161 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001162 if (!cmd->t_task_cdb) {
1163 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001164 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001165 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001166 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001167 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001168 }
1169 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001170 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001171 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001172 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001173 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001174 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001175
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001176 trace_target_sequencer_start(cmd);
1177
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001178 /*
1179 * Check for an existing UNIT ATTENTION condition
1180 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001181 ret = target_scsi3_ua_check(cmd);
1182 if (ret)
1183 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001184
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001185 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001186 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001187 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001188
Christoph Hellwigde103c92012-11-06 12:24:09 -08001189 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001190 if (ret) {
1191 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001192 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001193 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001194
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001195 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001196 if (ret)
1197 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001198
Christoph Hellwigde103c92012-11-06 12:24:09 -08001199 ret = transport_check_alloc_task_attr(cmd);
1200 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001201 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001202
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001203 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001204
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001205 spin_lock(&cmd->se_lun->lun_sep_lock);
1206 if (cmd->se_lun->lun_sep)
1207 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1208 spin_unlock(&cmd->se_lun->lun_sep_lock);
1209 return 0;
1210}
Andy Grovera12f41f2012-04-03 15:51:20 -07001211EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001212
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001213/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001214 * Used by fabric module frontends to queue tasks directly.
1215 * Many only be used from process context only
1216 */
1217int transport_handle_cdb_direct(
1218 struct se_cmd *cmd)
1219{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001220 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001221
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001222 if (!cmd->se_lun) {
1223 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001224 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001225 return -EINVAL;
1226 }
1227 if (in_interrupt()) {
1228 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001229 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001230 " from interrupt context\n");
1231 return -EINVAL;
1232 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001233 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001234 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1235 * outstanding descriptors are handled correctly during shutdown via
1236 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001237 *
1238 * Also, we don't take cmd->t_state_lock here as we only expect
1239 * this to be called for initial descriptor submission.
1240 */
1241 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001242 cmd->transport_state |= CMD_T_ACTIVE;
1243
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001244 /*
1245 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1246 * so follow TRANSPORT_NEW_CMD processing thread context usage
1247 * and call transport_generic_request_failure() if necessary..
1248 */
1249 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001250 if (ret)
1251 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001252 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001253}
1254EXPORT_SYMBOL(transport_handle_cdb_direct);
1255
Christoph Hellwigde103c92012-11-06 12:24:09 -08001256static sense_reason_t
1257transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1258 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1259{
1260 if (!sgl || !sgl_count)
1261 return 0;
1262
1263 /*
1264 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1265 * scatterlists already have been set to follow what the fabric
1266 * passes for the original expected data transfer length.
1267 */
1268 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1269 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1270 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1271 return TCM_INVALID_CDB_FIELD;
1272 }
1273
1274 cmd->t_data_sg = sgl;
1275 cmd->t_data_nents = sgl_count;
1276
1277 if (sgl_bidi && sgl_bidi_count) {
1278 cmd->t_bidi_data_sg = sgl_bidi;
1279 cmd->t_bidi_data_nents = sgl_bidi_count;
1280 }
1281 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1282 return 0;
1283}
1284
Nicholas Bellingera0267572012-10-01 17:23:22 -07001285/*
1286 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1287 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001288 *
1289 * @se_cmd: command descriptor to submit
1290 * @se_sess: associated se_sess for endpoint
1291 * @cdb: pointer to SCSI CDB
1292 * @sense: pointer to SCSI sense buffer
1293 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1294 * @data_length: fabric expected data transfer length
1295 * @task_addr: SAM task attribute
1296 * @data_dir: DMA data direction
1297 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001298 * @sgl: struct scatterlist memory for unidirectional mapping
1299 * @sgl_count: scatterlist count for unidirectional mapping
1300 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1301 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001302 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001303 * Returns non zero to signal active I/O shutdown failure. All other
1304 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1305 * but still return zero here.
1306 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001307 * This may only be called from process context, and also currently
1308 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001309 */
1310int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001311 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001312 u32 data_length, int task_attr, int data_dir, int flags,
1313 struct scatterlist *sgl, u32 sgl_count,
1314 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001315{
1316 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001317 sense_reason_t rc;
1318 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001319
1320 se_tpg = se_sess->se_tpg;
1321 BUG_ON(!se_tpg);
1322 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1323 BUG_ON(in_interrupt());
1324 /*
1325 * Initialize se_cmd for target operation. From this point
1326 * exceptions are handled by sending exception status via
1327 * target_core_fabric_ops->queue_status() callback
1328 */
1329 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1330 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001331 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1332 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001333 /*
1334 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1335 * se_sess->sess_cmd_list. A second kref_get here is necessary
1336 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1337 * kref_put() to happen during fabric packet acknowledgement.
1338 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001339 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1340 if (ret)
1341 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001342 /*
1343 * Signal bidirectional data payloads to target-core
1344 */
1345 if (flags & TARGET_SCF_BIDI_OP)
1346 se_cmd->se_cmd_flags |= SCF_BIDI;
1347 /*
1348 * Locate se_lun pointer and attach it to struct se_cmd
1349 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001350 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1351 if (rc) {
1352 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001353 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001354 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001355 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001356
Andy Grovera12f41f2012-04-03 15:51:20 -07001357 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001358 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001359 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001360 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001361 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001362 /*
1363 * When a non zero sgl_count has been passed perform SGL passthrough
1364 * mapping for pre-allocated fabric memory instead of having target
1365 * core perform an internal SGL allocation..
1366 */
1367 if (sgl_count != 0) {
1368 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001369
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001370 /*
1371 * A work-around for tcm_loop as some userspace code via
1372 * scsi-generic do not memset their associated read buffers,
1373 * so go ahead and do that here for type non-data CDBs. Also
1374 * note that this is currently guaranteed to be a single SGL
1375 * for this case by target core in target_setup_cmd_from_cdb()
1376 * -> transport_generic_cmd_sequencer().
1377 */
1378 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1379 se_cmd->data_direction == DMA_FROM_DEVICE) {
1380 unsigned char *buf = NULL;
1381
1382 if (sgl)
1383 buf = kmap(sg_page(sgl)) + sgl->offset;
1384
1385 if (buf) {
1386 memset(buf, 0, sgl->length);
1387 kunmap(sg_page(sgl));
1388 }
1389 }
1390
Nicholas Bellingera0267572012-10-01 17:23:22 -07001391 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1392 sgl_bidi, sgl_bidi_count);
1393 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001394 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001395 return 0;
1396 }
1397 }
Andy Grover11e319e2012-04-03 15:51:28 -07001398 /*
1399 * Check if we need to delay processing because of ALUA
1400 * Active/NonOptimized primary access state..
1401 */
1402 core_alua_check_nonop_delay(se_cmd);
1403
Nicholas Bellingera6360782011-11-18 20:36:22 -08001404 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001405 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001406}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001407EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1408
1409/*
1410 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1411 *
1412 * @se_cmd: command descriptor to submit
1413 * @se_sess: associated se_sess for endpoint
1414 * @cdb: pointer to SCSI CDB
1415 * @sense: pointer to SCSI sense buffer
1416 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1417 * @data_length: fabric expected data transfer length
1418 * @task_addr: SAM task attribute
1419 * @data_dir: DMA data direction
1420 * @flags: flags for command submission from target_sc_flags_tables
1421 *
1422 * Returns non zero to signal active I/O shutdown failure. All other
1423 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1424 * but still return zero here.
1425 *
1426 * This may only be called from process context, and also currently
1427 * assumes internal allocation of fabric payload buffer by target-core.
1428 *
1429 * It also assumes interal target core SGL memory allocation.
1430 */
1431int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1432 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1433 u32 data_length, int task_attr, int data_dir, int flags)
1434{
1435 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1436 unpacked_lun, data_length, task_attr, data_dir,
1437 flags, NULL, 0, NULL, 0);
1438}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001439EXPORT_SYMBOL(target_submit_cmd);
1440
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001441static void target_complete_tmr_failure(struct work_struct *work)
1442{
1443 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1444
1445 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1446 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001447
1448 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001449}
1450
Andy Groverea98d7f2012-01-19 13:39:21 -08001451/**
1452 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1453 * for TMR CDBs
1454 *
1455 * @se_cmd: command descriptor to submit
1456 * @se_sess: associated se_sess for endpoint
1457 * @sense: pointer to SCSI sense buffer
1458 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1459 * @fabric_context: fabric context for TMR req
1460 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001461 * @gfp: gfp type for caller
1462 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001463 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001464 *
1465 * Callable from all contexts.
1466 **/
1467
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001468int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001469 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001470 void *fabric_tmr_ptr, unsigned char tm_type,
1471 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001472{
1473 struct se_portal_group *se_tpg;
1474 int ret;
1475
1476 se_tpg = se_sess->se_tpg;
1477 BUG_ON(!se_tpg);
1478
1479 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1480 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001481 /*
1482 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1483 * allocation failure.
1484 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001485 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001486 if (ret < 0)
1487 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001488
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001489 if (tm_type == TMR_ABORT_TASK)
1490 se_cmd->se_tmr_req->ref_task_tag = tag;
1491
Andy Groverea98d7f2012-01-19 13:39:21 -08001492 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001493 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1494 if (ret) {
1495 core_tmr_release_req(se_cmd->se_tmr_req);
1496 return ret;
1497 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001498
Andy Groverea98d7f2012-01-19 13:39:21 -08001499 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1500 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001501 /*
1502 * For callback during failure handling, push this work off
1503 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1504 */
1505 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1506 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001507 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001508 }
1509 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001510 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001511}
1512EXPORT_SYMBOL(target_submit_tmr);
1513
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001514/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001515 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001516 * has completed.
1517 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001518bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001519{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001520 bool was_active = false;
1521
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001522 if (cmd->transport_state & CMD_T_BUSY) {
1523 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001524 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1525
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001526 pr_debug("cmd %p waiting to complete\n", cmd);
1527 wait_for_completion(&cmd->task_stop_comp);
1528 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001529
1530 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001531 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1532 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001533 was_active = true;
1534 }
1535
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001536 return was_active;
1537}
1538
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001539/*
1540 * Handle SAM-esque emulation for generic transport request failures.
1541 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001542void transport_generic_request_failure(struct se_cmd *cmd,
1543 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001544{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001545 int ret = 0;
1546
Andy Grover6708bb22011-06-08 10:36:43 -07001547 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001548 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001549 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001550 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001551 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001552 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001553 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001554 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1555 (cmd->transport_state & CMD_T_STOP) != 0,
1556 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001557
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001558 /*
1559 * For SAM Task Attribute emulation for failed struct se_cmd
1560 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001561 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001562
Christoph Hellwigde103c92012-11-06 12:24:09 -08001563 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001564 case TCM_NON_EXISTENT_LUN:
1565 case TCM_UNSUPPORTED_SCSI_OPCODE:
1566 case TCM_INVALID_CDB_FIELD:
1567 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001568 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001569 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1570 case TCM_UNKNOWN_MODE_PAGE:
1571 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001572 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001573 case TCM_CHECK_CONDITION_ABORT_CMD:
1574 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1575 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001576 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001577 case TCM_OUT_OF_RESOURCES:
1578 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1579 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001580 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001581 /*
1582 * No SENSE Data payload for this case, set SCSI Status
1583 * and queue the response to $FABRIC_MOD.
1584 *
1585 * Uses linux/include/scsi/scsi.h SAM status codes defs
1586 */
1587 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1588 /*
1589 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1590 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1591 * CONFLICT STATUS.
1592 *
1593 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1594 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001595 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001596 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001597 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001598 cmd->orig_fe_lun, 0x2C,
1599 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1600
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001601 trace_target_cmd_complete(cmd);
1602 ret = cmd->se_tfo-> queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001603 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001604 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001605 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001606 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001607 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001608 cmd->t_task_cdb[0], sense_reason);
1609 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001610 break;
1611 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001612
Christoph Hellwigde103c92012-11-06 12:24:09 -08001613 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001614 if (ret == -EAGAIN || ret == -ENOMEM)
1615 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001616
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001617check_stop:
1618 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001619 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001620 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001621 return;
1622
1623queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001624 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1625 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001626}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001627EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001628
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001629static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001630{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001631 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001632
Christoph Hellwigde103c92012-11-06 12:24:09 -08001633 if (cmd->execute_cmd) {
1634 ret = cmd->execute_cmd(cmd);
1635 if (ret) {
1636 spin_lock_irq(&cmd->t_state_lock);
1637 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1638 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001639
Christoph Hellwigde103c92012-11-06 12:24:09 -08001640 transport_generic_request_failure(cmd, ret);
1641 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001642 }
1643}
1644
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001645static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001646{
1647 struct se_device *dev = cmd->se_dev;
1648
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001649 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1650 return false;
1651
1652 /*
1653 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1654 * to allow the passed struct se_cmd list of tasks to the front of the list.
1655 */
1656 switch (cmd->sam_task_attr) {
1657 case MSG_HEAD_TAG:
1658 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1659 "se_ordered_id: %u\n",
1660 cmd->t_task_cdb[0], cmd->se_ordered_id);
1661 return false;
1662 case MSG_ORDERED_TAG:
1663 atomic_inc(&dev->dev_ordered_sync);
1664 smp_mb__after_atomic_inc();
1665
1666 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1667 " se_ordered_id: %u\n",
1668 cmd->t_task_cdb[0], cmd->se_ordered_id);
1669
1670 /*
1671 * Execute an ORDERED command if no other older commands
1672 * exist that need to be completed first.
1673 */
1674 if (!atomic_read(&dev->simple_cmds))
1675 return false;
1676 break;
1677 default:
1678 /*
1679 * For SIMPLE and UNTAGGED Task Attribute commands
1680 */
1681 atomic_inc(&dev->simple_cmds);
1682 smp_mb__after_atomic_inc();
1683 break;
1684 }
1685
1686 if (atomic_read(&dev->dev_ordered_sync) == 0)
1687 return false;
1688
1689 spin_lock(&dev->delayed_cmd_lock);
1690 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1691 spin_unlock(&dev->delayed_cmd_lock);
1692
1693 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1694 " delayed CMD list, se_ordered_id: %u\n",
1695 cmd->t_task_cdb[0], cmd->sam_task_attr,
1696 cmd->se_ordered_id);
1697 return true;
1698}
1699
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001700void target_execute_cmd(struct se_cmd *cmd)
1701{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001702 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001703 * If the received CDB has aleady been aborted stop processing it here.
1704 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001705 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001706 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001707 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001708 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001709
1710 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001711 * Determine if IOCTL context caller in requesting the stopping of this
1712 * command for LUN shutdown purposes.
1713 */
1714 spin_lock_irq(&cmd->t_state_lock);
1715 if (cmd->transport_state & CMD_T_LUN_STOP) {
1716 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1717 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1718
1719 cmd->transport_state &= ~CMD_T_ACTIVE;
1720 spin_unlock_irq(&cmd->t_state_lock);
1721 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001722 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001723 }
1724 /*
1725 * Determine if frontend context caller is requesting the stopping of
1726 * this command for frontend exceptions.
1727 */
1728 if (cmd->transport_state & CMD_T_STOP) {
1729 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1730 __func__, __LINE__,
1731 cmd->se_tfo->get_task_tag(cmd));
1732
1733 spin_unlock_irq(&cmd->t_state_lock);
1734 complete(&cmd->t_transport_stop_comp);
1735 return;
1736 }
1737
1738 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001739 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001740 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001741
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001742 if (target_handle_task_attr(cmd)) {
1743 spin_lock_irq(&cmd->t_state_lock);
1744 cmd->transport_state &= ~CMD_T_BUSY|CMD_T_SENT;
1745 spin_unlock_irq(&cmd->t_state_lock);
1746 return;
1747 }
1748
1749 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001750}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001751EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001753/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001754 * Process all commands up to the last received ORDERED task attribute which
1755 * requires another blocking boundary
1756 */
1757static void target_restart_delayed_cmds(struct se_device *dev)
1758{
1759 for (;;) {
1760 struct se_cmd *cmd;
1761
1762 spin_lock(&dev->delayed_cmd_lock);
1763 if (list_empty(&dev->delayed_cmd_list)) {
1764 spin_unlock(&dev->delayed_cmd_lock);
1765 break;
1766 }
1767
1768 cmd = list_entry(dev->delayed_cmd_list.next,
1769 struct se_cmd, se_delayed_node);
1770 list_del(&cmd->se_delayed_node);
1771 spin_unlock(&dev->delayed_cmd_lock);
1772
1773 __target_execute_cmd(cmd);
1774
1775 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1776 break;
1777 }
1778}
1779
1780/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001781 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001782 * and ordered cmds need to have their tasks added to the execution queue.
1783 */
1784static void transport_complete_task_attr(struct se_cmd *cmd)
1785{
Andy Grover5951146d2011-07-19 10:26:37 +00001786 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001787
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001788 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1789 return;
1790
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001791 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001792 atomic_dec(&dev->simple_cmds);
1793 smp_mb__after_atomic_dec();
1794 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001795 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001796 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1797 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001798 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001799 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001800 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001801 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1802 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001803 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001804 atomic_dec(&dev->dev_ordered_sync);
1805 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001806
1807 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001808 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001809 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1810 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001811
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001812 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001813}
1814
Christoph Hellwige057f532011-10-17 13:56:41 -04001815static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001816{
1817 int ret = 0;
1818
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001819 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001820
1821 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001822 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001823 ret = cmd->se_tfo->queue_status(cmd);
1824 if (ret)
1825 goto out;
1826 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001827
1828 switch (cmd->data_direction) {
1829 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001830 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001831 ret = cmd->se_tfo->queue_data_in(cmd);
1832 break;
1833 case DMA_TO_DEVICE:
Nicholas Bellinger64577402013-08-21 14:39:19 -07001834 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001835 ret = cmd->se_tfo->queue_data_in(cmd);
1836 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001837 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001838 }
1839 /* Fall through for DMA_TO_DEVICE */
1840 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001841 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001842 ret = cmd->se_tfo->queue_status(cmd);
1843 break;
1844 default:
1845 break;
1846 }
1847
Christoph Hellwige057f532011-10-17 13:56:41 -04001848out:
1849 if (ret < 0) {
1850 transport_handle_queue_full(cmd, cmd->se_dev);
1851 return;
1852 }
1853 transport_lun_remove_cmd(cmd);
1854 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001855}
1856
1857static void transport_handle_queue_full(
1858 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001859 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001860{
1861 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001862 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1863 atomic_inc(&dev->dev_qf_count);
1864 smp_mb__after_atomic_inc();
1865 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1866
1867 schedule_work(&cmd->se_dev->qf_work_queue);
1868}
1869
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001870static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001871{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001872 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001873 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001874
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001875 /*
1876 * Check if we need to move delayed/dormant tasks from cmds on the
1877 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1878 * Attribute.
1879 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001880 transport_complete_task_attr(cmd);
1881
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001882 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001883 * Check to schedule QUEUE_FULL work, or execute an existing
1884 * cmd->transport_qf_callback()
1885 */
1886 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1887 schedule_work(&cmd->se_dev->qf_work_queue);
1888
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001889 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001890 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001891 * the struct se_cmd in question.
1892 */
1893 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001894 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001895 ret = transport_send_check_condition_and_sense(
1896 cmd, 0, 1);
1897 if (ret == -EAGAIN || ret == -ENOMEM)
1898 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001899
Paolo Bonzini27a27092012-09-05 17:09:14 +02001900 transport_lun_remove_cmd(cmd);
1901 transport_cmd_check_stop_to_fabric(cmd);
1902 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001903 }
1904 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001905 * Check for a callback, used by amongst other things
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001906 * XDWRITE_READ_10 and COMPARE_AND_WRITE emulation.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001907 */
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001908 if (cmd->transport_complete_callback) {
1909 sense_reason_t rc;
1910
1911 rc = cmd->transport_complete_callback(cmd);
1912 if (!rc)
1913 return;
1914
1915 ret = transport_send_check_condition_and_sense(cmd,
1916 rc, 0);
1917 if (ret == -EAGAIN || ret == -ENOMEM)
1918 goto queue_full;
1919
1920 transport_lun_remove_cmd(cmd);
1921 transport_cmd_check_stop_to_fabric(cmd);
1922 return;
1923 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001924
1925 switch (cmd->data_direction) {
1926 case DMA_FROM_DEVICE:
1927 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001928 if (cmd->se_lun->lun_sep) {
1929 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001930 cmd->data_length;
1931 }
1932 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001933
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001934 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001935 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001936 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001937 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001938 break;
1939 case DMA_TO_DEVICE:
1940 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001941 if (cmd->se_lun->lun_sep) {
1942 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001943 cmd->data_length;
1944 }
1945 spin_unlock(&cmd->se_lun->lun_sep_lock);
1946 /*
1947 * Check if we need to send READ payload for BIDI-COMMAND
1948 */
Nicholas Bellinger64577402013-08-21 14:39:19 -07001949 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001950 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001951 if (cmd->se_lun->lun_sep) {
1952 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001953 cmd->data_length;
1954 }
1955 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001956 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001957 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001958 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001959 break;
1960 }
1961 /* Fall through for DMA_TO_DEVICE */
1962 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001963 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001964 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001965 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001966 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001967 break;
1968 default:
1969 break;
1970 }
1971
1972 transport_lun_remove_cmd(cmd);
1973 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001974 return;
1975
1976queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001977 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001978 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001979 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1980 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001981}
1982
Andy Grover6708bb22011-06-08 10:36:43 -07001983static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001984{
Andy Groverec98f782011-07-20 19:28:46 +00001985 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001986 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001987
Andy Grover6708bb22011-06-08 10:36:43 -07001988 for_each_sg(sgl, sg, nents, count)
1989 __free_page(sg_page(sg));
1990
1991 kfree(sgl);
1992}
1993
1994static inline void transport_free_pages(struct se_cmd *cmd)
1995{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001996 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001997 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001998
Andy Grover6708bb22011-06-08 10:36:43 -07001999 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002000 cmd->t_data_sg = NULL;
2001 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002002
Andy Grover6708bb22011-06-08 10:36:43 -07002003 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002004 cmd->t_bidi_data_sg = NULL;
2005 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002006}
2007
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002008/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002009 * transport_release_cmd - free a command
2010 * @cmd: command to free
2011 *
2012 * This routine unconditionally frees a command, and reference counting
2013 * or list removal must be done in the caller.
2014 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002015static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002016{
2017 BUG_ON(!cmd->se_tfo);
2018
Andy Groverc8e31f22012-01-19 13:39:17 -08002019 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002020 core_tmr_release_req(cmd->se_tmr_req);
2021 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2022 kfree(cmd->t_task_cdb);
2023 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002024 * If this cmd has been setup with target_get_sess_cmd(), drop
2025 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002026 */
Nicholas Bellingerca249762013-06-06 02:06:14 -07002027 return target_put_sess_cmd(cmd->se_sess, cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002028}
2029
2030/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002031 * transport_put_cmd - release a reference to a command
2032 * @cmd: command to release
2033 *
2034 * This routine releases our reference to the command and frees it if possible.
2035 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002036static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002037{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002038 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002039 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002040}
2041
Andy Grover49493142012-01-16 16:57:08 -08002042void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002043{
Andy Groverec98f782011-07-20 19:28:46 +00002044 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002045 struct page **pages;
2046 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002047
Andy Grover05d1c7c2011-07-20 19:13:28 +00002048 /*
Andy Groverec98f782011-07-20 19:28:46 +00002049 * We need to take into account a possible offset here for fabrics like
2050 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2051 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002052 */
Andy Grover49493142012-01-16 16:57:08 -08002053 if (!cmd->t_data_nents)
2054 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002055
2056 BUG_ON(!sg);
2057 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002058 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002059
Andy Grover49493142012-01-16 16:57:08 -08002060 /* >1 page. use vmap */
2061 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002062 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002063 return NULL;
2064
2065 /* convert sg[] to pages[] */
2066 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2067 pages[i] = sg_page(sg);
2068 }
2069
2070 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2071 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002072 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002073 return NULL;
2074
2075 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002076}
Andy Grover49493142012-01-16 16:57:08 -08002077EXPORT_SYMBOL(transport_kmap_data_sg);
2078
2079void transport_kunmap_data_sg(struct se_cmd *cmd)
2080{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002081 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002082 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002083 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002084 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002085 return;
2086 }
Andy Grover49493142012-01-16 16:57:08 -08002087
2088 vunmap(cmd->t_data_vmap);
2089 cmd->t_data_vmap = NULL;
2090}
2091EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002092
2093static int
Nicholas Bellinger20093992013-08-25 15:44:03 -07002094target_alloc_sgl(struct scatterlist **sgl, unsigned int *nents, u32 length,
2095 bool zero_page)
Andy Grover05d1c7c2011-07-20 19:13:28 +00002096{
Nicholas Bellinger20093992013-08-25 15:44:03 -07002097 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002098 struct page *page;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002099 gfp_t zero_flag = (zero_page) ? __GFP_ZERO : 0;
2100 unsigned int nent;
Andy Groverec98f782011-07-20 19:28:46 +00002101 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002102
Nicholas Bellinger20093992013-08-25 15:44:03 -07002103 nent = DIV_ROUND_UP(length, PAGE_SIZE);
2104 sg = kmalloc(sizeof(struct scatterlist) * nent, GFP_KERNEL);
2105 if (!sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002106 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002107
Nicholas Bellinger20093992013-08-25 15:44:03 -07002108 sg_init_table(sg, nent);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002109
Andy Groverec98f782011-07-20 19:28:46 +00002110 while (length) {
2111 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002112 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002113 if (!page)
2114 goto out;
2115
Nicholas Bellinger20093992013-08-25 15:44:03 -07002116 sg_set_page(&sg[i], page, page_len, 0);
Andy Groverec98f782011-07-20 19:28:46 +00002117 length -= page_len;
2118 i++;
2119 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002120 *sgl = sg;
2121 *nents = nent;
Andy Groverec98f782011-07-20 19:28:46 +00002122 return 0;
2123
2124out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002125 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002126 i--;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002127 __free_page(sg_page(&sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002128 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002129 kfree(sg);
Andy Groverec98f782011-07-20 19:28:46 +00002130 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002131}
2132
Andy Grovera1d8b492011-05-02 17:12:10 -07002133/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002134 * Allocate any required resources to execute the command. For writes we
2135 * might not have the payload yet, so notify the fabric via a call to
2136 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002137 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002138sense_reason_t
2139transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002140{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002141 int ret = 0;
2142
2143 /*
2144 * Determine is the TCM fabric module has already allocated physical
2145 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002146 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002147 */
Andy Groverec98f782011-07-20 19:28:46 +00002148 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2149 cmd->data_length) {
Nicholas Bellinger20093992013-08-25 15:44:03 -07002150 bool zero_flag = !(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB);
2151
Nicholas Bellinger8cefe072013-08-25 16:10:57 -07002152 if ((cmd->se_cmd_flags & SCF_BIDI) ||
2153 (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)) {
2154 u32 bidi_length;
2155
2156 if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)
2157 bidi_length = cmd->t_task_nolb *
2158 cmd->se_dev->dev_attrib.block_size;
2159 else
2160 bidi_length = cmd->data_length;
2161
2162 ret = target_alloc_sgl(&cmd->t_bidi_data_sg,
2163 &cmd->t_bidi_data_nents,
2164 bidi_length, zero_flag);
2165 if (ret < 0)
2166 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2167 }
2168
Nicholas Bellinger20093992013-08-25 15:44:03 -07002169 ret = target_alloc_sgl(&cmd->t_data_sg, &cmd->t_data_nents,
2170 cmd->data_length, zero_flag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002171 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002172 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002173 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002174 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002175 * If this command is not a write we can execute it right here,
2176 * for write buffers we need to notify the fabric driver first
2177 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002178 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002179 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002180 if (cmd->data_direction != DMA_TO_DEVICE) {
2181 target_execute_cmd(cmd);
2182 return 0;
2183 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002184 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002185
2186 ret = cmd->se_tfo->write_pending(cmd);
2187 if (ret == -EAGAIN || ret == -ENOMEM)
2188 goto queue_full;
2189
Christoph Hellwigde103c92012-11-06 12:24:09 -08002190 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2191 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002192
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002193 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002194
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002195queue_full:
2196 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2197 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2198 transport_handle_queue_full(cmd, cmd->se_dev);
2199 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002200}
Andy Grovera1d8b492011-05-02 17:12:10 -07002201EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002202
Christoph Hellwige057f532011-10-17 13:56:41 -04002203static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002204{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002205 int ret;
2206
2207 ret = cmd->se_tfo->write_pending(cmd);
2208 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002209 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2210 cmd);
2211 transport_handle_queue_full(cmd, cmd->se_dev);
2212 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002213}
2214
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002215int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002216{
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002217 int ret = 0;
2218
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002219 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002220 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002221 transport_wait_for_tasks(cmd);
2222
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002223 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002224 } else {
2225 if (wait_for_tasks)
2226 transport_wait_for_tasks(cmd);
2227
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002228 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002229 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002230
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002231 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002232 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002233 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002234}
2235EXPORT_SYMBOL(transport_generic_free_cmd);
2236
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002237/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2238 * @se_sess: session to reference
2239 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002240 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002241 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002242int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002243 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002244{
2245 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002246 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002247
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002248 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002249 /*
2250 * Add a second kref if the fabric caller is expecting to handle
2251 * fabric acknowledgement that requires two target_put_sess_cmd()
2252 * invocations before se_cmd descriptor release.
2253 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002254 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002255 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002256 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2257 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002258
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002259 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002260 if (se_sess->sess_tearing_down) {
2261 ret = -ESHUTDOWN;
2262 goto out;
2263 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002264 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002265out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002266 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002267 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002268}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002269EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002270
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002271static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002272{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002273 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2274 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002275
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002276 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002277 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002278 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002279 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002280 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002281 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002282 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002283 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002284 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002285 }
2286 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002287 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002288
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002289 se_cmd->se_tfo->release_cmd(se_cmd);
2290}
2291
2292/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2293 * @se_sess: session to reference
2294 * @se_cmd: command descriptor to drop
2295 */
2296int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2297{
Joern Engelccf5ae82013-05-13 16:30:06 -04002298 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2299 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002300}
2301EXPORT_SYMBOL(target_put_sess_cmd);
2302
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002303/* target_sess_cmd_list_set_waiting - Flag all commands in
2304 * sess_cmd_list to complete cmd_wait_comp. Set
2305 * sess_tearing_down so no more commands are queued.
2306 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002307 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002308void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002309{
2310 struct se_cmd *se_cmd;
2311 unsigned long flags;
2312
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002313 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002314 if (se_sess->sess_tearing_down) {
2315 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2316 return;
2317 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002318 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002319 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002320
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002321 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002322 se_cmd->cmd_wait_set = 1;
2323
2324 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2325}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002326EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002327
2328/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2329 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002330 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002331void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002332{
2333 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002334 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002335
2336 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002337 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002338 list_del(&se_cmd->se_cmd_list);
2339
2340 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2341 " %d\n", se_cmd, se_cmd->t_state,
2342 se_cmd->se_tfo->get_cmd_state(se_cmd));
2343
Joern Engelbe646c2d2013-05-15 00:44:07 -07002344 wait_for_completion(&se_cmd->cmd_wait_comp);
2345 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2346 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2347 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002348
2349 se_cmd->se_tfo->release_cmd(se_cmd);
2350 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002351
2352 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2353 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2354 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2355
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002356}
2357EXPORT_SYMBOL(target_wait_for_sess_cmds);
2358
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002359/* transport_lun_wait_for_tasks():
2360 *
2361 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2362 * an struct se_lun to be successfully shutdown.
2363 */
2364static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2365{
2366 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002367 int ret = 0;
2368
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002369 /*
2370 * If the frontend has already requested this struct se_cmd to
2371 * be stopped, we can safely ignore this struct se_cmd.
2372 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002373 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002374 if (cmd->transport_state & CMD_T_STOP) {
2375 cmd->transport_state &= ~CMD_T_LUN_STOP;
2376
2377 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2378 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002379 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002380 transport_cmd_check_stop(cmd, false, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002381 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002382 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002383 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002384 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002385
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002386 // XXX: audit task_flags checks.
2387 spin_lock_irqsave(&cmd->t_state_lock, flags);
2388 if ((cmd->transport_state & CMD_T_BUSY) &&
2389 (cmd->transport_state & CMD_T_SENT)) {
2390 if (!target_stop_cmd(cmd, &flags))
2391 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002392 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002393 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002394
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002395 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2396 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002397 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002398 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002399 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002400 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002401 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002402 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002403 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002404
2405 return 0;
2406}
2407
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002408static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2409{
2410 struct se_cmd *cmd = NULL;
2411 unsigned long lun_flags, cmd_flags;
2412 /*
2413 * Do exception processing and return CHECK_CONDITION status to the
2414 * Initiator Port.
2415 */
2416 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002417 while (!list_empty(&lun->lun_cmd_list)) {
2418 cmd = list_first_entry(&lun->lun_cmd_list,
2419 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002420 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002421
Andy Grovera1d8b492011-05-02 17:12:10 -07002422 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002423 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002424 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002425 cmd->se_lun->unpacked_lun,
2426 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002427 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002428 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002429
2430 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2431
Andy Grover6708bb22011-06-08 10:36:43 -07002432 if (!cmd->se_lun) {
2433 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002434 cmd->se_tfo->get_task_tag(cmd),
2435 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002436 BUG();
2437 }
2438 /*
2439 * If the Storage engine still owns the iscsi_cmd_t, determine
2440 * and/or stop its context.
2441 */
Andy Grover6708bb22011-06-08 10:36:43 -07002442 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002443 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2444 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002445
Andy Grovere3d6f902011-07-19 08:55:10 +00002446 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002447 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2448 continue;
2449 }
2450
Andy Grover6708bb22011-06-08 10:36:43 -07002451 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002452 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002453 cmd->se_lun->unpacked_lun,
2454 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002455
Andy Grovera1d8b492011-05-02 17:12:10 -07002456 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002457 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002458 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002459 goto check_cond;
2460 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002461 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002462 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002463 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002465 /*
2466 * The Storage engine stopped this struct se_cmd before it was
2467 * send to the fabric frontend for delivery back to the
2468 * Initiator Node. Return this SCSI CDB back with an
2469 * CHECK_CONDITION status.
2470 */
2471check_cond:
2472 transport_send_check_condition_and_sense(cmd,
2473 TCM_NON_EXISTENT_LUN, 0);
2474 /*
2475 * If the fabric frontend is waiting for this iscsi_cmd_t to
2476 * be released, notify the waiting thread now that LU has
2477 * finished accessing it.
2478 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002479 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002480 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002481 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002482 " struct se_cmd: %p ITT: 0x%08x\n",
2483 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002484 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002485
Andy Grovera1d8b492011-05-02 17:12:10 -07002486 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002487 cmd_flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002488 transport_cmd_check_stop(cmd, false, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002489 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002490 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2491 continue;
2492 }
Andy Grover6708bb22011-06-08 10:36:43 -07002493 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002494 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002495
Andy Grovera1d8b492011-05-02 17:12:10 -07002496 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002497 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2498 }
2499 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2500}
2501
2502static int transport_clear_lun_thread(void *p)
2503{
Jörn Engel8359cf42011-11-24 02:05:51 +01002504 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002505
2506 __transport_clear_lun_from_sessions(lun);
2507 complete(&lun->lun_shutdown_comp);
2508
2509 return 0;
2510}
2511
2512int transport_clear_lun_from_sessions(struct se_lun *lun)
2513{
2514 struct task_struct *kt;
2515
Andy Grover5951146d2011-07-19 10:26:37 +00002516 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002517 "tcm_cl_%u", lun->unpacked_lun);
2518 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002519 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002520 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002521 }
2522 wait_for_completion(&lun->lun_shutdown_comp);
2523
2524 return 0;
2525}
2526
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002527/**
2528 * transport_wait_for_tasks - wait for completion to occur
2529 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002531 * Called from frontend fabric context to wait for storage engine
2532 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002533 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002534bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535{
2536 unsigned long flags;
2537
Andy Grovera1d8b492011-05-02 17:12:10 -07002538 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002539 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2540 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002541 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002542 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002543 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002544
Andy Groverc8e31f22012-01-19 13:39:17 -08002545 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2546 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002547 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002548 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002549 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002550 /*
2551 * If we are already stopped due to an external event (ie: LUN shutdown)
2552 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002553 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002554 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2555 * has completed its operation on the struct se_cmd.
2556 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002557 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002558 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002559 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002560 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002561 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002562 /*
2563 * There is a special case for WRITES where a FE exception +
2564 * LUN shutdown means ConfigFS context is still sleeping on
2565 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2566 * We go ahead and up transport_lun_stop_comp just to be sure
2567 * here.
2568 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002569 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2570 complete(&cmd->transport_lun_stop_comp);
2571 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2572 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002573
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002574 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002575 /*
2576 * At this point, the frontend who was the originator of this
2577 * struct se_cmd, now owns the structure and can be released through
2578 * normal means below.
2579 */
Andy Grover6708bb22011-06-08 10:36:43 -07002580 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002581 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002583 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002584
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002585 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002587
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002588 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
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 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002592
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002593 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002594
Andy Grover6708bb22011-06-08 10:36:43 -07002595 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002596 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002597 cmd, cmd->se_tfo->get_task_tag(cmd),
2598 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002599
Andy Grovera1d8b492011-05-02 17:12:10 -07002600 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601
Andy Grovera1d8b492011-05-02 17:12:10 -07002602 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002603
Andy Grovera1d8b492011-05-02 17:12:10 -07002604 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002605 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002606
Masanari Iida35d1efe2012-08-16 22:43:13 +09002607 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002608 "&cmd->t_transport_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
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002611 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002612
2613 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002614}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002615EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616
2617static int transport_get_sense_codes(
2618 struct se_cmd *cmd,
2619 u8 *asc,
2620 u8 *ascq)
2621{
2622 *asc = cmd->scsi_asc;
2623 *ascq = cmd->scsi_ascq;
2624
2625 return 0;
2626}
2627
Christoph Hellwigde103c92012-11-06 12:24:09 -08002628int
2629transport_send_check_condition_and_sense(struct se_cmd *cmd,
2630 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002631{
2632 unsigned char *buffer = cmd->sense_buffer;
2633 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002634 u8 asc = 0, ascq = 0;
2635
Andy Grovera1d8b492011-05-02 17:12:10 -07002636 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002637 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002638 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002639 return 0;
2640 }
2641 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002642 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002643
2644 if (!reason && from_transport)
2645 goto after_reason;
2646
2647 if (!from_transport)
2648 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002649
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650 /*
2651 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2652 * SENSE KEY values from include/scsi/scsi.h
2653 */
2654 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002655 case TCM_NO_SENSE:
2656 /* CURRENT ERROR */
2657 buffer[0] = 0x70;
2658 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2659 /* Not Ready */
2660 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2661 /* NO ADDITIONAL SENSE INFORMATION */
2662 buffer[SPC_ASC_KEY_OFFSET] = 0;
2663 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2664 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002665 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002666 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002667 buffer[0] = 0x70;
2668 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002669 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002670 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002671 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002672 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002673 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002674 case TCM_UNSUPPORTED_SCSI_OPCODE:
2675 case TCM_SECTOR_COUNT_TOO_MANY:
2676 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002677 buffer[0] = 0x70;
2678 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002680 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002681 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002683 break;
2684 case TCM_UNKNOWN_MODE_PAGE:
2685 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002686 buffer[0] = 0x70;
2687 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002688 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002689 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002690 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002691 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002692 break;
2693 case TCM_CHECK_CONDITION_ABORT_CMD:
2694 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002695 buffer[0] = 0x70;
2696 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002698 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002699 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002700 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2701 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 break;
2703 case TCM_INCORRECT_AMOUNT_OF_DATA:
2704 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002705 buffer[0] = 0x70;
2706 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002708 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002709 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002710 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002711 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002712 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713 break;
2714 case TCM_INVALID_CDB_FIELD:
2715 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002716 buffer[0] = 0x70;
2717 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002718 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002719 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002720 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002721 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002722 break;
2723 case TCM_INVALID_PARAMETER_LIST:
2724 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002725 buffer[0] = 0x70;
2726 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -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 FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002730 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002732 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2733 /* CURRENT ERROR */
2734 buffer[0] = 0x70;
2735 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2736 /* ILLEGAL REQUEST */
2737 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2738 /* PARAMETER LIST LENGTH ERROR */
2739 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2740 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002741 case TCM_UNEXPECTED_UNSOLICITED_DATA:
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 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002748 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002749 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002750 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002751 break;
2752 case TCM_SERVICE_CRC_ERROR:
2753 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002754 buffer[0] = 0x70;
2755 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002756 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002757 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002758 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002759 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002760 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002761 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002762 break;
2763 case TCM_SNACK_REJECTED:
2764 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002765 buffer[0] = 0x70;
2766 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002767 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002768 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002769 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002770 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002771 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002772 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002773 break;
2774 case TCM_WRITE_PROTECTED:
2775 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002776 buffer[0] = 0x70;
2777 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002779 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002781 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002782 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002783 case TCM_ADDRESS_OUT_OF_RANGE:
2784 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002785 buffer[0] = 0x70;
2786 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002787 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002788 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002789 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002790 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002791 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002792 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2793 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002794 buffer[0] = 0x70;
2795 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002796 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002797 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002798 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002799 buffer[SPC_ASC_KEY_OFFSET] = asc;
2800 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002801 break;
2802 case TCM_CHECK_CONDITION_NOT_READY:
2803 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002804 buffer[0] = 0x70;
2805 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002807 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002809 buffer[SPC_ASC_KEY_OFFSET] = asc;
2810 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002811 break;
Nicholas Bellinger818b5712013-08-19 15:10:38 -07002812 case TCM_MISCOMPARE_VERIFY:
2813 /* CURRENT ERROR */
2814 buffer[0] = 0x70;
2815 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2816 buffer[SPC_SENSE_KEY_OFFSET] = MISCOMPARE;
2817 /* MISCOMPARE DURING VERIFY OPERATION */
2818 buffer[SPC_ASC_KEY_OFFSET] = 0x1d;
2819 buffer[SPC_ASCQ_KEY_OFFSET] = 0x00;
2820 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002821 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2822 default:
2823 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002824 buffer[0] = 0x70;
2825 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002826 /*
2827 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2828 * Solaris initiators. Returning NOT READY instead means the
2829 * operations will be retried a finite number of times and we
2830 * can survive intermittent errors.
2831 */
2832 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002833 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002834 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002835 break;
2836 }
2837 /*
2838 * This code uses linux/include/scsi/scsi.h SAM status codes!
2839 */
2840 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2841 /*
2842 * Automatically padded, this value is encoded in the fabric's
2843 * data_length response PDU containing the SCSI defined sense data.
2844 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002845 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002846
2847after_reason:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002848 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002849 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002850}
2851EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2852
2853int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2854{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002855 if (!(cmd->transport_state & CMD_T_ABORTED))
2856 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002857
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002858 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2859 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002860
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002861 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2862 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002863
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002864 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002865 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002866 cmd->se_tfo->queue_status(cmd);
2867
2868 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002869}
2870EXPORT_SYMBOL(transport_check_aborted_status);
2871
2872void transport_send_task_abort(struct se_cmd *cmd)
2873{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002874 unsigned long flags;
2875
2876 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002877 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002878 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2879 return;
2880 }
2881 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2882
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002883 /*
2884 * If there are still expected incoming fabric WRITEs, we wait
2885 * until until they have completed before sending a TASK_ABORTED
2886 * response. This response with TASK_ABORTED status will be
2887 * queued back to fabric module by transport_check_aborted_status().
2888 */
2889 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002890 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002891 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002892 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002893 }
2894 }
2895 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002896
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002897 transport_lun_remove_cmd(cmd);
2898
Andy Grover6708bb22011-06-08 10:36:43 -07002899 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002900 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002901 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002902
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002903 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002904 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002905}
2906
Christoph Hellwigaf877292012-07-08 15:58:49 -04002907static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002908{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002909 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002910 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002911 struct se_tmr_req *tmr = cmd->se_tmr_req;
2912 int ret;
2913
2914 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002915 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002916 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002917 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002918 case TMR_ABORT_TASK_SET:
2919 case TMR_CLEAR_ACA:
2920 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002921 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2922 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002923 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002924 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2925 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2926 TMR_FUNCTION_REJECTED;
2927 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002928 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002929 tmr->response = TMR_FUNCTION_REJECTED;
2930 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002931 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002932 tmr->response = TMR_FUNCTION_REJECTED;
2933 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002934 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002935 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002936 tmr->function);
2937 tmr->response = TMR_FUNCTION_REJECTED;
2938 break;
2939 }
2940
2941 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002942 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002943
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002944 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002945}
2946
Christoph Hellwigaf877292012-07-08 15:58:49 -04002947int transport_generic_handle_tmr(
2948 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002949{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002950 INIT_WORK(&cmd->work, target_tmr_work);
2951 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002952 return 0;
2953}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002954EXPORT_SYMBOL(transport_generic_handle_tmr);