blob: 1ebde4c568471ea408f2b4c85e62a06b33765b2b [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{
Andy Groverc8e31f22012-01-19 13:39:17 -0800544 if (!(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellinger8dc52b52011-10-09 02:02:51 -0700545 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800546
547 if (transport_cmd_check_stop_to_fabric(cmd))
548 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400549 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200550 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800551}
552
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400553static void target_complete_failure_work(struct work_struct *work)
554{
555 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
556
Christoph Hellwigde103c92012-11-06 12:24:09 -0800557 transport_generic_request_failure(cmd,
558 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400559}
560
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200561/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200562 * Used when asking transport to copy Sense Data from the underlying
563 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200564 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200565static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200566{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200567 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200568
569 WARN_ON(!cmd->se_lun);
570
571 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200572 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200573
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200574 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
575 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200576
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700577 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200578
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200579 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200580 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700581 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200582}
583
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400584void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400586 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400587 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800589
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400590 cmd->scsi_status = scsi_status;
591
592
Andy Grovera1d8b492011-05-02 17:12:10 -0700593 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400594 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800595
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200597 dev->transport->transport_complete(cmd,
598 cmd->t_data_sg,
599 transport_get_sense_buffer(cmd));
600 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800601 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800602 }
603
604 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400605 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800606 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400607 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700608 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400609 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800610 return;
611 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700612
613 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500614 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700615
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800616 /*
617 * Check for case where an explict ABORT_TASK has been received
618 * and transport_wait_for_tasks() will be waiting for completion..
619 */
620 if (cmd->transport_state & CMD_T_ABORTED &&
621 cmd->transport_state & CMD_T_STOP) {
622 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
623 complete(&cmd->t_transport_stop_comp);
624 return;
625 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400626 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800627 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400628 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800629 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400630
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400631 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800632 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700633 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800634
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400635 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800636}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400637EXPORT_SYMBOL(target_complete_cmd);
638
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400639static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800640{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400641 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800642 unsigned long flags;
643
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800644 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400645 if (!cmd->state_active) {
646 list_add_tail(&cmd->state_list, &dev->state_list);
647 cmd->state_active = true;
648 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800649 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800650}
651
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700652/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700653 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700654 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400655static void transport_write_pending_qf(struct se_cmd *cmd);
656static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700657
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400658void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700659{
660 struct se_device *dev = container_of(work, struct se_device,
661 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700662 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700663 struct se_cmd *cmd, *cmd_tmp;
664
665 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700666 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
667 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700668
Roland Dreierbcac3642011-08-27 21:33:16 -0700669 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700670 list_del(&cmd->se_qf_node);
671 atomic_dec(&dev->dev_qf_count);
672 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700673
Andy Grover6708bb22011-06-08 10:36:43 -0700674 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700675 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400676 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700677 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
678 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400679
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400680 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
681 transport_write_pending_qf(cmd);
682 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
683 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700684 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700685}
686
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800687unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
688{
689 switch (cmd->data_direction) {
690 case DMA_NONE:
691 return "NONE";
692 case DMA_FROM_DEVICE:
693 return "READ";
694 case DMA_TO_DEVICE:
695 return "WRITE";
696 case DMA_BIDIRECTIONAL:
697 return "BIDI";
698 default:
699 break;
700 }
701
702 return "UNKNOWN";
703}
704
705void transport_dump_dev_state(
706 struct se_device *dev,
707 char *b,
708 int *bl)
709{
710 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400711 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800712 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400713 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800714 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800715
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400716 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700717 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400718 dev->dev_attrib.block_size,
719 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800720 *bl += sprintf(b + *bl, " ");
721}
722
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800723void transport_dump_vpd_proto_id(
724 struct t10_vpd *vpd,
725 unsigned char *p_buf,
726 int p_buf_len)
727{
728 unsigned char buf[VPD_TMP_BUF_SIZE];
729 int len;
730
731 memset(buf, 0, VPD_TMP_BUF_SIZE);
732 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
733
734 switch (vpd->protocol_identifier) {
735 case 0x00:
736 sprintf(buf+len, "Fibre Channel\n");
737 break;
738 case 0x10:
739 sprintf(buf+len, "Parallel SCSI\n");
740 break;
741 case 0x20:
742 sprintf(buf+len, "SSA\n");
743 break;
744 case 0x30:
745 sprintf(buf+len, "IEEE 1394\n");
746 break;
747 case 0x40:
748 sprintf(buf+len, "SCSI Remote Direct Memory Access"
749 " Protocol\n");
750 break;
751 case 0x50:
752 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
753 break;
754 case 0x60:
755 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
756 break;
757 case 0x70:
758 sprintf(buf+len, "Automation/Drive Interface Transport"
759 " Protocol\n");
760 break;
761 case 0x80:
762 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
763 break;
764 default:
765 sprintf(buf+len, "Unknown 0x%02x\n",
766 vpd->protocol_identifier);
767 break;
768 }
769
770 if (p_buf)
771 strncpy(p_buf, buf, p_buf_len);
772 else
Andy Grover6708bb22011-06-08 10:36:43 -0700773 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800774}
775
776void
777transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
778{
779 /*
780 * Check if the Protocol Identifier Valid (PIV) bit is set..
781 *
782 * from spc3r23.pdf section 7.5.1
783 */
784 if (page_83[1] & 0x80) {
785 vpd->protocol_identifier = (page_83[0] & 0xf0);
786 vpd->protocol_identifier_set = 1;
787 transport_dump_vpd_proto_id(vpd, NULL, 0);
788 }
789}
790EXPORT_SYMBOL(transport_set_vpd_proto_id);
791
792int transport_dump_vpd_assoc(
793 struct t10_vpd *vpd,
794 unsigned char *p_buf,
795 int p_buf_len)
796{
797 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000798 int ret = 0;
799 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800800
801 memset(buf, 0, VPD_TMP_BUF_SIZE);
802 len = sprintf(buf, "T10 VPD Identifier Association: ");
803
804 switch (vpd->association) {
805 case 0x00:
806 sprintf(buf+len, "addressed logical unit\n");
807 break;
808 case 0x10:
809 sprintf(buf+len, "target port\n");
810 break;
811 case 0x20:
812 sprintf(buf+len, "SCSI target device\n");
813 break;
814 default:
815 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000816 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800817 break;
818 }
819
820 if (p_buf)
821 strncpy(p_buf, buf, p_buf_len);
822 else
Andy Grover6708bb22011-06-08 10:36:43 -0700823 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800824
825 return ret;
826}
827
828int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
829{
830 /*
831 * The VPD identification association..
832 *
833 * from spc3r23.pdf Section 7.6.3.1 Table 297
834 */
835 vpd->association = (page_83[1] & 0x30);
836 return transport_dump_vpd_assoc(vpd, NULL, 0);
837}
838EXPORT_SYMBOL(transport_set_vpd_assoc);
839
840int transport_dump_vpd_ident_type(
841 struct t10_vpd *vpd,
842 unsigned char *p_buf,
843 int p_buf_len)
844{
845 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000846 int ret = 0;
847 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800848
849 memset(buf, 0, VPD_TMP_BUF_SIZE);
850 len = sprintf(buf, "T10 VPD Identifier Type: ");
851
852 switch (vpd->device_identifier_type) {
853 case 0x00:
854 sprintf(buf+len, "Vendor specific\n");
855 break;
856 case 0x01:
857 sprintf(buf+len, "T10 Vendor ID based\n");
858 break;
859 case 0x02:
860 sprintf(buf+len, "EUI-64 based\n");
861 break;
862 case 0x03:
863 sprintf(buf+len, "NAA\n");
864 break;
865 case 0x04:
866 sprintf(buf+len, "Relative target port identifier\n");
867 break;
868 case 0x08:
869 sprintf(buf+len, "SCSI name string\n");
870 break;
871 default:
872 sprintf(buf+len, "Unsupported: 0x%02x\n",
873 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000874 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800875 break;
876 }
877
Andy Grovere3d6f902011-07-19 08:55:10 +0000878 if (p_buf) {
879 if (p_buf_len < strlen(buf)+1)
880 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800881 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000882 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700883 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000884 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800885
886 return ret;
887}
888
889int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
890{
891 /*
892 * The VPD identifier type..
893 *
894 * from spc3r23.pdf Section 7.6.3.1 Table 298
895 */
896 vpd->device_identifier_type = (page_83[1] & 0x0f);
897 return transport_dump_vpd_ident_type(vpd, NULL, 0);
898}
899EXPORT_SYMBOL(transport_set_vpd_ident_type);
900
901int transport_dump_vpd_ident(
902 struct t10_vpd *vpd,
903 unsigned char *p_buf,
904 int p_buf_len)
905{
906 unsigned char buf[VPD_TMP_BUF_SIZE];
907 int ret = 0;
908
909 memset(buf, 0, VPD_TMP_BUF_SIZE);
910
911 switch (vpd->device_identifier_code_set) {
912 case 0x01: /* Binary */
913 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
914 &vpd->device_identifier[0]);
915 break;
916 case 0x02: /* ASCII */
917 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
918 &vpd->device_identifier[0]);
919 break;
920 case 0x03: /* UTF-8 */
921 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
922 &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 Hellwigde103c92012-11-06 12:24:09 -08001140
1141 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;
1148
1149 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);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001399}
1400
Andy Groverea98d7f2012-01-19 13:39:21 -08001401/**
1402 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1403 * for TMR CDBs
1404 *
1405 * @se_cmd: command descriptor to submit
1406 * @se_sess: associated se_sess for endpoint
1407 * @sense: pointer to SCSI sense buffer
1408 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1409 * @fabric_context: fabric context for TMR req
1410 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001411 * @gfp: gfp type for caller
1412 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001413 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001414 *
1415 * Callable from all contexts.
1416 **/
1417
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001418int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001419 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001420 void *fabric_tmr_ptr, unsigned char tm_type,
1421 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001422{
1423 struct se_portal_group *se_tpg;
1424 int ret;
1425
1426 se_tpg = se_sess->se_tpg;
1427 BUG_ON(!se_tpg);
1428
1429 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1430 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001431 /*
1432 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1433 * allocation failure.
1434 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001435 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001436 if (ret < 0)
1437 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001438
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001439 if (tm_type == TMR_ABORT_TASK)
1440 se_cmd->se_tmr_req->ref_task_tag = tag;
1441
Andy Groverea98d7f2012-01-19 13:39:21 -08001442 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001443 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1444 if (ret) {
1445 core_tmr_release_req(se_cmd->se_tmr_req);
1446 return ret;
1447 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001448
Andy Groverea98d7f2012-01-19 13:39:21 -08001449 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1450 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001451 /*
1452 * For callback during failure handling, push this work off
1453 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1454 */
1455 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1456 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001457 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001458 }
1459 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001460 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001461}
1462EXPORT_SYMBOL(target_submit_tmr);
1463
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001464/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001465 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001466 * has completed.
1467 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001468bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001469{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001470 bool was_active = false;
1471
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001472 if (cmd->transport_state & CMD_T_BUSY) {
1473 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001474 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1475
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001476 pr_debug("cmd %p waiting to complete\n", cmd);
1477 wait_for_completion(&cmd->task_stop_comp);
1478 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001479
1480 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001481 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1482 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001483 was_active = true;
1484 }
1485
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001486 return was_active;
1487}
1488
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001489/*
1490 * Handle SAM-esque emulation for generic transport request failures.
1491 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001492void transport_generic_request_failure(struct se_cmd *cmd,
1493 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001494{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001495 int ret = 0;
1496
Andy Grover6708bb22011-06-08 10:36:43 -07001497 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001498 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001499 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001500 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001501 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001502 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001503 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001504 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1505 (cmd->transport_state & CMD_T_STOP) != 0,
1506 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001507
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001508 /*
1509 * For SAM Task Attribute emulation for failed struct se_cmd
1510 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001511 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001512
Christoph Hellwigde103c92012-11-06 12:24:09 -08001513 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001514 case TCM_NON_EXISTENT_LUN:
1515 case TCM_UNSUPPORTED_SCSI_OPCODE:
1516 case TCM_INVALID_CDB_FIELD:
1517 case TCM_INVALID_PARAMETER_LIST:
1518 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1519 case TCM_UNKNOWN_MODE_PAGE:
1520 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001521 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001522 case TCM_CHECK_CONDITION_ABORT_CMD:
1523 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1524 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001525 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001526 case TCM_OUT_OF_RESOURCES:
1527 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1528 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001529 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001530 /*
1531 * No SENSE Data payload for this case, set SCSI Status
1532 * and queue the response to $FABRIC_MOD.
1533 *
1534 * Uses linux/include/scsi/scsi.h SAM status codes defs
1535 */
1536 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1537 /*
1538 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1539 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1540 * CONFLICT STATUS.
1541 *
1542 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1543 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001544 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001545 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001546 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001547 cmd->orig_fe_lun, 0x2C,
1548 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1549
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001550 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001551 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001552 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001553 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001554 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001555 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001556 cmd->t_task_cdb[0], sense_reason);
1557 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001558 break;
1559 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001560
Christoph Hellwigde103c92012-11-06 12:24:09 -08001561 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001562 if (ret == -EAGAIN || ret == -ENOMEM)
1563 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001564
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001565check_stop:
1566 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001567 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001568 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001569 return;
1570
1571queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001572 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1573 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001574}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001575EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001576
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001577static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001578{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001579 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001580
1581 spin_lock_irq(&cmd->t_state_lock);
1582 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1583 spin_unlock_irq(&cmd->t_state_lock);
1584
Christoph Hellwigde103c92012-11-06 12:24:09 -08001585 if (cmd->execute_cmd) {
1586 ret = cmd->execute_cmd(cmd);
1587 if (ret) {
1588 spin_lock_irq(&cmd->t_state_lock);
1589 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1590 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001591
Christoph Hellwigde103c92012-11-06 12:24:09 -08001592 transport_generic_request_failure(cmd, ret);
1593 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001594 }
1595}
1596
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001597static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001598{
1599 struct se_device *dev = cmd->se_dev;
1600
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001601 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1602 return false;
1603
1604 /*
1605 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1606 * to allow the passed struct se_cmd list of tasks to the front of the list.
1607 */
1608 switch (cmd->sam_task_attr) {
1609 case MSG_HEAD_TAG:
1610 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1611 "se_ordered_id: %u\n",
1612 cmd->t_task_cdb[0], cmd->se_ordered_id);
1613 return false;
1614 case MSG_ORDERED_TAG:
1615 atomic_inc(&dev->dev_ordered_sync);
1616 smp_mb__after_atomic_inc();
1617
1618 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1619 " se_ordered_id: %u\n",
1620 cmd->t_task_cdb[0], cmd->se_ordered_id);
1621
1622 /*
1623 * Execute an ORDERED command if no other older commands
1624 * exist that need to be completed first.
1625 */
1626 if (!atomic_read(&dev->simple_cmds))
1627 return false;
1628 break;
1629 default:
1630 /*
1631 * For SIMPLE and UNTAGGED Task Attribute commands
1632 */
1633 atomic_inc(&dev->simple_cmds);
1634 smp_mb__after_atomic_inc();
1635 break;
1636 }
1637
1638 if (atomic_read(&dev->dev_ordered_sync) == 0)
1639 return false;
1640
1641 spin_lock(&dev->delayed_cmd_lock);
1642 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1643 spin_unlock(&dev->delayed_cmd_lock);
1644
1645 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1646 " delayed CMD list, se_ordered_id: %u\n",
1647 cmd->t_task_cdb[0], cmd->sam_task_attr,
1648 cmd->se_ordered_id);
1649 return true;
1650}
1651
1652void target_execute_cmd(struct se_cmd *cmd)
1653{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001654 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001655 * If the received CDB has aleady been aborted stop processing it here.
1656 */
1657 if (transport_check_aborted_status(cmd, 1))
1658 return;
1659
1660 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001661 * Determine if IOCTL context caller in requesting the stopping of this
1662 * command for LUN shutdown purposes.
1663 */
1664 spin_lock_irq(&cmd->t_state_lock);
1665 if (cmd->transport_state & CMD_T_LUN_STOP) {
1666 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1667 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1668
1669 cmd->transport_state &= ~CMD_T_ACTIVE;
1670 spin_unlock_irq(&cmd->t_state_lock);
1671 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001672 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001673 }
1674 /*
1675 * Determine if frontend context caller is requesting the stopping of
1676 * this command for frontend exceptions.
1677 */
1678 if (cmd->transport_state & CMD_T_STOP) {
1679 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1680 __func__, __LINE__,
1681 cmd->se_tfo->get_task_tag(cmd));
1682
1683 spin_unlock_irq(&cmd->t_state_lock);
1684 complete(&cmd->t_transport_stop_comp);
1685 return;
1686 }
1687
1688 cmd->t_state = TRANSPORT_PROCESSING;
1689 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001690
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001691 if (!target_handle_task_attr(cmd))
1692 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001693}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001694EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001695
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001696/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001697 * Process all commands up to the last received ORDERED task attribute which
1698 * requires another blocking boundary
1699 */
1700static void target_restart_delayed_cmds(struct se_device *dev)
1701{
1702 for (;;) {
1703 struct se_cmd *cmd;
1704
1705 spin_lock(&dev->delayed_cmd_lock);
1706 if (list_empty(&dev->delayed_cmd_list)) {
1707 spin_unlock(&dev->delayed_cmd_lock);
1708 break;
1709 }
1710
1711 cmd = list_entry(dev->delayed_cmd_list.next,
1712 struct se_cmd, se_delayed_node);
1713 list_del(&cmd->se_delayed_node);
1714 spin_unlock(&dev->delayed_cmd_lock);
1715
1716 __target_execute_cmd(cmd);
1717
1718 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1719 break;
1720 }
1721}
1722
1723/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001724 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001725 * and ordered cmds need to have their tasks added to the execution queue.
1726 */
1727static void transport_complete_task_attr(struct se_cmd *cmd)
1728{
Andy Grover5951146d2011-07-19 10:26:37 +00001729 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001730
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001731 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1732 return;
1733
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001734 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001735 atomic_dec(&dev->simple_cmds);
1736 smp_mb__after_atomic_dec();
1737 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001738 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001739 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1740 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001741 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001742 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001743 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001744 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1745 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001746 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001747 atomic_dec(&dev->dev_ordered_sync);
1748 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749
1750 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001751 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001752 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1753 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001755 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001756}
1757
Christoph Hellwige057f532011-10-17 13:56:41 -04001758static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001759{
1760 int ret = 0;
1761
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001762 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001763
1764 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1765 ret = cmd->se_tfo->queue_status(cmd);
1766 if (ret)
1767 goto out;
1768 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001769
1770 switch (cmd->data_direction) {
1771 case DMA_FROM_DEVICE:
1772 ret = cmd->se_tfo->queue_data_in(cmd);
1773 break;
1774 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001775 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001776 ret = cmd->se_tfo->queue_data_in(cmd);
1777 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001778 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001779 }
1780 /* Fall through for DMA_TO_DEVICE */
1781 case DMA_NONE:
1782 ret = cmd->se_tfo->queue_status(cmd);
1783 break;
1784 default:
1785 break;
1786 }
1787
Christoph Hellwige057f532011-10-17 13:56:41 -04001788out:
1789 if (ret < 0) {
1790 transport_handle_queue_full(cmd, cmd->se_dev);
1791 return;
1792 }
1793 transport_lun_remove_cmd(cmd);
1794 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001795}
1796
1797static void transport_handle_queue_full(
1798 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001799 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001800{
1801 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001802 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1803 atomic_inc(&dev->dev_qf_count);
1804 smp_mb__after_atomic_inc();
1805 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1806
1807 schedule_work(&cmd->se_dev->qf_work_queue);
1808}
1809
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001810static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001811{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001812 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001813 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001814
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001815 /*
1816 * Check if we need to move delayed/dormant tasks from cmds on the
1817 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1818 * Attribute.
1819 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001820 transport_complete_task_attr(cmd);
1821
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001822 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001823 * Check to schedule QUEUE_FULL work, or execute an existing
1824 * cmd->transport_qf_callback()
1825 */
1826 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1827 schedule_work(&cmd->se_dev->qf_work_queue);
1828
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001829 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001830 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001831 * the struct se_cmd in question.
1832 */
1833 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001834 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001835 ret = transport_send_check_condition_and_sense(
1836 cmd, 0, 1);
1837 if (ret == -EAGAIN || ret == -ENOMEM)
1838 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001839
Paolo Bonzini27a27092012-09-05 17:09:14 +02001840 transport_lun_remove_cmd(cmd);
1841 transport_cmd_check_stop_to_fabric(cmd);
1842 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001843 }
1844 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001845 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001846 * XDWRITE_READ_10 emulation.
1847 */
1848 if (cmd->transport_complete_callback)
1849 cmd->transport_complete_callback(cmd);
1850
1851 switch (cmd->data_direction) {
1852 case DMA_FROM_DEVICE:
1853 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001854 if (cmd->se_lun->lun_sep) {
1855 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001856 cmd->data_length;
1857 }
1858 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001859
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001860 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001861 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001862 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001863 break;
1864 case DMA_TO_DEVICE:
1865 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001866 if (cmd->se_lun->lun_sep) {
1867 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001868 cmd->data_length;
1869 }
1870 spin_unlock(&cmd->se_lun->lun_sep_lock);
1871 /*
1872 * Check if we need to send READ payload for BIDI-COMMAND
1873 */
Andy Groverec98f782011-07-20 19:28:46 +00001874 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001875 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001876 if (cmd->se_lun->lun_sep) {
1877 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001878 cmd->data_length;
1879 }
1880 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001881 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001882 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001883 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001884 break;
1885 }
1886 /* Fall through for DMA_TO_DEVICE */
1887 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001888 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001889 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001890 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001891 break;
1892 default:
1893 break;
1894 }
1895
1896 transport_lun_remove_cmd(cmd);
1897 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001898 return;
1899
1900queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001901 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001902 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001903 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1904 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001905}
1906
Andy Grover6708bb22011-06-08 10:36:43 -07001907static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908{
Andy Groverec98f782011-07-20 19:28:46 +00001909 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001910 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001911
Andy Grover6708bb22011-06-08 10:36:43 -07001912 for_each_sg(sgl, sg, nents, count)
1913 __free_page(sg_page(sg));
1914
1915 kfree(sgl);
1916}
1917
1918static inline void transport_free_pages(struct se_cmd *cmd)
1919{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001920 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001921 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001922
Andy Grover6708bb22011-06-08 10:36:43 -07001923 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001924 cmd->t_data_sg = NULL;
1925 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001926
Andy Grover6708bb22011-06-08 10:36:43 -07001927 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001928 cmd->t_bidi_data_sg = NULL;
1929 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001930}
1931
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001932/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001933 * transport_release_cmd - free a command
1934 * @cmd: command to free
1935 *
1936 * This routine unconditionally frees a command, and reference counting
1937 * or list removal must be done in the caller.
1938 */
1939static void transport_release_cmd(struct se_cmd *cmd)
1940{
1941 BUG_ON(!cmd->se_tfo);
1942
Andy Groverc8e31f22012-01-19 13:39:17 -08001943 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001944 core_tmr_release_req(cmd->se_tmr_req);
1945 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1946 kfree(cmd->t_task_cdb);
1947 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001948 * If this cmd has been setup with target_get_sess_cmd(), drop
1949 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001950 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001951 if (cmd->check_release != 0) {
1952 target_put_sess_cmd(cmd->se_sess, cmd);
1953 return;
1954 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001955 cmd->se_tfo->release_cmd(cmd);
1956}
1957
1958/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001959 * transport_put_cmd - release a reference to a command
1960 * @cmd: command to release
1961 *
1962 * This routine releases our reference to the command and frees it if possible.
1963 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001964static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001965{
1966 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001967
Andy Grovera1d8b492011-05-02 17:12:10 -07001968 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreierd9ed6942012-11-16 08:06:18 -08001969 if (atomic_read(&cmd->t_fe_count) &&
1970 !atomic_dec_and_test(&cmd->t_fe_count)) {
1971 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1972 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001973 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001974
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001975 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1976 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001977 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001978 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001979 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001980
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001981 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001982 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001983 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001984}
1985
Andy Grover49493142012-01-16 16:57:08 -08001986void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001987{
Andy Groverec98f782011-07-20 19:28:46 +00001988 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001989 struct page **pages;
1990 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991
Andy Grover05d1c7c2011-07-20 19:13:28 +00001992 /*
Andy Groverec98f782011-07-20 19:28:46 +00001993 * We need to take into account a possible offset here for fabrics like
1994 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
1995 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00001996 */
Andy Grover49493142012-01-16 16:57:08 -08001997 if (!cmd->t_data_nents)
1998 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02001999
2000 BUG_ON(!sg);
2001 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002002 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002003
Andy Grover49493142012-01-16 16:57:08 -08002004 /* >1 page. use vmap */
2005 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002006 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002007 return NULL;
2008
2009 /* convert sg[] to pages[] */
2010 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2011 pages[i] = sg_page(sg);
2012 }
2013
2014 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2015 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002016 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002017 return NULL;
2018
2019 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002020}
Andy Grover49493142012-01-16 16:57:08 -08002021EXPORT_SYMBOL(transport_kmap_data_sg);
2022
2023void transport_kunmap_data_sg(struct se_cmd *cmd)
2024{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002025 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002026 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002027 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002028 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002029 return;
2030 }
Andy Grover49493142012-01-16 16:57:08 -08002031
2032 vunmap(cmd->t_data_vmap);
2033 cmd->t_data_vmap = NULL;
2034}
2035EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002036
2037static int
2038transport_generic_get_mem(struct se_cmd *cmd)
2039{
Andy Groverec98f782011-07-20 19:28:46 +00002040 u32 length = cmd->data_length;
2041 unsigned int nents;
2042 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002043 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002044 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002045
Andy Groverec98f782011-07-20 19:28:46 +00002046 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2047 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2048 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002049 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002050
Andy Groverec98f782011-07-20 19:28:46 +00002051 cmd->t_data_nents = nents;
2052 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002053
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002054 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002055
Andy Groverec98f782011-07-20 19:28:46 +00002056 while (length) {
2057 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002058 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002059 if (!page)
2060 goto out;
2061
2062 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2063 length -= page_len;
2064 i++;
2065 }
2066 return 0;
2067
2068out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002069 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002070 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002071 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002072 }
2073 kfree(cmd->t_data_sg);
2074 cmd->t_data_sg = NULL;
2075 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002076}
2077
Andy Grovera1d8b492011-05-02 17:12:10 -07002078/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002079 * Allocate any required resources to execute the command. For writes we
2080 * might not have the payload yet, so notify the fabric via a call to
2081 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002082 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002083sense_reason_t
2084transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002085{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 int ret = 0;
2087
2088 /*
2089 * Determine is the TCM fabric module has already allocated physical
2090 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002091 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002092 */
Andy Groverec98f782011-07-20 19:28:46 +00002093 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2094 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002095 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002096 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002097 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002098 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002099
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002100 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002101
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002102 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002103 * If this command is not a write we can execute it right here,
2104 * for write buffers we need to notify the fabric driver first
2105 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002106 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002107 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002108 if (cmd->data_direction != DMA_TO_DEVICE) {
2109 target_execute_cmd(cmd);
2110 return 0;
2111 }
2112
2113 spin_lock_irq(&cmd->t_state_lock);
2114 cmd->t_state = TRANSPORT_WRITE_PENDING;
2115 spin_unlock_irq(&cmd->t_state_lock);
2116
2117 transport_cmd_check_stop(cmd, false);
2118
2119 ret = cmd->se_tfo->write_pending(cmd);
2120 if (ret == -EAGAIN || ret == -ENOMEM)
2121 goto queue_full;
2122
Christoph Hellwigde103c92012-11-06 12:24:09 -08002123 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2124 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002125
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002126 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002127
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002128queue_full:
2129 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2130 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2131 transport_handle_queue_full(cmd, cmd->se_dev);
2132 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002133}
Andy Grovera1d8b492011-05-02 17:12:10 -07002134EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002135
Christoph Hellwige057f532011-10-17 13:56:41 -04002136static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002137{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002138 int ret;
2139
2140 ret = cmd->se_tfo->write_pending(cmd);
2141 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002142 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2143 cmd);
2144 transport_handle_queue_full(cmd, cmd->se_dev);
2145 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002146}
2147
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002148void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002150 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002151 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002152 transport_wait_for_tasks(cmd);
2153
Christoph Hellwig35462972011-05-31 23:56:57 -04002154 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002155 } else {
2156 if (wait_for_tasks)
2157 transport_wait_for_tasks(cmd);
2158
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002159 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2160
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002161 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002163
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002164 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002165 }
2166}
2167EXPORT_SYMBOL(transport_generic_free_cmd);
2168
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002169/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2170 * @se_sess: session to reference
2171 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002172 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002173 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002174static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2175 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002176{
2177 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002178 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002179
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002180 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002181 /*
2182 * Add a second kref if the fabric caller is expecting to handle
2183 * fabric acknowledgement that requires two target_put_sess_cmd()
2184 * invocations before se_cmd descriptor release.
2185 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002186 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002187 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002188 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2189 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002190
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002191 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002192 if (se_sess->sess_tearing_down) {
2193 ret = -ESHUTDOWN;
2194 goto out;
2195 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002196 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2197 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002198
2199out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002200 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002201 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002202}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002203
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002204static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002205{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002206 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2207 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002208 unsigned long flags;
2209
2210 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2211 if (list_empty(&se_cmd->se_cmd_list)) {
2212 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002213 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002214 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002215 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002216 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2217 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2218 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002219 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002220 }
2221 list_del(&se_cmd->se_cmd_list);
2222 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2223
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002224 se_cmd->se_tfo->release_cmd(se_cmd);
2225}
2226
2227/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2228 * @se_sess: session to reference
2229 * @se_cmd: command descriptor to drop
2230 */
2231int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2232{
2233 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002234}
2235EXPORT_SYMBOL(target_put_sess_cmd);
2236
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002237/* target_sess_cmd_list_set_waiting - Flag all commands in
2238 * sess_cmd_list to complete cmd_wait_comp. Set
2239 * sess_tearing_down so no more commands are queued.
2240 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002241 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002242void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002243{
2244 struct se_cmd *se_cmd;
2245 unsigned long flags;
2246
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002247 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002248
2249 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002250 se_sess->sess_tearing_down = 1;
2251
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002252 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002253 se_cmd->cmd_wait_set = 1;
2254
2255 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2256}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002257EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258
2259/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2260 * @se_sess: session to wait for active I/O
2261 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2262 */
2263void target_wait_for_sess_cmds(
2264 struct se_session *se_sess,
2265 int wait_for_tasks)
2266{
2267 struct se_cmd *se_cmd, *tmp_cmd;
2268 bool rc = false;
2269
2270 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002271 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002272 list_del(&se_cmd->se_cmd_list);
2273
2274 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2275 " %d\n", se_cmd, se_cmd->t_state,
2276 se_cmd->se_tfo->get_cmd_state(se_cmd));
2277
2278 if (wait_for_tasks) {
2279 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2280 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2281 se_cmd->se_tfo->get_cmd_state(se_cmd));
2282
2283 rc = transport_wait_for_tasks(se_cmd);
2284
2285 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2286 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2287 se_cmd->se_tfo->get_cmd_state(se_cmd));
2288 }
2289
2290 if (!rc) {
2291 wait_for_completion(&se_cmd->cmd_wait_comp);
2292 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2293 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2294 se_cmd->se_tfo->get_cmd_state(se_cmd));
2295 }
2296
2297 se_cmd->se_tfo->release_cmd(se_cmd);
2298 }
2299}
2300EXPORT_SYMBOL(target_wait_for_sess_cmds);
2301
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002302/* transport_lun_wait_for_tasks():
2303 *
2304 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2305 * an struct se_lun to be successfully shutdown.
2306 */
2307static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2308{
2309 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002310 int ret = 0;
2311
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002312 /*
2313 * If the frontend has already requested this struct se_cmd to
2314 * be stopped, we can safely ignore this struct se_cmd.
2315 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002316 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002317 if (cmd->transport_state & CMD_T_STOP) {
2318 cmd->transport_state &= ~CMD_T_LUN_STOP;
2319
2320 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2321 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002322 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002323 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002324 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002325 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002326 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002327 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002328
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002329 // XXX: audit task_flags checks.
2330 spin_lock_irqsave(&cmd->t_state_lock, flags);
2331 if ((cmd->transport_state & CMD_T_BUSY) &&
2332 (cmd->transport_state & CMD_T_SENT)) {
2333 if (!target_stop_cmd(cmd, &flags))
2334 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002335 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002336 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002337
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002338 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2339 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002340 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002341 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002342 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002343 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002344 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002345 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002346 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002347
2348 return 0;
2349}
2350
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002351static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2352{
2353 struct se_cmd *cmd = NULL;
2354 unsigned long lun_flags, cmd_flags;
2355 /*
2356 * Do exception processing and return CHECK_CONDITION status to the
2357 * Initiator Port.
2358 */
2359 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002360 while (!list_empty(&lun->lun_cmd_list)) {
2361 cmd = list_first_entry(&lun->lun_cmd_list,
2362 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002363 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002364
Andy Grovera1d8b492011-05-02 17:12:10 -07002365 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002366 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002367 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002368 cmd->se_lun->unpacked_lun,
2369 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002370 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002371 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372
2373 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2374
Andy Grover6708bb22011-06-08 10:36:43 -07002375 if (!cmd->se_lun) {
2376 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002377 cmd->se_tfo->get_task_tag(cmd),
2378 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002379 BUG();
2380 }
2381 /*
2382 * If the Storage engine still owns the iscsi_cmd_t, determine
2383 * and/or stop its context.
2384 */
Andy Grover6708bb22011-06-08 10:36:43 -07002385 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002386 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2387 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002388
Andy Grovere3d6f902011-07-19 08:55:10 +00002389 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002390 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2391 continue;
2392 }
2393
Andy Grover6708bb22011-06-08 10:36:43 -07002394 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002395 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002396 cmd->se_lun->unpacked_lun,
2397 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002398
Andy Grovera1d8b492011-05-02 17:12:10 -07002399 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002400 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002401 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402 goto check_cond;
2403 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002404 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002405 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002406 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002407
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002408 /*
2409 * The Storage engine stopped this struct se_cmd before it was
2410 * send to the fabric frontend for delivery back to the
2411 * Initiator Node. Return this SCSI CDB back with an
2412 * CHECK_CONDITION status.
2413 */
2414check_cond:
2415 transport_send_check_condition_and_sense(cmd,
2416 TCM_NON_EXISTENT_LUN, 0);
2417 /*
2418 * If the fabric frontend is waiting for this iscsi_cmd_t to
2419 * be released, notify the waiting thread now that LU has
2420 * finished accessing it.
2421 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002422 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002423 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002424 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002425 " struct se_cmd: %p ITT: 0x%08x\n",
2426 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002427 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002428
Andy Grovera1d8b492011-05-02 17:12:10 -07002429 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002430 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002431 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002432 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2434 continue;
2435 }
Andy Grover6708bb22011-06-08 10:36:43 -07002436 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002437 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002438
Andy Grovera1d8b492011-05-02 17:12:10 -07002439 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002440 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2441 }
2442 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2443}
2444
2445static int transport_clear_lun_thread(void *p)
2446{
Jörn Engel8359cf42011-11-24 02:05:51 +01002447 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002448
2449 __transport_clear_lun_from_sessions(lun);
2450 complete(&lun->lun_shutdown_comp);
2451
2452 return 0;
2453}
2454
2455int transport_clear_lun_from_sessions(struct se_lun *lun)
2456{
2457 struct task_struct *kt;
2458
Andy Grover5951146d2011-07-19 10:26:37 +00002459 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002460 "tcm_cl_%u", lun->unpacked_lun);
2461 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002462 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002463 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002464 }
2465 wait_for_completion(&lun->lun_shutdown_comp);
2466
2467 return 0;
2468}
2469
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002470/**
2471 * transport_wait_for_tasks - wait for completion to occur
2472 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002473 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002474 * Called from frontend fabric context to wait for storage engine
2475 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002476 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002477bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002478{
2479 unsigned long flags;
2480
Andy Grovera1d8b492011-05-02 17:12:10 -07002481 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002482 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2483 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002484 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002485 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002486 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002487
Andy Groverc8e31f22012-01-19 13:39:17 -08002488 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2489 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002490 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002491 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002492 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002493 /*
2494 * If we are already stopped due to an external event (ie: LUN shutdown)
2495 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002496 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002497 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2498 * has completed its operation on the struct se_cmd.
2499 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002500 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002501 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002502 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002503 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002504 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002505 /*
2506 * There is a special case for WRITES where a FE exception +
2507 * LUN shutdown means ConfigFS context is still sleeping on
2508 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2509 * We go ahead and up transport_lun_stop_comp just to be sure
2510 * here.
2511 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002512 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2513 complete(&cmd->transport_lun_stop_comp);
2514 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2515 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002516
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002517 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002518 /*
2519 * At this point, the frontend who was the originator of this
2520 * struct se_cmd, now owns the structure and can be released through
2521 * normal means below.
2522 */
Andy Grover6708bb22011-06-08 10:36:43 -07002523 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002524 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002525 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002526 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002527
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002528 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002529 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002530
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002531 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002532 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002533 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002534 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002536 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537
Andy Grover6708bb22011-06-08 10:36:43 -07002538 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002539 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002540 cmd, cmd->se_tfo->get_task_tag(cmd),
2541 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002542
Andy Grovera1d8b492011-05-02 17:12:10 -07002543 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002544
Andy Grovera1d8b492011-05-02 17:12:10 -07002545 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546
Andy Grovera1d8b492011-05-02 17:12:10 -07002547 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002548 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002549
Masanari Iida35d1efe2012-08-16 22:43:13 +09002550 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002551 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002552 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002554 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002555
2556 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002558EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002559
2560static int transport_get_sense_codes(
2561 struct se_cmd *cmd,
2562 u8 *asc,
2563 u8 *ascq)
2564{
2565 *asc = cmd->scsi_asc;
2566 *ascq = cmd->scsi_ascq;
2567
2568 return 0;
2569}
2570
Christoph Hellwigde103c92012-11-06 12:24:09 -08002571int
2572transport_send_check_condition_and_sense(struct se_cmd *cmd,
2573 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002574{
2575 unsigned char *buffer = cmd->sense_buffer;
2576 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002577 u8 asc = 0, ascq = 0;
2578
Andy Grovera1d8b492011-05-02 17:12:10 -07002579 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002580 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002581 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582 return 0;
2583 }
2584 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002585 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586
2587 if (!reason && from_transport)
2588 goto after_reason;
2589
2590 if (!from_transport)
2591 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002592
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002593 /*
2594 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2595 * SENSE KEY values from include/scsi/scsi.h
2596 */
2597 switch (reason) {
2598 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002599 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002600 buffer[0] = 0x70;
2601 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002602 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002603 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002604 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002605 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002606 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002607 case TCM_UNSUPPORTED_SCSI_OPCODE:
2608 case TCM_SECTOR_COUNT_TOO_MANY:
2609 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002610 buffer[0] = 0x70;
2611 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002612 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002613 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002614 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 break;
2617 case TCM_UNKNOWN_MODE_PAGE:
2618 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002619 buffer[0] = 0x70;
2620 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002621 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002622 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002623 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002624 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002625 break;
2626 case TCM_CHECK_CONDITION_ABORT_CMD:
2627 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002628 buffer[0] = 0x70;
2629 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002630 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002631 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002633 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2634 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002635 break;
2636 case TCM_INCORRECT_AMOUNT_OF_DATA:
2637 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002638 buffer[0] = 0x70;
2639 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002640 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002641 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002642 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002643 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002644 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002645 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002646 break;
2647 case TCM_INVALID_CDB_FIELD:
2648 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002649 buffer[0] = 0x70;
2650 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002651 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002652 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002653 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002654 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002655 break;
2656 case TCM_INVALID_PARAMETER_LIST:
2657 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002658 buffer[0] = 0x70;
2659 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002660 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002661 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002662 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002663 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002664 break;
2665 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2666 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002667 buffer[0] = 0x70;
2668 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002669 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002670 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002671 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002672 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002673 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002674 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002675 break;
2676 case TCM_SERVICE_CRC_ERROR:
2677 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002678 buffer[0] = 0x70;
2679 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002680 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002681 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002683 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002684 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002685 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 break;
2687 case TCM_SNACK_REJECTED:
2688 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002689 buffer[0] = 0x70;
2690 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002692 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002693 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002694 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002695 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002696 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697 break;
2698 case TCM_WRITE_PROTECTED:
2699 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002700 buffer[0] = 0x70;
2701 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002703 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002704 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002705 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002706 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002707 case TCM_ADDRESS_OUT_OF_RANGE:
2708 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002709 buffer[0] = 0x70;
2710 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002711 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002712 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002713 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002714 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002715 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2717 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002718 buffer[0] = 0x70;
2719 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002720 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002721 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002722 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002723 buffer[SPC_ASC_KEY_OFFSET] = asc;
2724 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002725 break;
2726 case TCM_CHECK_CONDITION_NOT_READY:
2727 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002728 buffer[0] = 0x70;
2729 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002730 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002731 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002732 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002733 buffer[SPC_ASC_KEY_OFFSET] = asc;
2734 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002735 break;
2736 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2737 default:
2738 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002739 buffer[0] = 0x70;
2740 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002741 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002742 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002743 /* LOGICAL UNIT COMMUNICATION FAILURE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002744 buffer[SPC_ASC_KEY_OFFSET] = 0x80;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002745 break;
2746 }
2747 /*
2748 * This code uses linux/include/scsi/scsi.h SAM status codes!
2749 */
2750 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2751 /*
2752 * Automatically padded, this value is encoded in the fabric's
2753 * data_length response PDU containing the SCSI defined sense data.
2754 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002755 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002756
2757after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002758 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759}
2760EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2761
2762int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2763{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002764 if (!(cmd->transport_state & CMD_T_ABORTED))
2765 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002766
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002767 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2768 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002769
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002770 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2771 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002772
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002773 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
2774 cmd->se_tfo->queue_status(cmd);
2775
2776 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002777}
2778EXPORT_SYMBOL(transport_check_aborted_status);
2779
2780void transport_send_task_abort(struct se_cmd *cmd)
2781{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002782 unsigned long flags;
2783
2784 spin_lock_irqsave(&cmd->t_state_lock, flags);
2785 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
2786 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2787 return;
2788 }
2789 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2790
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002791 /*
2792 * If there are still expected incoming fabric WRITEs, we wait
2793 * until until they have completed before sending a TASK_ABORTED
2794 * response. This response with TASK_ABORTED status will be
2795 * queued back to fabric module by transport_check_aborted_status().
2796 */
2797 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002798 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002799 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002800 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002801 }
2802 }
2803 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002804
Andy Grover6708bb22011-06-08 10:36:43 -07002805 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002806 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002807 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002808
Andy Grovere3d6f902011-07-19 08:55:10 +00002809 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002810}
2811
Christoph Hellwigaf877292012-07-08 15:58:49 -04002812static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002813{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002814 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002815 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002816 struct se_tmr_req *tmr = cmd->se_tmr_req;
2817 int ret;
2818
2819 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002820 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002821 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002822 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002823 case TMR_ABORT_TASK_SET:
2824 case TMR_CLEAR_ACA:
2825 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002826 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2827 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002828 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002829 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2830 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2831 TMR_FUNCTION_REJECTED;
2832 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002833 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002834 tmr->response = TMR_FUNCTION_REJECTED;
2835 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002836 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002837 tmr->response = TMR_FUNCTION_REJECTED;
2838 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002839 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002840 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002841 tmr->function);
2842 tmr->response = TMR_FUNCTION_REJECTED;
2843 break;
2844 }
2845
2846 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002847 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002848
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002849 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002850}
2851
Christoph Hellwigaf877292012-07-08 15:58:49 -04002852int transport_generic_handle_tmr(
2853 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002854{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002855 INIT_WORK(&cmd->work, target_tmr_work);
2856 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002857 return 0;
2858}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002859EXPORT_SYMBOL(transport_generic_handle_tmr);