blob: 489bd1678d87636716dd7493c26a67f88a53ba48 [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);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001396}
1397
Andy Groverea98d7f2012-01-19 13:39:21 -08001398/**
1399 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1400 * for TMR CDBs
1401 *
1402 * @se_cmd: command descriptor to submit
1403 * @se_sess: associated se_sess for endpoint
1404 * @sense: pointer to SCSI sense buffer
1405 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1406 * @fabric_context: fabric context for TMR req
1407 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001408 * @gfp: gfp type for caller
1409 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001410 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001411 *
1412 * Callable from all contexts.
1413 **/
1414
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001415int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001416 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001417 void *fabric_tmr_ptr, unsigned char tm_type,
1418 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001419{
1420 struct se_portal_group *se_tpg;
1421 int ret;
1422
1423 se_tpg = se_sess->se_tpg;
1424 BUG_ON(!se_tpg);
1425
1426 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1427 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001428 /*
1429 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1430 * allocation failure.
1431 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001432 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001433 if (ret < 0)
1434 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001435
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001436 if (tm_type == TMR_ABORT_TASK)
1437 se_cmd->se_tmr_req->ref_task_tag = tag;
1438
Andy Groverea98d7f2012-01-19 13:39:21 -08001439 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001440 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1441 if (ret) {
1442 core_tmr_release_req(se_cmd->se_tmr_req);
1443 return ret;
1444 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001445
Andy Groverea98d7f2012-01-19 13:39:21 -08001446 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1447 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001448 /*
1449 * For callback during failure handling, push this work off
1450 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1451 */
1452 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1453 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001454 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001455 }
1456 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001457 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001458}
1459EXPORT_SYMBOL(target_submit_tmr);
1460
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001461/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001462 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001463 * has completed.
1464 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001465bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001466{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001467 bool was_active = false;
1468
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001469 if (cmd->transport_state & CMD_T_BUSY) {
1470 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001471 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1472
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001473 pr_debug("cmd %p waiting to complete\n", cmd);
1474 wait_for_completion(&cmd->task_stop_comp);
1475 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001476
1477 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001478 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1479 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001480 was_active = true;
1481 }
1482
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001483 return was_active;
1484}
1485
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001486/*
1487 * Handle SAM-esque emulation for generic transport request failures.
1488 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001489void transport_generic_request_failure(struct se_cmd *cmd,
1490 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001491{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001492 int ret = 0;
1493
Andy Grover6708bb22011-06-08 10:36:43 -07001494 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001495 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001496 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001497 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001498 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001499 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001500 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001501 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1502 (cmd->transport_state & CMD_T_STOP) != 0,
1503 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001504
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001505 /*
1506 * For SAM Task Attribute emulation for failed struct se_cmd
1507 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001508 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001509
Christoph Hellwigde103c92012-11-06 12:24:09 -08001510 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001511 case TCM_NON_EXISTENT_LUN:
1512 case TCM_UNSUPPORTED_SCSI_OPCODE:
1513 case TCM_INVALID_CDB_FIELD:
1514 case TCM_INVALID_PARAMETER_LIST:
1515 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1516 case TCM_UNKNOWN_MODE_PAGE:
1517 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001518 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001519 case TCM_CHECK_CONDITION_ABORT_CMD:
1520 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1521 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001522 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001523 case TCM_OUT_OF_RESOURCES:
1524 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1525 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001526 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001527 /*
1528 * No SENSE Data payload for this case, set SCSI Status
1529 * and queue the response to $FABRIC_MOD.
1530 *
1531 * Uses linux/include/scsi/scsi.h SAM status codes defs
1532 */
1533 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1534 /*
1535 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1536 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1537 * CONFLICT STATUS.
1538 *
1539 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1540 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001541 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001542 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001543 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001544 cmd->orig_fe_lun, 0x2C,
1545 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1546
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001547 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001548 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001549 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001550 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001551 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001552 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001553 cmd->t_task_cdb[0], sense_reason);
1554 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001555 break;
1556 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001557
Christoph Hellwigde103c92012-11-06 12:24:09 -08001558 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001559 if (ret == -EAGAIN || ret == -ENOMEM)
1560 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001561
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001562check_stop:
1563 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001564 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001565 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001566 return;
1567
1568queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001569 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1570 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001571}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001572EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001573
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001574static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001575{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001576 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001577
1578 spin_lock_irq(&cmd->t_state_lock);
1579 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1580 spin_unlock_irq(&cmd->t_state_lock);
1581
Christoph Hellwigde103c92012-11-06 12:24:09 -08001582 if (cmd->execute_cmd) {
1583 ret = cmd->execute_cmd(cmd);
1584 if (ret) {
1585 spin_lock_irq(&cmd->t_state_lock);
1586 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1587 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001588
Christoph Hellwigde103c92012-11-06 12:24:09 -08001589 transport_generic_request_failure(cmd, ret);
1590 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001591 }
1592}
1593
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001594static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001595{
1596 struct se_device *dev = cmd->se_dev;
1597
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001598 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1599 return false;
1600
1601 /*
1602 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1603 * to allow the passed struct se_cmd list of tasks to the front of the list.
1604 */
1605 switch (cmd->sam_task_attr) {
1606 case MSG_HEAD_TAG:
1607 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1608 "se_ordered_id: %u\n",
1609 cmd->t_task_cdb[0], cmd->se_ordered_id);
1610 return false;
1611 case MSG_ORDERED_TAG:
1612 atomic_inc(&dev->dev_ordered_sync);
1613 smp_mb__after_atomic_inc();
1614
1615 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1616 " se_ordered_id: %u\n",
1617 cmd->t_task_cdb[0], cmd->se_ordered_id);
1618
1619 /*
1620 * Execute an ORDERED command if no other older commands
1621 * exist that need to be completed first.
1622 */
1623 if (!atomic_read(&dev->simple_cmds))
1624 return false;
1625 break;
1626 default:
1627 /*
1628 * For SIMPLE and UNTAGGED Task Attribute commands
1629 */
1630 atomic_inc(&dev->simple_cmds);
1631 smp_mb__after_atomic_inc();
1632 break;
1633 }
1634
1635 if (atomic_read(&dev->dev_ordered_sync) == 0)
1636 return false;
1637
1638 spin_lock(&dev->delayed_cmd_lock);
1639 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1640 spin_unlock(&dev->delayed_cmd_lock);
1641
1642 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1643 " delayed CMD list, se_ordered_id: %u\n",
1644 cmd->t_task_cdb[0], cmd->sam_task_attr,
1645 cmd->se_ordered_id);
1646 return true;
1647}
1648
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001649void target_execute_cmd(struct se_cmd *cmd)
1650{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001651 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001652 * If the received CDB has aleady been aborted stop processing it here.
1653 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001654 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001655 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001656 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001657 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001658
1659 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001660 * Determine if IOCTL context caller in requesting the stopping of this
1661 * command for LUN shutdown purposes.
1662 */
1663 spin_lock_irq(&cmd->t_state_lock);
1664 if (cmd->transport_state & CMD_T_LUN_STOP) {
1665 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1666 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1667
1668 cmd->transport_state &= ~CMD_T_ACTIVE;
1669 spin_unlock_irq(&cmd->t_state_lock);
1670 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001671 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001672 }
1673 /*
1674 * Determine if frontend context caller is requesting the stopping of
1675 * this command for frontend exceptions.
1676 */
1677 if (cmd->transport_state & CMD_T_STOP) {
1678 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1679 __func__, __LINE__,
1680 cmd->se_tfo->get_task_tag(cmd));
1681
1682 spin_unlock_irq(&cmd->t_state_lock);
1683 complete(&cmd->t_transport_stop_comp);
1684 return;
1685 }
1686
1687 cmd->t_state = TRANSPORT_PROCESSING;
Roland Dreiere627c612013-01-02 12:47:57 -08001688 cmd->transport_state |= CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001689 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001690
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001691 if (!target_handle_task_attr(cmd))
1692 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001693}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001694EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001695
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001696/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001697 * Process all commands up to the last received ORDERED task attribute which
1698 * requires another blocking boundary
1699 */
1700static void target_restart_delayed_cmds(struct se_device *dev)
1701{
1702 for (;;) {
1703 struct se_cmd *cmd;
1704
1705 spin_lock(&dev->delayed_cmd_lock);
1706 if (list_empty(&dev->delayed_cmd_list)) {
1707 spin_unlock(&dev->delayed_cmd_lock);
1708 break;
1709 }
1710
1711 cmd = list_entry(dev->delayed_cmd_list.next,
1712 struct se_cmd, se_delayed_node);
1713 list_del(&cmd->se_delayed_node);
1714 spin_unlock(&dev->delayed_cmd_lock);
1715
1716 __target_execute_cmd(cmd);
1717
1718 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1719 break;
1720 }
1721}
1722
1723/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001724 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001725 * and ordered cmds need to have their tasks added to the execution queue.
1726 */
1727static void transport_complete_task_attr(struct se_cmd *cmd)
1728{
Andy Grover5951146d2011-07-19 10:26:37 +00001729 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001730
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001731 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1732 return;
1733
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001734 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001735 atomic_dec(&dev->simple_cmds);
1736 smp_mb__after_atomic_dec();
1737 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001738 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001739 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1740 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001741 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001742 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001743 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001744 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1745 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001746 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001747 atomic_dec(&dev->dev_ordered_sync);
1748 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749
1750 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001751 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1753 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001755 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001756}
1757
Christoph Hellwige057f532011-10-17 13:56:41 -04001758static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001759{
1760 int ret = 0;
1761
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001762 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001763
1764 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1765 ret = cmd->se_tfo->queue_status(cmd);
1766 if (ret)
1767 goto out;
1768 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001769
1770 switch (cmd->data_direction) {
1771 case DMA_FROM_DEVICE:
1772 ret = cmd->se_tfo->queue_data_in(cmd);
1773 break;
1774 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001775 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001776 ret = cmd->se_tfo->queue_data_in(cmd);
1777 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001778 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001779 }
1780 /* Fall through for DMA_TO_DEVICE */
1781 case DMA_NONE:
1782 ret = cmd->se_tfo->queue_status(cmd);
1783 break;
1784 default:
1785 break;
1786 }
1787
Christoph Hellwige057f532011-10-17 13:56:41 -04001788out:
1789 if (ret < 0) {
1790 transport_handle_queue_full(cmd, cmd->se_dev);
1791 return;
1792 }
1793 transport_lun_remove_cmd(cmd);
1794 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001795}
1796
1797static void transport_handle_queue_full(
1798 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001799 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001800{
1801 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001802 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1803 atomic_inc(&dev->dev_qf_count);
1804 smp_mb__after_atomic_inc();
1805 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1806
1807 schedule_work(&cmd->se_dev->qf_work_queue);
1808}
1809
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001810static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001811{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001812 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001813 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001814
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001815 /*
1816 * Check if we need to move delayed/dormant tasks from cmds on the
1817 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1818 * Attribute.
1819 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001820 transport_complete_task_attr(cmd);
1821
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001822 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001823 * Check to schedule QUEUE_FULL work, or execute an existing
1824 * cmd->transport_qf_callback()
1825 */
1826 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1827 schedule_work(&cmd->se_dev->qf_work_queue);
1828
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001829 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001830 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001831 * the struct se_cmd in question.
1832 */
1833 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001834 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001835 ret = transport_send_check_condition_and_sense(
1836 cmd, 0, 1);
1837 if (ret == -EAGAIN || ret == -ENOMEM)
1838 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001839
Paolo Bonzini27a27092012-09-05 17:09:14 +02001840 transport_lun_remove_cmd(cmd);
1841 transport_cmd_check_stop_to_fabric(cmd);
1842 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001843 }
1844 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001845 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001846 * XDWRITE_READ_10 emulation.
1847 */
1848 if (cmd->transport_complete_callback)
1849 cmd->transport_complete_callback(cmd);
1850
1851 switch (cmd->data_direction) {
1852 case DMA_FROM_DEVICE:
1853 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001854 if (cmd->se_lun->lun_sep) {
1855 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001856 cmd->data_length;
1857 }
1858 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001859
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001860 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001861 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001862 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001863 break;
1864 case DMA_TO_DEVICE:
1865 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001866 if (cmd->se_lun->lun_sep) {
1867 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001868 cmd->data_length;
1869 }
1870 spin_unlock(&cmd->se_lun->lun_sep_lock);
1871 /*
1872 * Check if we need to send READ payload for BIDI-COMMAND
1873 */
Andy Groverec98f782011-07-20 19:28:46 +00001874 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001875 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001876 if (cmd->se_lun->lun_sep) {
1877 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001878 cmd->data_length;
1879 }
1880 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001881 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001882 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001883 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001884 break;
1885 }
1886 /* Fall through for DMA_TO_DEVICE */
1887 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001888 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001889 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001890 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001891 break;
1892 default:
1893 break;
1894 }
1895
1896 transport_lun_remove_cmd(cmd);
1897 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001898 return;
1899
1900queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001901 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001902 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001903 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1904 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001905}
1906
Andy Grover6708bb22011-06-08 10:36:43 -07001907static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908{
Andy Groverec98f782011-07-20 19:28:46 +00001909 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001910 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001911
Andy Grover6708bb22011-06-08 10:36:43 -07001912 for_each_sg(sgl, sg, nents, count)
1913 __free_page(sg_page(sg));
1914
1915 kfree(sgl);
1916}
1917
1918static inline void transport_free_pages(struct se_cmd *cmd)
1919{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001920 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001921 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001922
Andy Grover6708bb22011-06-08 10:36:43 -07001923 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001924 cmd->t_data_sg = NULL;
1925 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001926
Andy Grover6708bb22011-06-08 10:36:43 -07001927 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001928 cmd->t_bidi_data_sg = NULL;
1929 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001930}
1931
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001932/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001933 * transport_release_cmd - free a command
1934 * @cmd: command to free
1935 *
1936 * This routine unconditionally frees a command, and reference counting
1937 * or list removal must be done in the caller.
1938 */
1939static void transport_release_cmd(struct se_cmd *cmd)
1940{
1941 BUG_ON(!cmd->se_tfo);
1942
Andy Groverc8e31f22012-01-19 13:39:17 -08001943 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001944 core_tmr_release_req(cmd->se_tmr_req);
1945 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1946 kfree(cmd->t_task_cdb);
1947 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001948 * If this cmd has been setup with target_get_sess_cmd(), drop
1949 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001950 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001951 if (cmd->check_release != 0) {
1952 target_put_sess_cmd(cmd->se_sess, cmd);
1953 return;
1954 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001955 cmd->se_tfo->release_cmd(cmd);
1956}
1957
1958/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001959 * transport_put_cmd - release a reference to a command
1960 * @cmd: command to release
1961 *
1962 * This routine releases our reference to the command and frees it if possible.
1963 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001964static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001965{
1966 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001967
Andy Grovera1d8b492011-05-02 17:12:10 -07001968 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreierd9ed6942012-11-16 08:06:18 -08001969 if (atomic_read(&cmd->t_fe_count) &&
1970 !atomic_dec_and_test(&cmd->t_fe_count)) {
1971 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1972 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001973 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001974
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001975 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1976 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001977 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001978 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001979 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001980
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001981 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001982 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001983 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001984}
1985
Andy Grover49493142012-01-16 16:57:08 -08001986void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001987{
Andy Groverec98f782011-07-20 19:28:46 +00001988 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001989 struct page **pages;
1990 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991
Andy Grover05d1c7c2011-07-20 19:13:28 +00001992 /*
Andy Groverec98f782011-07-20 19:28:46 +00001993 * We need to take into account a possible offset here for fabrics like
1994 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
1995 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00001996 */
Andy Grover49493142012-01-16 16:57:08 -08001997 if (!cmd->t_data_nents)
1998 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02001999
2000 BUG_ON(!sg);
2001 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002002 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002003
Andy Grover49493142012-01-16 16:57:08 -08002004 /* >1 page. use vmap */
2005 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002006 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002007 return NULL;
2008
2009 /* convert sg[] to pages[] */
2010 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2011 pages[i] = sg_page(sg);
2012 }
2013
2014 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2015 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002016 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002017 return NULL;
2018
2019 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002020}
Andy Grover49493142012-01-16 16:57:08 -08002021EXPORT_SYMBOL(transport_kmap_data_sg);
2022
2023void transport_kunmap_data_sg(struct se_cmd *cmd)
2024{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002025 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002026 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002027 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002028 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002029 return;
2030 }
Andy Grover49493142012-01-16 16:57:08 -08002031
2032 vunmap(cmd->t_data_vmap);
2033 cmd->t_data_vmap = NULL;
2034}
2035EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002036
2037static int
2038transport_generic_get_mem(struct se_cmd *cmd)
2039{
Andy Groverec98f782011-07-20 19:28:46 +00002040 u32 length = cmd->data_length;
2041 unsigned int nents;
2042 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002043 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002044 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002045
Andy Groverec98f782011-07-20 19:28:46 +00002046 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2047 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2048 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002049 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002050
Andy Groverec98f782011-07-20 19:28:46 +00002051 cmd->t_data_nents = nents;
2052 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002053
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002054 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002055
Andy Groverec98f782011-07-20 19:28:46 +00002056 while (length) {
2057 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002058 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002059 if (!page)
2060 goto out;
2061
2062 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2063 length -= page_len;
2064 i++;
2065 }
2066 return 0;
2067
2068out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002069 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002070 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002071 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002072 }
2073 kfree(cmd->t_data_sg);
2074 cmd->t_data_sg = NULL;
2075 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002076}
2077
Andy Grovera1d8b492011-05-02 17:12:10 -07002078/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002079 * Allocate any required resources to execute the command. For writes we
2080 * might not have the payload yet, so notify the fabric via a call to
2081 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002082 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002083sense_reason_t
2084transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002085{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 int ret = 0;
2087
2088 /*
2089 * Determine is the TCM fabric module has already allocated physical
2090 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002091 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002092 */
Andy Groverec98f782011-07-20 19:28:46 +00002093 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2094 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002095 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002096 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002097 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002098 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002099
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002100 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002101
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002102 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002103 * If this command is not a write we can execute it right here,
2104 * for write buffers we need to notify the fabric driver first
2105 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002106 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002107 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002108 if (cmd->data_direction != DMA_TO_DEVICE) {
2109 target_execute_cmd(cmd);
2110 return 0;
2111 }
2112
2113 spin_lock_irq(&cmd->t_state_lock);
2114 cmd->t_state = TRANSPORT_WRITE_PENDING;
2115 spin_unlock_irq(&cmd->t_state_lock);
2116
2117 transport_cmd_check_stop(cmd, false);
2118
2119 ret = cmd->se_tfo->write_pending(cmd);
2120 if (ret == -EAGAIN || ret == -ENOMEM)
2121 goto queue_full;
2122
Christoph Hellwigde103c92012-11-06 12:24:09 -08002123 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2124 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002125
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002126 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002127
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002128queue_full:
2129 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2130 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2131 transport_handle_queue_full(cmd, cmd->se_dev);
2132 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002133}
Andy Grovera1d8b492011-05-02 17:12:10 -07002134EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002135
Christoph Hellwige057f532011-10-17 13:56:41 -04002136static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002137{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002138 int ret;
2139
2140 ret = cmd->se_tfo->write_pending(cmd);
2141 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002142 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2143 cmd);
2144 transport_handle_queue_full(cmd, cmd->se_dev);
2145 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002146}
2147
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002148void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002150 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002151 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002152 transport_wait_for_tasks(cmd);
2153
Christoph Hellwig35462972011-05-31 23:56:57 -04002154 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002155 } else {
2156 if (wait_for_tasks)
2157 transport_wait_for_tasks(cmd);
2158
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002159 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2160
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002161 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002163
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002164 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002165 }
2166}
2167EXPORT_SYMBOL(transport_generic_free_cmd);
2168
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002169/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2170 * @se_sess: session to reference
2171 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002172 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002173 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002174static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2175 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002176{
2177 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002178 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002179
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002180 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002181 /*
2182 * Add a second kref if the fabric caller is expecting to handle
2183 * fabric acknowledgement that requires two target_put_sess_cmd()
2184 * invocations before se_cmd descriptor release.
2185 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002186 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002187 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002188 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2189 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002190
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002191 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002192 if (se_sess->sess_tearing_down) {
2193 ret = -ESHUTDOWN;
2194 goto out;
2195 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002196 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2197 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002198
2199out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002200 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002201 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002202}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002203
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002204static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002205{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002206 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2207 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002208 unsigned long flags;
2209
2210 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2211 if (list_empty(&se_cmd->se_cmd_list)) {
2212 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002213 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002214 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002215 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002216 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2217 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2218 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002219 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002220 }
2221 list_del(&se_cmd->se_cmd_list);
2222 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2223
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002224 se_cmd->se_tfo->release_cmd(se_cmd);
2225}
2226
2227/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2228 * @se_sess: session to reference
2229 * @se_cmd: command descriptor to drop
2230 */
2231int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2232{
2233 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002234}
2235EXPORT_SYMBOL(target_put_sess_cmd);
2236
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002237/* target_sess_cmd_list_set_waiting - Flag all commands in
2238 * sess_cmd_list to complete cmd_wait_comp. Set
2239 * sess_tearing_down so no more commands are queued.
2240 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002241 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002242void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002243{
2244 struct se_cmd *se_cmd;
2245 unsigned long flags;
2246
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002247 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002248
2249 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002250 se_sess->sess_tearing_down = 1;
2251
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002252 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002253 se_cmd->cmd_wait_set = 1;
2254
2255 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2256}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002257EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258
2259/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2260 * @se_sess: session to wait for active I/O
2261 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2262 */
2263void target_wait_for_sess_cmds(
2264 struct se_session *se_sess,
2265 int wait_for_tasks)
2266{
2267 struct se_cmd *se_cmd, *tmp_cmd;
2268 bool rc = false;
2269
2270 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002271 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002272 list_del(&se_cmd->se_cmd_list);
2273
2274 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2275 " %d\n", se_cmd, se_cmd->t_state,
2276 se_cmd->se_tfo->get_cmd_state(se_cmd));
2277
2278 if (wait_for_tasks) {
2279 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2280 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2281 se_cmd->se_tfo->get_cmd_state(se_cmd));
2282
2283 rc = transport_wait_for_tasks(se_cmd);
2284
2285 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2286 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2287 se_cmd->se_tfo->get_cmd_state(se_cmd));
2288 }
2289
2290 if (!rc) {
2291 wait_for_completion(&se_cmd->cmd_wait_comp);
2292 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2293 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2294 se_cmd->se_tfo->get_cmd_state(se_cmd));
2295 }
2296
2297 se_cmd->se_tfo->release_cmd(se_cmd);
2298 }
2299}
2300EXPORT_SYMBOL(target_wait_for_sess_cmds);
2301
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002302/* transport_lun_wait_for_tasks():
2303 *
2304 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2305 * an struct se_lun to be successfully shutdown.
2306 */
2307static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2308{
2309 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002310 int ret = 0;
2311
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002312 /*
2313 * If the frontend has already requested this struct se_cmd to
2314 * be stopped, we can safely ignore this struct se_cmd.
2315 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002316 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002317 if (cmd->transport_state & CMD_T_STOP) {
2318 cmd->transport_state &= ~CMD_T_LUN_STOP;
2319
2320 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2321 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002322 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002323 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002324 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002325 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002326 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002327 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002328
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002329 // XXX: audit task_flags checks.
2330 spin_lock_irqsave(&cmd->t_state_lock, flags);
2331 if ((cmd->transport_state & CMD_T_BUSY) &&
2332 (cmd->transport_state & CMD_T_SENT)) {
2333 if (!target_stop_cmd(cmd, &flags))
2334 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002335 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002336 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002337
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002338 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2339 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002340 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002341 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002342 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002343 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002344 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002345 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002346 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002347
2348 return 0;
2349}
2350
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002351static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2352{
2353 struct se_cmd *cmd = NULL;
2354 unsigned long lun_flags, cmd_flags;
2355 /*
2356 * Do exception processing and return CHECK_CONDITION status to the
2357 * Initiator Port.
2358 */
2359 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002360 while (!list_empty(&lun->lun_cmd_list)) {
2361 cmd = list_first_entry(&lun->lun_cmd_list,
2362 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002363 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002364
Andy Grovera1d8b492011-05-02 17:12:10 -07002365 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002366 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002367 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002368 cmd->se_lun->unpacked_lun,
2369 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002370 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002371 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372
2373 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2374
Andy Grover6708bb22011-06-08 10:36:43 -07002375 if (!cmd->se_lun) {
2376 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002377 cmd->se_tfo->get_task_tag(cmd),
2378 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002379 BUG();
2380 }
2381 /*
2382 * If the Storage engine still owns the iscsi_cmd_t, determine
2383 * and/or stop its context.
2384 */
Andy Grover6708bb22011-06-08 10:36:43 -07002385 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002386 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2387 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002388
Andy Grovere3d6f902011-07-19 08:55:10 +00002389 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002390 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2391 continue;
2392 }
2393
Andy Grover6708bb22011-06-08 10:36:43 -07002394 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002395 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002396 cmd->se_lun->unpacked_lun,
2397 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002398
Andy Grovera1d8b492011-05-02 17:12:10 -07002399 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002400 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002401 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402 goto check_cond;
2403 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002404 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002405 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002406 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002407
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002408 /*
2409 * The Storage engine stopped this struct se_cmd before it was
2410 * send to the fabric frontend for delivery back to the
2411 * Initiator Node. Return this SCSI CDB back with an
2412 * CHECK_CONDITION status.
2413 */
2414check_cond:
2415 transport_send_check_condition_and_sense(cmd,
2416 TCM_NON_EXISTENT_LUN, 0);
2417 /*
2418 * If the fabric frontend is waiting for this iscsi_cmd_t to
2419 * be released, notify the waiting thread now that LU has
2420 * finished accessing it.
2421 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002422 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002423 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002424 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002425 " struct se_cmd: %p ITT: 0x%08x\n",
2426 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002427 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002428
Andy Grovera1d8b492011-05-02 17:12:10 -07002429 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002431 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002432 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2434 continue;
2435 }
Andy Grover6708bb22011-06-08 10:36:43 -07002436 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002437 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002438
Andy Grovera1d8b492011-05-02 17:12:10 -07002439 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002440 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2441 }
2442 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2443}
2444
2445static int transport_clear_lun_thread(void *p)
2446{
Jörn Engel8359cf42011-11-24 02:05:51 +01002447 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002448
2449 __transport_clear_lun_from_sessions(lun);
2450 complete(&lun->lun_shutdown_comp);
2451
2452 return 0;
2453}
2454
2455int transport_clear_lun_from_sessions(struct se_lun *lun)
2456{
2457 struct task_struct *kt;
2458
Andy Grover5951146d2011-07-19 10:26:37 +00002459 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002460 "tcm_cl_%u", lun->unpacked_lun);
2461 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002462 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002463 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464 }
2465 wait_for_completion(&lun->lun_shutdown_comp);
2466
2467 return 0;
2468}
2469
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002470/**
2471 * transport_wait_for_tasks - wait for completion to occur
2472 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002473 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002474 * Called from frontend fabric context to wait for storage engine
2475 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002476 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002477bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002478{
2479 unsigned long flags;
2480
Andy Grovera1d8b492011-05-02 17:12:10 -07002481 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002482 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2483 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002484 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002485 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002486 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002487
Andy Groverc8e31f22012-01-19 13:39:17 -08002488 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2489 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002490 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002491 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002492 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002493 /*
2494 * If we are already stopped due to an external event (ie: LUN shutdown)
2495 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002496 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002497 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2498 * has completed its operation on the struct se_cmd.
2499 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002500 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002501 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002502 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002503 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002504 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002505 /*
2506 * There is a special case for WRITES where a FE exception +
2507 * LUN shutdown means ConfigFS context is still sleeping on
2508 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2509 * We go ahead and up transport_lun_stop_comp just to be sure
2510 * here.
2511 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002512 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2513 complete(&cmd->transport_lun_stop_comp);
2514 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2515 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002516
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002517 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002518 /*
2519 * At this point, the frontend who was the originator of this
2520 * struct se_cmd, now owns the structure and can be released through
2521 * normal means below.
2522 */
Andy Grover6708bb22011-06-08 10:36:43 -07002523 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002524 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002525 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002526 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002527
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002528 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002529 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002530
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002531 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002532 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002533 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002534 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002536 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537
Andy Grover6708bb22011-06-08 10:36:43 -07002538 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002539 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002540 cmd, cmd->se_tfo->get_task_tag(cmd),
2541 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002542
Andy Grovera1d8b492011-05-02 17:12:10 -07002543 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002544
Andy Grovera1d8b492011-05-02 17:12:10 -07002545 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546
Andy Grovera1d8b492011-05-02 17:12:10 -07002547 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002548 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002549
Masanari Iida35d1efe2012-08-16 22:43:13 +09002550 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002551 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002552 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002554 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002555
2556 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002558EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002559
2560static int transport_get_sense_codes(
2561 struct se_cmd *cmd,
2562 u8 *asc,
2563 u8 *ascq)
2564{
2565 *asc = cmd->scsi_asc;
2566 *ascq = cmd->scsi_ascq;
2567
2568 return 0;
2569}
2570
Christoph Hellwigde103c92012-11-06 12:24:09 -08002571int
2572transport_send_check_condition_and_sense(struct se_cmd *cmd,
2573 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002574{
2575 unsigned char *buffer = cmd->sense_buffer;
2576 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002577 u8 asc = 0, ascq = 0;
2578
Andy Grovera1d8b492011-05-02 17:12:10 -07002579 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002580 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002581 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582 return 0;
2583 }
2584 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002585 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586
2587 if (!reason && from_transport)
2588 goto after_reason;
2589
2590 if (!from_transport)
2591 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002592
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002593 /*
2594 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2595 * SENSE KEY values from include/scsi/scsi.h
2596 */
2597 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002598 case TCM_NO_SENSE:
2599 /* CURRENT ERROR */
2600 buffer[0] = 0x70;
2601 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2602 /* Not Ready */
2603 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2604 /* NO ADDITIONAL SENSE INFORMATION */
2605 buffer[SPC_ASC_KEY_OFFSET] = 0;
2606 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2607 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002609 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002610 buffer[0] = 0x70;
2611 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002612 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002613 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002614 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002616 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002617 case TCM_UNSUPPORTED_SCSI_OPCODE:
2618 case TCM_SECTOR_COUNT_TOO_MANY:
2619 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002620 buffer[0] = 0x70;
2621 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002622 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002623 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002624 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002625 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002626 break;
2627 case TCM_UNKNOWN_MODE_PAGE:
2628 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002629 buffer[0] = 0x70;
2630 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002631 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002632 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002633 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002634 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002635 break;
2636 case TCM_CHECK_CONDITION_ABORT_CMD:
2637 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002638 buffer[0] = 0x70;
2639 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002641 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002642 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002643 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2644 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002645 break;
2646 case TCM_INCORRECT_AMOUNT_OF_DATA:
2647 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002648 buffer[0] = 0x70;
2649 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002651 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002652 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002653 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002654 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002655 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002656 break;
2657 case TCM_INVALID_CDB_FIELD:
2658 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002659 buffer[0] = 0x70;
2660 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002661 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002662 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002663 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002664 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002665 break;
2666 case TCM_INVALID_PARAMETER_LIST:
2667 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002668 buffer[0] = 0x70;
2669 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002670 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002671 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002672 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002673 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002674 break;
2675 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2676 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002677 buffer[0] = 0x70;
2678 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002680 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002681 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002683 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002684 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002685 break;
2686 case TCM_SERVICE_CRC_ERROR:
2687 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002688 buffer[0] = 0x70;
2689 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002690 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002691 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002692 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002693 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002694 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002695 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002696 break;
2697 case TCM_SNACK_REJECTED:
2698 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002699 buffer[0] = 0x70;
2700 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002701 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002702 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002703 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002704 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002705 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002706 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 break;
2708 case TCM_WRITE_PROTECTED:
2709 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002710 buffer[0] = 0x70;
2711 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002712 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002713 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002714 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002715 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002717 case TCM_ADDRESS_OUT_OF_RANGE:
2718 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002719 buffer[0] = 0x70;
2720 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002721 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002722 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002723 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002724 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002725 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002726 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2727 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002728 buffer[0] = 0x70;
2729 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002730 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002731 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002732 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002733 buffer[SPC_ASC_KEY_OFFSET] = asc;
2734 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002735 break;
2736 case TCM_CHECK_CONDITION_NOT_READY:
2737 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002738 buffer[0] = 0x70;
2739 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002741 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[SPC_ASC_KEY_OFFSET] = asc;
2744 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002745 break;
2746 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2747 default:
2748 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002749 buffer[0] = 0x70;
2750 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002751 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002752 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002753 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002754 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002755 break;
2756 }
2757 /*
2758 * This code uses linux/include/scsi/scsi.h SAM status codes!
2759 */
2760 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2761 /*
2762 * Automatically padded, this value is encoded in the fabric's
2763 * data_length response PDU containing the SCSI defined sense data.
2764 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002765 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002766
2767after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002768 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002769}
2770EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2771
2772int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2773{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002774 if (!(cmd->transport_state & CMD_T_ABORTED))
2775 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002776
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002777 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2778 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002779
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002780 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2781 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002782
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002783 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
2784 cmd->se_tfo->queue_status(cmd);
2785
2786 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002787}
2788EXPORT_SYMBOL(transport_check_aborted_status);
2789
2790void transport_send_task_abort(struct se_cmd *cmd)
2791{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002792 unsigned long flags;
2793
2794 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002795 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002796 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2797 return;
2798 }
2799 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2800
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002801 /*
2802 * If there are still expected incoming fabric WRITEs, we wait
2803 * until until they have completed before sending a TASK_ABORTED
2804 * response. This response with TASK_ABORTED status will be
2805 * queued back to fabric module by transport_check_aborted_status().
2806 */
2807 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002808 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002809 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002810 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002811 }
2812 }
2813 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002814
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002815 transport_lun_remove_cmd(cmd);
2816
Andy Grover6708bb22011-06-08 10:36:43 -07002817 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002818 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002819 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002820
Andy Grovere3d6f902011-07-19 08:55:10 +00002821 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002822}
2823
Christoph Hellwigaf877292012-07-08 15:58:49 -04002824static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002825{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002826 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002827 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002828 struct se_tmr_req *tmr = cmd->se_tmr_req;
2829 int ret;
2830
2831 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002832 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002833 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002834 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002835 case TMR_ABORT_TASK_SET:
2836 case TMR_CLEAR_ACA:
2837 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002838 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2839 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002840 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002841 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2842 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2843 TMR_FUNCTION_REJECTED;
2844 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002845 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002846 tmr->response = TMR_FUNCTION_REJECTED;
2847 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002848 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002849 tmr->response = TMR_FUNCTION_REJECTED;
2850 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002851 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002852 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002853 tmr->function);
2854 tmr->response = TMR_FUNCTION_REJECTED;
2855 break;
2856 }
2857
2858 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002859 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002860
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002861 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002862}
2863
Christoph Hellwigaf877292012-07-08 15:58:49 -04002864int transport_generic_handle_tmr(
2865 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002866{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002867 INIT_WORK(&cmd->work, target_tmr_work);
2868 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002869 return 0;
2870}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002871EXPORT_SYMBOL(transport_generic_handle_tmr);