blob: bd587b70661a0ce11f6aaab596f4e46c6ee14c7e [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
Christoph Hellwig35e0e752011-10-17 13:56:53 -040055static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080057struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058struct kmem_cache *t10_pr_reg_cache;
59struct kmem_cache *t10_alua_lu_gp_cache;
60struct kmem_cache *t10_alua_lu_gp_mem_cache;
61struct kmem_cache *t10_alua_tg_pt_gp_cache;
62struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
63
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080064static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070065static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040066 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000067static int transport_generic_get_mem(struct se_cmd *cmd);
Roland Dreierbc187ea2012-07-16 11:04:40 -070068static int target_get_sess_cmd(struct se_session *, struct se_cmd *, bool);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070069static void transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040070static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080071
Andy Grovere3d6f902011-07-19 08:55:10 +000072int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080074 se_sess_cache = kmem_cache_create("se_sess_cache",
75 sizeof(struct se_session), __alignof__(struct se_session),
76 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070077 if (!se_sess_cache) {
78 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080079 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080080 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 }
82 se_ua_cache = kmem_cache_create("se_ua_cache",
83 sizeof(struct se_ua), __alignof__(struct se_ua),
84 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070085 if (!se_ua_cache) {
86 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040087 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080088 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080089 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
90 sizeof(struct t10_pr_registration),
91 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070092 if (!t10_pr_reg_cache) {
93 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080094 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040095 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096 }
97 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
98 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
99 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700100 if (!t10_alua_lu_gp_cache) {
101 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800102 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400103 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800104 }
105 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
106 sizeof(struct t10_alua_lu_gp_member),
107 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700108 if (!t10_alua_lu_gp_mem_cache) {
109 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800110 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400111 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 }
113 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
114 sizeof(struct t10_alua_tg_pt_gp),
115 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700116 if (!t10_alua_tg_pt_gp_cache) {
117 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800118 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400119 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 }
121 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
122 "t10_alua_tg_pt_gp_mem_cache",
123 sizeof(struct t10_alua_tg_pt_gp_member),
124 __alignof__(struct t10_alua_tg_pt_gp_member),
125 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700126 if (!t10_alua_tg_pt_gp_mem_cache) {
127 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800128 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400129 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 }
131
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400132 target_completion_wq = alloc_workqueue("target_completion",
133 WQ_MEM_RECLAIM, 0);
134 if (!target_completion_wq)
135 goto out_free_tg_pt_gp_mem_cache;
136
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800137 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400138
139out_free_tg_pt_gp_mem_cache:
140 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
141out_free_tg_pt_gp_cache:
142 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
143out_free_lu_gp_mem_cache:
144 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
145out_free_lu_gp_cache:
146 kmem_cache_destroy(t10_alua_lu_gp_cache);
147out_free_pr_reg_cache:
148 kmem_cache_destroy(t10_pr_reg_cache);
149out_free_ua_cache:
150 kmem_cache_destroy(se_ua_cache);
151out_free_sess_cache:
152 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800153out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000154 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800155}
156
Andy Grovere3d6f902011-07-19 08:55:10 +0000157void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800158{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400159 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800160 kmem_cache_destroy(se_sess_cache);
161 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162 kmem_cache_destroy(t10_pr_reg_cache);
163 kmem_cache_destroy(t10_alua_lu_gp_cache);
164 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
165 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
166 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800167}
168
Andy Grovere3d6f902011-07-19 08:55:10 +0000169/* This code ensures unique mib indexes are handed out. */
170static DEFINE_SPINLOCK(scsi_mib_index_lock);
171static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800172
173/*
174 * Allocate a new row index for the entry type specified
175 */
176u32 scsi_get_new_index(scsi_index_t type)
177{
178 u32 new_index;
179
Andy Grovere3d6f902011-07-19 08:55:10 +0000180 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800181
Andy Grovere3d6f902011-07-19 08:55:10 +0000182 spin_lock(&scsi_mib_index_lock);
183 new_index = ++scsi_mib_index[type];
184 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800185
186 return new_index;
187}
188
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700189void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800190{
191 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700192 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800193
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700194 if (sub_api_initialized)
195 return;
196
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800197 ret = request_module("target_core_iblock");
198 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700199 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800200
201 ret = request_module("target_core_file");
202 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700203 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800204
205 ret = request_module("target_core_pscsi");
206 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700207 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800208
Andy Grovere3d6f902011-07-19 08:55:10 +0000209 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210}
211
212struct se_session *transport_init_session(void)
213{
214 struct se_session *se_sess;
215
216 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700217 if (!se_sess) {
218 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800219 " se_sess_cache\n");
220 return ERR_PTR(-ENOMEM);
221 }
222 INIT_LIST_HEAD(&se_sess->sess_list);
223 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700224 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700225 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800226 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800227
228 return se_sess;
229}
230EXPORT_SYMBOL(transport_init_session);
231
232/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700233 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800234 */
235void __transport_register_session(
236 struct se_portal_group *se_tpg,
237 struct se_node_acl *se_nacl,
238 struct se_session *se_sess,
239 void *fabric_sess_ptr)
240{
241 unsigned char buf[PR_REG_ISID_LEN];
242
243 se_sess->se_tpg = se_tpg;
244 se_sess->fabric_sess_ptr = fabric_sess_ptr;
245 /*
246 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
247 *
248 * Only set for struct se_session's that will actually be moving I/O.
249 * eg: *NOT* discovery sessions.
250 */
251 if (se_nacl) {
252 /*
253 * If the fabric module supports an ISID based TransportID,
254 * save this value in binary from the fabric I_T Nexus now.
255 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000256 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800257 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000258 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800259 &buf[0], PR_REG_ISID_LEN);
260 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
261 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800262 kref_get(&se_nacl->acl_kref);
263
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800264 spin_lock_irq(&se_nacl->nacl_sess_lock);
265 /*
266 * The se_nacl->nacl_sess pointer will be set to the
267 * last active I_T Nexus for each struct se_node_acl.
268 */
269 se_nacl->nacl_sess = se_sess;
270
271 list_add_tail(&se_sess->sess_acl_list,
272 &se_nacl->acl_sess_list);
273 spin_unlock_irq(&se_nacl->nacl_sess_lock);
274 }
275 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
276
Andy Grover6708bb22011-06-08 10:36:43 -0700277 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000278 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800279}
280EXPORT_SYMBOL(__transport_register_session);
281
282void transport_register_session(
283 struct se_portal_group *se_tpg,
284 struct se_node_acl *se_nacl,
285 struct se_session *se_sess,
286 void *fabric_sess_ptr)
287{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700288 unsigned long flags;
289
290 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800291 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700292 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800293}
294EXPORT_SYMBOL(transport_register_session);
295
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800296static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800297{
298 struct se_session *se_sess = container_of(kref,
299 struct se_session, sess_kref);
300 struct se_portal_group *se_tpg = se_sess->se_tpg;
301
302 se_tpg->se_tpg_tfo->close_session(se_sess);
303}
304
305void target_get_session(struct se_session *se_sess)
306{
307 kref_get(&se_sess->sess_kref);
308}
309EXPORT_SYMBOL(target_get_session);
310
Jörn Engel33933a02012-05-11 10:35:08 -0400311void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800312{
Joern Engel41492682012-05-18 13:57:19 -0700313 struct se_portal_group *tpg = se_sess->se_tpg;
314
315 if (tpg->se_tpg_tfo->put_session != NULL) {
316 tpg->se_tpg_tfo->put_session(se_sess);
317 return;
318 }
Jörn Engel33933a02012-05-11 10:35:08 -0400319 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800320}
321EXPORT_SYMBOL(target_put_session);
322
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800323static void target_complete_nacl(struct kref *kref)
324{
325 struct se_node_acl *nacl = container_of(kref,
326 struct se_node_acl, acl_kref);
327
328 complete(&nacl->acl_free_comp);
329}
330
331void target_put_nacl(struct se_node_acl *nacl)
332{
333 kref_put(&nacl->acl_kref, target_complete_nacl);
334}
335
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800336void transport_deregister_session_configfs(struct se_session *se_sess)
337{
338 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700339 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800340 /*
341 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
342 */
343 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700344 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700345 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800346 if (se_nacl->acl_stop == 0)
347 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800348 /*
349 * If the session list is empty, then clear the pointer.
350 * Otherwise, set the struct se_session pointer from the tail
351 * element of the per struct se_node_acl active session list.
352 */
353 if (list_empty(&se_nacl->acl_sess_list))
354 se_nacl->nacl_sess = NULL;
355 else {
356 se_nacl->nacl_sess = container_of(
357 se_nacl->acl_sess_list.prev,
358 struct se_session, sess_acl_list);
359 }
Roland Dreier23388862011-06-22 01:02:21 -0700360 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800361 }
362}
363EXPORT_SYMBOL(transport_deregister_session_configfs);
364
365void transport_free_session(struct se_session *se_sess)
366{
367 kmem_cache_free(se_sess_cache, se_sess);
368}
369EXPORT_SYMBOL(transport_free_session);
370
371void transport_deregister_session(struct se_session *se_sess)
372{
373 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800374 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800375 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700376 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800377 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800378
Andy Grover6708bb22011-06-08 10:36:43 -0700379 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800380 transport_free_session(se_sess);
381 return;
382 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800383 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800384
Roland Dreiere63a8e12011-08-12 16:01:02 -0700385 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800386 list_del(&se_sess->sess_list);
387 se_sess->se_tpg = NULL;
388 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700389 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390
391 /*
392 * Determine if we need to do extra work for this initiator node's
393 * struct se_node_acl if it had been previously dynamically generated.
394 */
395 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800396
Nicholas Bellinger01468342012-03-10 14:32:52 -0800397 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
398 if (se_nacl && se_nacl->dynamic_node_acl) {
399 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
400 list_del(&se_nacl->acl_list);
401 se_tpg->num_node_acls--;
402 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
403 core_tpg_wait_for_nacl_pr_ref(se_nacl);
404 core_free_device_list_for_node(se_nacl, se_tpg);
405 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
406
407 comp_nacl = false;
408 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800409 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800410 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800411 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800412
Andy Grover6708bb22011-06-08 10:36:43 -0700413 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000414 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800415 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800416 * If last kref is dropping now for an explict NodeACL, awake sleeping
417 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
418 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800419 */
420 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800421 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800422
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800423 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800424}
425EXPORT_SYMBOL(transport_deregister_session);
426
427/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700428 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800429 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400430static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800431{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400432 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800433 unsigned long flags;
434
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400435 if (!dev)
436 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800437
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400438 if (cmd->transport_state & CMD_T_BUSY)
439 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800440
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400441 spin_lock_irqsave(&dev->execute_task_lock, flags);
442 if (cmd->state_active) {
443 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400444 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800445 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400446 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800447}
448
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400449static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800450{
451 unsigned long flags;
452
Andy Grovera1d8b492011-05-02 17:12:10 -0700453 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454 /*
455 * Determine if IOCTL context caller in requesting the stopping of this
456 * command for LUN shutdown purposes.
457 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500458 if (cmd->transport_state & CMD_T_LUN_STOP) {
459 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
460 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800461
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500462 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400463 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400464 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700465 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800466
Andy Grovera1d8b492011-05-02 17:12:10 -0700467 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800468 return 1;
469 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400470
471 if (remove_from_lists) {
472 target_remove_from_state_list(cmd);
473
474 /*
475 * Clear struct se_cmd->se_lun before the handoff to FE.
476 */
477 cmd->se_lun = NULL;
478 }
479
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800480 /*
481 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000482 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800483 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500484 if (cmd->transport_state & CMD_T_STOP) {
485 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
486 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000487 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800488
Andy Grovera1d8b492011-05-02 17:12:10 -0700489 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800490
Andy Grovera1d8b492011-05-02 17:12:10 -0700491 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800492 return 1;
493 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800494
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400495 cmd->transport_state &= ~CMD_T_ACTIVE;
496 if (remove_from_lists) {
497 /*
498 * Some fabric modules like tcm_loop can release
499 * their internally allocated I/O reference now and
500 * struct se_cmd now.
501 *
502 * Fabric modules are expected to return '1' here if the
503 * se_cmd being passed is released at this point,
504 * or zero if not being released.
505 */
506 if (cmd->se_tfo->check_stop_free != NULL) {
507 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
508 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800509 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400510 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800511
Andy Grovera1d8b492011-05-02 17:12:10 -0700512 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800513 return 0;
514}
515
516static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
517{
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400518 return transport_cmd_check_stop(cmd, true);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800519}
520
521static void transport_lun_remove_cmd(struct se_cmd *cmd)
522{
Andy Grovere3d6f902011-07-19 08:55:10 +0000523 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800524 unsigned long flags;
525
526 if (!lun)
527 return;
528
Andy Grovera1d8b492011-05-02 17:12:10 -0700529 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500530 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
531 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400532 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800533 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700534 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535
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 */
910 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
911 &vpd->device_identifier[0]);
912 break;
913 case 0x02: /* ASCII */
914 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
915 &vpd->device_identifier[0]);
916 break;
917 case 0x03: /* UTF-8 */
918 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
919 &vpd->device_identifier[0]);
920 break;
921 default:
922 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
923 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000924 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800925 break;
926 }
927
928 if (p_buf)
929 strncpy(p_buf, buf, p_buf_len);
930 else
Andy Grover6708bb22011-06-08 10:36:43 -0700931 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800932
933 return ret;
934}
935
936int
937transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
938{
939 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900940 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800941
942 /*
943 * The VPD Code Set (encoding)
944 *
945 * from spc3r23.pdf Section 7.6.3.1 Table 296
946 */
947 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
948 switch (vpd->device_identifier_code_set) {
949 case 0x01: /* Binary */
950 vpd->device_identifier[j++] =
951 hex_str[vpd->device_identifier_type];
952 while (i < (4 + page_83[3])) {
953 vpd->device_identifier[j++] =
954 hex_str[(page_83[i] & 0xf0) >> 4];
955 vpd->device_identifier[j++] =
956 hex_str[page_83[i] & 0x0f];
957 i++;
958 }
959 break;
960 case 0x02: /* ASCII */
961 case 0x03: /* UTF-8 */
962 while (i < (4 + page_83[3]))
963 vpd->device_identifier[j++] = page_83[i++];
964 break;
965 default:
966 break;
967 }
968
969 return transport_dump_vpd_ident(vpd, NULL, 0);
970}
971EXPORT_SYMBOL(transport_set_vpd_ident);
972
Christoph Hellwigde103c92012-11-06 12:24:09 -0800973sense_reason_t
974target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400975{
976 struct se_device *dev = cmd->se_dev;
977
978 if (cmd->unknown_data_length) {
979 cmd->data_length = size;
980 } else if (size != cmd->data_length) {
981 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
982 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
983 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
984 cmd->data_length, size, cmd->t_task_cdb[0]);
985
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400986 if (cmd->data_direction == DMA_TO_DEVICE) {
987 pr_err("Rejecting underflow/overflow"
988 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -0800989 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400990 }
991 /*
992 * Reject READ_* or WRITE_* with overflow/underflow for
993 * type SCF_SCSI_DATA_CDB.
994 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400995 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400996 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
997 " CDB on non 512-byte sector setup subsystem"
998 " plugin: %s\n", dev->transport->name);
999 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001000 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001001 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001002 /*
1003 * For the overflow case keep the existing fabric provided
1004 * ->data_length. Otherwise for the underflow case, reset
1005 * ->data_length to the smaller SCSI expected data transfer
1006 * length.
1007 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001008 if (size > cmd->data_length) {
1009 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1010 cmd->residual_count = (size - cmd->data_length);
1011 } else {
1012 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1013 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001014 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001015 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001016 }
1017
1018 return 0;
1019
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001020}
1021
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001022/*
1023 * Used by fabric modules containing a local struct se_cmd within their
1024 * fabric dependent per I/O descriptor.
1025 */
1026void transport_init_se_cmd(
1027 struct se_cmd *cmd,
1028 struct target_core_fabric_ops *tfo,
1029 struct se_session *se_sess,
1030 u32 data_length,
1031 int data_direction,
1032 int task_attr,
1033 unsigned char *sense_buffer)
1034{
Andy Grover5951146d2011-07-19 10:26:37 +00001035 INIT_LIST_HEAD(&cmd->se_lun_node);
1036 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001037 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001038 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001039 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001040 init_completion(&cmd->transport_lun_fe_stop_comp);
1041 init_completion(&cmd->transport_lun_stop_comp);
1042 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001043 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001044 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001045 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001046 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001047
1048 cmd->se_tfo = tfo;
1049 cmd->se_sess = se_sess;
1050 cmd->data_length = data_length;
1051 cmd->data_direction = data_direction;
1052 cmd->sam_task_attr = task_attr;
1053 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001054
1055 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001056}
1057EXPORT_SYMBOL(transport_init_se_cmd);
1058
Christoph Hellwigde103c92012-11-06 12:24:09 -08001059static sense_reason_t
1060transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001061{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001062 struct se_device *dev = cmd->se_dev;
1063
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001064 /*
1065 * Check if SAM Task Attribute emulation is enabled for this
1066 * struct se_device storage object
1067 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001068 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001069 return 0;
1070
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001071 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001072 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001073 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001074 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001075 }
1076 /*
1077 * Used to determine when ORDERED commands should go from
1078 * Dormant to Active status.
1079 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001080 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001081 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001082 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001084 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001085 return 0;
1086}
1087
Christoph Hellwigde103c92012-11-06 12:24:09 -08001088sense_reason_t
1089target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001090{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001091 struct se_device *dev = cmd->se_dev;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001092 unsigned long flags;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001093 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001094
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001095 /*
1096 * Ensure that the received CDB is less than the max (252 + 8) bytes
1097 * for VARIABLE_LENGTH_CMD
1098 */
1099 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001100 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001101 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1102 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001103 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001104 }
1105 /*
1106 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1107 * allocate the additional extended CDB buffer now.. Otherwise
1108 * setup the pointer from __t_task_cdb to t_task_cdb.
1109 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001110 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1111 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001112 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001113 if (!cmd->t_task_cdb) {
1114 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001115 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001116 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001117 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001118 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001119 }
1120 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001121 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001122 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001123 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001124 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001125 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001126
1127 /*
1128 * Check for an existing UNIT ATTENTION condition
1129 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001130 ret = target_scsi3_ua_check(cmd);
1131 if (ret)
1132 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001133
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001134 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001135 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001136 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001137
Christoph Hellwigde103c92012-11-06 12:24:09 -08001138 ret = target_check_reservation(cmd);
1139 if (ret)
1140 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001141
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001142 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001143 if (ret)
1144 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001145
Christoph Hellwigde103c92012-11-06 12:24:09 -08001146 ret = transport_check_alloc_task_attr(cmd);
1147 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001148 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001149
1150 spin_lock_irqsave(&cmd->t_state_lock, flags);
1151 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1152 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1153
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154 spin_lock(&cmd->se_lun->lun_sep_lock);
1155 if (cmd->se_lun->lun_sep)
1156 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1157 spin_unlock(&cmd->se_lun->lun_sep_lock);
1158 return 0;
1159}
Andy Grovera12f41f2012-04-03 15:51:20 -07001160EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001161
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001162/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001163 * Used by fabric module frontends to queue tasks directly.
1164 * Many only be used from process context only
1165 */
1166int transport_handle_cdb_direct(
1167 struct se_cmd *cmd)
1168{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001169 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001170
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001171 if (!cmd->se_lun) {
1172 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001173 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001174 return -EINVAL;
1175 }
1176 if (in_interrupt()) {
1177 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001178 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001179 " from interrupt context\n");
1180 return -EINVAL;
1181 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001182 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001183 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1184 * outstanding descriptors are handled correctly during shutdown via
1185 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001186 *
1187 * Also, we don't take cmd->t_state_lock here as we only expect
1188 * this to be called for initial descriptor submission.
1189 */
1190 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001191 cmd->transport_state |= CMD_T_ACTIVE;
1192
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001193 /*
1194 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1195 * so follow TRANSPORT_NEW_CMD processing thread context usage
1196 * and call transport_generic_request_failure() if necessary..
1197 */
1198 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001199 if (ret)
1200 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001201 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001202}
1203EXPORT_SYMBOL(transport_handle_cdb_direct);
1204
Christoph Hellwigde103c92012-11-06 12:24:09 -08001205static sense_reason_t
1206transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1207 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1208{
1209 if (!sgl || !sgl_count)
1210 return 0;
1211
1212 /*
1213 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1214 * scatterlists already have been set to follow what the fabric
1215 * passes for the original expected data transfer length.
1216 */
1217 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1218 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1219 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1220 return TCM_INVALID_CDB_FIELD;
1221 }
1222
1223 cmd->t_data_sg = sgl;
1224 cmd->t_data_nents = sgl_count;
1225
1226 if (sgl_bidi && sgl_bidi_count) {
1227 cmd->t_bidi_data_sg = sgl_bidi;
1228 cmd->t_bidi_data_nents = sgl_bidi_count;
1229 }
1230 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1231 return 0;
1232}
1233
Nicholas Bellingera0267572012-10-01 17:23:22 -07001234/*
1235 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1236 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001237 *
1238 * @se_cmd: command descriptor to submit
1239 * @se_sess: associated se_sess for endpoint
1240 * @cdb: pointer to SCSI CDB
1241 * @sense: pointer to SCSI sense buffer
1242 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1243 * @data_length: fabric expected data transfer length
1244 * @task_addr: SAM task attribute
1245 * @data_dir: DMA data direction
1246 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001247 * @sgl: struct scatterlist memory for unidirectional mapping
1248 * @sgl_count: scatterlist count for unidirectional mapping
1249 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1250 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001251 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001252 * Returns non zero to signal active I/O shutdown failure. All other
1253 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1254 * but still return zero here.
1255 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001256 * This may only be called from process context, and also currently
1257 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001258 */
1259int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001260 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001261 u32 data_length, int task_attr, int data_dir, int flags,
1262 struct scatterlist *sgl, u32 sgl_count,
1263 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001264{
1265 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001266 sense_reason_t rc;
1267 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001268
1269 se_tpg = se_sess->se_tpg;
1270 BUG_ON(!se_tpg);
1271 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1272 BUG_ON(in_interrupt());
1273 /*
1274 * Initialize se_cmd for target operation. From this point
1275 * exceptions are handled by sending exception status via
1276 * target_core_fabric_ops->queue_status() callback
1277 */
1278 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1279 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001280 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1281 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001282 /*
1283 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1284 * se_sess->sess_cmd_list. A second kref_get here is necessary
1285 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1286 * kref_put() to happen during fabric packet acknowledgement.
1287 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001288 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1289 if (ret)
1290 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001291 /*
1292 * Signal bidirectional data payloads to target-core
1293 */
1294 if (flags & TARGET_SCF_BIDI_OP)
1295 se_cmd->se_cmd_flags |= SCF_BIDI;
1296 /*
1297 * Locate se_lun pointer and attach it to struct se_cmd
1298 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001299 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1300 if (rc) {
1301 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001302 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001303 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001304 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001305
Andy Grovera12f41f2012-04-03 15:51:20 -07001306 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001307 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001308 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001309 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001310 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001311 /*
1312 * When a non zero sgl_count has been passed perform SGL passthrough
1313 * mapping for pre-allocated fabric memory instead of having target
1314 * core perform an internal SGL allocation..
1315 */
1316 if (sgl_count != 0) {
1317 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001318
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001319 /*
1320 * A work-around for tcm_loop as some userspace code via
1321 * scsi-generic do not memset their associated read buffers,
1322 * so go ahead and do that here for type non-data CDBs. Also
1323 * note that this is currently guaranteed to be a single SGL
1324 * for this case by target core in target_setup_cmd_from_cdb()
1325 * -> transport_generic_cmd_sequencer().
1326 */
1327 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1328 se_cmd->data_direction == DMA_FROM_DEVICE) {
1329 unsigned char *buf = NULL;
1330
1331 if (sgl)
1332 buf = kmap(sg_page(sgl)) + sgl->offset;
1333
1334 if (buf) {
1335 memset(buf, 0, sgl->length);
1336 kunmap(sg_page(sgl));
1337 }
1338 }
1339
Nicholas Bellingera0267572012-10-01 17:23:22 -07001340 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1341 sgl_bidi, sgl_bidi_count);
1342 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001343 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001344 return 0;
1345 }
1346 }
Andy Grover11e319e2012-04-03 15:51:28 -07001347 /*
1348 * Check if we need to delay processing because of ALUA
1349 * Active/NonOptimized primary access state..
1350 */
1351 core_alua_check_nonop_delay(se_cmd);
1352
Nicholas Bellingera6360782011-11-18 20:36:22 -08001353 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001354 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001355}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001356EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1357
1358/*
1359 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1360 *
1361 * @se_cmd: command descriptor to submit
1362 * @se_sess: associated se_sess for endpoint
1363 * @cdb: pointer to SCSI CDB
1364 * @sense: pointer to SCSI sense buffer
1365 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1366 * @data_length: fabric expected data transfer length
1367 * @task_addr: SAM task attribute
1368 * @data_dir: DMA data direction
1369 * @flags: flags for command submission from target_sc_flags_tables
1370 *
1371 * Returns non zero to signal active I/O shutdown failure. All other
1372 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1373 * but still return zero here.
1374 *
1375 * This may only be called from process context, and also currently
1376 * assumes internal allocation of fabric payload buffer by target-core.
1377 *
1378 * It also assumes interal target core SGL memory allocation.
1379 */
1380int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1381 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1382 u32 data_length, int task_attr, int data_dir, int flags)
1383{
1384 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1385 unpacked_lun, data_length, task_attr, data_dir,
1386 flags, NULL, 0, NULL, 0);
1387}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001388EXPORT_SYMBOL(target_submit_cmd);
1389
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001390static void target_complete_tmr_failure(struct work_struct *work)
1391{
1392 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1393
1394 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1395 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001396
1397 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001398}
1399
Andy Groverea98d7f2012-01-19 13:39:21 -08001400/**
1401 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1402 * for TMR CDBs
1403 *
1404 * @se_cmd: command descriptor to submit
1405 * @se_sess: associated se_sess for endpoint
1406 * @sense: pointer to SCSI sense buffer
1407 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1408 * @fabric_context: fabric context for TMR req
1409 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001410 * @gfp: gfp type for caller
1411 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001412 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001413 *
1414 * Callable from all contexts.
1415 **/
1416
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001417int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001418 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001419 void *fabric_tmr_ptr, unsigned char tm_type,
1420 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001421{
1422 struct se_portal_group *se_tpg;
1423 int ret;
1424
1425 se_tpg = se_sess->se_tpg;
1426 BUG_ON(!se_tpg);
1427
1428 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1429 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001430 /*
1431 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1432 * allocation failure.
1433 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001434 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001435 if (ret < 0)
1436 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001437
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001438 if (tm_type == TMR_ABORT_TASK)
1439 se_cmd->se_tmr_req->ref_task_tag = tag;
1440
Andy Groverea98d7f2012-01-19 13:39:21 -08001441 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001442 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1443 if (ret) {
1444 core_tmr_release_req(se_cmd->se_tmr_req);
1445 return ret;
1446 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001447
Andy Groverea98d7f2012-01-19 13:39:21 -08001448 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1449 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001450 /*
1451 * For callback during failure handling, push this work off
1452 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1453 */
1454 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1455 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001456 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001457 }
1458 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001459 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001460}
1461EXPORT_SYMBOL(target_submit_tmr);
1462
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001463/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001464 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001465 * has completed.
1466 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001467bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001468{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001469 bool was_active = false;
1470
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001471 if (cmd->transport_state & CMD_T_BUSY) {
1472 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001473 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1474
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001475 pr_debug("cmd %p waiting to complete\n", cmd);
1476 wait_for_completion(&cmd->task_stop_comp);
1477 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001478
1479 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001480 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1481 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001482 was_active = true;
1483 }
1484
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001485 return was_active;
1486}
1487
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001488/*
1489 * Handle SAM-esque emulation for generic transport request failures.
1490 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001491void transport_generic_request_failure(struct se_cmd *cmd,
1492 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001493{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001494 int ret = 0;
1495
Andy Grover6708bb22011-06-08 10:36:43 -07001496 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001497 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001498 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001499 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001500 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001501 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001502 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001503 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1504 (cmd->transport_state & CMD_T_STOP) != 0,
1505 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001506
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001507 /*
1508 * For SAM Task Attribute emulation for failed struct se_cmd
1509 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001510 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001511
Christoph Hellwigde103c92012-11-06 12:24:09 -08001512 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001513 case TCM_NON_EXISTENT_LUN:
1514 case TCM_UNSUPPORTED_SCSI_OPCODE:
1515 case TCM_INVALID_CDB_FIELD:
1516 case TCM_INVALID_PARAMETER_LIST:
1517 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1518 case TCM_UNKNOWN_MODE_PAGE:
1519 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001520 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001521 case TCM_CHECK_CONDITION_ABORT_CMD:
1522 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1523 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001524 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001525 case TCM_OUT_OF_RESOURCES:
1526 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1527 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001528 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001529 /*
1530 * No SENSE Data payload for this case, set SCSI Status
1531 * and queue the response to $FABRIC_MOD.
1532 *
1533 * Uses linux/include/scsi/scsi.h SAM status codes defs
1534 */
1535 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1536 /*
1537 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1538 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1539 * CONFLICT STATUS.
1540 *
1541 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1542 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001543 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001544 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001545 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001546 cmd->orig_fe_lun, 0x2C,
1547 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1548
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001549 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001550 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001551 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001552 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001553 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001554 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001555 cmd->t_task_cdb[0], sense_reason);
1556 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001557 break;
1558 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001559
Christoph Hellwigde103c92012-11-06 12:24:09 -08001560 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001561 if (ret == -EAGAIN || ret == -ENOMEM)
1562 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001563
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001564check_stop:
1565 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001566 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001567 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001568 return;
1569
1570queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001571 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1572 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001573}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001574EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001575
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001576static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001577{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001578 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001579
1580 spin_lock_irq(&cmd->t_state_lock);
1581 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1582 spin_unlock_irq(&cmd->t_state_lock);
1583
Christoph Hellwigde103c92012-11-06 12:24:09 -08001584 if (cmd->execute_cmd) {
1585 ret = cmd->execute_cmd(cmd);
1586 if (ret) {
1587 spin_lock_irq(&cmd->t_state_lock);
1588 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1589 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001590
Christoph Hellwigde103c92012-11-06 12:24:09 -08001591 transport_generic_request_failure(cmd, ret);
1592 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001593 }
1594}
1595
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001596static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001597{
1598 struct se_device *dev = cmd->se_dev;
1599
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001600 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1601 return false;
1602
1603 /*
1604 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1605 * to allow the passed struct se_cmd list of tasks to the front of the list.
1606 */
1607 switch (cmd->sam_task_attr) {
1608 case MSG_HEAD_TAG:
1609 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1610 "se_ordered_id: %u\n",
1611 cmd->t_task_cdb[0], cmd->se_ordered_id);
1612 return false;
1613 case MSG_ORDERED_TAG:
1614 atomic_inc(&dev->dev_ordered_sync);
1615 smp_mb__after_atomic_inc();
1616
1617 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1618 " se_ordered_id: %u\n",
1619 cmd->t_task_cdb[0], cmd->se_ordered_id);
1620
1621 /*
1622 * Execute an ORDERED command if no other older commands
1623 * exist that need to be completed first.
1624 */
1625 if (!atomic_read(&dev->simple_cmds))
1626 return false;
1627 break;
1628 default:
1629 /*
1630 * For SIMPLE and UNTAGGED Task Attribute commands
1631 */
1632 atomic_inc(&dev->simple_cmds);
1633 smp_mb__after_atomic_inc();
1634 break;
1635 }
1636
1637 if (atomic_read(&dev->dev_ordered_sync) == 0)
1638 return false;
1639
1640 spin_lock(&dev->delayed_cmd_lock);
1641 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1642 spin_unlock(&dev->delayed_cmd_lock);
1643
1644 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1645 " delayed CMD list, se_ordered_id: %u\n",
1646 cmd->t_task_cdb[0], cmd->sam_task_attr,
1647 cmd->se_ordered_id);
1648 return true;
1649}
1650
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001651void target_execute_cmd(struct se_cmd *cmd)
1652{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001653 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001654 * If the received CDB has aleady been aborted stop processing it here.
1655 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001656 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001657 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001658 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001659 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001660
1661 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001662 * Determine if IOCTL context caller in requesting the stopping of this
1663 * command for LUN shutdown purposes.
1664 */
1665 spin_lock_irq(&cmd->t_state_lock);
1666 if (cmd->transport_state & CMD_T_LUN_STOP) {
1667 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1668 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1669
1670 cmd->transport_state &= ~CMD_T_ACTIVE;
1671 spin_unlock_irq(&cmd->t_state_lock);
1672 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001673 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001674 }
1675 /*
1676 * Determine if frontend context caller is requesting the stopping of
1677 * this command for frontend exceptions.
1678 */
1679 if (cmd->transport_state & CMD_T_STOP) {
1680 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1681 __func__, __LINE__,
1682 cmd->se_tfo->get_task_tag(cmd));
1683
1684 spin_unlock_irq(&cmd->t_state_lock);
1685 complete(&cmd->t_transport_stop_comp);
1686 return;
1687 }
1688
1689 cmd->t_state = TRANSPORT_PROCESSING;
Roland Dreiere627c612013-01-02 12:47:57 -08001690 cmd->transport_state |= CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001691 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001692
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001693 if (!target_handle_task_attr(cmd))
1694 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001695}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001696EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001697
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001698/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001699 * Process all commands up to the last received ORDERED task attribute which
1700 * requires another blocking boundary
1701 */
1702static void target_restart_delayed_cmds(struct se_device *dev)
1703{
1704 for (;;) {
1705 struct se_cmd *cmd;
1706
1707 spin_lock(&dev->delayed_cmd_lock);
1708 if (list_empty(&dev->delayed_cmd_list)) {
1709 spin_unlock(&dev->delayed_cmd_lock);
1710 break;
1711 }
1712
1713 cmd = list_entry(dev->delayed_cmd_list.next,
1714 struct se_cmd, se_delayed_node);
1715 list_del(&cmd->se_delayed_node);
1716 spin_unlock(&dev->delayed_cmd_lock);
1717
1718 __target_execute_cmd(cmd);
1719
1720 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1721 break;
1722 }
1723}
1724
1725/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001726 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001727 * and ordered cmds need to have their tasks added to the execution queue.
1728 */
1729static void transport_complete_task_attr(struct se_cmd *cmd)
1730{
Andy Grover5951146d2011-07-19 10:26:37 +00001731 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001732
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001733 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1734 return;
1735
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001736 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001737 atomic_dec(&dev->simple_cmds);
1738 smp_mb__after_atomic_dec();
1739 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001740 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001741 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1742 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001743 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001744 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001745 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001746 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1747 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001748 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749 atomic_dec(&dev->dev_ordered_sync);
1750 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001751
1752 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001753 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1755 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001756
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001757 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001758}
1759
Christoph Hellwige057f532011-10-17 13:56:41 -04001760static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001761{
1762 int ret = 0;
1763
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001764 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001765
1766 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1767 ret = cmd->se_tfo->queue_status(cmd);
1768 if (ret)
1769 goto out;
1770 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001771
1772 switch (cmd->data_direction) {
1773 case DMA_FROM_DEVICE:
1774 ret = cmd->se_tfo->queue_data_in(cmd);
1775 break;
1776 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001777 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001778 ret = cmd->se_tfo->queue_data_in(cmd);
1779 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001780 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001781 }
1782 /* Fall through for DMA_TO_DEVICE */
1783 case DMA_NONE:
1784 ret = cmd->se_tfo->queue_status(cmd);
1785 break;
1786 default:
1787 break;
1788 }
1789
Christoph Hellwige057f532011-10-17 13:56:41 -04001790out:
1791 if (ret < 0) {
1792 transport_handle_queue_full(cmd, cmd->se_dev);
1793 return;
1794 }
1795 transport_lun_remove_cmd(cmd);
1796 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001797}
1798
1799static void transport_handle_queue_full(
1800 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001801 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001802{
1803 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001804 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1805 atomic_inc(&dev->dev_qf_count);
1806 smp_mb__after_atomic_inc();
1807 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1808
1809 schedule_work(&cmd->se_dev->qf_work_queue);
1810}
1811
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001812static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001813{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001814 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001815 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001816
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001817 /*
1818 * Check if we need to move delayed/dormant tasks from cmds on the
1819 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1820 * Attribute.
1821 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001822 transport_complete_task_attr(cmd);
1823
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001824 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001825 * Check to schedule QUEUE_FULL work, or execute an existing
1826 * cmd->transport_qf_callback()
1827 */
1828 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1829 schedule_work(&cmd->se_dev->qf_work_queue);
1830
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001831 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001832 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001833 * the struct se_cmd in question.
1834 */
1835 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001836 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001837 ret = transport_send_check_condition_and_sense(
1838 cmd, 0, 1);
1839 if (ret == -EAGAIN || ret == -ENOMEM)
1840 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001841
Paolo Bonzini27a27092012-09-05 17:09:14 +02001842 transport_lun_remove_cmd(cmd);
1843 transport_cmd_check_stop_to_fabric(cmd);
1844 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001845 }
1846 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001847 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001848 * XDWRITE_READ_10 emulation.
1849 */
1850 if (cmd->transport_complete_callback)
1851 cmd->transport_complete_callback(cmd);
1852
1853 switch (cmd->data_direction) {
1854 case DMA_FROM_DEVICE:
1855 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001856 if (cmd->se_lun->lun_sep) {
1857 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001858 cmd->data_length;
1859 }
1860 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001861
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001862 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001863 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001864 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001865 break;
1866 case DMA_TO_DEVICE:
1867 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001868 if (cmd->se_lun->lun_sep) {
1869 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001870 cmd->data_length;
1871 }
1872 spin_unlock(&cmd->se_lun->lun_sep_lock);
1873 /*
1874 * Check if we need to send READ payload for BIDI-COMMAND
1875 */
Andy Groverec98f782011-07-20 19:28:46 +00001876 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001877 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001878 if (cmd->se_lun->lun_sep) {
1879 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001880 cmd->data_length;
1881 }
1882 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001883 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001884 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001885 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001886 break;
1887 }
1888 /* Fall through for DMA_TO_DEVICE */
1889 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001890 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001891 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001892 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001893 break;
1894 default:
1895 break;
1896 }
1897
1898 transport_lun_remove_cmd(cmd);
1899 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001900 return;
1901
1902queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001903 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001904 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001905 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1906 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001907}
1908
Andy Grover6708bb22011-06-08 10:36:43 -07001909static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001910{
Andy Groverec98f782011-07-20 19:28:46 +00001911 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001912 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001913
Andy Grover6708bb22011-06-08 10:36:43 -07001914 for_each_sg(sgl, sg, nents, count)
1915 __free_page(sg_page(sg));
1916
1917 kfree(sgl);
1918}
1919
1920static inline void transport_free_pages(struct se_cmd *cmd)
1921{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001922 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001923 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001924
Andy Grover6708bb22011-06-08 10:36:43 -07001925 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001926 cmd->t_data_sg = NULL;
1927 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001928
Andy Grover6708bb22011-06-08 10:36:43 -07001929 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001930 cmd->t_bidi_data_sg = NULL;
1931 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001932}
1933
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001934/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001935 * transport_release_cmd - free a command
1936 * @cmd: command to free
1937 *
1938 * This routine unconditionally frees a command, and reference counting
1939 * or list removal must be done in the caller.
1940 */
1941static void transport_release_cmd(struct se_cmd *cmd)
1942{
1943 BUG_ON(!cmd->se_tfo);
1944
Andy Groverc8e31f22012-01-19 13:39:17 -08001945 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001946 core_tmr_release_req(cmd->se_tmr_req);
1947 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1948 kfree(cmd->t_task_cdb);
1949 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001950 * If this cmd has been setup with target_get_sess_cmd(), drop
1951 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001952 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001953 if (cmd->check_release != 0) {
1954 target_put_sess_cmd(cmd->se_sess, cmd);
1955 return;
1956 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001957 cmd->se_tfo->release_cmd(cmd);
1958}
1959
1960/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001961 * transport_put_cmd - release a reference to a command
1962 * @cmd: command to release
1963 *
1964 * This routine releases our reference to the command and frees it if possible.
1965 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001966static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001967{
1968 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001969
Andy Grovera1d8b492011-05-02 17:12:10 -07001970 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreierd9ed6942012-11-16 08:06:18 -08001971 if (atomic_read(&cmd->t_fe_count) &&
1972 !atomic_dec_and_test(&cmd->t_fe_count)) {
1973 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1974 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001975 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001976
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001977 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1978 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001979 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001980 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001981 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001982
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001983 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001984 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001985 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001986}
1987
Andy Grover49493142012-01-16 16:57:08 -08001988void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001989{
Andy Groverec98f782011-07-20 19:28:46 +00001990 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001991 struct page **pages;
1992 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001993
Andy Grover05d1c7c2011-07-20 19:13:28 +00001994 /*
Andy Groverec98f782011-07-20 19:28:46 +00001995 * We need to take into account a possible offset here for fabrics like
1996 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
1997 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00001998 */
Andy Grover49493142012-01-16 16:57:08 -08001999 if (!cmd->t_data_nents)
2000 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002001
2002 BUG_ON(!sg);
2003 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002004 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002005
Andy Grover49493142012-01-16 16:57:08 -08002006 /* >1 page. use vmap */
2007 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002008 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002009 return NULL;
2010
2011 /* convert sg[] to pages[] */
2012 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2013 pages[i] = sg_page(sg);
2014 }
2015
2016 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2017 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002018 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002019 return NULL;
2020
2021 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002022}
Andy Grover49493142012-01-16 16:57:08 -08002023EXPORT_SYMBOL(transport_kmap_data_sg);
2024
2025void transport_kunmap_data_sg(struct se_cmd *cmd)
2026{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002027 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002028 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002029 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002030 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002031 return;
2032 }
Andy Grover49493142012-01-16 16:57:08 -08002033
2034 vunmap(cmd->t_data_vmap);
2035 cmd->t_data_vmap = NULL;
2036}
2037EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002038
2039static int
2040transport_generic_get_mem(struct se_cmd *cmd)
2041{
Andy Groverec98f782011-07-20 19:28:46 +00002042 u32 length = cmd->data_length;
2043 unsigned int nents;
2044 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002045 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002046 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002047
Andy Groverec98f782011-07-20 19:28:46 +00002048 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2049 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2050 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002051 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002052
Andy Groverec98f782011-07-20 19:28:46 +00002053 cmd->t_data_nents = nents;
2054 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002055
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002056 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002057
Andy Groverec98f782011-07-20 19:28:46 +00002058 while (length) {
2059 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002060 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002061 if (!page)
2062 goto out;
2063
2064 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2065 length -= page_len;
2066 i++;
2067 }
2068 return 0;
2069
2070out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002071 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002072 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002073 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002074 }
2075 kfree(cmd->t_data_sg);
2076 cmd->t_data_sg = NULL;
2077 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002078}
2079
Andy Grovera1d8b492011-05-02 17:12:10 -07002080/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002081 * Allocate any required resources to execute the command. For writes we
2082 * might not have the payload yet, so notify the fabric via a call to
2083 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002084 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002085sense_reason_t
2086transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002087{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002088 int ret = 0;
2089
2090 /*
2091 * Determine is the TCM fabric module has already allocated physical
2092 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002093 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002094 */
Andy Groverec98f782011-07-20 19:28:46 +00002095 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2096 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002097 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002098 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002099 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002100 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002101
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002102 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002103
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002104 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002105 * If this command is not a write we can execute it right here,
2106 * for write buffers we need to notify the fabric driver first
2107 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002108 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002109 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002110 if (cmd->data_direction != DMA_TO_DEVICE) {
2111 target_execute_cmd(cmd);
2112 return 0;
2113 }
2114
2115 spin_lock_irq(&cmd->t_state_lock);
2116 cmd->t_state = TRANSPORT_WRITE_PENDING;
2117 spin_unlock_irq(&cmd->t_state_lock);
2118
2119 transport_cmd_check_stop(cmd, false);
2120
2121 ret = cmd->se_tfo->write_pending(cmd);
2122 if (ret == -EAGAIN || ret == -ENOMEM)
2123 goto queue_full;
2124
Christoph Hellwigde103c92012-11-06 12:24:09 -08002125 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2126 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002127
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002128 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002129
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002130queue_full:
2131 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2132 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2133 transport_handle_queue_full(cmd, cmd->se_dev);
2134 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002135}
Andy Grovera1d8b492011-05-02 17:12:10 -07002136EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002137
Christoph Hellwige057f532011-10-17 13:56:41 -04002138static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002139{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002140 int ret;
2141
2142 ret = cmd->se_tfo->write_pending(cmd);
2143 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002144 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2145 cmd);
2146 transport_handle_queue_full(cmd, cmd->se_dev);
2147 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002148}
2149
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002150void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002151{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002152 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002153 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002154 transport_wait_for_tasks(cmd);
2155
Christoph Hellwig35462972011-05-31 23:56:57 -04002156 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002157 } else {
2158 if (wait_for_tasks)
2159 transport_wait_for_tasks(cmd);
2160
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002161 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2162
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002163 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002164 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002165
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002166 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002167 }
2168}
2169EXPORT_SYMBOL(transport_generic_free_cmd);
2170
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002171/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2172 * @se_sess: session to reference
2173 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002174 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002175 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002176static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2177 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002178{
2179 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002180 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002181
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002182 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002183 /*
2184 * Add a second kref if the fabric caller is expecting to handle
2185 * fabric acknowledgement that requires two target_put_sess_cmd()
2186 * invocations before se_cmd descriptor release.
2187 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002188 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002189 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002190 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2191 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002192
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002193 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002194 if (se_sess->sess_tearing_down) {
2195 ret = -ESHUTDOWN;
2196 goto out;
2197 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002198 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2199 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002200
2201out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002202 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002203 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002204}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002205
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002206static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002207{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002208 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2209 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002210 unsigned long flags;
2211
2212 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2213 if (list_empty(&se_cmd->se_cmd_list)) {
2214 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002215 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002216 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002217 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002218 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2219 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2220 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002221 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002222 }
2223 list_del(&se_cmd->se_cmd_list);
2224 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2225
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002226 se_cmd->se_tfo->release_cmd(se_cmd);
2227}
2228
2229/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2230 * @se_sess: session to reference
2231 * @se_cmd: command descriptor to drop
2232 */
2233int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2234{
2235 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002236}
2237EXPORT_SYMBOL(target_put_sess_cmd);
2238
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002239/* target_sess_cmd_list_set_waiting - Flag all commands in
2240 * sess_cmd_list to complete cmd_wait_comp. Set
2241 * sess_tearing_down so no more commands are queued.
2242 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002243 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002244void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002245{
2246 struct se_cmd *se_cmd;
2247 unsigned long flags;
2248
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002249 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002250
2251 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002252 se_sess->sess_tearing_down = 1;
2253
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002254 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002255 se_cmd->cmd_wait_set = 1;
2256
2257 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2258}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002259EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002260
2261/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2262 * @se_sess: session to wait for active I/O
2263 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2264 */
2265void target_wait_for_sess_cmds(
2266 struct se_session *se_sess,
2267 int wait_for_tasks)
2268{
2269 struct se_cmd *se_cmd, *tmp_cmd;
2270 bool rc = false;
2271
2272 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002273 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002274 list_del(&se_cmd->se_cmd_list);
2275
2276 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2277 " %d\n", se_cmd, se_cmd->t_state,
2278 se_cmd->se_tfo->get_cmd_state(se_cmd));
2279
2280 if (wait_for_tasks) {
2281 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2282 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2283 se_cmd->se_tfo->get_cmd_state(se_cmd));
2284
2285 rc = transport_wait_for_tasks(se_cmd);
2286
2287 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2288 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2289 se_cmd->se_tfo->get_cmd_state(se_cmd));
2290 }
2291
2292 if (!rc) {
2293 wait_for_completion(&se_cmd->cmd_wait_comp);
2294 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2295 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2296 se_cmd->se_tfo->get_cmd_state(se_cmd));
2297 }
2298
2299 se_cmd->se_tfo->release_cmd(se_cmd);
2300 }
2301}
2302EXPORT_SYMBOL(target_wait_for_sess_cmds);
2303
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002304/* transport_lun_wait_for_tasks():
2305 *
2306 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2307 * an struct se_lun to be successfully shutdown.
2308 */
2309static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2310{
2311 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002312 int ret = 0;
2313
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002314 /*
2315 * If the frontend has already requested this struct se_cmd to
2316 * be stopped, we can safely ignore this struct se_cmd.
2317 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002318 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002319 if (cmd->transport_state & CMD_T_STOP) {
2320 cmd->transport_state &= ~CMD_T_LUN_STOP;
2321
2322 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2323 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002324 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002325 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002326 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002327 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002328 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002329 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002330
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002331 // XXX: audit task_flags checks.
2332 spin_lock_irqsave(&cmd->t_state_lock, flags);
2333 if ((cmd->transport_state & CMD_T_BUSY) &&
2334 (cmd->transport_state & CMD_T_SENT)) {
2335 if (!target_stop_cmd(cmd, &flags))
2336 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002337 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002338 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002339
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002340 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2341 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002342 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002343 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002344 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002345 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002346 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002347 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002348 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002349
2350 return 0;
2351}
2352
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002353static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2354{
2355 struct se_cmd *cmd = NULL;
2356 unsigned long lun_flags, cmd_flags;
2357 /*
2358 * Do exception processing and return CHECK_CONDITION status to the
2359 * Initiator Port.
2360 */
2361 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002362 while (!list_empty(&lun->lun_cmd_list)) {
2363 cmd = list_first_entry(&lun->lun_cmd_list,
2364 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002365 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002366
Andy Grovera1d8b492011-05-02 17:12:10 -07002367 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002368 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002369 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002370 cmd->se_lun->unpacked_lun,
2371 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002372 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002373 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002374
2375 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2376
Andy Grover6708bb22011-06-08 10:36:43 -07002377 if (!cmd->se_lun) {
2378 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002379 cmd->se_tfo->get_task_tag(cmd),
2380 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002381 BUG();
2382 }
2383 /*
2384 * If the Storage engine still owns the iscsi_cmd_t, determine
2385 * and/or stop its context.
2386 */
Andy Grover6708bb22011-06-08 10:36:43 -07002387 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002388 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2389 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002390
Andy Grovere3d6f902011-07-19 08:55:10 +00002391 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002392 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2393 continue;
2394 }
2395
Andy Grover6708bb22011-06-08 10:36:43 -07002396 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002397 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002398 cmd->se_lun->unpacked_lun,
2399 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002400
Andy Grovera1d8b492011-05-02 17:12:10 -07002401 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002402 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002403 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002404 goto check_cond;
2405 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002406 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002407 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002408 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002409
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002410 /*
2411 * The Storage engine stopped this struct se_cmd before it was
2412 * send to the fabric frontend for delivery back to the
2413 * Initiator Node. Return this SCSI CDB back with an
2414 * CHECK_CONDITION status.
2415 */
2416check_cond:
2417 transport_send_check_condition_and_sense(cmd,
2418 TCM_NON_EXISTENT_LUN, 0);
2419 /*
2420 * If the fabric frontend is waiting for this iscsi_cmd_t to
2421 * be released, notify the waiting thread now that LU has
2422 * finished accessing it.
2423 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002424 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002425 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002426 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002427 " struct se_cmd: %p ITT: 0x%08x\n",
2428 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002429 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430
Andy Grovera1d8b492011-05-02 17:12:10 -07002431 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002432 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002433 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002434 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002435 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2436 continue;
2437 }
Andy Grover6708bb22011-06-08 10:36:43 -07002438 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002439 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002440
Andy Grovera1d8b492011-05-02 17:12:10 -07002441 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002442 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2443 }
2444 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2445}
2446
2447static int transport_clear_lun_thread(void *p)
2448{
Jörn Engel8359cf42011-11-24 02:05:51 +01002449 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002450
2451 __transport_clear_lun_from_sessions(lun);
2452 complete(&lun->lun_shutdown_comp);
2453
2454 return 0;
2455}
2456
2457int transport_clear_lun_from_sessions(struct se_lun *lun)
2458{
2459 struct task_struct *kt;
2460
Andy Grover5951146d2011-07-19 10:26:37 +00002461 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002462 "tcm_cl_%u", lun->unpacked_lun);
2463 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002464 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002465 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002466 }
2467 wait_for_completion(&lun->lun_shutdown_comp);
2468
2469 return 0;
2470}
2471
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002472/**
2473 * transport_wait_for_tasks - wait for completion to occur
2474 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002475 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002476 * Called from frontend fabric context to wait for storage engine
2477 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002478 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002479bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002480{
2481 unsigned long flags;
2482
Andy Grovera1d8b492011-05-02 17:12:10 -07002483 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002484 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2485 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002486 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002487 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002488 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002489
Andy Groverc8e31f22012-01-19 13:39:17 -08002490 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2491 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002492 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002493 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002494 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002495 /*
2496 * If we are already stopped due to an external event (ie: LUN shutdown)
2497 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002498 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002499 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2500 * has completed its operation on the struct se_cmd.
2501 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002502 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002503 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002504 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002505 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002506 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002507 /*
2508 * There is a special case for WRITES where a FE exception +
2509 * LUN shutdown means ConfigFS context is still sleeping on
2510 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2511 * We go ahead and up transport_lun_stop_comp just to be sure
2512 * here.
2513 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002514 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2515 complete(&cmd->transport_lun_stop_comp);
2516 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2517 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002518
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002519 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002520 /*
2521 * At this point, the frontend who was the originator of this
2522 * struct se_cmd, now owns the structure and can be released through
2523 * normal means below.
2524 */
Andy Grover6708bb22011-06-08 10:36:43 -07002525 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002526 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002527 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002528 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002529
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002530 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002531 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002532
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002533 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002534 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002535 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002536 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002538 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002539
Andy Grover6708bb22011-06-08 10:36:43 -07002540 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002541 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002542 cmd, cmd->se_tfo->get_task_tag(cmd),
2543 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002544
Andy Grovera1d8b492011-05-02 17:12:10 -07002545 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546
Andy Grovera1d8b492011-05-02 17:12:10 -07002547 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002548
Andy Grovera1d8b492011-05-02 17:12:10 -07002549 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002550 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002551
Masanari Iida35d1efe2012-08-16 22:43:13 +09002552 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002553 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002554 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002555
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002556 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002557
2558 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002559}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002560EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002561
2562static int transport_get_sense_codes(
2563 struct se_cmd *cmd,
2564 u8 *asc,
2565 u8 *ascq)
2566{
2567 *asc = cmd->scsi_asc;
2568 *ascq = cmd->scsi_ascq;
2569
2570 return 0;
2571}
2572
Christoph Hellwigde103c92012-11-06 12:24:09 -08002573int
2574transport_send_check_condition_and_sense(struct se_cmd *cmd,
2575 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002576{
2577 unsigned char *buffer = cmd->sense_buffer;
2578 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002579 u8 asc = 0, ascq = 0;
2580
Andy Grovera1d8b492011-05-02 17:12:10 -07002581 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002583 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002584 return 0;
2585 }
2586 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002587 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002588
2589 if (!reason && from_transport)
2590 goto after_reason;
2591
2592 if (!from_transport)
2593 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002594
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002595 /*
2596 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2597 * SENSE KEY values from include/scsi/scsi.h
2598 */
2599 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002600 case TCM_NO_SENSE:
2601 /* CURRENT ERROR */
2602 buffer[0] = 0x70;
2603 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2604 /* Not Ready */
2605 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2606 /* NO ADDITIONAL SENSE INFORMATION */
2607 buffer[SPC_ASC_KEY_OFFSET] = 0;
2608 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2609 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002610 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002611 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002612 buffer[0] = 0x70;
2613 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002614 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002616 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002617 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002618 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002619 case TCM_UNSUPPORTED_SCSI_OPCODE:
2620 case TCM_SECTOR_COUNT_TOO_MANY:
2621 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002622 buffer[0] = 0x70;
2623 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002624 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002625 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002626 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002627 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002628 break;
2629 case TCM_UNKNOWN_MODE_PAGE:
2630 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002631 buffer[0] = 0x70;
2632 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002633 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002634 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002635 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002636 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002637 break;
2638 case TCM_CHECK_CONDITION_ABORT_CMD:
2639 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002640 buffer[0] = 0x70;
2641 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002642 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002643 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002644 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002645 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2646 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002647 break;
2648 case TCM_INCORRECT_AMOUNT_OF_DATA:
2649 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002650 buffer[0] = 0x70;
2651 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002652 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002653 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002654 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002655 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002656 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002657 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002658 break;
2659 case TCM_INVALID_CDB_FIELD:
2660 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002661 buffer[0] = 0x70;
2662 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002663 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002664 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002665 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002666 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002667 break;
2668 case TCM_INVALID_PARAMETER_LIST:
2669 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002670 buffer[0] = 0x70;
2671 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002672 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002673 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002674 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002675 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002676 break;
2677 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2678 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002679 buffer[0] = 0x70;
2680 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002681 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002683 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002684 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002685 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002686 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002687 break;
2688 case TCM_SERVICE_CRC_ERROR:
2689 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002690 buffer[0] = 0x70;
2691 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002692 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002693 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002694 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002695 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002696 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002697 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002698 break;
2699 case TCM_SNACK_REJECTED:
2700 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002701 buffer[0] = 0x70;
2702 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002703 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002704 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002705 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002706 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002708 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002709 break;
2710 case TCM_WRITE_PROTECTED:
2711 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002712 buffer[0] = 0x70;
2713 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002714 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002715 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002717 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002718 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002719 case TCM_ADDRESS_OUT_OF_RANGE:
2720 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002721 buffer[0] = 0x70;
2722 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002723 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002724 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002725 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002726 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002727 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002728 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2729 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002730 buffer[0] = 0x70;
2731 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002732 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002733 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002734 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002735 buffer[SPC_ASC_KEY_OFFSET] = asc;
2736 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002737 break;
2738 case TCM_CHECK_CONDITION_NOT_READY:
2739 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002740 buffer[0] = 0x70;
2741 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002744 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002745 buffer[SPC_ASC_KEY_OFFSET] = asc;
2746 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002747 break;
2748 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2749 default:
2750 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002751 buffer[0] = 0x70;
2752 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002753 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002754 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002755 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002756 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002757 break;
2758 }
2759 /*
2760 * This code uses linux/include/scsi/scsi.h SAM status codes!
2761 */
2762 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2763 /*
2764 * Automatically padded, this value is encoded in the fabric's
2765 * data_length response PDU containing the SCSI defined sense data.
2766 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002767 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002768
2769after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002770 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002771}
2772EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2773
2774int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2775{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002776 if (!(cmd->transport_state & CMD_T_ABORTED))
2777 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002779 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2780 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002781
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002782 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2783 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002784
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002785 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
2786 cmd->se_tfo->queue_status(cmd);
2787
2788 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002789}
2790EXPORT_SYMBOL(transport_check_aborted_status);
2791
2792void transport_send_task_abort(struct se_cmd *cmd)
2793{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002794 unsigned long flags;
2795
2796 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002797 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002798 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2799 return;
2800 }
2801 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2802
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002803 /*
2804 * If there are still expected incoming fabric WRITEs, we wait
2805 * until until they have completed before sending a TASK_ABORTED
2806 * response. This response with TASK_ABORTED status will be
2807 * queued back to fabric module by transport_check_aborted_status().
2808 */
2809 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002810 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002811 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002812 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002813 }
2814 }
2815 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002816
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002817 transport_lun_remove_cmd(cmd);
2818
Andy Grover6708bb22011-06-08 10:36:43 -07002819 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002820 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002821 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002822
Andy Grovere3d6f902011-07-19 08:55:10 +00002823 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002824}
2825
Christoph Hellwigaf877292012-07-08 15:58:49 -04002826static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002827{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002828 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002829 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002830 struct se_tmr_req *tmr = cmd->se_tmr_req;
2831 int ret;
2832
2833 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002834 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002835 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002836 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002837 case TMR_ABORT_TASK_SET:
2838 case TMR_CLEAR_ACA:
2839 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002840 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2841 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002842 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002843 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2844 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2845 TMR_FUNCTION_REJECTED;
2846 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002847 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002848 tmr->response = TMR_FUNCTION_REJECTED;
2849 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002850 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002851 tmr->response = TMR_FUNCTION_REJECTED;
2852 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002853 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002854 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002855 tmr->function);
2856 tmr->response = TMR_FUNCTION_REJECTED;
2857 break;
2858 }
2859
2860 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002861 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002862
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002863 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002864}
2865
Christoph Hellwigaf877292012-07-08 15:58:49 -04002866int transport_generic_handle_tmr(
2867 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002868{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002869 INIT_WORK(&cmd->work, target_tmr_work);
2870 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002871 return 0;
2872}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002873EXPORT_SYMBOL(transport_generic_handle_tmr);