blob: 7172d005d063439999ddaa619ef0a96877b42cec [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_transport.c
3 *
4 * This file contains the Generic Target Engine Core.
5 *
Nicholas Bellingerfd9a11d2012-11-09 14:51:48 -08006 * (c) Copyright 2002-2012 RisingTide Systems LLC.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/net.h>
27#include <linux/delay.h>
28#include <linux/string.h>
29#include <linux/timer.h>
30#include <linux/slab.h>
31#include <linux/blkdev.h>
32#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080033#include <linux/kthread.h>
34#include <linux/in.h>
35#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040036#include <linux/module.h>
Roland Dreier015487b2012-02-13 16:18:17 -080037#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <asm/unaligned.h>
39#include <net/sock.h>
40#include <net/tcp.h>
41#include <scsi/scsi.h>
42#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070043#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080044
45#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050046#include <target/target_core_backend.h>
47#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include <target/target_core_configfs.h>
49
Christoph Hellwige26d99a2011-11-14 12:30:30 -050050#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080053#include "target_core_ua.h"
54
Roland Dreiere5c0d6a2013-06-26 17:36:17 -070055#define CREATE_TRACE_POINTS
56#include <trace/events/target.h>
57
Christoph Hellwig35e0e752011-10-17 13:56:53 -040058static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061struct kmem_cache *t10_pr_reg_cache;
62struct kmem_cache *t10_alua_lu_gp_cache;
63struct kmem_cache *t10_alua_lu_gp_mem_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_cache;
65struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
66
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070068static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040069 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000070static int transport_generic_get_mem(struct se_cmd *cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -070071static int transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040072static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073
Andy Grovere3d6f902011-07-19 08:55:10 +000074int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080076 se_sess_cache = kmem_cache_create("se_sess_cache",
77 sizeof(struct se_session), __alignof__(struct se_session),
78 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070079 if (!se_sess_cache) {
80 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080082 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083 }
84 se_ua_cache = kmem_cache_create("se_ua_cache",
85 sizeof(struct se_ua), __alignof__(struct se_ua),
86 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070087 if (!se_ua_cache) {
88 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040089 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080091 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
92 sizeof(struct t10_pr_registration),
93 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070094 if (!t10_pr_reg_cache) {
95 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040097 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098 }
99 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
100 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
101 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700102 if (!t10_alua_lu_gp_cache) {
103 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800104 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400105 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 }
107 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
108 sizeof(struct t10_alua_lu_gp_member),
109 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700110 if (!t10_alua_lu_gp_mem_cache) {
111 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400113 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800114 }
115 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
116 sizeof(struct t10_alua_tg_pt_gp),
117 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700118 if (!t10_alua_tg_pt_gp_cache) {
119 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400121 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800122 }
123 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
124 "t10_alua_tg_pt_gp_mem_cache",
125 sizeof(struct t10_alua_tg_pt_gp_member),
126 __alignof__(struct t10_alua_tg_pt_gp_member),
127 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700128 if (!t10_alua_tg_pt_gp_mem_cache) {
129 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400131 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800132 }
133
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400134 target_completion_wq = alloc_workqueue("target_completion",
135 WQ_MEM_RECLAIM, 0);
136 if (!target_completion_wq)
137 goto out_free_tg_pt_gp_mem_cache;
138
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800139 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400140
141out_free_tg_pt_gp_mem_cache:
142 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
143out_free_tg_pt_gp_cache:
144 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
145out_free_lu_gp_mem_cache:
146 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
147out_free_lu_gp_cache:
148 kmem_cache_destroy(t10_alua_lu_gp_cache);
149out_free_pr_reg_cache:
150 kmem_cache_destroy(t10_pr_reg_cache);
151out_free_ua_cache:
152 kmem_cache_destroy(se_ua_cache);
153out_free_sess_cache:
154 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800155out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000156 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157}
158
Andy Grovere3d6f902011-07-19 08:55:10 +0000159void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800160{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400161 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 kmem_cache_destroy(se_sess_cache);
163 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 kmem_cache_destroy(t10_pr_reg_cache);
165 kmem_cache_destroy(t10_alua_lu_gp_cache);
166 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
167 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
168 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169}
170
Andy Grovere3d6f902011-07-19 08:55:10 +0000171/* This code ensures unique mib indexes are handed out. */
172static DEFINE_SPINLOCK(scsi_mib_index_lock);
173static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800174
175/*
176 * Allocate a new row index for the entry type specified
177 */
178u32 scsi_get_new_index(scsi_index_t type)
179{
180 u32 new_index;
181
Andy Grovere3d6f902011-07-19 08:55:10 +0000182 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800183
Andy Grovere3d6f902011-07-19 08:55:10 +0000184 spin_lock(&scsi_mib_index_lock);
185 new_index = ++scsi_mib_index[type];
186 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800187
188 return new_index;
189}
190
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700191void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800192{
193 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700194 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800195
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700196 if (sub_api_initialized)
197 return;
198
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800199 ret = request_module("target_core_iblock");
200 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700201 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800202
203 ret = request_module("target_core_file");
204 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700205 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800206
207 ret = request_module("target_core_pscsi");
208 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700209 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210
Andy Grovere3d6f902011-07-19 08:55:10 +0000211 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212}
213
214struct se_session *transport_init_session(void)
215{
216 struct se_session *se_sess;
217
218 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700219 if (!se_sess) {
220 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800221 " se_sess_cache\n");
222 return ERR_PTR(-ENOMEM);
223 }
224 INIT_LIST_HEAD(&se_sess->sess_list);
225 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700226 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -0700227 INIT_LIST_HEAD(&se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700228 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800229 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230
231 return se_sess;
232}
233EXPORT_SYMBOL(transport_init_session);
234
235/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700236 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800237 */
238void __transport_register_session(
239 struct se_portal_group *se_tpg,
240 struct se_node_acl *se_nacl,
241 struct se_session *se_sess,
242 void *fabric_sess_ptr)
243{
244 unsigned char buf[PR_REG_ISID_LEN];
245
246 se_sess->se_tpg = se_tpg;
247 se_sess->fabric_sess_ptr = fabric_sess_ptr;
248 /*
249 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
250 *
251 * Only set for struct se_session's that will actually be moving I/O.
252 * eg: *NOT* discovery sessions.
253 */
254 if (se_nacl) {
255 /*
256 * If the fabric module supports an ISID based TransportID,
257 * save this value in binary from the fabric I_T Nexus now.
258 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000259 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800260 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000261 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800262 &buf[0], PR_REG_ISID_LEN);
263 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
264 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800265 kref_get(&se_nacl->acl_kref);
266
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800267 spin_lock_irq(&se_nacl->nacl_sess_lock);
268 /*
269 * The se_nacl->nacl_sess pointer will be set to the
270 * last active I_T Nexus for each struct se_node_acl.
271 */
272 se_nacl->nacl_sess = se_sess;
273
274 list_add_tail(&se_sess->sess_acl_list,
275 &se_nacl->acl_sess_list);
276 spin_unlock_irq(&se_nacl->nacl_sess_lock);
277 }
278 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
279
Andy Grover6708bb22011-06-08 10:36:43 -0700280 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000281 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800282}
283EXPORT_SYMBOL(__transport_register_session);
284
285void transport_register_session(
286 struct se_portal_group *se_tpg,
287 struct se_node_acl *se_nacl,
288 struct se_session *se_sess,
289 void *fabric_sess_ptr)
290{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700291 unsigned long flags;
292
293 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800294 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700295 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800296}
297EXPORT_SYMBOL(transport_register_session);
298
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800299static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800300{
301 struct se_session *se_sess = container_of(kref,
302 struct se_session, sess_kref);
303 struct se_portal_group *se_tpg = se_sess->se_tpg;
304
305 se_tpg->se_tpg_tfo->close_session(se_sess);
306}
307
308void target_get_session(struct se_session *se_sess)
309{
310 kref_get(&se_sess->sess_kref);
311}
312EXPORT_SYMBOL(target_get_session);
313
Jörn Engel33933a02012-05-11 10:35:08 -0400314void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800315{
Joern Engel41492682012-05-18 13:57:19 -0700316 struct se_portal_group *tpg = se_sess->se_tpg;
317
318 if (tpg->se_tpg_tfo->put_session != NULL) {
319 tpg->se_tpg_tfo->put_session(se_sess);
320 return;
321 }
Jörn Engel33933a02012-05-11 10:35:08 -0400322 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800323}
324EXPORT_SYMBOL(target_put_session);
325
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800326static void target_complete_nacl(struct kref *kref)
327{
328 struct se_node_acl *nacl = container_of(kref,
329 struct se_node_acl, acl_kref);
330
331 complete(&nacl->acl_free_comp);
332}
333
334void target_put_nacl(struct se_node_acl *nacl)
335{
336 kref_put(&nacl->acl_kref, target_complete_nacl);
337}
338
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339void transport_deregister_session_configfs(struct se_session *se_sess)
340{
341 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700342 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800343 /*
344 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
345 */
346 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700347 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700348 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800349 if (se_nacl->acl_stop == 0)
350 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800351 /*
352 * If the session list is empty, then clear the pointer.
353 * Otherwise, set the struct se_session pointer from the tail
354 * element of the per struct se_node_acl active session list.
355 */
356 if (list_empty(&se_nacl->acl_sess_list))
357 se_nacl->nacl_sess = NULL;
358 else {
359 se_nacl->nacl_sess = container_of(
360 se_nacl->acl_sess_list.prev,
361 struct se_session, sess_acl_list);
362 }
Roland Dreier23388862011-06-22 01:02:21 -0700363 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800364 }
365}
366EXPORT_SYMBOL(transport_deregister_session_configfs);
367
368void transport_free_session(struct se_session *se_sess)
369{
370 kmem_cache_free(se_sess_cache, se_sess);
371}
372EXPORT_SYMBOL(transport_free_session);
373
374void transport_deregister_session(struct se_session *se_sess)
375{
376 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800377 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800378 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700379 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800380 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800381
Andy Grover6708bb22011-06-08 10:36:43 -0700382 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383 transport_free_session(se_sess);
384 return;
385 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800386 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800387
Roland Dreiere63a8e12011-08-12 16:01:02 -0700388 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389 list_del(&se_sess->sess_list);
390 se_sess->se_tpg = NULL;
391 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700392 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800393
394 /*
395 * Determine if we need to do extra work for this initiator node's
396 * struct se_node_acl if it had been previously dynamically generated.
397 */
398 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800399
Nicholas Bellinger01468342012-03-10 14:32:52 -0800400 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
401 if (se_nacl && se_nacl->dynamic_node_acl) {
402 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
403 list_del(&se_nacl->acl_list);
404 se_tpg->num_node_acls--;
405 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
406 core_tpg_wait_for_nacl_pr_ref(se_nacl);
407 core_free_device_list_for_node(se_nacl, se_tpg);
408 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
409
410 comp_nacl = false;
411 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800412 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800413 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800414 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800415
Andy Grover6708bb22011-06-08 10:36:43 -0700416 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000417 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800418 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800419 * If last kref is dropping now for an explict NodeACL, awake sleeping
420 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
421 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800422 */
423 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800424 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800425
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800426 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800427}
428EXPORT_SYMBOL(transport_deregister_session);
429
430/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700431 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800432 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400433static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800434{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400435 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800436 unsigned long flags;
437
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400438 if (!dev)
439 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400441 if (cmd->transport_state & CMD_T_BUSY)
442 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800443
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400444 spin_lock_irqsave(&dev->execute_task_lock, flags);
445 if (cmd->state_active) {
446 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400447 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800448 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400449 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450}
451
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700452static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
453 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454{
455 unsigned long flags;
456
Andy Grovera1d8b492011-05-02 17:12:10 -0700457 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700458 if (write_pending)
459 cmd->t_state = TRANSPORT_WRITE_PENDING;
460
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800461 /*
462 * Determine if IOCTL context caller in requesting the stopping of this
463 * command for LUN shutdown purposes.
464 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500465 if (cmd->transport_state & CMD_T_LUN_STOP) {
466 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
467 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800468
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500469 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400470 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400471 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700472 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800473
Andy Grovera1d8b492011-05-02 17:12:10 -0700474 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800475 return 1;
476 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400477
478 if (remove_from_lists) {
479 target_remove_from_state_list(cmd);
480
481 /*
482 * Clear struct se_cmd->se_lun before the handoff to FE.
483 */
484 cmd->se_lun = NULL;
485 }
486
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487 /*
488 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000489 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500491 if (cmd->transport_state & CMD_T_STOP) {
492 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
493 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000494 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800495
Andy Grovera1d8b492011-05-02 17:12:10 -0700496 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497
Andy Grovera1d8b492011-05-02 17:12:10 -0700498 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800499 return 1;
500 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800501
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400502 cmd->transport_state &= ~CMD_T_ACTIVE;
503 if (remove_from_lists) {
504 /*
505 * Some fabric modules like tcm_loop can release
506 * their internally allocated I/O reference now and
507 * struct se_cmd now.
508 *
509 * Fabric modules are expected to return '1' here if the
510 * se_cmd being passed is released at this point,
511 * or zero if not being released.
512 */
513 if (cmd->se_tfo->check_stop_free != NULL) {
514 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
515 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800516 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400517 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518
Andy Grovera1d8b492011-05-02 17:12:10 -0700519 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800520 return 0;
521}
522
523static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
524{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700525 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800526}
527
528static void transport_lun_remove_cmd(struct se_cmd *cmd)
529{
Andy Grovere3d6f902011-07-19 08:55:10 +0000530 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800531 unsigned long flags;
532
533 if (!lun)
534 return;
535
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800536 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500537 if (!list_empty(&cmd->se_lun_node))
538 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800539 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
540}
541
542void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
543{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800544 if (transport_cmd_check_stop_to_fabric(cmd))
545 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400546 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200547 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800548}
549
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400550static void target_complete_failure_work(struct work_struct *work)
551{
552 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
553
Christoph Hellwigde103c92012-11-06 12:24:09 -0800554 transport_generic_request_failure(cmd,
555 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400556}
557
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200558/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200559 * Used when asking transport to copy Sense Data from the underlying
560 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200561 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200562static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200563{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200564 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200565
566 WARN_ON(!cmd->se_lun);
567
568 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200569 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200570
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200571 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
572 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200573
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700574 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200575
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200576 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200577 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700578 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200579}
580
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400581void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800582{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400583 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400584 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800586
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400587 cmd->scsi_status = scsi_status;
588
589
Andy Grovera1d8b492011-05-02 17:12:10 -0700590 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400591 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800593 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200594 dev->transport->transport_complete(cmd,
595 cmd->t_data_sg,
596 transport_get_sense_buffer(cmd));
597 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 }
600
601 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400602 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800603 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400604 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700605 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400606 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800607 return;
608 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700609
610 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500611 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700612
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800613 /*
614 * Check for case where an explict ABORT_TASK has been received
615 * and transport_wait_for_tasks() will be waiting for completion..
616 */
617 if (cmd->transport_state & CMD_T_ABORTED &&
618 cmd->transport_state & CMD_T_STOP) {
619 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
620 complete(&cmd->t_transport_stop_comp);
621 return;
622 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400623 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800624 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400625 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800626 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400627
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400628 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800629 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700630 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800631
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400632 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400634EXPORT_SYMBOL(target_complete_cmd);
635
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400636static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800637{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400638 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800639 unsigned long flags;
640
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800641 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400642 if (!cmd->state_active) {
643 list_add_tail(&cmd->state_list, &dev->state_list);
644 cmd->state_active = true;
645 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800647}
648
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700649/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700650 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700651 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400652static void transport_write_pending_qf(struct se_cmd *cmd);
653static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700654
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400655void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700656{
657 struct se_device *dev = container_of(work, struct se_device,
658 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700659 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700660 struct se_cmd *cmd, *cmd_tmp;
661
662 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700663 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
664 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700665
Roland Dreierbcac3642011-08-27 21:33:16 -0700666 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700667 list_del(&cmd->se_qf_node);
668 atomic_dec(&dev->dev_qf_count);
669 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700670
Andy Grover6708bb22011-06-08 10:36:43 -0700671 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700672 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400673 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700674 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
675 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400676
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400677 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
678 transport_write_pending_qf(cmd);
679 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
680 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700681 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700682}
683
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800684unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
685{
686 switch (cmd->data_direction) {
687 case DMA_NONE:
688 return "NONE";
689 case DMA_FROM_DEVICE:
690 return "READ";
691 case DMA_TO_DEVICE:
692 return "WRITE";
693 case DMA_BIDIRECTIONAL:
694 return "BIDI";
695 default:
696 break;
697 }
698
699 return "UNKNOWN";
700}
701
702void transport_dump_dev_state(
703 struct se_device *dev,
704 char *b,
705 int *bl)
706{
707 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400708 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800709 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400710 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800711 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800712
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400713 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700714 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400715 dev->dev_attrib.block_size,
716 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800717 *bl += sprintf(b + *bl, " ");
718}
719
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800720void transport_dump_vpd_proto_id(
721 struct t10_vpd *vpd,
722 unsigned char *p_buf,
723 int p_buf_len)
724{
725 unsigned char buf[VPD_TMP_BUF_SIZE];
726 int len;
727
728 memset(buf, 0, VPD_TMP_BUF_SIZE);
729 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
730
731 switch (vpd->protocol_identifier) {
732 case 0x00:
733 sprintf(buf+len, "Fibre Channel\n");
734 break;
735 case 0x10:
736 sprintf(buf+len, "Parallel SCSI\n");
737 break;
738 case 0x20:
739 sprintf(buf+len, "SSA\n");
740 break;
741 case 0x30:
742 sprintf(buf+len, "IEEE 1394\n");
743 break;
744 case 0x40:
745 sprintf(buf+len, "SCSI Remote Direct Memory Access"
746 " Protocol\n");
747 break;
748 case 0x50:
749 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
750 break;
751 case 0x60:
752 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
753 break;
754 case 0x70:
755 sprintf(buf+len, "Automation/Drive Interface Transport"
756 " Protocol\n");
757 break;
758 case 0x80:
759 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
760 break;
761 default:
762 sprintf(buf+len, "Unknown 0x%02x\n",
763 vpd->protocol_identifier);
764 break;
765 }
766
767 if (p_buf)
768 strncpy(p_buf, buf, p_buf_len);
769 else
Andy Grover6708bb22011-06-08 10:36:43 -0700770 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800771}
772
773void
774transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
775{
776 /*
777 * Check if the Protocol Identifier Valid (PIV) bit is set..
778 *
779 * from spc3r23.pdf section 7.5.1
780 */
781 if (page_83[1] & 0x80) {
782 vpd->protocol_identifier = (page_83[0] & 0xf0);
783 vpd->protocol_identifier_set = 1;
784 transport_dump_vpd_proto_id(vpd, NULL, 0);
785 }
786}
787EXPORT_SYMBOL(transport_set_vpd_proto_id);
788
789int transport_dump_vpd_assoc(
790 struct t10_vpd *vpd,
791 unsigned char *p_buf,
792 int p_buf_len)
793{
794 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000795 int ret = 0;
796 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800797
798 memset(buf, 0, VPD_TMP_BUF_SIZE);
799 len = sprintf(buf, "T10 VPD Identifier Association: ");
800
801 switch (vpd->association) {
802 case 0x00:
803 sprintf(buf+len, "addressed logical unit\n");
804 break;
805 case 0x10:
806 sprintf(buf+len, "target port\n");
807 break;
808 case 0x20:
809 sprintf(buf+len, "SCSI target device\n");
810 break;
811 default:
812 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000813 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800814 break;
815 }
816
817 if (p_buf)
818 strncpy(p_buf, buf, p_buf_len);
819 else
Andy Grover6708bb22011-06-08 10:36:43 -0700820 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800821
822 return ret;
823}
824
825int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
826{
827 /*
828 * The VPD identification association..
829 *
830 * from spc3r23.pdf Section 7.6.3.1 Table 297
831 */
832 vpd->association = (page_83[1] & 0x30);
833 return transport_dump_vpd_assoc(vpd, NULL, 0);
834}
835EXPORT_SYMBOL(transport_set_vpd_assoc);
836
837int transport_dump_vpd_ident_type(
838 struct t10_vpd *vpd,
839 unsigned char *p_buf,
840 int p_buf_len)
841{
842 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000843 int ret = 0;
844 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800845
846 memset(buf, 0, VPD_TMP_BUF_SIZE);
847 len = sprintf(buf, "T10 VPD Identifier Type: ");
848
849 switch (vpd->device_identifier_type) {
850 case 0x00:
851 sprintf(buf+len, "Vendor specific\n");
852 break;
853 case 0x01:
854 sprintf(buf+len, "T10 Vendor ID based\n");
855 break;
856 case 0x02:
857 sprintf(buf+len, "EUI-64 based\n");
858 break;
859 case 0x03:
860 sprintf(buf+len, "NAA\n");
861 break;
862 case 0x04:
863 sprintf(buf+len, "Relative target port identifier\n");
864 break;
865 case 0x08:
866 sprintf(buf+len, "SCSI name string\n");
867 break;
868 default:
869 sprintf(buf+len, "Unsupported: 0x%02x\n",
870 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000871 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800872 break;
873 }
874
Andy Grovere3d6f902011-07-19 08:55:10 +0000875 if (p_buf) {
876 if (p_buf_len < strlen(buf)+1)
877 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800878 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000879 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700880 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000881 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800882
883 return ret;
884}
885
886int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
887{
888 /*
889 * The VPD identifier type..
890 *
891 * from spc3r23.pdf Section 7.6.3.1 Table 298
892 */
893 vpd->device_identifier_type = (page_83[1] & 0x0f);
894 return transport_dump_vpd_ident_type(vpd, NULL, 0);
895}
896EXPORT_SYMBOL(transport_set_vpd_ident_type);
897
898int transport_dump_vpd_ident(
899 struct t10_vpd *vpd,
900 unsigned char *p_buf,
901 int p_buf_len)
902{
903 unsigned char buf[VPD_TMP_BUF_SIZE];
904 int ret = 0;
905
906 memset(buf, 0, VPD_TMP_BUF_SIZE);
907
908 switch (vpd->device_identifier_code_set) {
909 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300910 snprintf(buf, sizeof(buf),
911 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800912 &vpd->device_identifier[0]);
913 break;
914 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300915 snprintf(buf, sizeof(buf),
916 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800917 &vpd->device_identifier[0]);
918 break;
919 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300920 snprintf(buf, sizeof(buf),
921 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800922 &vpd->device_identifier[0]);
923 break;
924 default:
925 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
926 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000927 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800928 break;
929 }
930
931 if (p_buf)
932 strncpy(p_buf, buf, p_buf_len);
933 else
Andy Grover6708bb22011-06-08 10:36:43 -0700934 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800935
936 return ret;
937}
938
939int
940transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
941{
942 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900943 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800944
945 /*
946 * The VPD Code Set (encoding)
947 *
948 * from spc3r23.pdf Section 7.6.3.1 Table 296
949 */
950 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
951 switch (vpd->device_identifier_code_set) {
952 case 0x01: /* Binary */
953 vpd->device_identifier[j++] =
954 hex_str[vpd->device_identifier_type];
955 while (i < (4 + page_83[3])) {
956 vpd->device_identifier[j++] =
957 hex_str[(page_83[i] & 0xf0) >> 4];
958 vpd->device_identifier[j++] =
959 hex_str[page_83[i] & 0x0f];
960 i++;
961 }
962 break;
963 case 0x02: /* ASCII */
964 case 0x03: /* UTF-8 */
965 while (i < (4 + page_83[3]))
966 vpd->device_identifier[j++] = page_83[i++];
967 break;
968 default:
969 break;
970 }
971
972 return transport_dump_vpd_ident(vpd, NULL, 0);
973}
974EXPORT_SYMBOL(transport_set_vpd_ident);
975
Christoph Hellwigde103c92012-11-06 12:24:09 -0800976sense_reason_t
977target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400978{
979 struct se_device *dev = cmd->se_dev;
980
981 if (cmd->unknown_data_length) {
982 cmd->data_length = size;
983 } else if (size != cmd->data_length) {
984 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
985 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
986 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
987 cmd->data_length, size, cmd->t_task_cdb[0]);
988
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400989 if (cmd->data_direction == DMA_TO_DEVICE) {
990 pr_err("Rejecting underflow/overflow"
991 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -0800992 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400993 }
994 /*
995 * Reject READ_* or WRITE_* with overflow/underflow for
996 * type SCF_SCSI_DATA_CDB.
997 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400998 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400999 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1000 " CDB on non 512-byte sector setup subsystem"
1001 " plugin: %s\n", dev->transport->name);
1002 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001003 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001004 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001005 /*
1006 * For the overflow case keep the existing fabric provided
1007 * ->data_length. Otherwise for the underflow case, reset
1008 * ->data_length to the smaller SCSI expected data transfer
1009 * length.
1010 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001011 if (size > cmd->data_length) {
1012 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1013 cmd->residual_count = (size - cmd->data_length);
1014 } else {
1015 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1016 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001017 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001018 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001019 }
1020
1021 return 0;
1022
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001023}
1024
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001025/*
1026 * Used by fabric modules containing a local struct se_cmd within their
1027 * fabric dependent per I/O descriptor.
1028 */
1029void transport_init_se_cmd(
1030 struct se_cmd *cmd,
1031 struct target_core_fabric_ops *tfo,
1032 struct se_session *se_sess,
1033 u32 data_length,
1034 int data_direction,
1035 int task_attr,
1036 unsigned char *sense_buffer)
1037{
Andy Grover5951146d2011-07-19 10:26:37 +00001038 INIT_LIST_HEAD(&cmd->se_lun_node);
1039 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001040 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001041 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001042 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001043 init_completion(&cmd->transport_lun_fe_stop_comp);
1044 init_completion(&cmd->transport_lun_stop_comp);
1045 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001046 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001047 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001048 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001049 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001050
1051 cmd->se_tfo = tfo;
1052 cmd->se_sess = se_sess;
1053 cmd->data_length = data_length;
1054 cmd->data_direction = data_direction;
1055 cmd->sam_task_attr = task_attr;
1056 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001057
1058 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001059}
1060EXPORT_SYMBOL(transport_init_se_cmd);
1061
Christoph Hellwigde103c92012-11-06 12:24:09 -08001062static sense_reason_t
1063transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001064{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001065 struct se_device *dev = cmd->se_dev;
1066
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001067 /*
1068 * Check if SAM Task Attribute emulation is enabled for this
1069 * struct se_device storage object
1070 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001071 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001072 return 0;
1073
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001074 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001075 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001076 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001077 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001078 }
1079 /*
1080 * Used to determine when ORDERED commands should go from
1081 * Dormant to Active status.
1082 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001083 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001084 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001085 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001086 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001087 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001088 return 0;
1089}
1090
Christoph Hellwigde103c92012-11-06 12:24:09 -08001091sense_reason_t
1092target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001093{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001094 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001095 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001096
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001097 /*
1098 * Ensure that the received CDB is less than the max (252 + 8) bytes
1099 * for VARIABLE_LENGTH_CMD
1100 */
1101 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001102 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001103 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1104 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001105 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001106 }
1107 /*
1108 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1109 * allocate the additional extended CDB buffer now.. Otherwise
1110 * setup the pointer from __t_task_cdb to t_task_cdb.
1111 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001112 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1113 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001114 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001115 if (!cmd->t_task_cdb) {
1116 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001117 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001118 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001119 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001120 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001121 }
1122 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001123 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001124 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001125 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001126 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001127 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001128
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001129 trace_target_sequencer_start(cmd);
1130
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001131 /*
1132 * Check for an existing UNIT ATTENTION condition
1133 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001134 ret = target_scsi3_ua_check(cmd);
1135 if (ret)
1136 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001137
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001138 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001139 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001140 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001141
Christoph Hellwigde103c92012-11-06 12:24:09 -08001142 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001143 if (ret) {
1144 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001145 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001146 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001147
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001148 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001149 if (ret)
1150 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001151
Christoph Hellwigde103c92012-11-06 12:24:09 -08001152 ret = transport_check_alloc_task_attr(cmd);
1153 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001155
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001156 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001157
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001158 spin_lock(&cmd->se_lun->lun_sep_lock);
1159 if (cmd->se_lun->lun_sep)
1160 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1161 spin_unlock(&cmd->se_lun->lun_sep_lock);
1162 return 0;
1163}
Andy Grovera12f41f2012-04-03 15:51:20 -07001164EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001165
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001166/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001167 * Used by fabric module frontends to queue tasks directly.
1168 * Many only be used from process context only
1169 */
1170int transport_handle_cdb_direct(
1171 struct se_cmd *cmd)
1172{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001173 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001174
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001175 if (!cmd->se_lun) {
1176 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001177 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001178 return -EINVAL;
1179 }
1180 if (in_interrupt()) {
1181 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001182 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001183 " from interrupt context\n");
1184 return -EINVAL;
1185 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001186 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001187 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1188 * outstanding descriptors are handled correctly during shutdown via
1189 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001190 *
1191 * Also, we don't take cmd->t_state_lock here as we only expect
1192 * this to be called for initial descriptor submission.
1193 */
1194 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001195 cmd->transport_state |= CMD_T_ACTIVE;
1196
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001197 /*
1198 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1199 * so follow TRANSPORT_NEW_CMD processing thread context usage
1200 * and call transport_generic_request_failure() if necessary..
1201 */
1202 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001203 if (ret)
1204 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001205 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001206}
1207EXPORT_SYMBOL(transport_handle_cdb_direct);
1208
Christoph Hellwigde103c92012-11-06 12:24:09 -08001209static sense_reason_t
1210transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1211 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1212{
1213 if (!sgl || !sgl_count)
1214 return 0;
1215
1216 /*
1217 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1218 * scatterlists already have been set to follow what the fabric
1219 * passes for the original expected data transfer length.
1220 */
1221 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1222 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1223 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1224 return TCM_INVALID_CDB_FIELD;
1225 }
1226
1227 cmd->t_data_sg = sgl;
1228 cmd->t_data_nents = sgl_count;
1229
1230 if (sgl_bidi && sgl_bidi_count) {
1231 cmd->t_bidi_data_sg = sgl_bidi;
1232 cmd->t_bidi_data_nents = sgl_bidi_count;
1233 }
1234 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1235 return 0;
1236}
1237
Nicholas Bellingera0267572012-10-01 17:23:22 -07001238/*
1239 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1240 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001241 *
1242 * @se_cmd: command descriptor to submit
1243 * @se_sess: associated se_sess for endpoint
1244 * @cdb: pointer to SCSI CDB
1245 * @sense: pointer to SCSI sense buffer
1246 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1247 * @data_length: fabric expected data transfer length
1248 * @task_addr: SAM task attribute
1249 * @data_dir: DMA data direction
1250 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001251 * @sgl: struct scatterlist memory for unidirectional mapping
1252 * @sgl_count: scatterlist count for unidirectional mapping
1253 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1254 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001255 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001256 * Returns non zero to signal active I/O shutdown failure. All other
1257 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1258 * but still return zero here.
1259 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001260 * This may only be called from process context, and also currently
1261 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001262 */
1263int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001264 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001265 u32 data_length, int task_attr, int data_dir, int flags,
1266 struct scatterlist *sgl, u32 sgl_count,
1267 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001268{
1269 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001270 sense_reason_t rc;
1271 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001272
1273 se_tpg = se_sess->se_tpg;
1274 BUG_ON(!se_tpg);
1275 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1276 BUG_ON(in_interrupt());
1277 /*
1278 * Initialize se_cmd for target operation. From this point
1279 * exceptions are handled by sending exception status via
1280 * target_core_fabric_ops->queue_status() callback
1281 */
1282 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1283 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001284 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1285 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001286 /*
1287 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1288 * se_sess->sess_cmd_list. A second kref_get here is necessary
1289 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1290 * kref_put() to happen during fabric packet acknowledgement.
1291 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001292 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1293 if (ret)
1294 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001295 /*
1296 * Signal bidirectional data payloads to target-core
1297 */
1298 if (flags & TARGET_SCF_BIDI_OP)
1299 se_cmd->se_cmd_flags |= SCF_BIDI;
1300 /*
1301 * Locate se_lun pointer and attach it to struct se_cmd
1302 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001303 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1304 if (rc) {
1305 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001306 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001307 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001308 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001309
Andy Grovera12f41f2012-04-03 15:51:20 -07001310 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001311 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001312 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001313 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001314 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001315 /*
1316 * When a non zero sgl_count has been passed perform SGL passthrough
1317 * mapping for pre-allocated fabric memory instead of having target
1318 * core perform an internal SGL allocation..
1319 */
1320 if (sgl_count != 0) {
1321 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001322
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001323 /*
1324 * A work-around for tcm_loop as some userspace code via
1325 * scsi-generic do not memset their associated read buffers,
1326 * so go ahead and do that here for type non-data CDBs. Also
1327 * note that this is currently guaranteed to be a single SGL
1328 * for this case by target core in target_setup_cmd_from_cdb()
1329 * -> transport_generic_cmd_sequencer().
1330 */
1331 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1332 se_cmd->data_direction == DMA_FROM_DEVICE) {
1333 unsigned char *buf = NULL;
1334
1335 if (sgl)
1336 buf = kmap(sg_page(sgl)) + sgl->offset;
1337
1338 if (buf) {
1339 memset(buf, 0, sgl->length);
1340 kunmap(sg_page(sgl));
1341 }
1342 }
1343
Nicholas Bellingera0267572012-10-01 17:23:22 -07001344 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1345 sgl_bidi, sgl_bidi_count);
1346 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001347 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001348 return 0;
1349 }
1350 }
Andy Grover11e319e2012-04-03 15:51:28 -07001351 /*
1352 * Check if we need to delay processing because of ALUA
1353 * Active/NonOptimized primary access state..
1354 */
1355 core_alua_check_nonop_delay(se_cmd);
1356
Nicholas Bellingera6360782011-11-18 20:36:22 -08001357 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001358 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001359}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001360EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1361
1362/*
1363 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1364 *
1365 * @se_cmd: command descriptor to submit
1366 * @se_sess: associated se_sess for endpoint
1367 * @cdb: pointer to SCSI CDB
1368 * @sense: pointer to SCSI sense buffer
1369 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1370 * @data_length: fabric expected data transfer length
1371 * @task_addr: SAM task attribute
1372 * @data_dir: DMA data direction
1373 * @flags: flags for command submission from target_sc_flags_tables
1374 *
1375 * Returns non zero to signal active I/O shutdown failure. All other
1376 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1377 * but still return zero here.
1378 *
1379 * This may only be called from process context, and also currently
1380 * assumes internal allocation of fabric payload buffer by target-core.
1381 *
1382 * It also assumes interal target core SGL memory allocation.
1383 */
1384int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1385 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1386 u32 data_length, int task_attr, int data_dir, int flags)
1387{
1388 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1389 unpacked_lun, data_length, task_attr, data_dir,
1390 flags, NULL, 0, NULL, 0);
1391}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001392EXPORT_SYMBOL(target_submit_cmd);
1393
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001394static void target_complete_tmr_failure(struct work_struct *work)
1395{
1396 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1397
1398 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1399 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001400
1401 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001402}
1403
Andy Groverea98d7f2012-01-19 13:39:21 -08001404/**
1405 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1406 * for TMR CDBs
1407 *
1408 * @se_cmd: command descriptor to submit
1409 * @se_sess: associated se_sess for endpoint
1410 * @sense: pointer to SCSI sense buffer
1411 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1412 * @fabric_context: fabric context for TMR req
1413 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001414 * @gfp: gfp type for caller
1415 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001416 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001417 *
1418 * Callable from all contexts.
1419 **/
1420
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001421int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001422 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001423 void *fabric_tmr_ptr, unsigned char tm_type,
1424 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001425{
1426 struct se_portal_group *se_tpg;
1427 int ret;
1428
1429 se_tpg = se_sess->se_tpg;
1430 BUG_ON(!se_tpg);
1431
1432 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1433 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001434 /*
1435 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1436 * allocation failure.
1437 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001438 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001439 if (ret < 0)
1440 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001441
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001442 if (tm_type == TMR_ABORT_TASK)
1443 se_cmd->se_tmr_req->ref_task_tag = tag;
1444
Andy Groverea98d7f2012-01-19 13:39:21 -08001445 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001446 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1447 if (ret) {
1448 core_tmr_release_req(se_cmd->se_tmr_req);
1449 return ret;
1450 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001451
Andy Groverea98d7f2012-01-19 13:39:21 -08001452 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1453 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001454 /*
1455 * For callback during failure handling, push this work off
1456 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1457 */
1458 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1459 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001460 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001461 }
1462 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001463 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001464}
1465EXPORT_SYMBOL(target_submit_tmr);
1466
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001467/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001468 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001469 * has completed.
1470 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001471bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001472{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001473 bool was_active = false;
1474
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001475 if (cmd->transport_state & CMD_T_BUSY) {
1476 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001477 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1478
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001479 pr_debug("cmd %p waiting to complete\n", cmd);
1480 wait_for_completion(&cmd->task_stop_comp);
1481 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001482
1483 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001484 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1485 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001486 was_active = true;
1487 }
1488
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001489 return was_active;
1490}
1491
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001492/*
1493 * Handle SAM-esque emulation for generic transport request failures.
1494 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001495void transport_generic_request_failure(struct se_cmd *cmd,
1496 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001497{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001498 int ret = 0;
1499
Andy Grover6708bb22011-06-08 10:36:43 -07001500 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001501 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001502 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001503 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001504 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001505 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001506 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001507 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1508 (cmd->transport_state & CMD_T_STOP) != 0,
1509 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001510
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001511 /*
1512 * For SAM Task Attribute emulation for failed struct se_cmd
1513 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001514 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001515
Christoph Hellwigde103c92012-11-06 12:24:09 -08001516 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001517 case TCM_NON_EXISTENT_LUN:
1518 case TCM_UNSUPPORTED_SCSI_OPCODE:
1519 case TCM_INVALID_CDB_FIELD:
1520 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001521 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001522 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1523 case TCM_UNKNOWN_MODE_PAGE:
1524 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001525 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001526 case TCM_CHECK_CONDITION_ABORT_CMD:
1527 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1528 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001529 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001530 case TCM_OUT_OF_RESOURCES:
1531 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1532 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001533 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001534 /*
1535 * No SENSE Data payload for this case, set SCSI Status
1536 * and queue the response to $FABRIC_MOD.
1537 *
1538 * Uses linux/include/scsi/scsi.h SAM status codes defs
1539 */
1540 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1541 /*
1542 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1543 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1544 * CONFLICT STATUS.
1545 *
1546 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1547 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001548 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001549 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001550 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001551 cmd->orig_fe_lun, 0x2C,
1552 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1553
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001554 trace_target_cmd_complete(cmd);
1555 ret = cmd->se_tfo-> queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001556 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001557 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001558 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001559 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001560 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001561 cmd->t_task_cdb[0], sense_reason);
1562 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001563 break;
1564 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001565
Christoph Hellwigde103c92012-11-06 12:24:09 -08001566 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001567 if (ret == -EAGAIN || ret == -ENOMEM)
1568 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001569
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001570check_stop:
1571 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001572 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001573 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001574 return;
1575
1576queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001577 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1578 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001579}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001580EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001581
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001582static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001583{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001584 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001585
Christoph Hellwigde103c92012-11-06 12:24:09 -08001586 if (cmd->execute_cmd) {
1587 ret = cmd->execute_cmd(cmd);
1588 if (ret) {
1589 spin_lock_irq(&cmd->t_state_lock);
1590 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1591 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001592
Christoph Hellwigde103c92012-11-06 12:24:09 -08001593 transport_generic_request_failure(cmd, ret);
1594 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001595 }
1596}
1597
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001598static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001599{
1600 struct se_device *dev = cmd->se_dev;
1601
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001602 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1603 return false;
1604
1605 /*
1606 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1607 * to allow the passed struct se_cmd list of tasks to the front of the list.
1608 */
1609 switch (cmd->sam_task_attr) {
1610 case MSG_HEAD_TAG:
1611 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1612 "se_ordered_id: %u\n",
1613 cmd->t_task_cdb[0], cmd->se_ordered_id);
1614 return false;
1615 case MSG_ORDERED_TAG:
1616 atomic_inc(&dev->dev_ordered_sync);
1617 smp_mb__after_atomic_inc();
1618
1619 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1620 " se_ordered_id: %u\n",
1621 cmd->t_task_cdb[0], cmd->se_ordered_id);
1622
1623 /*
1624 * Execute an ORDERED command if no other older commands
1625 * exist that need to be completed first.
1626 */
1627 if (!atomic_read(&dev->simple_cmds))
1628 return false;
1629 break;
1630 default:
1631 /*
1632 * For SIMPLE and UNTAGGED Task Attribute commands
1633 */
1634 atomic_inc(&dev->simple_cmds);
1635 smp_mb__after_atomic_inc();
1636 break;
1637 }
1638
1639 if (atomic_read(&dev->dev_ordered_sync) == 0)
1640 return false;
1641
1642 spin_lock(&dev->delayed_cmd_lock);
1643 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1644 spin_unlock(&dev->delayed_cmd_lock);
1645
1646 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1647 " delayed CMD list, se_ordered_id: %u\n",
1648 cmd->t_task_cdb[0], cmd->sam_task_attr,
1649 cmd->se_ordered_id);
1650 return true;
1651}
1652
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001653void target_execute_cmd(struct se_cmd *cmd)
1654{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001655 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001656 * If the received CDB has aleady been aborted stop processing it here.
1657 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001658 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001659 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001660 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001661 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001662
1663 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001664 * Determine if IOCTL context caller in requesting the stopping of this
1665 * command for LUN shutdown purposes.
1666 */
1667 spin_lock_irq(&cmd->t_state_lock);
1668 if (cmd->transport_state & CMD_T_LUN_STOP) {
1669 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1670 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1671
1672 cmd->transport_state &= ~CMD_T_ACTIVE;
1673 spin_unlock_irq(&cmd->t_state_lock);
1674 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001675 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001676 }
1677 /*
1678 * Determine if frontend context caller is requesting the stopping of
1679 * this command for frontend exceptions.
1680 */
1681 if (cmd->transport_state & CMD_T_STOP) {
1682 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1683 __func__, __LINE__,
1684 cmd->se_tfo->get_task_tag(cmd));
1685
1686 spin_unlock_irq(&cmd->t_state_lock);
1687 complete(&cmd->t_transport_stop_comp);
1688 return;
1689 }
1690
1691 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001692 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001693 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001694
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001695 if (target_handle_task_attr(cmd)) {
1696 spin_lock_irq(&cmd->t_state_lock);
1697 cmd->transport_state &= ~CMD_T_BUSY|CMD_T_SENT;
1698 spin_unlock_irq(&cmd->t_state_lock);
1699 return;
1700 }
1701
1702 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001703}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001704EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001705
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001706/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001707 * Process all commands up to the last received ORDERED task attribute which
1708 * requires another blocking boundary
1709 */
1710static void target_restart_delayed_cmds(struct se_device *dev)
1711{
1712 for (;;) {
1713 struct se_cmd *cmd;
1714
1715 spin_lock(&dev->delayed_cmd_lock);
1716 if (list_empty(&dev->delayed_cmd_list)) {
1717 spin_unlock(&dev->delayed_cmd_lock);
1718 break;
1719 }
1720
1721 cmd = list_entry(dev->delayed_cmd_list.next,
1722 struct se_cmd, se_delayed_node);
1723 list_del(&cmd->se_delayed_node);
1724 spin_unlock(&dev->delayed_cmd_lock);
1725
1726 __target_execute_cmd(cmd);
1727
1728 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1729 break;
1730 }
1731}
1732
1733/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001734 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001735 * and ordered cmds need to have their tasks added to the execution queue.
1736 */
1737static void transport_complete_task_attr(struct se_cmd *cmd)
1738{
Andy Grover5951146d2011-07-19 10:26:37 +00001739 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001740
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001741 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1742 return;
1743
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001744 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001745 atomic_dec(&dev->simple_cmds);
1746 smp_mb__after_atomic_dec();
1747 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001748 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1750 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001751 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001753 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1755 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001756 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001757 atomic_dec(&dev->dev_ordered_sync);
1758 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001759
1760 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001761 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001762 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1763 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001764
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001765 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001766}
1767
Christoph Hellwige057f532011-10-17 13:56:41 -04001768static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001769{
1770 int ret = 0;
1771
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001772 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001773
1774 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001775 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001776 ret = cmd->se_tfo->queue_status(cmd);
1777 if (ret)
1778 goto out;
1779 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001780
1781 switch (cmd->data_direction) {
1782 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001783 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001784 ret = cmd->se_tfo->queue_data_in(cmd);
1785 break;
1786 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001787 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001788 ret = cmd->se_tfo->queue_data_in(cmd);
1789 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001790 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001791 }
1792 /* Fall through for DMA_TO_DEVICE */
1793 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001794 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001795 ret = cmd->se_tfo->queue_status(cmd);
1796 break;
1797 default:
1798 break;
1799 }
1800
Christoph Hellwige057f532011-10-17 13:56:41 -04001801out:
1802 if (ret < 0) {
1803 transport_handle_queue_full(cmd, cmd->se_dev);
1804 return;
1805 }
1806 transport_lun_remove_cmd(cmd);
1807 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001808}
1809
1810static void transport_handle_queue_full(
1811 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001812 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001813{
1814 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001815 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1816 atomic_inc(&dev->dev_qf_count);
1817 smp_mb__after_atomic_inc();
1818 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1819
1820 schedule_work(&cmd->se_dev->qf_work_queue);
1821}
1822
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001823static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001824{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001825 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001826 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001827
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001828 /*
1829 * Check if we need to move delayed/dormant tasks from cmds on the
1830 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1831 * Attribute.
1832 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001833 transport_complete_task_attr(cmd);
1834
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001835 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001836 * Check to schedule QUEUE_FULL work, or execute an existing
1837 * cmd->transport_qf_callback()
1838 */
1839 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1840 schedule_work(&cmd->se_dev->qf_work_queue);
1841
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001842 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001843 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001844 * the struct se_cmd in question.
1845 */
1846 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001847 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001848 ret = transport_send_check_condition_and_sense(
1849 cmd, 0, 1);
1850 if (ret == -EAGAIN || ret == -ENOMEM)
1851 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001852
Paolo Bonzini27a27092012-09-05 17:09:14 +02001853 transport_lun_remove_cmd(cmd);
1854 transport_cmd_check_stop_to_fabric(cmd);
1855 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001856 }
1857 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001858 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001859 * XDWRITE_READ_10 emulation.
1860 */
1861 if (cmd->transport_complete_callback)
1862 cmd->transport_complete_callback(cmd);
1863
1864 switch (cmd->data_direction) {
1865 case DMA_FROM_DEVICE:
1866 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001867 if (cmd->se_lun->lun_sep) {
1868 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001869 cmd->data_length;
1870 }
1871 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001872
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001873 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001874 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001875 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001876 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001877 break;
1878 case DMA_TO_DEVICE:
1879 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001880 if (cmd->se_lun->lun_sep) {
1881 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001882 cmd->data_length;
1883 }
1884 spin_unlock(&cmd->se_lun->lun_sep_lock);
1885 /*
1886 * Check if we need to send READ payload for BIDI-COMMAND
1887 */
Andy Groverec98f782011-07-20 19:28:46 +00001888 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001889 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001890 if (cmd->se_lun->lun_sep) {
1891 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001892 cmd->data_length;
1893 }
1894 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001895 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001896 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001897 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001898 break;
1899 }
1900 /* Fall through for DMA_TO_DEVICE */
1901 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001902 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001903 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001904 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001905 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001906 break;
1907 default:
1908 break;
1909 }
1910
1911 transport_lun_remove_cmd(cmd);
1912 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001913 return;
1914
1915queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001916 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001917 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001918 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1919 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001920}
1921
Andy Grover6708bb22011-06-08 10:36:43 -07001922static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001923{
Andy Groverec98f782011-07-20 19:28:46 +00001924 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001925 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001926
Andy Grover6708bb22011-06-08 10:36:43 -07001927 for_each_sg(sgl, sg, nents, count)
1928 __free_page(sg_page(sg));
1929
1930 kfree(sgl);
1931}
1932
1933static inline void transport_free_pages(struct se_cmd *cmd)
1934{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001935 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001936 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001937
Andy Grover6708bb22011-06-08 10:36:43 -07001938 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001939 cmd->t_data_sg = NULL;
1940 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001941
Andy Grover6708bb22011-06-08 10:36:43 -07001942 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001943 cmd->t_bidi_data_sg = NULL;
1944 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001945}
1946
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001947/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001948 * transport_release_cmd - free a command
1949 * @cmd: command to free
1950 *
1951 * This routine unconditionally frees a command, and reference counting
1952 * or list removal must be done in the caller.
1953 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07001954static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001955{
1956 BUG_ON(!cmd->se_tfo);
1957
Andy Groverc8e31f22012-01-19 13:39:17 -08001958 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001959 core_tmr_release_req(cmd->se_tmr_req);
1960 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1961 kfree(cmd->t_task_cdb);
1962 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001963 * If this cmd has been setup with target_get_sess_cmd(), drop
1964 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001965 */
Nicholas Bellingerca249762013-06-06 02:06:14 -07001966 return target_put_sess_cmd(cmd->se_sess, cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001967}
1968
1969/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001970 * transport_put_cmd - release a reference to a command
1971 * @cmd: command to release
1972 *
1973 * This routine releases our reference to the command and frees it if possible.
1974 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07001975static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001976{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001977 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07001978 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001979}
1980
Andy Grover49493142012-01-16 16:57:08 -08001981void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982{
Andy Groverec98f782011-07-20 19:28:46 +00001983 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001984 struct page **pages;
1985 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001986
Andy Grover05d1c7c2011-07-20 19:13:28 +00001987 /*
Andy Groverec98f782011-07-20 19:28:46 +00001988 * We need to take into account a possible offset here for fabrics like
1989 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
1990 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00001991 */
Andy Grover49493142012-01-16 16:57:08 -08001992 if (!cmd->t_data_nents)
1993 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02001994
1995 BUG_ON(!sg);
1996 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08001997 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00001998
Andy Grover49493142012-01-16 16:57:08 -08001999 /* >1 page. use vmap */
2000 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002001 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002002 return NULL;
2003
2004 /* convert sg[] to pages[] */
2005 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2006 pages[i] = sg_page(sg);
2007 }
2008
2009 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2010 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002011 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002012 return NULL;
2013
2014 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002015}
Andy Grover49493142012-01-16 16:57:08 -08002016EXPORT_SYMBOL(transport_kmap_data_sg);
2017
2018void transport_kunmap_data_sg(struct se_cmd *cmd)
2019{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002020 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002021 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002022 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002023 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002024 return;
2025 }
Andy Grover49493142012-01-16 16:57:08 -08002026
2027 vunmap(cmd->t_data_vmap);
2028 cmd->t_data_vmap = NULL;
2029}
2030EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002031
2032static int
2033transport_generic_get_mem(struct se_cmd *cmd)
2034{
Andy Groverec98f782011-07-20 19:28:46 +00002035 u32 length = cmd->data_length;
2036 unsigned int nents;
2037 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002038 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002039 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002040
Andy Groverec98f782011-07-20 19:28:46 +00002041 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2042 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2043 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002044 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002045
Andy Groverec98f782011-07-20 19:28:46 +00002046 cmd->t_data_nents = nents;
2047 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002048
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002049 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002050
Andy Groverec98f782011-07-20 19:28:46 +00002051 while (length) {
2052 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002053 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002054 if (!page)
2055 goto out;
2056
2057 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2058 length -= page_len;
2059 i++;
2060 }
2061 return 0;
2062
2063out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002064 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002065 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002066 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002067 }
2068 kfree(cmd->t_data_sg);
2069 cmd->t_data_sg = NULL;
2070 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002071}
2072
Andy Grovera1d8b492011-05-02 17:12:10 -07002073/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002074 * Allocate any required resources to execute the command. For writes we
2075 * might not have the payload yet, so notify the fabric via a call to
2076 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002077 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002078sense_reason_t
2079transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002080{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002081 int ret = 0;
2082
2083 /*
2084 * Determine is the TCM fabric module has already allocated physical
2085 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002086 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002087 */
Andy Groverec98f782011-07-20 19:28:46 +00002088 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2089 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002090 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002091 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002092 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002093 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002094 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002095 * If this command is not a write we can execute it right here,
2096 * for write buffers we need to notify the fabric driver first
2097 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002098 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002099 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002100 if (cmd->data_direction != DMA_TO_DEVICE) {
2101 target_execute_cmd(cmd);
2102 return 0;
2103 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002104 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002105
2106 ret = cmd->se_tfo->write_pending(cmd);
2107 if (ret == -EAGAIN || ret == -ENOMEM)
2108 goto queue_full;
2109
Christoph Hellwigde103c92012-11-06 12:24:09 -08002110 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2111 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002112
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002113 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002114
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002115queue_full:
2116 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2117 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2118 transport_handle_queue_full(cmd, cmd->se_dev);
2119 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002120}
Andy Grovera1d8b492011-05-02 17:12:10 -07002121EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002122
Christoph Hellwige057f532011-10-17 13:56:41 -04002123static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002124{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002125 int ret;
2126
2127 ret = cmd->se_tfo->write_pending(cmd);
2128 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002129 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2130 cmd);
2131 transport_handle_queue_full(cmd, cmd->se_dev);
2132 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002133}
2134
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002135int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002136{
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002137 int ret = 0;
2138
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002139 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002140 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002141 transport_wait_for_tasks(cmd);
2142
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002143 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002144 } else {
2145 if (wait_for_tasks)
2146 transport_wait_for_tasks(cmd);
2147
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002148 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002150
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002151 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002152 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002153 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002154}
2155EXPORT_SYMBOL(transport_generic_free_cmd);
2156
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002157/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2158 * @se_sess: session to reference
2159 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002160 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002161 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002162int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002163 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002164{
2165 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002166 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002167
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002168 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002169 /*
2170 * Add a second kref if the fabric caller is expecting to handle
2171 * fabric acknowledgement that requires two target_put_sess_cmd()
2172 * invocations before se_cmd descriptor release.
2173 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002174 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002175 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002176 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2177 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002178
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002179 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002180 if (se_sess->sess_tearing_down) {
2181 ret = -ESHUTDOWN;
2182 goto out;
2183 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002184 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002185out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002186 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002187 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002188}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002189EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002190
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002191static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002192{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002193 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2194 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002195
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002196 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002197 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002198 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002199 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002200 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002201 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002202 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002203 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002204 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002205 }
2206 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002207 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002208
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002209 se_cmd->se_tfo->release_cmd(se_cmd);
2210}
2211
2212/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2213 * @se_sess: session to reference
2214 * @se_cmd: command descriptor to drop
2215 */
2216int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2217{
Joern Engelccf5ae82013-05-13 16:30:06 -04002218 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2219 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002220}
2221EXPORT_SYMBOL(target_put_sess_cmd);
2222
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002223/* target_sess_cmd_list_set_waiting - Flag all commands in
2224 * sess_cmd_list to complete cmd_wait_comp. Set
2225 * sess_tearing_down so no more commands are queued.
2226 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002227 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002228void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002229{
2230 struct se_cmd *se_cmd;
2231 unsigned long flags;
2232
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002233 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002234 if (se_sess->sess_tearing_down) {
2235 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2236 return;
2237 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002238 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002239 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002240
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002241 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002242 se_cmd->cmd_wait_set = 1;
2243
2244 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2245}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002246EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002247
2248/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2249 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002250 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002251void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002252{
2253 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002254 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002255
2256 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002257 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258 list_del(&se_cmd->se_cmd_list);
2259
2260 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2261 " %d\n", se_cmd, se_cmd->t_state,
2262 se_cmd->se_tfo->get_cmd_state(se_cmd));
2263
Joern Engelbe646c2d2013-05-15 00:44:07 -07002264 wait_for_completion(&se_cmd->cmd_wait_comp);
2265 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2266 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2267 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002268
2269 se_cmd->se_tfo->release_cmd(se_cmd);
2270 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002271
2272 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2273 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2274 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2275
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002276}
2277EXPORT_SYMBOL(target_wait_for_sess_cmds);
2278
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002279/* transport_lun_wait_for_tasks():
2280 *
2281 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2282 * an struct se_lun to be successfully shutdown.
2283 */
2284static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2285{
2286 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002287 int ret = 0;
2288
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002289 /*
2290 * If the frontend has already requested this struct se_cmd to
2291 * be stopped, we can safely ignore this struct se_cmd.
2292 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002293 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002294 if (cmd->transport_state & CMD_T_STOP) {
2295 cmd->transport_state &= ~CMD_T_LUN_STOP;
2296
2297 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2298 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002299 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002300 transport_cmd_check_stop(cmd, false, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002301 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002302 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002303 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002304 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002305
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002306 // XXX: audit task_flags checks.
2307 spin_lock_irqsave(&cmd->t_state_lock, flags);
2308 if ((cmd->transport_state & CMD_T_BUSY) &&
2309 (cmd->transport_state & CMD_T_SENT)) {
2310 if (!target_stop_cmd(cmd, &flags))
2311 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002312 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002313 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002314
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002315 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2316 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002317 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002318 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002319 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002320 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002321 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002322 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002323 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002324
2325 return 0;
2326}
2327
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002328static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2329{
2330 struct se_cmd *cmd = NULL;
2331 unsigned long lun_flags, cmd_flags;
2332 /*
2333 * Do exception processing and return CHECK_CONDITION status to the
2334 * Initiator Port.
2335 */
2336 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002337 while (!list_empty(&lun->lun_cmd_list)) {
2338 cmd = list_first_entry(&lun->lun_cmd_list,
2339 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002340 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002341
Andy Grovera1d8b492011-05-02 17:12:10 -07002342 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002343 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002344 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002345 cmd->se_lun->unpacked_lun,
2346 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002347 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002348 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002349
2350 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2351
Andy Grover6708bb22011-06-08 10:36:43 -07002352 if (!cmd->se_lun) {
2353 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002354 cmd->se_tfo->get_task_tag(cmd),
2355 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002356 BUG();
2357 }
2358 /*
2359 * If the Storage engine still owns the iscsi_cmd_t, determine
2360 * and/or stop its context.
2361 */
Andy Grover6708bb22011-06-08 10:36:43 -07002362 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002363 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2364 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002365
Andy Grovere3d6f902011-07-19 08:55:10 +00002366 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002367 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2368 continue;
2369 }
2370
Andy Grover6708bb22011-06-08 10:36:43 -07002371 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002373 cmd->se_lun->unpacked_lun,
2374 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002375
Andy Grovera1d8b492011-05-02 17:12:10 -07002376 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002377 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002378 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002379 goto check_cond;
2380 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002381 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002382 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002383 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002384
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002385 /*
2386 * The Storage engine stopped this struct se_cmd before it was
2387 * send to the fabric frontend for delivery back to the
2388 * Initiator Node. Return this SCSI CDB back with an
2389 * CHECK_CONDITION status.
2390 */
2391check_cond:
2392 transport_send_check_condition_and_sense(cmd,
2393 TCM_NON_EXISTENT_LUN, 0);
2394 /*
2395 * If the fabric frontend is waiting for this iscsi_cmd_t to
2396 * be released, notify the waiting thread now that LU has
2397 * finished accessing it.
2398 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002399 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002400 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002401 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402 " struct se_cmd: %p ITT: 0x%08x\n",
2403 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002404 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002405
Andy Grovera1d8b492011-05-02 17:12:10 -07002406 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002407 cmd_flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002408 transport_cmd_check_stop(cmd, false, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002409 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002410 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2411 continue;
2412 }
Andy Grover6708bb22011-06-08 10:36:43 -07002413 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002414 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002415
Andy Grovera1d8b492011-05-02 17:12:10 -07002416 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002417 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2418 }
2419 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2420}
2421
2422static int transport_clear_lun_thread(void *p)
2423{
Jörn Engel8359cf42011-11-24 02:05:51 +01002424 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002425
2426 __transport_clear_lun_from_sessions(lun);
2427 complete(&lun->lun_shutdown_comp);
2428
2429 return 0;
2430}
2431
2432int transport_clear_lun_from_sessions(struct se_lun *lun)
2433{
2434 struct task_struct *kt;
2435
Andy Grover5951146d2011-07-19 10:26:37 +00002436 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002437 "tcm_cl_%u", lun->unpacked_lun);
2438 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002439 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002440 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002441 }
2442 wait_for_completion(&lun->lun_shutdown_comp);
2443
2444 return 0;
2445}
2446
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002447/**
2448 * transport_wait_for_tasks - wait for completion to occur
2449 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002450 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002451 * Called from frontend fabric context to wait for storage engine
2452 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002453 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002454bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002455{
2456 unsigned long flags;
2457
Andy Grovera1d8b492011-05-02 17:12:10 -07002458 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002459 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2460 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002461 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002462 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002463 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002464
Andy Groverc8e31f22012-01-19 13:39:17 -08002465 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2466 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002467 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002468 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002469 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002470 /*
2471 * If we are already stopped due to an external event (ie: LUN shutdown)
2472 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002473 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002474 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2475 * has completed its operation on the struct se_cmd.
2476 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002477 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002478 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002479 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002480 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002481 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002482 /*
2483 * There is a special case for WRITES where a FE exception +
2484 * LUN shutdown means ConfigFS context is still sleeping on
2485 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2486 * We go ahead and up transport_lun_stop_comp just to be sure
2487 * here.
2488 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002489 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2490 complete(&cmd->transport_lun_stop_comp);
2491 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2492 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002493
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002494 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002495 /*
2496 * At this point, the frontend who was the originator of this
2497 * struct se_cmd, now owns the structure and can be released through
2498 * normal means below.
2499 */
Andy Grover6708bb22011-06-08 10:36:43 -07002500 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002501 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002502 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002503 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002504
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002505 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002506 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002507
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002508 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002509 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002510 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002511 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002512
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002513 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002514
Andy Grover6708bb22011-06-08 10:36:43 -07002515 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002516 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002517 cmd, cmd->se_tfo->get_task_tag(cmd),
2518 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002519
Andy Grovera1d8b492011-05-02 17:12:10 -07002520 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002521
Andy Grovera1d8b492011-05-02 17:12:10 -07002522 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002523
Andy Grovera1d8b492011-05-02 17:12:10 -07002524 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002525 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002526
Masanari Iida35d1efe2012-08-16 22:43:13 +09002527 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002528 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002529 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002531 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002532
2533 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002534}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002535EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002536
2537static int transport_get_sense_codes(
2538 struct se_cmd *cmd,
2539 u8 *asc,
2540 u8 *ascq)
2541{
2542 *asc = cmd->scsi_asc;
2543 *ascq = cmd->scsi_ascq;
2544
2545 return 0;
2546}
2547
Christoph Hellwigde103c92012-11-06 12:24:09 -08002548int
2549transport_send_check_condition_and_sense(struct se_cmd *cmd,
2550 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002551{
2552 unsigned char *buffer = cmd->sense_buffer;
2553 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002554 u8 asc = 0, ascq = 0;
2555
Andy Grovera1d8b492011-05-02 17:12:10 -07002556 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002558 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002559 return 0;
2560 }
2561 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002562 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002563
2564 if (!reason && from_transport)
2565 goto after_reason;
2566
2567 if (!from_transport)
2568 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002569
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002570 /*
2571 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2572 * SENSE KEY values from include/scsi/scsi.h
2573 */
2574 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002575 case TCM_NO_SENSE:
2576 /* CURRENT ERROR */
2577 buffer[0] = 0x70;
2578 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2579 /* Not Ready */
2580 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2581 /* NO ADDITIONAL SENSE INFORMATION */
2582 buffer[SPC_ASC_KEY_OFFSET] = 0;
2583 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2584 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002586 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002587 buffer[0] = 0x70;
2588 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002589 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002590 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002591 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002592 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002593 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002594 case TCM_UNSUPPORTED_SCSI_OPCODE:
2595 case TCM_SECTOR_COUNT_TOO_MANY:
2596 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002597 buffer[0] = 0x70;
2598 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002599 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002600 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002602 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002603 break;
2604 case TCM_UNKNOWN_MODE_PAGE:
2605 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002606 buffer[0] = 0x70;
2607 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002609 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002610 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002611 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002612 break;
2613 case TCM_CHECK_CONDITION_ABORT_CMD:
2614 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[0] = 0x70;
2616 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002617 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002618 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002619 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002620 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2621 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002622 break;
2623 case TCM_INCORRECT_AMOUNT_OF_DATA:
2624 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002625 buffer[0] = 0x70;
2626 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002627 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002628 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002629 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002630 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002631 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002632 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002633 break;
2634 case TCM_INVALID_CDB_FIELD:
2635 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002636 buffer[0] = 0x70;
2637 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002638 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002639 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002641 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002642 break;
2643 case TCM_INVALID_PARAMETER_LIST:
2644 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002645 buffer[0] = 0x70;
2646 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002647 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002648 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002649 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002650 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002652 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2653 /* CURRENT ERROR */
2654 buffer[0] = 0x70;
2655 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2656 /* ILLEGAL REQUEST */
2657 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2658 /* PARAMETER LIST LENGTH ERROR */
2659 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2660 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002661 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2662 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002663 buffer[0] = 0x70;
2664 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002665 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002666 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002667 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002668 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002669 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002670 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002671 break;
2672 case TCM_SERVICE_CRC_ERROR:
2673 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002674 buffer[0] = 0x70;
2675 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002676 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002677 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002678 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002679 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002680 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002681 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 break;
2683 case TCM_SNACK_REJECTED:
2684 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002685 buffer[0] = 0x70;
2686 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002687 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002688 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002689 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002690 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002692 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002693 break;
2694 case TCM_WRITE_PROTECTED:
2695 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002696 buffer[0] = 0x70;
2697 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002698 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002699 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002700 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002701 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002703 case TCM_ADDRESS_OUT_OF_RANGE:
2704 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002705 buffer[0] = 0x70;
2706 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002707 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002708 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002709 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002710 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002711 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002712 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2713 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002714 buffer[0] = 0x70;
2715 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002717 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002718 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002719 buffer[SPC_ASC_KEY_OFFSET] = asc;
2720 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002721 break;
2722 case TCM_CHECK_CONDITION_NOT_READY:
2723 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002724 buffer[0] = 0x70;
2725 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002726 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002727 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002728 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002729 buffer[SPC_ASC_KEY_OFFSET] = asc;
2730 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 break;
2732 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2733 default:
2734 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002735 buffer[0] = 0x70;
2736 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002737 /*
2738 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2739 * Solaris initiators. Returning NOT READY instead means the
2740 * operations will be retried a finite number of times and we
2741 * can survive intermittent errors.
2742 */
2743 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002744 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002745 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002746 break;
2747 }
2748 /*
2749 * This code uses linux/include/scsi/scsi.h SAM status codes!
2750 */
2751 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2752 /*
2753 * Automatically padded, this value is encoded in the fabric's
2754 * data_length response PDU containing the SCSI defined sense data.
2755 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002756 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002757
2758after_reason:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002759 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002760 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002761}
2762EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2763
2764int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2765{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002766 if (!(cmd->transport_state & CMD_T_ABORTED))
2767 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002768
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002769 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2770 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002771
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002772 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2773 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002774
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002775 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002776 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002777 cmd->se_tfo->queue_status(cmd);
2778
2779 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780}
2781EXPORT_SYMBOL(transport_check_aborted_status);
2782
2783void transport_send_task_abort(struct se_cmd *cmd)
2784{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002785 unsigned long flags;
2786
2787 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002788 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002789 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2790 return;
2791 }
2792 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2793
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002794 /*
2795 * If there are still expected incoming fabric WRITEs, we wait
2796 * until until they have completed before sending a TASK_ABORTED
2797 * response. This response with TASK_ABORTED status will be
2798 * queued back to fabric module by transport_check_aborted_status().
2799 */
2800 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002801 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002802 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002803 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002804 }
2805 }
2806 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002807
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002808 transport_lun_remove_cmd(cmd);
2809
Andy Grover6708bb22011-06-08 10:36:43 -07002810 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002811 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002812 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002813
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002814 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002815 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002816}
2817
Christoph Hellwigaf877292012-07-08 15:58:49 -04002818static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002819{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002820 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002821 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002822 struct se_tmr_req *tmr = cmd->se_tmr_req;
2823 int ret;
2824
2825 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002826 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002827 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002828 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002829 case TMR_ABORT_TASK_SET:
2830 case TMR_CLEAR_ACA:
2831 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002832 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2833 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002834 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002835 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2836 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2837 TMR_FUNCTION_REJECTED;
2838 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002839 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002840 tmr->response = TMR_FUNCTION_REJECTED;
2841 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002842 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002843 tmr->response = TMR_FUNCTION_REJECTED;
2844 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002845 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002846 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002847 tmr->function);
2848 tmr->response = TMR_FUNCTION_REJECTED;
2849 break;
2850 }
2851
2852 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002853 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002854
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002855 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856}
2857
Christoph Hellwigaf877292012-07-08 15:58:49 -04002858int transport_generic_handle_tmr(
2859 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002860{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002861 INIT_WORK(&cmd->work, target_tmr_work);
2862 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002863 return 0;
2864}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002865EXPORT_SYMBOL(transport_generic_handle_tmr);