blob: 96b64d57ebbb9f0180ace4f2dc0b3e6f5dd1e3b8 [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 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300910 snprintf(buf, sizeof(buf),
911 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800912 &vpd->device_identifier[0]);
913 break;
914 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300915 snprintf(buf, sizeof(buf),
916 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800917 &vpd->device_identifier[0]);
918 break;
919 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300920 snprintf(buf, sizeof(buf),
921 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800922 &vpd->device_identifier[0]);
923 break;
924 default:
925 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
926 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000927 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800928 break;
929 }
930
931 if (p_buf)
932 strncpy(p_buf, buf, p_buf_len);
933 else
Andy Grover6708bb22011-06-08 10:36:43 -0700934 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800935
936 return ret;
937}
938
939int
940transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
941{
942 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900943 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800944
945 /*
946 * The VPD Code Set (encoding)
947 *
948 * from spc3r23.pdf Section 7.6.3.1 Table 296
949 */
950 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
951 switch (vpd->device_identifier_code_set) {
952 case 0x01: /* Binary */
953 vpd->device_identifier[j++] =
954 hex_str[vpd->device_identifier_type];
955 while (i < (4 + page_83[3])) {
956 vpd->device_identifier[j++] =
957 hex_str[(page_83[i] & 0xf0) >> 4];
958 vpd->device_identifier[j++] =
959 hex_str[page_83[i] & 0x0f];
960 i++;
961 }
962 break;
963 case 0x02: /* ASCII */
964 case 0x03: /* UTF-8 */
965 while (i < (4 + page_83[3]))
966 vpd->device_identifier[j++] = page_83[i++];
967 break;
968 default:
969 break;
970 }
971
972 return transport_dump_vpd_ident(vpd, NULL, 0);
973}
974EXPORT_SYMBOL(transport_set_vpd_ident);
975
Christoph Hellwigde103c92012-11-06 12:24:09 -0800976sense_reason_t
977target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400978{
979 struct se_device *dev = cmd->se_dev;
980
981 if (cmd->unknown_data_length) {
982 cmd->data_length = size;
983 } else if (size != cmd->data_length) {
984 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
985 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
986 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
987 cmd->data_length, size, cmd->t_task_cdb[0]);
988
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400989 if (cmd->data_direction == DMA_TO_DEVICE) {
990 pr_err("Rejecting underflow/overflow"
991 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -0800992 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400993 }
994 /*
995 * Reject READ_* or WRITE_* with overflow/underflow for
996 * type SCF_SCSI_DATA_CDB.
997 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400998 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400999 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1000 " CDB on non 512-byte sector setup subsystem"
1001 " plugin: %s\n", dev->transport->name);
1002 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001003 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001004 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001005 /*
1006 * For the overflow case keep the existing fabric provided
1007 * ->data_length. Otherwise for the underflow case, reset
1008 * ->data_length to the smaller SCSI expected data transfer
1009 * length.
1010 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001011 if (size > cmd->data_length) {
1012 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1013 cmd->residual_count = (size - cmd->data_length);
1014 } else {
1015 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1016 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001017 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001018 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001019 }
1020
1021 return 0;
1022
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001023}
1024
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001025/*
1026 * Used by fabric modules containing a local struct se_cmd within their
1027 * fabric dependent per I/O descriptor.
1028 */
1029void transport_init_se_cmd(
1030 struct se_cmd *cmd,
1031 struct target_core_fabric_ops *tfo,
1032 struct se_session *se_sess,
1033 u32 data_length,
1034 int data_direction,
1035 int task_attr,
1036 unsigned char *sense_buffer)
1037{
Andy Grover5951146d2011-07-19 10:26:37 +00001038 INIT_LIST_HEAD(&cmd->se_lun_node);
1039 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001040 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001041 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001042 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001043 init_completion(&cmd->transport_lun_fe_stop_comp);
1044 init_completion(&cmd->transport_lun_stop_comp);
1045 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001046 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001047 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001048 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001049 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001050
1051 cmd->se_tfo = tfo;
1052 cmd->se_sess = se_sess;
1053 cmd->data_length = data_length;
1054 cmd->data_direction = data_direction;
1055 cmd->sam_task_attr = task_attr;
1056 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001057
1058 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001059}
1060EXPORT_SYMBOL(transport_init_se_cmd);
1061
Christoph Hellwigde103c92012-11-06 12:24:09 -08001062static sense_reason_t
1063transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001064{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001065 struct se_device *dev = cmd->se_dev;
1066
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001067 /*
1068 * Check if SAM Task Attribute emulation is enabled for this
1069 * struct se_device storage object
1070 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001071 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001072 return 0;
1073
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001074 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001075 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001076 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001077 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001078 }
1079 /*
1080 * Used to determine when ORDERED commands should go from
1081 * Dormant to Active status.
1082 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001083 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001084 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001085 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001086 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001087 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001088 return 0;
1089}
1090
Christoph Hellwigde103c92012-11-06 12:24:09 -08001091sense_reason_t
1092target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001093{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001094 struct se_device *dev = cmd->se_dev;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001095 unsigned long flags;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001096 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001097
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001098 /*
1099 * Ensure that the received CDB is less than the max (252 + 8) bytes
1100 * for VARIABLE_LENGTH_CMD
1101 */
1102 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001103 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001104 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1105 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001106 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001107 }
1108 /*
1109 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1110 * allocate the additional extended CDB buffer now.. Otherwise
1111 * setup the pointer from __t_task_cdb to t_task_cdb.
1112 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001113 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1114 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001115 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001116 if (!cmd->t_task_cdb) {
1117 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001118 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001119 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001120 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001121 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001122 }
1123 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001124 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001125 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001126 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001127 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001128 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001129
1130 /*
1131 * Check for an existing UNIT ATTENTION condition
1132 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001133 ret = target_scsi3_ua_check(cmd);
1134 if (ret)
1135 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001136
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001137 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001138 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001139 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001140
Christoph Hellwigde103c92012-11-06 12:24:09 -08001141 ret = target_check_reservation(cmd);
1142 if (ret)
1143 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001144
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001145 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001146 if (ret)
1147 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001148
Christoph Hellwigde103c92012-11-06 12:24:09 -08001149 ret = transport_check_alloc_task_attr(cmd);
1150 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001152
1153 spin_lock_irqsave(&cmd->t_state_lock, flags);
1154 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1155 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1156
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001157 spin_lock(&cmd->se_lun->lun_sep_lock);
1158 if (cmd->se_lun->lun_sep)
1159 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1160 spin_unlock(&cmd->se_lun->lun_sep_lock);
1161 return 0;
1162}
Andy Grovera12f41f2012-04-03 15:51:20 -07001163EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001164
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001165/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001166 * Used by fabric module frontends to queue tasks directly.
1167 * Many only be used from process context only
1168 */
1169int transport_handle_cdb_direct(
1170 struct se_cmd *cmd)
1171{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001172 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001173
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001174 if (!cmd->se_lun) {
1175 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001176 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001177 return -EINVAL;
1178 }
1179 if (in_interrupt()) {
1180 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001181 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001182 " from interrupt context\n");
1183 return -EINVAL;
1184 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001185 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001186 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1187 * outstanding descriptors are handled correctly during shutdown via
1188 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001189 *
1190 * Also, we don't take cmd->t_state_lock here as we only expect
1191 * this to be called for initial descriptor submission.
1192 */
1193 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001194 cmd->transport_state |= CMD_T_ACTIVE;
1195
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001196 /*
1197 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1198 * so follow TRANSPORT_NEW_CMD processing thread context usage
1199 * and call transport_generic_request_failure() if necessary..
1200 */
1201 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001202 if (ret)
1203 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001204 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001205}
1206EXPORT_SYMBOL(transport_handle_cdb_direct);
1207
Christoph Hellwigde103c92012-11-06 12:24:09 -08001208static sense_reason_t
1209transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1210 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1211{
1212 if (!sgl || !sgl_count)
1213 return 0;
1214
1215 /*
1216 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1217 * scatterlists already have been set to follow what the fabric
1218 * passes for the original expected data transfer length.
1219 */
1220 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1221 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1222 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1223 return TCM_INVALID_CDB_FIELD;
1224 }
1225
1226 cmd->t_data_sg = sgl;
1227 cmd->t_data_nents = sgl_count;
1228
1229 if (sgl_bidi && sgl_bidi_count) {
1230 cmd->t_bidi_data_sg = sgl_bidi;
1231 cmd->t_bidi_data_nents = sgl_bidi_count;
1232 }
1233 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1234 return 0;
1235}
1236
Nicholas Bellingera0267572012-10-01 17:23:22 -07001237/*
1238 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1239 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001240 *
1241 * @se_cmd: command descriptor to submit
1242 * @se_sess: associated se_sess for endpoint
1243 * @cdb: pointer to SCSI CDB
1244 * @sense: pointer to SCSI sense buffer
1245 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1246 * @data_length: fabric expected data transfer length
1247 * @task_addr: SAM task attribute
1248 * @data_dir: DMA data direction
1249 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001250 * @sgl: struct scatterlist memory for unidirectional mapping
1251 * @sgl_count: scatterlist count for unidirectional mapping
1252 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1253 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001254 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001255 * Returns non zero to signal active I/O shutdown failure. All other
1256 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1257 * but still return zero here.
1258 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001259 * This may only be called from process context, and also currently
1260 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001261 */
1262int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001263 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001264 u32 data_length, int task_attr, int data_dir, int flags,
1265 struct scatterlist *sgl, u32 sgl_count,
1266 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001267{
1268 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001269 sense_reason_t rc;
1270 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001271
1272 se_tpg = se_sess->se_tpg;
1273 BUG_ON(!se_tpg);
1274 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1275 BUG_ON(in_interrupt());
1276 /*
1277 * Initialize se_cmd for target operation. From this point
1278 * exceptions are handled by sending exception status via
1279 * target_core_fabric_ops->queue_status() callback
1280 */
1281 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1282 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001283 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1284 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001285 /*
1286 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1287 * se_sess->sess_cmd_list. A second kref_get here is necessary
1288 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1289 * kref_put() to happen during fabric packet acknowledgement.
1290 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001291 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1292 if (ret)
1293 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001294 /*
1295 * Signal bidirectional data payloads to target-core
1296 */
1297 if (flags & TARGET_SCF_BIDI_OP)
1298 se_cmd->se_cmd_flags |= SCF_BIDI;
1299 /*
1300 * Locate se_lun pointer and attach it to struct se_cmd
1301 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001302 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1303 if (rc) {
1304 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001305 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001306 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001307 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001308
Andy Grovera12f41f2012-04-03 15:51:20 -07001309 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001310 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001311 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001312 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001313 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001314 /*
1315 * When a non zero sgl_count has been passed perform SGL passthrough
1316 * mapping for pre-allocated fabric memory instead of having target
1317 * core perform an internal SGL allocation..
1318 */
1319 if (sgl_count != 0) {
1320 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001321
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001322 /*
1323 * A work-around for tcm_loop as some userspace code via
1324 * scsi-generic do not memset their associated read buffers,
1325 * so go ahead and do that here for type non-data CDBs. Also
1326 * note that this is currently guaranteed to be a single SGL
1327 * for this case by target core in target_setup_cmd_from_cdb()
1328 * -> transport_generic_cmd_sequencer().
1329 */
1330 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1331 se_cmd->data_direction == DMA_FROM_DEVICE) {
1332 unsigned char *buf = NULL;
1333
1334 if (sgl)
1335 buf = kmap(sg_page(sgl)) + sgl->offset;
1336
1337 if (buf) {
1338 memset(buf, 0, sgl->length);
1339 kunmap(sg_page(sgl));
1340 }
1341 }
1342
Nicholas Bellingera0267572012-10-01 17:23:22 -07001343 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1344 sgl_bidi, sgl_bidi_count);
1345 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001346 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001347 return 0;
1348 }
1349 }
Andy Grover11e319e2012-04-03 15:51:28 -07001350 /*
1351 * Check if we need to delay processing because of ALUA
1352 * Active/NonOptimized primary access state..
1353 */
1354 core_alua_check_nonop_delay(se_cmd);
1355
Nicholas Bellingera6360782011-11-18 20:36:22 -08001356 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001357 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001358}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001359EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1360
1361/*
1362 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1363 *
1364 * @se_cmd: command descriptor to submit
1365 * @se_sess: associated se_sess for endpoint
1366 * @cdb: pointer to SCSI CDB
1367 * @sense: pointer to SCSI sense buffer
1368 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1369 * @data_length: fabric expected data transfer length
1370 * @task_addr: SAM task attribute
1371 * @data_dir: DMA data direction
1372 * @flags: flags for command submission from target_sc_flags_tables
1373 *
1374 * Returns non zero to signal active I/O shutdown failure. All other
1375 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1376 * but still return zero here.
1377 *
1378 * This may only be called from process context, and also currently
1379 * assumes internal allocation of fabric payload buffer by target-core.
1380 *
1381 * It also assumes interal target core SGL memory allocation.
1382 */
1383int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1384 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1385 u32 data_length, int task_attr, int data_dir, int flags)
1386{
1387 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1388 unpacked_lun, data_length, task_attr, data_dir,
1389 flags, NULL, 0, NULL, 0);
1390}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001391EXPORT_SYMBOL(target_submit_cmd);
1392
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001393static void target_complete_tmr_failure(struct work_struct *work)
1394{
1395 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1396
1397 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1398 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001399
1400 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001401}
1402
Andy Groverea98d7f2012-01-19 13:39:21 -08001403/**
1404 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1405 * for TMR CDBs
1406 *
1407 * @se_cmd: command descriptor to submit
1408 * @se_sess: associated se_sess for endpoint
1409 * @sense: pointer to SCSI sense buffer
1410 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1411 * @fabric_context: fabric context for TMR req
1412 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001413 * @gfp: gfp type for caller
1414 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001415 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001416 *
1417 * Callable from all contexts.
1418 **/
1419
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001420int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001421 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001422 void *fabric_tmr_ptr, unsigned char tm_type,
1423 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001424{
1425 struct se_portal_group *se_tpg;
1426 int ret;
1427
1428 se_tpg = se_sess->se_tpg;
1429 BUG_ON(!se_tpg);
1430
1431 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1432 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001433 /*
1434 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1435 * allocation failure.
1436 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001437 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001438 if (ret < 0)
1439 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001440
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001441 if (tm_type == TMR_ABORT_TASK)
1442 se_cmd->se_tmr_req->ref_task_tag = tag;
1443
Andy Groverea98d7f2012-01-19 13:39:21 -08001444 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001445 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1446 if (ret) {
1447 core_tmr_release_req(se_cmd->se_tmr_req);
1448 return ret;
1449 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001450
Andy Groverea98d7f2012-01-19 13:39:21 -08001451 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1452 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001453 /*
1454 * For callback during failure handling, push this work off
1455 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1456 */
1457 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1458 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001459 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001460 }
1461 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001462 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001463}
1464EXPORT_SYMBOL(target_submit_tmr);
1465
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001466/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001467 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001468 * has completed.
1469 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001470bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001471{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001472 bool was_active = false;
1473
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001474 if (cmd->transport_state & CMD_T_BUSY) {
1475 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001476 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1477
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001478 pr_debug("cmd %p waiting to complete\n", cmd);
1479 wait_for_completion(&cmd->task_stop_comp);
1480 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001481
1482 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001483 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1484 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001485 was_active = true;
1486 }
1487
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001488 return was_active;
1489}
1490
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001491/*
1492 * Handle SAM-esque emulation for generic transport request failures.
1493 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001494void transport_generic_request_failure(struct se_cmd *cmd,
1495 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001496{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001497 int ret = 0;
1498
Andy Grover6708bb22011-06-08 10:36:43 -07001499 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001500 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001501 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001502 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001503 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001504 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001505 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001506 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1507 (cmd->transport_state & CMD_T_STOP) != 0,
1508 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001509
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001510 /*
1511 * For SAM Task Attribute emulation for failed struct se_cmd
1512 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001513 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001514
Christoph Hellwigde103c92012-11-06 12:24:09 -08001515 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001516 case TCM_NON_EXISTENT_LUN:
1517 case TCM_UNSUPPORTED_SCSI_OPCODE:
1518 case TCM_INVALID_CDB_FIELD:
1519 case TCM_INVALID_PARAMETER_LIST:
1520 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1521 case TCM_UNKNOWN_MODE_PAGE:
1522 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001523 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001524 case TCM_CHECK_CONDITION_ABORT_CMD:
1525 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1526 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001527 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001528 case TCM_OUT_OF_RESOURCES:
1529 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1530 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001531 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001532 /*
1533 * No SENSE Data payload for this case, set SCSI Status
1534 * and queue the response to $FABRIC_MOD.
1535 *
1536 * Uses linux/include/scsi/scsi.h SAM status codes defs
1537 */
1538 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1539 /*
1540 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1541 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1542 * CONFLICT STATUS.
1543 *
1544 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1545 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001546 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001547 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001548 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001549 cmd->orig_fe_lun, 0x2C,
1550 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1551
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001552 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001553 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001554 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001555 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001556 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001557 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001558 cmd->t_task_cdb[0], sense_reason);
1559 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001560 break;
1561 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001562
Christoph Hellwigde103c92012-11-06 12:24:09 -08001563 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001564 if (ret == -EAGAIN || ret == -ENOMEM)
1565 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001566
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001567check_stop:
1568 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001569 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001570 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001571 return;
1572
1573queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001574 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1575 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001576}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001577EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001578
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001579static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001580{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001581 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001582
1583 spin_lock_irq(&cmd->t_state_lock);
1584 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1585 spin_unlock_irq(&cmd->t_state_lock);
1586
Christoph Hellwigde103c92012-11-06 12:24:09 -08001587 if (cmd->execute_cmd) {
1588 ret = cmd->execute_cmd(cmd);
1589 if (ret) {
1590 spin_lock_irq(&cmd->t_state_lock);
1591 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1592 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001593
Christoph Hellwigde103c92012-11-06 12:24:09 -08001594 transport_generic_request_failure(cmd, ret);
1595 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001596 }
1597}
1598
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001599static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001600{
1601 struct se_device *dev = cmd->se_dev;
1602
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001603 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1604 return false;
1605
1606 /*
1607 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1608 * to allow the passed struct se_cmd list of tasks to the front of the list.
1609 */
1610 switch (cmd->sam_task_attr) {
1611 case MSG_HEAD_TAG:
1612 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1613 "se_ordered_id: %u\n",
1614 cmd->t_task_cdb[0], cmd->se_ordered_id);
1615 return false;
1616 case MSG_ORDERED_TAG:
1617 atomic_inc(&dev->dev_ordered_sync);
1618 smp_mb__after_atomic_inc();
1619
1620 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1621 " se_ordered_id: %u\n",
1622 cmd->t_task_cdb[0], cmd->se_ordered_id);
1623
1624 /*
1625 * Execute an ORDERED command if no other older commands
1626 * exist that need to be completed first.
1627 */
1628 if (!atomic_read(&dev->simple_cmds))
1629 return false;
1630 break;
1631 default:
1632 /*
1633 * For SIMPLE and UNTAGGED Task Attribute commands
1634 */
1635 atomic_inc(&dev->simple_cmds);
1636 smp_mb__after_atomic_inc();
1637 break;
1638 }
1639
1640 if (atomic_read(&dev->dev_ordered_sync) == 0)
1641 return false;
1642
1643 spin_lock(&dev->delayed_cmd_lock);
1644 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1645 spin_unlock(&dev->delayed_cmd_lock);
1646
1647 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1648 " delayed CMD list, se_ordered_id: %u\n",
1649 cmd->t_task_cdb[0], cmd->sam_task_attr,
1650 cmd->se_ordered_id);
1651 return true;
1652}
1653
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001654void target_execute_cmd(struct se_cmd *cmd)
1655{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001656 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001657 * If the received CDB has aleady been aborted stop processing it here.
1658 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001659 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001660 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001661 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001662 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001663
1664 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001665 * Determine if IOCTL context caller in requesting the stopping of this
1666 * command for LUN shutdown purposes.
1667 */
1668 spin_lock_irq(&cmd->t_state_lock);
1669 if (cmd->transport_state & CMD_T_LUN_STOP) {
1670 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1671 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1672
1673 cmd->transport_state &= ~CMD_T_ACTIVE;
1674 spin_unlock_irq(&cmd->t_state_lock);
1675 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001676 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001677 }
1678 /*
1679 * Determine if frontend context caller is requesting the stopping of
1680 * this command for frontend exceptions.
1681 */
1682 if (cmd->transport_state & CMD_T_STOP) {
1683 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1684 __func__, __LINE__,
1685 cmd->se_tfo->get_task_tag(cmd));
1686
1687 spin_unlock_irq(&cmd->t_state_lock);
1688 complete(&cmd->t_transport_stop_comp);
1689 return;
1690 }
1691
1692 cmd->t_state = TRANSPORT_PROCESSING;
Roland Dreiere627c612013-01-02 12:47:57 -08001693 cmd->transport_state |= CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001694 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001695
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001696 if (!target_handle_task_attr(cmd))
1697 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001698}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001699EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001700
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001701/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001702 * Process all commands up to the last received ORDERED task attribute which
1703 * requires another blocking boundary
1704 */
1705static void target_restart_delayed_cmds(struct se_device *dev)
1706{
1707 for (;;) {
1708 struct se_cmd *cmd;
1709
1710 spin_lock(&dev->delayed_cmd_lock);
1711 if (list_empty(&dev->delayed_cmd_list)) {
1712 spin_unlock(&dev->delayed_cmd_lock);
1713 break;
1714 }
1715
1716 cmd = list_entry(dev->delayed_cmd_list.next,
1717 struct se_cmd, se_delayed_node);
1718 list_del(&cmd->se_delayed_node);
1719 spin_unlock(&dev->delayed_cmd_lock);
1720
1721 __target_execute_cmd(cmd);
1722
1723 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1724 break;
1725 }
1726}
1727
1728/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001729 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001730 * and ordered cmds need to have their tasks added to the execution queue.
1731 */
1732static void transport_complete_task_attr(struct se_cmd *cmd)
1733{
Andy Grover5951146d2011-07-19 10:26:37 +00001734 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001735
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001736 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1737 return;
1738
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001739 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001740 atomic_dec(&dev->simple_cmds);
1741 smp_mb__after_atomic_dec();
1742 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001743 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001744 " SIMPLE: %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_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001747 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001748 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1750 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001751 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752 atomic_dec(&dev->dev_ordered_sync);
1753 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754
1755 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001756 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001757 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1758 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001759
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001760 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001761}
1762
Christoph Hellwige057f532011-10-17 13:56:41 -04001763static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001764{
1765 int ret = 0;
1766
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001767 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001768
1769 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1770 ret = cmd->se_tfo->queue_status(cmd);
1771 if (ret)
1772 goto out;
1773 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001774
1775 switch (cmd->data_direction) {
1776 case DMA_FROM_DEVICE:
1777 ret = cmd->se_tfo->queue_data_in(cmd);
1778 break;
1779 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001780 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001781 ret = cmd->se_tfo->queue_data_in(cmd);
1782 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001783 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001784 }
1785 /* Fall through for DMA_TO_DEVICE */
1786 case DMA_NONE:
1787 ret = cmd->se_tfo->queue_status(cmd);
1788 break;
1789 default:
1790 break;
1791 }
1792
Christoph Hellwige057f532011-10-17 13:56:41 -04001793out:
1794 if (ret < 0) {
1795 transport_handle_queue_full(cmd, cmd->se_dev);
1796 return;
1797 }
1798 transport_lun_remove_cmd(cmd);
1799 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001800}
1801
1802static void transport_handle_queue_full(
1803 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001804 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001805{
1806 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001807 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1808 atomic_inc(&dev->dev_qf_count);
1809 smp_mb__after_atomic_inc();
1810 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1811
1812 schedule_work(&cmd->se_dev->qf_work_queue);
1813}
1814
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001815static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001816{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001817 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001818 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001819
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001820 /*
1821 * Check if we need to move delayed/dormant tasks from cmds on the
1822 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1823 * Attribute.
1824 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001825 transport_complete_task_attr(cmd);
1826
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001827 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001828 * Check to schedule QUEUE_FULL work, or execute an existing
1829 * cmd->transport_qf_callback()
1830 */
1831 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1832 schedule_work(&cmd->se_dev->qf_work_queue);
1833
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001834 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001835 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001836 * the struct se_cmd in question.
1837 */
1838 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001839 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001840 ret = transport_send_check_condition_and_sense(
1841 cmd, 0, 1);
1842 if (ret == -EAGAIN || ret == -ENOMEM)
1843 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001844
Paolo Bonzini27a27092012-09-05 17:09:14 +02001845 transport_lun_remove_cmd(cmd);
1846 transport_cmd_check_stop_to_fabric(cmd);
1847 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001848 }
1849 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001850 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001851 * XDWRITE_READ_10 emulation.
1852 */
1853 if (cmd->transport_complete_callback)
1854 cmd->transport_complete_callback(cmd);
1855
1856 switch (cmd->data_direction) {
1857 case DMA_FROM_DEVICE:
1858 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001859 if (cmd->se_lun->lun_sep) {
1860 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001861 cmd->data_length;
1862 }
1863 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001864
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001865 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001866 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001867 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001868 break;
1869 case DMA_TO_DEVICE:
1870 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001871 if (cmd->se_lun->lun_sep) {
1872 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001873 cmd->data_length;
1874 }
1875 spin_unlock(&cmd->se_lun->lun_sep_lock);
1876 /*
1877 * Check if we need to send READ payload for BIDI-COMMAND
1878 */
Andy Groverec98f782011-07-20 19:28:46 +00001879 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001880 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001881 if (cmd->se_lun->lun_sep) {
1882 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001883 cmd->data_length;
1884 }
1885 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001886 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001887 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001888 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001889 break;
1890 }
1891 /* Fall through for DMA_TO_DEVICE */
1892 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001893 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001894 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001895 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001896 break;
1897 default:
1898 break;
1899 }
1900
1901 transport_lun_remove_cmd(cmd);
1902 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001903 return;
1904
1905queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001906 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001907 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001908 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1909 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001910}
1911
Andy Grover6708bb22011-06-08 10:36:43 -07001912static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001913{
Andy Groverec98f782011-07-20 19:28:46 +00001914 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001915 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001916
Andy Grover6708bb22011-06-08 10:36:43 -07001917 for_each_sg(sgl, sg, nents, count)
1918 __free_page(sg_page(sg));
1919
1920 kfree(sgl);
1921}
1922
1923static inline void transport_free_pages(struct se_cmd *cmd)
1924{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001925 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001926 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001927
Andy Grover6708bb22011-06-08 10:36:43 -07001928 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001929 cmd->t_data_sg = NULL;
1930 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001931
Andy Grover6708bb22011-06-08 10:36:43 -07001932 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001933 cmd->t_bidi_data_sg = NULL;
1934 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001935}
1936
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001937/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001938 * transport_release_cmd - free a command
1939 * @cmd: command to free
1940 *
1941 * This routine unconditionally frees a command, and reference counting
1942 * or list removal must be done in the caller.
1943 */
1944static void transport_release_cmd(struct se_cmd *cmd)
1945{
1946 BUG_ON(!cmd->se_tfo);
1947
Andy Groverc8e31f22012-01-19 13:39:17 -08001948 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001949 core_tmr_release_req(cmd->se_tmr_req);
1950 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1951 kfree(cmd->t_task_cdb);
1952 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001953 * If this cmd has been setup with target_get_sess_cmd(), drop
1954 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001955 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001956 if (cmd->check_release != 0) {
1957 target_put_sess_cmd(cmd->se_sess, cmd);
1958 return;
1959 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001960 cmd->se_tfo->release_cmd(cmd);
1961}
1962
1963/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001964 * transport_put_cmd - release a reference to a command
1965 * @cmd: command to release
1966 *
1967 * This routine releases our reference to the command and frees it if possible.
1968 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001969static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001970{
1971 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001972
Andy Grovera1d8b492011-05-02 17:12:10 -07001973 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreierd9ed6942012-11-16 08:06:18 -08001974 if (atomic_read(&cmd->t_fe_count) &&
1975 !atomic_dec_and_test(&cmd->t_fe_count)) {
1976 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1977 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001978 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001979
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001980 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1981 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001982 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001983 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001984 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001986 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001987 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001988 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001989}
1990
Andy Grover49493142012-01-16 16:57:08 -08001991void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001992{
Andy Groverec98f782011-07-20 19:28:46 +00001993 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001994 struct page **pages;
1995 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001996
Andy Grover05d1c7c2011-07-20 19:13:28 +00001997 /*
Andy Groverec98f782011-07-20 19:28:46 +00001998 * We need to take into account a possible offset here for fabrics like
1999 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2000 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002001 */
Andy Grover49493142012-01-16 16:57:08 -08002002 if (!cmd->t_data_nents)
2003 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002004
2005 BUG_ON(!sg);
2006 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002007 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002008
Andy Grover49493142012-01-16 16:57:08 -08002009 /* >1 page. use vmap */
2010 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002011 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002012 return NULL;
2013
2014 /* convert sg[] to pages[] */
2015 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2016 pages[i] = sg_page(sg);
2017 }
2018
2019 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2020 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002021 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002022 return NULL;
2023
2024 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002025}
Andy Grover49493142012-01-16 16:57:08 -08002026EXPORT_SYMBOL(transport_kmap_data_sg);
2027
2028void transport_kunmap_data_sg(struct se_cmd *cmd)
2029{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002030 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002031 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002032 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002033 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002034 return;
2035 }
Andy Grover49493142012-01-16 16:57:08 -08002036
2037 vunmap(cmd->t_data_vmap);
2038 cmd->t_data_vmap = NULL;
2039}
2040EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002041
2042static int
2043transport_generic_get_mem(struct se_cmd *cmd)
2044{
Andy Groverec98f782011-07-20 19:28:46 +00002045 u32 length = cmd->data_length;
2046 unsigned int nents;
2047 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002048 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002049 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002050
Andy Groverec98f782011-07-20 19:28:46 +00002051 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2052 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2053 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002054 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002055
Andy Groverec98f782011-07-20 19:28:46 +00002056 cmd->t_data_nents = nents;
2057 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002058
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002059 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002060
Andy Groverec98f782011-07-20 19:28:46 +00002061 while (length) {
2062 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002063 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002064 if (!page)
2065 goto out;
2066
2067 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2068 length -= page_len;
2069 i++;
2070 }
2071 return 0;
2072
2073out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002074 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002075 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002076 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002077 }
2078 kfree(cmd->t_data_sg);
2079 cmd->t_data_sg = NULL;
2080 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002081}
2082
Andy Grovera1d8b492011-05-02 17:12:10 -07002083/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002084 * Allocate any required resources to execute the command. For writes we
2085 * might not have the payload yet, so notify the fabric via a call to
2086 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002087 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002088sense_reason_t
2089transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002090{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002091 int ret = 0;
2092
2093 /*
2094 * Determine is the TCM fabric module has already allocated physical
2095 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002096 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002097 */
Andy Groverec98f782011-07-20 19:28:46 +00002098 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2099 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002100 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002101 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002102 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002103 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002104
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002105 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002106
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002107 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002108 * If this command is not a write we can execute it right here,
2109 * for write buffers we need to notify the fabric driver first
2110 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002111 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002112 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002113 if (cmd->data_direction != DMA_TO_DEVICE) {
2114 target_execute_cmd(cmd);
2115 return 0;
2116 }
2117
2118 spin_lock_irq(&cmd->t_state_lock);
2119 cmd->t_state = TRANSPORT_WRITE_PENDING;
2120 spin_unlock_irq(&cmd->t_state_lock);
2121
2122 transport_cmd_check_stop(cmd, false);
2123
2124 ret = cmd->se_tfo->write_pending(cmd);
2125 if (ret == -EAGAIN || ret == -ENOMEM)
2126 goto queue_full;
2127
Christoph Hellwigde103c92012-11-06 12:24:09 -08002128 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2129 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002130
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002131 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002132
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002133queue_full:
2134 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2135 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2136 transport_handle_queue_full(cmd, cmd->se_dev);
2137 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002138}
Andy Grovera1d8b492011-05-02 17:12:10 -07002139EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002140
Christoph Hellwige057f532011-10-17 13:56:41 -04002141static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002142{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002143 int ret;
2144
2145 ret = cmd->se_tfo->write_pending(cmd);
2146 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002147 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2148 cmd);
2149 transport_handle_queue_full(cmd, cmd->se_dev);
2150 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002151}
2152
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002153void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002154{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002155 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002156 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002157 transport_wait_for_tasks(cmd);
2158
Christoph Hellwig35462972011-05-31 23:56:57 -04002159 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002160 } else {
2161 if (wait_for_tasks)
2162 transport_wait_for_tasks(cmd);
2163
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002164 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2165
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002166 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002167 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002168
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002169 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002170 }
2171}
2172EXPORT_SYMBOL(transport_generic_free_cmd);
2173
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002174/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2175 * @se_sess: session to reference
2176 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002177 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002178 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002179static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2180 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002181{
2182 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002183 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002184
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002185 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002186 /*
2187 * Add a second kref if the fabric caller is expecting to handle
2188 * fabric acknowledgement that requires two target_put_sess_cmd()
2189 * invocations before se_cmd descriptor release.
2190 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002191 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002192 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002193 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2194 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002195
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002196 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002197 if (se_sess->sess_tearing_down) {
2198 ret = -ESHUTDOWN;
2199 goto out;
2200 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002201 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2202 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002203
2204out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002205 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002206 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002207}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002208
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002209static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002210{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002211 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2212 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002213 unsigned long flags;
2214
2215 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2216 if (list_empty(&se_cmd->se_cmd_list)) {
2217 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002218 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002219 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002220 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002221 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2222 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2223 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002224 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002225 }
2226 list_del(&se_cmd->se_cmd_list);
2227 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2228
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002229 se_cmd->se_tfo->release_cmd(se_cmd);
2230}
2231
2232/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2233 * @se_sess: session to reference
2234 * @se_cmd: command descriptor to drop
2235 */
2236int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2237{
2238 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002239}
2240EXPORT_SYMBOL(target_put_sess_cmd);
2241
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002242/* target_sess_cmd_list_set_waiting - Flag all commands in
2243 * sess_cmd_list to complete cmd_wait_comp. Set
2244 * sess_tearing_down so no more commands are queued.
2245 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002246 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002247void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002248{
2249 struct se_cmd *se_cmd;
2250 unsigned long flags;
2251
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002252 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002253
2254 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002255 se_sess->sess_tearing_down = 1;
2256
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002257 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258 se_cmd->cmd_wait_set = 1;
2259
2260 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2261}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002262EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002263
2264/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2265 * @se_sess: session to wait for active I/O
2266 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2267 */
2268void target_wait_for_sess_cmds(
2269 struct se_session *se_sess,
2270 int wait_for_tasks)
2271{
2272 struct se_cmd *se_cmd, *tmp_cmd;
2273 bool rc = false;
2274
2275 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002276 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002277 list_del(&se_cmd->se_cmd_list);
2278
2279 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2280 " %d\n", se_cmd, se_cmd->t_state,
2281 se_cmd->se_tfo->get_cmd_state(se_cmd));
2282
2283 if (wait_for_tasks) {
2284 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2285 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2286 se_cmd->se_tfo->get_cmd_state(se_cmd));
2287
2288 rc = transport_wait_for_tasks(se_cmd);
2289
2290 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2291 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2292 se_cmd->se_tfo->get_cmd_state(se_cmd));
2293 }
2294
2295 if (!rc) {
2296 wait_for_completion(&se_cmd->cmd_wait_comp);
2297 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2298 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2299 se_cmd->se_tfo->get_cmd_state(se_cmd));
2300 }
2301
2302 se_cmd->se_tfo->release_cmd(se_cmd);
2303 }
2304}
2305EXPORT_SYMBOL(target_wait_for_sess_cmds);
2306
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002307/* transport_lun_wait_for_tasks():
2308 *
2309 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2310 * an struct se_lun to be successfully shutdown.
2311 */
2312static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2313{
2314 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002315 int ret = 0;
2316
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002317 /*
2318 * If the frontend has already requested this struct se_cmd to
2319 * be stopped, we can safely ignore this struct se_cmd.
2320 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002321 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002322 if (cmd->transport_state & CMD_T_STOP) {
2323 cmd->transport_state &= ~CMD_T_LUN_STOP;
2324
2325 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2326 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002327 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002328 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002329 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002330 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002331 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002332 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002333
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002334 // XXX: audit task_flags checks.
2335 spin_lock_irqsave(&cmd->t_state_lock, flags);
2336 if ((cmd->transport_state & CMD_T_BUSY) &&
2337 (cmd->transport_state & CMD_T_SENT)) {
2338 if (!target_stop_cmd(cmd, &flags))
2339 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002340 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002341 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002342
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002343 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2344 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002345 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002346 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002347 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002348 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002349 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002350 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002351 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002352
2353 return 0;
2354}
2355
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002356static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2357{
2358 struct se_cmd *cmd = NULL;
2359 unsigned long lun_flags, cmd_flags;
2360 /*
2361 * Do exception processing and return CHECK_CONDITION status to the
2362 * Initiator Port.
2363 */
2364 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002365 while (!list_empty(&lun->lun_cmd_list)) {
2366 cmd = list_first_entry(&lun->lun_cmd_list,
2367 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002368 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002369
Andy Grovera1d8b492011-05-02 17:12:10 -07002370 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002371 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002373 cmd->se_lun->unpacked_lun,
2374 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002375 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002376 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002377
2378 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2379
Andy Grover6708bb22011-06-08 10:36:43 -07002380 if (!cmd->se_lun) {
2381 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002382 cmd->se_tfo->get_task_tag(cmd),
2383 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002384 BUG();
2385 }
2386 /*
2387 * If the Storage engine still owns the iscsi_cmd_t, determine
2388 * and/or stop its context.
2389 */
Andy Grover6708bb22011-06-08 10:36:43 -07002390 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002391 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2392 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002393
Andy Grovere3d6f902011-07-19 08:55:10 +00002394 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002395 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2396 continue;
2397 }
2398
Andy Grover6708bb22011-06-08 10:36:43 -07002399 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002400 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002401 cmd->se_lun->unpacked_lun,
2402 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002403
Andy Grovera1d8b492011-05-02 17:12:10 -07002404 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002405 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
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 goto check_cond;
2408 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002409 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002410 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002411 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002412
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002413 /*
2414 * The Storage engine stopped this struct se_cmd before it was
2415 * send to the fabric frontend for delivery back to the
2416 * Initiator Node. Return this SCSI CDB back with an
2417 * CHECK_CONDITION status.
2418 */
2419check_cond:
2420 transport_send_check_condition_and_sense(cmd,
2421 TCM_NON_EXISTENT_LUN, 0);
2422 /*
2423 * If the fabric frontend is waiting for this iscsi_cmd_t to
2424 * be released, notify the waiting thread now that LU has
2425 * finished accessing it.
2426 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002427 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002428 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002429 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430 " struct se_cmd: %p ITT: 0x%08x\n",
2431 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002432 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433
Andy Grovera1d8b492011-05-02 17:12:10 -07002434 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002435 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002436 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002437 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002438 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2439 continue;
2440 }
Andy Grover6708bb22011-06-08 10:36:43 -07002441 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002442 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002443
Andy Grovera1d8b492011-05-02 17:12:10 -07002444 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002445 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2446 }
2447 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2448}
2449
2450static int transport_clear_lun_thread(void *p)
2451{
Jörn Engel8359cf42011-11-24 02:05:51 +01002452 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002453
2454 __transport_clear_lun_from_sessions(lun);
2455 complete(&lun->lun_shutdown_comp);
2456
2457 return 0;
2458}
2459
2460int transport_clear_lun_from_sessions(struct se_lun *lun)
2461{
2462 struct task_struct *kt;
2463
Andy Grover5951146d2011-07-19 10:26:37 +00002464 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002465 "tcm_cl_%u", lun->unpacked_lun);
2466 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002467 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002468 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002469 }
2470 wait_for_completion(&lun->lun_shutdown_comp);
2471
2472 return 0;
2473}
2474
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002475/**
2476 * transport_wait_for_tasks - wait for completion to occur
2477 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002478 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002479 * Called from frontend fabric context to wait for storage engine
2480 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002481 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002482bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002483{
2484 unsigned long flags;
2485
Andy Grovera1d8b492011-05-02 17:12:10 -07002486 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002487 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2488 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002489 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002490 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002491 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002492
Andy Groverc8e31f22012-01-19 13:39:17 -08002493 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2494 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002495 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002496 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002497 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002498 /*
2499 * If we are already stopped due to an external event (ie: LUN shutdown)
2500 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002501 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002502 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2503 * has completed its operation on the struct se_cmd.
2504 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002505 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002506 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002507 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002508 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002509 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002510 /*
2511 * There is a special case for WRITES where a FE exception +
2512 * LUN shutdown means ConfigFS context is still sleeping on
2513 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2514 * We go ahead and up transport_lun_stop_comp just to be sure
2515 * here.
2516 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002517 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2518 complete(&cmd->transport_lun_stop_comp);
2519 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2520 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002521
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002522 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002523 /*
2524 * At this point, the frontend who was the originator of this
2525 * struct se_cmd, now owns the structure and can be released through
2526 * normal means below.
2527 */
Andy Grover6708bb22011-06-08 10:36:43 -07002528 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002529 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002531 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002532
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002533 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002534 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002535
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002536 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002537 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002538 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002539 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002540
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002541 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002542
Andy Grover6708bb22011-06-08 10:36:43 -07002543 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002544 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002545 cmd, cmd->se_tfo->get_task_tag(cmd),
2546 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002547
Andy Grovera1d8b492011-05-02 17:12:10 -07002548 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002549
Andy Grovera1d8b492011-05-02 17:12:10 -07002550 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002551
Andy Grovera1d8b492011-05-02 17:12:10 -07002552 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002553 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002554
Masanari Iida35d1efe2012-08-16 22:43:13 +09002555 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002556 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002557 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002558
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002559 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002560
2561 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002562}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002563EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002564
2565static int transport_get_sense_codes(
2566 struct se_cmd *cmd,
2567 u8 *asc,
2568 u8 *ascq)
2569{
2570 *asc = cmd->scsi_asc;
2571 *ascq = cmd->scsi_ascq;
2572
2573 return 0;
2574}
2575
Christoph Hellwigde103c92012-11-06 12:24:09 -08002576int
2577transport_send_check_condition_and_sense(struct se_cmd *cmd,
2578 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002579{
2580 unsigned char *buffer = cmd->sense_buffer;
2581 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582 u8 asc = 0, ascq = 0;
2583
Andy Grovera1d8b492011-05-02 17:12:10 -07002584 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002586 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002587 return 0;
2588 }
2589 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002590 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002591
2592 if (!reason && from_transport)
2593 goto after_reason;
2594
2595 if (!from_transport)
2596 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002597
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002598 /*
2599 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2600 * SENSE KEY values from include/scsi/scsi.h
2601 */
2602 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002603 case TCM_NO_SENSE:
2604 /* CURRENT ERROR */
2605 buffer[0] = 0x70;
2606 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2607 /* Not Ready */
2608 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2609 /* NO ADDITIONAL SENSE INFORMATION */
2610 buffer[SPC_ASC_KEY_OFFSET] = 0;
2611 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2612 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002613 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002614 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[0] = 0x70;
2616 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002617 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002618 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002619 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002620 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002621 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002622 case TCM_UNSUPPORTED_SCSI_OPCODE:
2623 case TCM_SECTOR_COUNT_TOO_MANY:
2624 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002625 buffer[0] = 0x70;
2626 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002627 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002628 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002629 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002630 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002631 break;
2632 case TCM_UNKNOWN_MODE_PAGE:
2633 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002634 buffer[0] = 0x70;
2635 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002636 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002637 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002638 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002639 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640 break;
2641 case TCM_CHECK_CONDITION_ABORT_CMD:
2642 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002643 buffer[0] = 0x70;
2644 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002645 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002646 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002647 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002648 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2649 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650 break;
2651 case TCM_INCORRECT_AMOUNT_OF_DATA:
2652 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002653 buffer[0] = 0x70;
2654 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002655 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002656 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002657 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002658 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002659 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002660 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002661 break;
2662 case TCM_INVALID_CDB_FIELD:
2663 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002664 buffer[0] = 0x70;
2665 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002666 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002667 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002668 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002669 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002670 break;
2671 case TCM_INVALID_PARAMETER_LIST:
2672 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002673 buffer[0] = 0x70;
2674 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002675 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002676 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002678 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 break;
2680 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2681 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002682 buffer[0] = 0x70;
2683 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002684 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002685 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002687 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002688 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002689 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002690 break;
2691 case TCM_SERVICE_CRC_ERROR:
2692 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002693 buffer[0] = 0x70;
2694 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002695 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002696 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002698 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002699 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002700 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002701 break;
2702 case TCM_SNACK_REJECTED:
2703 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002704 buffer[0] = 0x70;
2705 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002706 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002707 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002708 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002709 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002710 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002711 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002712 break;
2713 case TCM_WRITE_PROTECTED:
2714 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002715 buffer[0] = 0x70;
2716 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002717 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002718 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002719 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002720 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002721 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002722 case TCM_ADDRESS_OUT_OF_RANGE:
2723 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002724 buffer[0] = 0x70;
2725 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002726 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002727 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002728 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002729 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002730 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2732 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002733 buffer[0] = 0x70;
2734 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002735 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002736 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002737 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002738 buffer[SPC_ASC_KEY_OFFSET] = asc;
2739 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 break;
2741 case TCM_CHECK_CONDITION_NOT_READY:
2742 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002743 buffer[0] = 0x70;
2744 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002745 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002746 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002747 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002748 buffer[SPC_ASC_KEY_OFFSET] = asc;
2749 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002750 break;
2751 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2752 default:
2753 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002754 buffer[0] = 0x70;
2755 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002756 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002757 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002758 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002759 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002760 break;
2761 }
2762 /*
2763 * This code uses linux/include/scsi/scsi.h SAM status codes!
2764 */
2765 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2766 /*
2767 * Automatically padded, this value is encoded in the fabric's
2768 * data_length response PDU containing the SCSI defined sense data.
2769 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002770 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002771
2772after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002773 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002774}
2775EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2776
2777int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2778{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002779 if (!(cmd->transport_state & CMD_T_ABORTED))
2780 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002781
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002782 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2783 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002784
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002785 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2786 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002787
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002788 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
2789 cmd->se_tfo->queue_status(cmd);
2790
2791 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002792}
2793EXPORT_SYMBOL(transport_check_aborted_status);
2794
2795void transport_send_task_abort(struct se_cmd *cmd)
2796{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002797 unsigned long flags;
2798
2799 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002800 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002801 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2802 return;
2803 }
2804 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2805
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806 /*
2807 * If there are still expected incoming fabric WRITEs, we wait
2808 * until until they have completed before sending a TASK_ABORTED
2809 * response. This response with TASK_ABORTED status will be
2810 * queued back to fabric module by transport_check_aborted_status().
2811 */
2812 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002813 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002814 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002815 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002816 }
2817 }
2818 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002819
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002820 transport_lun_remove_cmd(cmd);
2821
Andy Grover6708bb22011-06-08 10:36:43 -07002822 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002823 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002824 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002825
Andy Grovere3d6f902011-07-19 08:55:10 +00002826 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002827}
2828
Christoph Hellwigaf877292012-07-08 15:58:49 -04002829static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002830{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002831 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002832 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002833 struct se_tmr_req *tmr = cmd->se_tmr_req;
2834 int ret;
2835
2836 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002837 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002838 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002839 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002840 case TMR_ABORT_TASK_SET:
2841 case TMR_CLEAR_ACA:
2842 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002843 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2844 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002845 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002846 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2847 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2848 TMR_FUNCTION_REJECTED;
2849 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002850 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002851 tmr->response = TMR_FUNCTION_REJECTED;
2852 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002853 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002854 tmr->response = TMR_FUNCTION_REJECTED;
2855 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002857 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002858 tmr->function);
2859 tmr->response = TMR_FUNCTION_REJECTED;
2860 break;
2861 }
2862
2863 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002864 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002865
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002866 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002867}
2868
Christoph Hellwigaf877292012-07-08 15:58:49 -04002869int transport_generic_handle_tmr(
2870 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002871{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002872 INIT_WORK(&cmd->work, target_tmr_work);
2873 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002874 return 0;
2875}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002876EXPORT_SYMBOL(transport_generic_handle_tmr);