blob: f8388b4024aafa56e647c3e90bc99895df6c5e2c [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);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070068static void transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040069static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080070
Andy Grovere3d6f902011-07-19 08:55:10 +000071int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073 se_sess_cache = kmem_cache_create("se_sess_cache",
74 sizeof(struct se_session), __alignof__(struct se_session),
75 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070076 if (!se_sess_cache) {
77 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080079 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 }
81 se_ua_cache = kmem_cache_create("se_ua_cache",
82 sizeof(struct se_ua), __alignof__(struct se_ua),
83 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070084 if (!se_ua_cache) {
85 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040086 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080088 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
89 sizeof(struct t10_pr_registration),
90 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070091 if (!t10_pr_reg_cache) {
92 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080093 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040094 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080095 }
96 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
97 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
98 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070099 if (!t10_alua_lu_gp_cache) {
100 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800101 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400102 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800103 }
104 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
105 sizeof(struct t10_alua_lu_gp_member),
106 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700107 if (!t10_alua_lu_gp_mem_cache) {
108 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800109 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400110 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800111 }
112 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
113 sizeof(struct t10_alua_tg_pt_gp),
114 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700115 if (!t10_alua_tg_pt_gp_cache) {
116 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800117 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400118 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800119 }
120 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
121 "t10_alua_tg_pt_gp_mem_cache",
122 sizeof(struct t10_alua_tg_pt_gp_member),
123 __alignof__(struct t10_alua_tg_pt_gp_member),
124 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700125 if (!t10_alua_tg_pt_gp_mem_cache) {
126 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800127 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400128 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800129 }
130
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400131 target_completion_wq = alloc_workqueue("target_completion",
132 WQ_MEM_RECLAIM, 0);
133 if (!target_completion_wq)
134 goto out_free_tg_pt_gp_mem_cache;
135
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800136 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400137
138out_free_tg_pt_gp_mem_cache:
139 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
140out_free_tg_pt_gp_cache:
141 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
142out_free_lu_gp_mem_cache:
143 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
144out_free_lu_gp_cache:
145 kmem_cache_destroy(t10_alua_lu_gp_cache);
146out_free_pr_reg_cache:
147 kmem_cache_destroy(t10_pr_reg_cache);
148out_free_ua_cache:
149 kmem_cache_destroy(se_ua_cache);
150out_free_sess_cache:
151 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800152out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000153 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800154}
155
Andy Grovere3d6f902011-07-19 08:55:10 +0000156void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400158 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800159 kmem_cache_destroy(se_sess_cache);
160 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800161 kmem_cache_destroy(t10_pr_reg_cache);
162 kmem_cache_destroy(t10_alua_lu_gp_cache);
163 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
164 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
165 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166}
167
Andy Grovere3d6f902011-07-19 08:55:10 +0000168/* This code ensures unique mib indexes are handed out. */
169static DEFINE_SPINLOCK(scsi_mib_index_lock);
170static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800171
172/*
173 * Allocate a new row index for the entry type specified
174 */
175u32 scsi_get_new_index(scsi_index_t type)
176{
177 u32 new_index;
178
Andy Grovere3d6f902011-07-19 08:55:10 +0000179 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800180
Andy Grovere3d6f902011-07-19 08:55:10 +0000181 spin_lock(&scsi_mib_index_lock);
182 new_index = ++scsi_mib_index[type];
183 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800184
185 return new_index;
186}
187
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700188void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800189{
190 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700191 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800192
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700193 if (sub_api_initialized)
194 return;
195
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800196 ret = request_module("target_core_iblock");
197 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700198 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800199
200 ret = request_module("target_core_file");
201 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700202 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800203
204 ret = request_module("target_core_pscsi");
205 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700206 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207
Andy Grovere3d6f902011-07-19 08:55:10 +0000208 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800209}
210
211struct se_session *transport_init_session(void)
212{
213 struct se_session *se_sess;
214
215 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700216 if (!se_sess) {
217 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218 " se_sess_cache\n");
219 return ERR_PTR(-ENOMEM);
220 }
221 INIT_LIST_HEAD(&se_sess->sess_list);
222 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700223 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700224 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800225 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800226
227 return se_sess;
228}
229EXPORT_SYMBOL(transport_init_session);
230
231/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700232 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233 */
234void __transport_register_session(
235 struct se_portal_group *se_tpg,
236 struct se_node_acl *se_nacl,
237 struct se_session *se_sess,
238 void *fabric_sess_ptr)
239{
240 unsigned char buf[PR_REG_ISID_LEN];
241
242 se_sess->se_tpg = se_tpg;
243 se_sess->fabric_sess_ptr = fabric_sess_ptr;
244 /*
245 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
246 *
247 * Only set for struct se_session's that will actually be moving I/O.
248 * eg: *NOT* discovery sessions.
249 */
250 if (se_nacl) {
251 /*
252 * If the fabric module supports an ISID based TransportID,
253 * save this value in binary from the fabric I_T Nexus now.
254 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000255 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800256 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000257 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800258 &buf[0], PR_REG_ISID_LEN);
259 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
260 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800261 kref_get(&se_nacl->acl_kref);
262
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800263 spin_lock_irq(&se_nacl->nacl_sess_lock);
264 /*
265 * The se_nacl->nacl_sess pointer will be set to the
266 * last active I_T Nexus for each struct se_node_acl.
267 */
268 se_nacl->nacl_sess = se_sess;
269
270 list_add_tail(&se_sess->sess_acl_list,
271 &se_nacl->acl_sess_list);
272 spin_unlock_irq(&se_nacl->nacl_sess_lock);
273 }
274 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
275
Andy Grover6708bb22011-06-08 10:36:43 -0700276 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000277 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800278}
279EXPORT_SYMBOL(__transport_register_session);
280
281void transport_register_session(
282 struct se_portal_group *se_tpg,
283 struct se_node_acl *se_nacl,
284 struct se_session *se_sess,
285 void *fabric_sess_ptr)
286{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700287 unsigned long flags;
288
289 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800290 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700291 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800292}
293EXPORT_SYMBOL(transport_register_session);
294
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800295static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800296{
297 struct se_session *se_sess = container_of(kref,
298 struct se_session, sess_kref);
299 struct se_portal_group *se_tpg = se_sess->se_tpg;
300
301 se_tpg->se_tpg_tfo->close_session(se_sess);
302}
303
304void target_get_session(struct se_session *se_sess)
305{
306 kref_get(&se_sess->sess_kref);
307}
308EXPORT_SYMBOL(target_get_session);
309
Jörn Engel33933a02012-05-11 10:35:08 -0400310void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800311{
Joern Engel41492682012-05-18 13:57:19 -0700312 struct se_portal_group *tpg = se_sess->se_tpg;
313
314 if (tpg->se_tpg_tfo->put_session != NULL) {
315 tpg->se_tpg_tfo->put_session(se_sess);
316 return;
317 }
Jörn Engel33933a02012-05-11 10:35:08 -0400318 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800319}
320EXPORT_SYMBOL(target_put_session);
321
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800322static void target_complete_nacl(struct kref *kref)
323{
324 struct se_node_acl *nacl = container_of(kref,
325 struct se_node_acl, acl_kref);
326
327 complete(&nacl->acl_free_comp);
328}
329
330void target_put_nacl(struct se_node_acl *nacl)
331{
332 kref_put(&nacl->acl_kref, target_complete_nacl);
333}
334
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800335void transport_deregister_session_configfs(struct se_session *se_sess)
336{
337 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700338 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800339 /*
340 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
341 */
342 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700343 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700344 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800345 if (se_nacl->acl_stop == 0)
346 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800347 /*
348 * If the session list is empty, then clear the pointer.
349 * Otherwise, set the struct se_session pointer from the tail
350 * element of the per struct se_node_acl active session list.
351 */
352 if (list_empty(&se_nacl->acl_sess_list))
353 se_nacl->nacl_sess = NULL;
354 else {
355 se_nacl->nacl_sess = container_of(
356 se_nacl->acl_sess_list.prev,
357 struct se_session, sess_acl_list);
358 }
Roland Dreier23388862011-06-22 01:02:21 -0700359 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800360 }
361}
362EXPORT_SYMBOL(transport_deregister_session_configfs);
363
364void transport_free_session(struct se_session *se_sess)
365{
366 kmem_cache_free(se_sess_cache, se_sess);
367}
368EXPORT_SYMBOL(transport_free_session);
369
370void transport_deregister_session(struct se_session *se_sess)
371{
372 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800373 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800374 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700375 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800376 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800377
Andy Grover6708bb22011-06-08 10:36:43 -0700378 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800379 transport_free_session(se_sess);
380 return;
381 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800382 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800383
Roland Dreiere63a8e12011-08-12 16:01:02 -0700384 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800385 list_del(&se_sess->sess_list);
386 se_sess->se_tpg = NULL;
387 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700388 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800389
390 /*
391 * Determine if we need to do extra work for this initiator node's
392 * struct se_node_acl if it had been previously dynamically generated.
393 */
394 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800395
Nicholas Bellinger01468342012-03-10 14:32:52 -0800396 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
397 if (se_nacl && se_nacl->dynamic_node_acl) {
398 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
399 list_del(&se_nacl->acl_list);
400 se_tpg->num_node_acls--;
401 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
402 core_tpg_wait_for_nacl_pr_ref(se_nacl);
403 core_free_device_list_for_node(se_nacl, se_tpg);
404 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
405
406 comp_nacl = false;
407 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800408 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800409 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800410 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800411
Andy Grover6708bb22011-06-08 10:36:43 -0700412 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000413 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800414 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800415 * If last kref is dropping now for an explict NodeACL, awake sleeping
416 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
417 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800418 */
419 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800420 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800421
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800422 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800423}
424EXPORT_SYMBOL(transport_deregister_session);
425
426/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700427 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400429static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800430{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400431 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800432 unsigned long flags;
433
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400434 if (!dev)
435 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800436
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400437 if (cmd->transport_state & CMD_T_BUSY)
438 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800439
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400440 spin_lock_irqsave(&dev->execute_task_lock, flags);
441 if (cmd->state_active) {
442 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400443 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400445 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800446}
447
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400448static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800449{
450 unsigned long flags;
451
Andy Grovera1d8b492011-05-02 17:12:10 -0700452 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800453 /*
454 * Determine if IOCTL context caller in requesting the stopping of this
455 * command for LUN shutdown purposes.
456 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500457 if (cmd->transport_state & CMD_T_LUN_STOP) {
458 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
459 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500461 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400462 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400463 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700464 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800465
Andy Grovera1d8b492011-05-02 17:12:10 -0700466 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800467 return 1;
468 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400469
470 if (remove_from_lists) {
471 target_remove_from_state_list(cmd);
472
473 /*
474 * Clear struct se_cmd->se_lun before the handoff to FE.
475 */
476 cmd->se_lun = NULL;
477 }
478
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800479 /*
480 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000481 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800482 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500483 if (cmd->transport_state & CMD_T_STOP) {
484 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
485 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000486 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487
Andy Grovera1d8b492011-05-02 17:12:10 -0700488 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800489
Andy Grovera1d8b492011-05-02 17:12:10 -0700490 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800491 return 1;
492 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400494 cmd->transport_state &= ~CMD_T_ACTIVE;
495 if (remove_from_lists) {
496 /*
497 * Some fabric modules like tcm_loop can release
498 * their internally allocated I/O reference now and
499 * struct se_cmd now.
500 *
501 * Fabric modules are expected to return '1' here if the
502 * se_cmd being passed is released at this point,
503 * or zero if not being released.
504 */
505 if (cmd->se_tfo->check_stop_free != NULL) {
506 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
507 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800508 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400509 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800510
Andy Grovera1d8b492011-05-02 17:12:10 -0700511 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800512 return 0;
513}
514
515static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
516{
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400517 return transport_cmd_check_stop(cmd, true);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518}
519
520static void transport_lun_remove_cmd(struct se_cmd *cmd)
521{
Andy Grovere3d6f902011-07-19 08:55:10 +0000522 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800523 unsigned long flags;
524
525 if (!lun)
526 return;
527
Andy Grovera1d8b492011-05-02 17:12:10 -0700528 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500529 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
530 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400531 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800532 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700533 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800534
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800535 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500536 if (!list_empty(&cmd->se_lun_node))
537 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800538 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
539}
540
541void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
542{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 if (transport_cmd_check_stop_to_fabric(cmd))
544 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400545 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200546 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800547}
548
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400549static void target_complete_failure_work(struct work_struct *work)
550{
551 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
552
Christoph Hellwigde103c92012-11-06 12:24:09 -0800553 transport_generic_request_failure(cmd,
554 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400555}
556
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200557/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200558 * Used when asking transport to copy Sense Data from the underlying
559 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200560 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200561static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200562{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200563 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200564
565 WARN_ON(!cmd->se_lun);
566
567 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200568 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200569
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200570 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
571 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200572
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700573 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200574
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200575 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200576 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700577 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200578}
579
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400580void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800581{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400582 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400583 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800584 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400586 cmd->scsi_status = scsi_status;
587
588
Andy Grovera1d8b492011-05-02 17:12:10 -0700589 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400590 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200593 dev->transport->transport_complete(cmd,
594 cmd->t_data_sg,
595 transport_get_sense_buffer(cmd));
596 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800597 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598 }
599
600 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400601 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800602 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400603 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700604 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400605 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800606 return;
607 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700608
609 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500610 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700611
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800612 /*
613 * Check for case where an explict ABORT_TASK has been received
614 * and transport_wait_for_tasks() will be waiting for completion..
615 */
616 if (cmd->transport_state & CMD_T_ABORTED &&
617 cmd->transport_state & CMD_T_STOP) {
618 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
619 complete(&cmd->t_transport_stop_comp);
620 return;
621 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400622 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800623 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400624 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800625 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400626
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400627 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800628 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700629 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800630
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400631 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400633EXPORT_SYMBOL(target_complete_cmd);
634
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400635static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800636{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400637 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800638 unsigned long flags;
639
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800640 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400641 if (!cmd->state_active) {
642 list_add_tail(&cmd->state_list, &dev->state_list);
643 cmd->state_active = true;
644 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800645 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646}
647
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700648/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700649 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700650 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400651static void transport_write_pending_qf(struct se_cmd *cmd);
652static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700653
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400654void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700655{
656 struct se_device *dev = container_of(work, struct se_device,
657 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700658 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700659 struct se_cmd *cmd, *cmd_tmp;
660
661 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700662 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
663 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700664
Roland Dreierbcac3642011-08-27 21:33:16 -0700665 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700666 list_del(&cmd->se_qf_node);
667 atomic_dec(&dev->dev_qf_count);
668 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700669
Andy Grover6708bb22011-06-08 10:36:43 -0700670 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700671 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400672 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700673 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
674 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400675
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400676 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
677 transport_write_pending_qf(cmd);
678 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
679 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700680 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700681}
682
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800683unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
684{
685 switch (cmd->data_direction) {
686 case DMA_NONE:
687 return "NONE";
688 case DMA_FROM_DEVICE:
689 return "READ";
690 case DMA_TO_DEVICE:
691 return "WRITE";
692 case DMA_BIDIRECTIONAL:
693 return "BIDI";
694 default:
695 break;
696 }
697
698 return "UNKNOWN";
699}
700
701void transport_dump_dev_state(
702 struct se_device *dev,
703 char *b,
704 int *bl)
705{
706 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400707 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800708 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400709 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800710 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800711
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400712 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700713 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400714 dev->dev_attrib.block_size,
715 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800716 *bl += sprintf(b + *bl, " ");
717}
718
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800719void transport_dump_vpd_proto_id(
720 struct t10_vpd *vpd,
721 unsigned char *p_buf,
722 int p_buf_len)
723{
724 unsigned char buf[VPD_TMP_BUF_SIZE];
725 int len;
726
727 memset(buf, 0, VPD_TMP_BUF_SIZE);
728 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
729
730 switch (vpd->protocol_identifier) {
731 case 0x00:
732 sprintf(buf+len, "Fibre Channel\n");
733 break;
734 case 0x10:
735 sprintf(buf+len, "Parallel SCSI\n");
736 break;
737 case 0x20:
738 sprintf(buf+len, "SSA\n");
739 break;
740 case 0x30:
741 sprintf(buf+len, "IEEE 1394\n");
742 break;
743 case 0x40:
744 sprintf(buf+len, "SCSI Remote Direct Memory Access"
745 " Protocol\n");
746 break;
747 case 0x50:
748 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
749 break;
750 case 0x60:
751 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
752 break;
753 case 0x70:
754 sprintf(buf+len, "Automation/Drive Interface Transport"
755 " Protocol\n");
756 break;
757 case 0x80:
758 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
759 break;
760 default:
761 sprintf(buf+len, "Unknown 0x%02x\n",
762 vpd->protocol_identifier);
763 break;
764 }
765
766 if (p_buf)
767 strncpy(p_buf, buf, p_buf_len);
768 else
Andy Grover6708bb22011-06-08 10:36:43 -0700769 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800770}
771
772void
773transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
774{
775 /*
776 * Check if the Protocol Identifier Valid (PIV) bit is set..
777 *
778 * from spc3r23.pdf section 7.5.1
779 */
780 if (page_83[1] & 0x80) {
781 vpd->protocol_identifier = (page_83[0] & 0xf0);
782 vpd->protocol_identifier_set = 1;
783 transport_dump_vpd_proto_id(vpd, NULL, 0);
784 }
785}
786EXPORT_SYMBOL(transport_set_vpd_proto_id);
787
788int transport_dump_vpd_assoc(
789 struct t10_vpd *vpd,
790 unsigned char *p_buf,
791 int p_buf_len)
792{
793 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000794 int ret = 0;
795 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800796
797 memset(buf, 0, VPD_TMP_BUF_SIZE);
798 len = sprintf(buf, "T10 VPD Identifier Association: ");
799
800 switch (vpd->association) {
801 case 0x00:
802 sprintf(buf+len, "addressed logical unit\n");
803 break;
804 case 0x10:
805 sprintf(buf+len, "target port\n");
806 break;
807 case 0x20:
808 sprintf(buf+len, "SCSI target device\n");
809 break;
810 default:
811 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000812 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800813 break;
814 }
815
816 if (p_buf)
817 strncpy(p_buf, buf, p_buf_len);
818 else
Andy Grover6708bb22011-06-08 10:36:43 -0700819 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800820
821 return ret;
822}
823
824int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
825{
826 /*
827 * The VPD identification association..
828 *
829 * from spc3r23.pdf Section 7.6.3.1 Table 297
830 */
831 vpd->association = (page_83[1] & 0x30);
832 return transport_dump_vpd_assoc(vpd, NULL, 0);
833}
834EXPORT_SYMBOL(transport_set_vpd_assoc);
835
836int transport_dump_vpd_ident_type(
837 struct t10_vpd *vpd,
838 unsigned char *p_buf,
839 int p_buf_len)
840{
841 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000842 int ret = 0;
843 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800844
845 memset(buf, 0, VPD_TMP_BUF_SIZE);
846 len = sprintf(buf, "T10 VPD Identifier Type: ");
847
848 switch (vpd->device_identifier_type) {
849 case 0x00:
850 sprintf(buf+len, "Vendor specific\n");
851 break;
852 case 0x01:
853 sprintf(buf+len, "T10 Vendor ID based\n");
854 break;
855 case 0x02:
856 sprintf(buf+len, "EUI-64 based\n");
857 break;
858 case 0x03:
859 sprintf(buf+len, "NAA\n");
860 break;
861 case 0x04:
862 sprintf(buf+len, "Relative target port identifier\n");
863 break;
864 case 0x08:
865 sprintf(buf+len, "SCSI name string\n");
866 break;
867 default:
868 sprintf(buf+len, "Unsupported: 0x%02x\n",
869 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000870 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800871 break;
872 }
873
Andy Grovere3d6f902011-07-19 08:55:10 +0000874 if (p_buf) {
875 if (p_buf_len < strlen(buf)+1)
876 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800877 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000878 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700879 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000880 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800881
882 return ret;
883}
884
885int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
886{
887 /*
888 * The VPD identifier type..
889 *
890 * from spc3r23.pdf Section 7.6.3.1 Table 298
891 */
892 vpd->device_identifier_type = (page_83[1] & 0x0f);
893 return transport_dump_vpd_ident_type(vpd, NULL, 0);
894}
895EXPORT_SYMBOL(transport_set_vpd_ident_type);
896
897int transport_dump_vpd_ident(
898 struct t10_vpd *vpd,
899 unsigned char *p_buf,
900 int p_buf_len)
901{
902 unsigned char buf[VPD_TMP_BUF_SIZE];
903 int ret = 0;
904
905 memset(buf, 0, VPD_TMP_BUF_SIZE);
906
907 switch (vpd->device_identifier_code_set) {
908 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300909 snprintf(buf, sizeof(buf),
910 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800911 &vpd->device_identifier[0]);
912 break;
913 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300914 snprintf(buf, sizeof(buf),
915 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800916 &vpd->device_identifier[0]);
917 break;
918 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300919 snprintf(buf, sizeof(buf),
920 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800921 &vpd->device_identifier[0]);
922 break;
923 default:
924 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
925 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000926 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800927 break;
928 }
929
930 if (p_buf)
931 strncpy(p_buf, buf, p_buf_len);
932 else
Andy Grover6708bb22011-06-08 10:36:43 -0700933 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800934
935 return ret;
936}
937
938int
939transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
940{
941 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900942 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800943
944 /*
945 * The VPD Code Set (encoding)
946 *
947 * from spc3r23.pdf Section 7.6.3.1 Table 296
948 */
949 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
950 switch (vpd->device_identifier_code_set) {
951 case 0x01: /* Binary */
952 vpd->device_identifier[j++] =
953 hex_str[vpd->device_identifier_type];
954 while (i < (4 + page_83[3])) {
955 vpd->device_identifier[j++] =
956 hex_str[(page_83[i] & 0xf0) >> 4];
957 vpd->device_identifier[j++] =
958 hex_str[page_83[i] & 0x0f];
959 i++;
960 }
961 break;
962 case 0x02: /* ASCII */
963 case 0x03: /* UTF-8 */
964 while (i < (4 + page_83[3]))
965 vpd->device_identifier[j++] = page_83[i++];
966 break;
967 default:
968 break;
969 }
970
971 return transport_dump_vpd_ident(vpd, NULL, 0);
972}
973EXPORT_SYMBOL(transport_set_vpd_ident);
974
Christoph Hellwigde103c92012-11-06 12:24:09 -0800975sense_reason_t
976target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400977{
978 struct se_device *dev = cmd->se_dev;
979
980 if (cmd->unknown_data_length) {
981 cmd->data_length = size;
982 } else if (size != cmd->data_length) {
983 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
984 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
985 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
986 cmd->data_length, size, cmd->t_task_cdb[0]);
987
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400988 if (cmd->data_direction == DMA_TO_DEVICE) {
989 pr_err("Rejecting underflow/overflow"
990 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -0800991 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400992 }
993 /*
994 * Reject READ_* or WRITE_* with overflow/underflow for
995 * type SCF_SCSI_DATA_CDB.
996 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400997 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -0400998 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
999 " CDB on non 512-byte sector setup subsystem"
1000 " plugin: %s\n", dev->transport->name);
1001 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001002 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001003 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001004 /*
1005 * For the overflow case keep the existing fabric provided
1006 * ->data_length. Otherwise for the underflow case, reset
1007 * ->data_length to the smaller SCSI expected data transfer
1008 * length.
1009 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001010 if (size > cmd->data_length) {
1011 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1012 cmd->residual_count = (size - cmd->data_length);
1013 } else {
1014 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1015 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001016 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001017 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001018 }
1019
1020 return 0;
1021
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001022}
1023
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001024/*
1025 * Used by fabric modules containing a local struct se_cmd within their
1026 * fabric dependent per I/O descriptor.
1027 */
1028void transport_init_se_cmd(
1029 struct se_cmd *cmd,
1030 struct target_core_fabric_ops *tfo,
1031 struct se_session *se_sess,
1032 u32 data_length,
1033 int data_direction,
1034 int task_attr,
1035 unsigned char *sense_buffer)
1036{
Andy Grover5951146d2011-07-19 10:26:37 +00001037 INIT_LIST_HEAD(&cmd->se_lun_node);
1038 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001039 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001040 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001041 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001042 init_completion(&cmd->transport_lun_fe_stop_comp);
1043 init_completion(&cmd->transport_lun_stop_comp);
1044 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001045 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001046 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001047 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001048 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001049
1050 cmd->se_tfo = tfo;
1051 cmd->se_sess = se_sess;
1052 cmd->data_length = data_length;
1053 cmd->data_direction = data_direction;
1054 cmd->sam_task_attr = task_attr;
1055 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001056
1057 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001058}
1059EXPORT_SYMBOL(transport_init_se_cmd);
1060
Christoph Hellwigde103c92012-11-06 12:24:09 -08001061static sense_reason_t
1062transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001063{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001064 struct se_device *dev = cmd->se_dev;
1065
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001066 /*
1067 * Check if SAM Task Attribute emulation is enabled for this
1068 * struct se_device storage object
1069 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001070 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001071 return 0;
1072
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001073 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001074 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001075 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001076 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001077 }
1078 /*
1079 * Used to determine when ORDERED commands should go from
1080 * Dormant to Active status.
1081 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001082 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001084 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001085 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001086 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001087 return 0;
1088}
1089
Christoph Hellwigde103c92012-11-06 12:24:09 -08001090sense_reason_t
1091target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001092{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001093 struct se_device *dev = cmd->se_dev;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001094 unsigned long flags;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001095 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001096
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001097 /*
1098 * Ensure that the received CDB is less than the max (252 + 8) bytes
1099 * for VARIABLE_LENGTH_CMD
1100 */
1101 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001102 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001103 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1104 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001105 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001106 }
1107 /*
1108 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1109 * allocate the additional extended CDB buffer now.. Otherwise
1110 * setup the pointer from __t_task_cdb to t_task_cdb.
1111 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001112 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1113 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001114 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001115 if (!cmd->t_task_cdb) {
1116 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001117 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001118 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001119 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001120 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001121 }
1122 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001123 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001124 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001125 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001126 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001127 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001128
1129 /*
1130 * Check for an existing UNIT ATTENTION condition
1131 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001132 ret = target_scsi3_ua_check(cmd);
1133 if (ret)
1134 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001135
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001136 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001137 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001138 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001139
Christoph Hellwigde103c92012-11-06 12:24:09 -08001140 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001141 if (ret) {
1142 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001143 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001144 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001145
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001146 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001147 if (ret)
1148 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001149
Christoph Hellwigde103c92012-11-06 12:24:09 -08001150 ret = transport_check_alloc_task_attr(cmd);
1151 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001152 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001153
1154 spin_lock_irqsave(&cmd->t_state_lock, flags);
1155 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1156 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1157
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001158 spin_lock(&cmd->se_lun->lun_sep_lock);
1159 if (cmd->se_lun->lun_sep)
1160 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1161 spin_unlock(&cmd->se_lun->lun_sep_lock);
1162 return 0;
1163}
Andy Grovera12f41f2012-04-03 15:51:20 -07001164EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001165
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001166/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001167 * Used by fabric module frontends to queue tasks directly.
1168 * Many only be used from process context only
1169 */
1170int transport_handle_cdb_direct(
1171 struct se_cmd *cmd)
1172{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001173 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001174
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001175 if (!cmd->se_lun) {
1176 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001177 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001178 return -EINVAL;
1179 }
1180 if (in_interrupt()) {
1181 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001182 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001183 " from interrupt context\n");
1184 return -EINVAL;
1185 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001186 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001187 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1188 * outstanding descriptors are handled correctly during shutdown via
1189 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001190 *
1191 * Also, we don't take cmd->t_state_lock here as we only expect
1192 * this to be called for initial descriptor submission.
1193 */
1194 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001195 cmd->transport_state |= CMD_T_ACTIVE;
1196
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001197 /*
1198 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1199 * so follow TRANSPORT_NEW_CMD processing thread context usage
1200 * and call transport_generic_request_failure() if necessary..
1201 */
1202 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001203 if (ret)
1204 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001205 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001206}
1207EXPORT_SYMBOL(transport_handle_cdb_direct);
1208
Christoph Hellwigde103c92012-11-06 12:24:09 -08001209static sense_reason_t
1210transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1211 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1212{
1213 if (!sgl || !sgl_count)
1214 return 0;
1215
1216 /*
1217 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1218 * scatterlists already have been set to follow what the fabric
1219 * passes for the original expected data transfer length.
1220 */
1221 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1222 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1223 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1224 return TCM_INVALID_CDB_FIELD;
1225 }
1226
1227 cmd->t_data_sg = sgl;
1228 cmd->t_data_nents = sgl_count;
1229
1230 if (sgl_bidi && sgl_bidi_count) {
1231 cmd->t_bidi_data_sg = sgl_bidi;
1232 cmd->t_bidi_data_nents = sgl_bidi_count;
1233 }
1234 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1235 return 0;
1236}
1237
Nicholas Bellingera0267572012-10-01 17:23:22 -07001238/*
1239 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1240 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001241 *
1242 * @se_cmd: command descriptor to submit
1243 * @se_sess: associated se_sess for endpoint
1244 * @cdb: pointer to SCSI CDB
1245 * @sense: pointer to SCSI sense buffer
1246 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1247 * @data_length: fabric expected data transfer length
1248 * @task_addr: SAM task attribute
1249 * @data_dir: DMA data direction
1250 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001251 * @sgl: struct scatterlist memory for unidirectional mapping
1252 * @sgl_count: scatterlist count for unidirectional mapping
1253 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1254 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001255 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001256 * Returns non zero to signal active I/O shutdown failure. All other
1257 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1258 * but still return zero here.
1259 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001260 * This may only be called from process context, and also currently
1261 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001262 */
1263int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001264 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001265 u32 data_length, int task_attr, int data_dir, int flags,
1266 struct scatterlist *sgl, u32 sgl_count,
1267 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001268{
1269 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001270 sense_reason_t rc;
1271 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001272
1273 se_tpg = se_sess->se_tpg;
1274 BUG_ON(!se_tpg);
1275 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1276 BUG_ON(in_interrupt());
1277 /*
1278 * Initialize se_cmd for target operation. From this point
1279 * exceptions are handled by sending exception status via
1280 * target_core_fabric_ops->queue_status() callback
1281 */
1282 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1283 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001284 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1285 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001286 /*
1287 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1288 * se_sess->sess_cmd_list. A second kref_get here is necessary
1289 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1290 * kref_put() to happen during fabric packet acknowledgement.
1291 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001292 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1293 if (ret)
1294 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001295 /*
1296 * Signal bidirectional data payloads to target-core
1297 */
1298 if (flags & TARGET_SCF_BIDI_OP)
1299 se_cmd->se_cmd_flags |= SCF_BIDI;
1300 /*
1301 * Locate se_lun pointer and attach it to struct se_cmd
1302 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001303 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1304 if (rc) {
1305 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001306 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001307 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001308 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001309
Andy Grovera12f41f2012-04-03 15:51:20 -07001310 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001311 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001312 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001313 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001314 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001315 /*
1316 * When a non zero sgl_count has been passed perform SGL passthrough
1317 * mapping for pre-allocated fabric memory instead of having target
1318 * core perform an internal SGL allocation..
1319 */
1320 if (sgl_count != 0) {
1321 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001322
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001323 /*
1324 * A work-around for tcm_loop as some userspace code via
1325 * scsi-generic do not memset their associated read buffers,
1326 * so go ahead and do that here for type non-data CDBs. Also
1327 * note that this is currently guaranteed to be a single SGL
1328 * for this case by target core in target_setup_cmd_from_cdb()
1329 * -> transport_generic_cmd_sequencer().
1330 */
1331 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1332 se_cmd->data_direction == DMA_FROM_DEVICE) {
1333 unsigned char *buf = NULL;
1334
1335 if (sgl)
1336 buf = kmap(sg_page(sgl)) + sgl->offset;
1337
1338 if (buf) {
1339 memset(buf, 0, sgl->length);
1340 kunmap(sg_page(sgl));
1341 }
1342 }
1343
Nicholas Bellingera0267572012-10-01 17:23:22 -07001344 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1345 sgl_bidi, sgl_bidi_count);
1346 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001347 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001348 return 0;
1349 }
1350 }
Andy Grover11e319e2012-04-03 15:51:28 -07001351 /*
1352 * Check if we need to delay processing because of ALUA
1353 * Active/NonOptimized primary access state..
1354 */
1355 core_alua_check_nonop_delay(se_cmd);
1356
Nicholas Bellingera6360782011-11-18 20:36:22 -08001357 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001358 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001359}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001360EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1361
1362/*
1363 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1364 *
1365 * @se_cmd: command descriptor to submit
1366 * @se_sess: associated se_sess for endpoint
1367 * @cdb: pointer to SCSI CDB
1368 * @sense: pointer to SCSI sense buffer
1369 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1370 * @data_length: fabric expected data transfer length
1371 * @task_addr: SAM task attribute
1372 * @data_dir: DMA data direction
1373 * @flags: flags for command submission from target_sc_flags_tables
1374 *
1375 * Returns non zero to signal active I/O shutdown failure. All other
1376 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1377 * but still return zero here.
1378 *
1379 * This may only be called from process context, and also currently
1380 * assumes internal allocation of fabric payload buffer by target-core.
1381 *
1382 * It also assumes interal target core SGL memory allocation.
1383 */
1384int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1385 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1386 u32 data_length, int task_attr, int data_dir, int flags)
1387{
1388 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1389 unpacked_lun, data_length, task_attr, data_dir,
1390 flags, NULL, 0, NULL, 0);
1391}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001392EXPORT_SYMBOL(target_submit_cmd);
1393
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001394static void target_complete_tmr_failure(struct work_struct *work)
1395{
1396 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1397
1398 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1399 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc2013-01-02 12:47:59 -08001400
1401 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001402}
1403
Andy Groverea98d7f2012-01-19 13:39:21 -08001404/**
1405 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1406 * for TMR CDBs
1407 *
1408 * @se_cmd: command descriptor to submit
1409 * @se_sess: associated se_sess for endpoint
1410 * @sense: pointer to SCSI sense buffer
1411 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1412 * @fabric_context: fabric context for TMR req
1413 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001414 * @gfp: gfp type for caller
1415 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001416 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001417 *
1418 * Callable from all contexts.
1419 **/
1420
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001421int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001422 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001423 void *fabric_tmr_ptr, unsigned char tm_type,
1424 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001425{
1426 struct se_portal_group *se_tpg;
1427 int ret;
1428
1429 se_tpg = se_sess->se_tpg;
1430 BUG_ON(!se_tpg);
1431
1432 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1433 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001434 /*
1435 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1436 * allocation failure.
1437 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001438 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001439 if (ret < 0)
1440 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001441
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001442 if (tm_type == TMR_ABORT_TASK)
1443 se_cmd->se_tmr_req->ref_task_tag = tag;
1444
Andy Groverea98d7f2012-01-19 13:39:21 -08001445 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001446 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1447 if (ret) {
1448 core_tmr_release_req(se_cmd->se_tmr_req);
1449 return ret;
1450 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001451
Andy Groverea98d7f2012-01-19 13:39:21 -08001452 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1453 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001454 /*
1455 * For callback during failure handling, push this work off
1456 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1457 */
1458 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1459 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001460 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001461 }
1462 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001463 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001464}
1465EXPORT_SYMBOL(target_submit_tmr);
1466
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001467/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001468 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001469 * has completed.
1470 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001471bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001472{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001473 bool was_active = false;
1474
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001475 if (cmd->transport_state & CMD_T_BUSY) {
1476 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001477 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1478
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001479 pr_debug("cmd %p waiting to complete\n", cmd);
1480 wait_for_completion(&cmd->task_stop_comp);
1481 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001482
1483 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001484 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1485 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001486 was_active = true;
1487 }
1488
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001489 return was_active;
1490}
1491
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001492/*
1493 * Handle SAM-esque emulation for generic transport request failures.
1494 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001495void transport_generic_request_failure(struct se_cmd *cmd,
1496 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001497{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001498 int ret = 0;
1499
Andy Grover6708bb22011-06-08 10:36:43 -07001500 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001501 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001502 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001503 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001504 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001505 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001506 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001507 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1508 (cmd->transport_state & CMD_T_STOP) != 0,
1509 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001510
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001511 /*
1512 * For SAM Task Attribute emulation for failed struct se_cmd
1513 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001514 transport_complete_task_attr(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001515
Christoph Hellwigde103c92012-11-06 12:24:09 -08001516 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001517 case TCM_NON_EXISTENT_LUN:
1518 case TCM_UNSUPPORTED_SCSI_OPCODE:
1519 case TCM_INVALID_CDB_FIELD:
1520 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001521 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001522 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1523 case TCM_UNKNOWN_MODE_PAGE:
1524 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001525 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001526 case TCM_CHECK_CONDITION_ABORT_CMD:
1527 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1528 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001529 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001530 case TCM_OUT_OF_RESOURCES:
1531 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1532 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001533 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001534 /*
1535 * No SENSE Data payload for this case, set SCSI Status
1536 * and queue the response to $FABRIC_MOD.
1537 *
1538 * Uses linux/include/scsi/scsi.h SAM status codes defs
1539 */
1540 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1541 /*
1542 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1543 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1544 * CONFLICT STATUS.
1545 *
1546 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1547 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001548 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001549 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001550 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001551 cmd->orig_fe_lun, 0x2C,
1552 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1553
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001554 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001555 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001556 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001557 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001558 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001559 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001560 cmd->t_task_cdb[0], sense_reason);
1561 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001562 break;
1563 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001564
Christoph Hellwigde103c92012-11-06 12:24:09 -08001565 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001566 if (ret == -EAGAIN || ret == -ENOMEM)
1567 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001568
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001569check_stop:
1570 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001571 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001572 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001573 return;
1574
1575queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001576 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1577 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001578}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001579EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001580
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001581static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001582{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001583 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001584
1585 spin_lock_irq(&cmd->t_state_lock);
1586 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1587 spin_unlock_irq(&cmd->t_state_lock);
1588
Christoph Hellwigde103c92012-11-06 12:24:09 -08001589 if (cmd->execute_cmd) {
1590 ret = cmd->execute_cmd(cmd);
1591 if (ret) {
1592 spin_lock_irq(&cmd->t_state_lock);
1593 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1594 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001595
Christoph Hellwigde103c92012-11-06 12:24:09 -08001596 transport_generic_request_failure(cmd, ret);
1597 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001598 }
1599}
1600
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001601static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001602{
1603 struct se_device *dev = cmd->se_dev;
1604
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001605 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1606 return false;
1607
1608 /*
1609 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1610 * to allow the passed struct se_cmd list of tasks to the front of the list.
1611 */
1612 switch (cmd->sam_task_attr) {
1613 case MSG_HEAD_TAG:
1614 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1615 "se_ordered_id: %u\n",
1616 cmd->t_task_cdb[0], cmd->se_ordered_id);
1617 return false;
1618 case MSG_ORDERED_TAG:
1619 atomic_inc(&dev->dev_ordered_sync);
1620 smp_mb__after_atomic_inc();
1621
1622 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1623 " se_ordered_id: %u\n",
1624 cmd->t_task_cdb[0], cmd->se_ordered_id);
1625
1626 /*
1627 * Execute an ORDERED command if no other older commands
1628 * exist that need to be completed first.
1629 */
1630 if (!atomic_read(&dev->simple_cmds))
1631 return false;
1632 break;
1633 default:
1634 /*
1635 * For SIMPLE and UNTAGGED Task Attribute commands
1636 */
1637 atomic_inc(&dev->simple_cmds);
1638 smp_mb__after_atomic_inc();
1639 break;
1640 }
1641
1642 if (atomic_read(&dev->dev_ordered_sync) == 0)
1643 return false;
1644
1645 spin_lock(&dev->delayed_cmd_lock);
1646 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1647 spin_unlock(&dev->delayed_cmd_lock);
1648
1649 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1650 " delayed CMD list, se_ordered_id: %u\n",
1651 cmd->t_task_cdb[0], cmd->sam_task_attr,
1652 cmd->se_ordered_id);
1653 return true;
1654}
1655
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001656void target_execute_cmd(struct se_cmd *cmd)
1657{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001658 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001659 * If the received CDB has aleady been aborted stop processing it here.
1660 */
Roland Dreier3ea160b2012-11-16 08:06:16 -08001661 if (transport_check_aborted_status(cmd, 1)) {
Linus Torvalds5bd665f2012-12-15 14:25:10 -08001662 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001663 return;
Roland Dreier3ea160b2012-11-16 08:06:16 -08001664 }
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001665
1666 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001667 * Determine if IOCTL context caller in requesting the stopping of this
1668 * command for LUN shutdown purposes.
1669 */
1670 spin_lock_irq(&cmd->t_state_lock);
1671 if (cmd->transport_state & CMD_T_LUN_STOP) {
1672 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1673 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1674
1675 cmd->transport_state &= ~CMD_T_ACTIVE;
1676 spin_unlock_irq(&cmd->t_state_lock);
1677 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001678 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001679 }
1680 /*
1681 * Determine if frontend context caller is requesting the stopping of
1682 * this command for frontend exceptions.
1683 */
1684 if (cmd->transport_state & CMD_T_STOP) {
1685 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1686 __func__, __LINE__,
1687 cmd->se_tfo->get_task_tag(cmd));
1688
1689 spin_unlock_irq(&cmd->t_state_lock);
1690 complete(&cmd->t_transport_stop_comp);
1691 return;
1692 }
1693
1694 cmd->t_state = TRANSPORT_PROCESSING;
Roland Dreiere627c612013-01-02 12:47:57 -08001695 cmd->transport_state |= CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001696 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001697
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001698 if (!target_handle_task_attr(cmd))
1699 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001700}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001701EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001702
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001703/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001704 * Process all commands up to the last received ORDERED task attribute which
1705 * requires another blocking boundary
1706 */
1707static void target_restart_delayed_cmds(struct se_device *dev)
1708{
1709 for (;;) {
1710 struct se_cmd *cmd;
1711
1712 spin_lock(&dev->delayed_cmd_lock);
1713 if (list_empty(&dev->delayed_cmd_list)) {
1714 spin_unlock(&dev->delayed_cmd_lock);
1715 break;
1716 }
1717
1718 cmd = list_entry(dev->delayed_cmd_list.next,
1719 struct se_cmd, se_delayed_node);
1720 list_del(&cmd->se_delayed_node);
1721 spin_unlock(&dev->delayed_cmd_lock);
1722
1723 __target_execute_cmd(cmd);
1724
1725 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1726 break;
1727 }
1728}
1729
1730/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001731 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001732 * and ordered cmds need to have their tasks added to the execution queue.
1733 */
1734static void transport_complete_task_attr(struct se_cmd *cmd)
1735{
Andy Grover5951146d2011-07-19 10:26:37 +00001736 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001737
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001738 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1739 return;
1740
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001741 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001742 atomic_dec(&dev->simple_cmds);
1743 smp_mb__after_atomic_dec();
1744 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001745 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001746 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1747 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001748 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001749 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001750 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001751 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1752 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001753 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754 atomic_dec(&dev->dev_ordered_sync);
1755 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001756
1757 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001758 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001759 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1760 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001761
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001762 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001763}
1764
Christoph Hellwige057f532011-10-17 13:56:41 -04001765static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001766{
1767 int ret = 0;
1768
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001769 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001770
1771 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1772 ret = cmd->se_tfo->queue_status(cmd);
1773 if (ret)
1774 goto out;
1775 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001776
1777 switch (cmd->data_direction) {
1778 case DMA_FROM_DEVICE:
1779 ret = cmd->se_tfo->queue_data_in(cmd);
1780 break;
1781 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001782 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001783 ret = cmd->se_tfo->queue_data_in(cmd);
1784 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001785 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001786 }
1787 /* Fall through for DMA_TO_DEVICE */
1788 case DMA_NONE:
1789 ret = cmd->se_tfo->queue_status(cmd);
1790 break;
1791 default:
1792 break;
1793 }
1794
Christoph Hellwige057f532011-10-17 13:56:41 -04001795out:
1796 if (ret < 0) {
1797 transport_handle_queue_full(cmd, cmd->se_dev);
1798 return;
1799 }
1800 transport_lun_remove_cmd(cmd);
1801 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001802}
1803
1804static void transport_handle_queue_full(
1805 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001806 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001807{
1808 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001809 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1810 atomic_inc(&dev->dev_qf_count);
1811 smp_mb__after_atomic_inc();
1812 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1813
1814 schedule_work(&cmd->se_dev->qf_work_queue);
1815}
1816
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001817static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001818{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001819 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001820 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001821
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001822 /*
1823 * Check if we need to move delayed/dormant tasks from cmds on the
1824 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1825 * Attribute.
1826 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001827 transport_complete_task_attr(cmd);
1828
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001829 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001830 * Check to schedule QUEUE_FULL work, or execute an existing
1831 * cmd->transport_qf_callback()
1832 */
1833 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1834 schedule_work(&cmd->se_dev->qf_work_queue);
1835
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001836 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001837 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001838 * the struct se_cmd in question.
1839 */
1840 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001841 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001842 ret = transport_send_check_condition_and_sense(
1843 cmd, 0, 1);
1844 if (ret == -EAGAIN || ret == -ENOMEM)
1845 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001846
Paolo Bonzini27a27092012-09-05 17:09:14 +02001847 transport_lun_remove_cmd(cmd);
1848 transport_cmd_check_stop_to_fabric(cmd);
1849 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001850 }
1851 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001852 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001853 * XDWRITE_READ_10 emulation.
1854 */
1855 if (cmd->transport_complete_callback)
1856 cmd->transport_complete_callback(cmd);
1857
1858 switch (cmd->data_direction) {
1859 case DMA_FROM_DEVICE:
1860 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001861 if (cmd->se_lun->lun_sep) {
1862 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001863 cmd->data_length;
1864 }
1865 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001866
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001867 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001868 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001869 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001870 break;
1871 case DMA_TO_DEVICE:
1872 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001873 if (cmd->se_lun->lun_sep) {
1874 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001875 cmd->data_length;
1876 }
1877 spin_unlock(&cmd->se_lun->lun_sep_lock);
1878 /*
1879 * Check if we need to send READ payload for BIDI-COMMAND
1880 */
Andy Groverec98f782011-07-20 19:28:46 +00001881 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001882 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001883 if (cmd->se_lun->lun_sep) {
1884 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001885 cmd->data_length;
1886 }
1887 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001888 ret = cmd->se_tfo->queue_data_in(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 }
1893 /* Fall through for DMA_TO_DEVICE */
1894 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001895 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001896 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001897 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001898 break;
1899 default:
1900 break;
1901 }
1902
1903 transport_lun_remove_cmd(cmd);
1904 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001905 return;
1906
1907queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001908 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001909 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001910 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1911 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001912}
1913
Andy Grover6708bb22011-06-08 10:36:43 -07001914static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001915{
Andy Groverec98f782011-07-20 19:28:46 +00001916 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001917 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001918
Andy Grover6708bb22011-06-08 10:36:43 -07001919 for_each_sg(sgl, sg, nents, count)
1920 __free_page(sg_page(sg));
1921
1922 kfree(sgl);
1923}
1924
1925static inline void transport_free_pages(struct se_cmd *cmd)
1926{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001927 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07001928 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001929
Andy Grover6708bb22011-06-08 10:36:43 -07001930 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001931 cmd->t_data_sg = NULL;
1932 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001933
Andy Grover6708bb22011-06-08 10:36:43 -07001934 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00001935 cmd->t_bidi_data_sg = NULL;
1936 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001937}
1938
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001939/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001940 * transport_release_cmd - free a command
1941 * @cmd: command to free
1942 *
1943 * This routine unconditionally frees a command, and reference counting
1944 * or list removal must be done in the caller.
1945 */
1946static void transport_release_cmd(struct se_cmd *cmd)
1947{
1948 BUG_ON(!cmd->se_tfo);
1949
Andy Groverc8e31f22012-01-19 13:39:17 -08001950 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001951 core_tmr_release_req(cmd->se_tmr_req);
1952 if (cmd->t_task_cdb != cmd->__t_task_cdb)
1953 kfree(cmd->t_task_cdb);
1954 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001955 * If this cmd has been setup with target_get_sess_cmd(), drop
1956 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001957 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08001958 if (cmd->check_release != 0) {
1959 target_put_sess_cmd(cmd->se_sess, cmd);
1960 return;
1961 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05001962 cmd->se_tfo->release_cmd(cmd);
1963}
1964
1965/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02001966 * transport_put_cmd - release a reference to a command
1967 * @cmd: command to release
1968 *
1969 * This routine releases our reference to the command and frees it if possible.
1970 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001971static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001972{
1973 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001974
Andy Grovera1d8b492011-05-02 17:12:10 -07001975 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreierd9ed6942012-11-16 08:06:18 -08001976 if (atomic_read(&cmd->t_fe_count) &&
1977 !atomic_dec_and_test(&cmd->t_fe_count)) {
1978 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1979 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001980 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001981
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001982 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
1983 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001984 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02001985 }
Andy Grovera1d8b492011-05-02 17:12:10 -07001986 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001987
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001988 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02001989 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07001990 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991}
1992
Andy Grover49493142012-01-16 16:57:08 -08001993void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001994{
Andy Groverec98f782011-07-20 19:28:46 +00001995 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08001996 struct page **pages;
1997 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001998
Andy Grover05d1c7c2011-07-20 19:13:28 +00001999 /*
Andy Groverec98f782011-07-20 19:28:46 +00002000 * We need to take into account a possible offset here for fabrics like
2001 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2002 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002003 */
Andy Grover49493142012-01-16 16:57:08 -08002004 if (!cmd->t_data_nents)
2005 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002006
2007 BUG_ON(!sg);
2008 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002009 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002010
Andy Grover49493142012-01-16 16:57:08 -08002011 /* >1 page. use vmap */
2012 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002013 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002014 return NULL;
2015
2016 /* convert sg[] to pages[] */
2017 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2018 pages[i] = sg_page(sg);
2019 }
2020
2021 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2022 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002023 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002024 return NULL;
2025
2026 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002027}
Andy Grover49493142012-01-16 16:57:08 -08002028EXPORT_SYMBOL(transport_kmap_data_sg);
2029
2030void transport_kunmap_data_sg(struct se_cmd *cmd)
2031{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002032 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002033 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002034 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002035 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002036 return;
2037 }
Andy Grover49493142012-01-16 16:57:08 -08002038
2039 vunmap(cmd->t_data_vmap);
2040 cmd->t_data_vmap = NULL;
2041}
2042EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002043
2044static int
2045transport_generic_get_mem(struct se_cmd *cmd)
2046{
Andy Groverec98f782011-07-20 19:28:46 +00002047 u32 length = cmd->data_length;
2048 unsigned int nents;
2049 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002050 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002051 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002052
Andy Groverec98f782011-07-20 19:28:46 +00002053 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2054 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2055 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002056 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002057
Andy Groverec98f782011-07-20 19:28:46 +00002058 cmd->t_data_nents = nents;
2059 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002060
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002061 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002062
Andy Groverec98f782011-07-20 19:28:46 +00002063 while (length) {
2064 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002065 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002066 if (!page)
2067 goto out;
2068
2069 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2070 length -= page_len;
2071 i++;
2072 }
2073 return 0;
2074
2075out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002076 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002077 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002078 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002079 }
2080 kfree(cmd->t_data_sg);
2081 cmd->t_data_sg = NULL;
2082 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002083}
2084
Andy Grovera1d8b492011-05-02 17:12:10 -07002085/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002086 * Allocate any required resources to execute the command. For writes we
2087 * might not have the payload yet, so notify the fabric via a call to
2088 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002089 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002090sense_reason_t
2091transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002092{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002093 int ret = 0;
2094
2095 /*
2096 * Determine is the TCM fabric module has already allocated physical
2097 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002098 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002099 */
Andy Groverec98f782011-07-20 19:28:46 +00002100 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2101 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002102 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002103 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002104 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002105 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002106
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002107 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002108
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002109 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002110 * If this command is not a write we can execute it right here,
2111 * for write buffers we need to notify the fabric driver first
2112 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002113 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002114 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002115 if (cmd->data_direction != DMA_TO_DEVICE) {
2116 target_execute_cmd(cmd);
2117 return 0;
2118 }
2119
2120 spin_lock_irq(&cmd->t_state_lock);
2121 cmd->t_state = TRANSPORT_WRITE_PENDING;
2122 spin_unlock_irq(&cmd->t_state_lock);
2123
2124 transport_cmd_check_stop(cmd, false);
2125
2126 ret = cmd->se_tfo->write_pending(cmd);
2127 if (ret == -EAGAIN || ret == -ENOMEM)
2128 goto queue_full;
2129
Christoph Hellwigde103c92012-11-06 12:24:09 -08002130 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2131 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002132
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002133 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002134
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002135queue_full:
2136 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2137 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2138 transport_handle_queue_full(cmd, cmd->se_dev);
2139 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002140}
Andy Grovera1d8b492011-05-02 17:12:10 -07002141EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002142
Christoph Hellwige057f532011-10-17 13:56:41 -04002143static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002144{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002145 int ret;
2146
2147 ret = cmd->se_tfo->write_pending(cmd);
2148 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002149 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2150 cmd);
2151 transport_handle_queue_full(cmd, cmd->se_dev);
2152 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002153}
2154
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002155void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002156{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002157 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002158 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002159 transport_wait_for_tasks(cmd);
2160
Christoph Hellwig35462972011-05-31 23:56:57 -04002161 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002162 } else {
2163 if (wait_for_tasks)
2164 transport_wait_for_tasks(cmd);
2165
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002166 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2167
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002168 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002169 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002170
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002171 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002172 }
2173}
2174EXPORT_SYMBOL(transport_generic_free_cmd);
2175
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002176/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2177 * @se_sess: session to reference
2178 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002179 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002180 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002181int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002182 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002183{
2184 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002185 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002186
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002187 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002188 /*
2189 * Add a second kref if the fabric caller is expecting to handle
2190 * fabric acknowledgement that requires two target_put_sess_cmd()
2191 * invocations before se_cmd descriptor release.
2192 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002193 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002194 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002195 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2196 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002197
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002198 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002199 if (se_sess->sess_tearing_down) {
2200 ret = -ESHUTDOWN;
2201 goto out;
2202 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002203 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2204 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002205
2206out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002207 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002208 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002209}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002210EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002211
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002212static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002213{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002214 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2215 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002216 unsigned long flags;
2217
2218 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2219 if (list_empty(&se_cmd->se_cmd_list)) {
2220 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002221 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002222 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002223 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002224 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2225 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2226 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002227 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002228 }
2229 list_del(&se_cmd->se_cmd_list);
2230 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2231
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002232 se_cmd->se_tfo->release_cmd(se_cmd);
2233}
2234
2235/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2236 * @se_sess: session to reference
2237 * @se_cmd: command descriptor to drop
2238 */
2239int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2240{
2241 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002242}
2243EXPORT_SYMBOL(target_put_sess_cmd);
2244
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002245/* target_sess_cmd_list_set_waiting - Flag all commands in
2246 * sess_cmd_list to complete cmd_wait_comp. Set
2247 * sess_tearing_down so no more commands are queued.
2248 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002249 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002250void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002251{
2252 struct se_cmd *se_cmd;
2253 unsigned long flags;
2254
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002255 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002256
2257 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002258 se_sess->sess_tearing_down = 1;
2259
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002260 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002261 se_cmd->cmd_wait_set = 1;
2262
2263 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2264}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002265EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002266
2267/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2268 * @se_sess: session to wait for active I/O
2269 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2270 */
2271void target_wait_for_sess_cmds(
2272 struct se_session *se_sess,
2273 int wait_for_tasks)
2274{
2275 struct se_cmd *se_cmd, *tmp_cmd;
2276 bool rc = false;
2277
2278 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002279 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002280 list_del(&se_cmd->se_cmd_list);
2281
2282 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2283 " %d\n", se_cmd, se_cmd->t_state,
2284 se_cmd->se_tfo->get_cmd_state(se_cmd));
2285
2286 if (wait_for_tasks) {
2287 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2288 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2289 se_cmd->se_tfo->get_cmd_state(se_cmd));
2290
2291 rc = transport_wait_for_tasks(se_cmd);
2292
2293 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2294 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2295 se_cmd->se_tfo->get_cmd_state(se_cmd));
2296 }
2297
2298 if (!rc) {
2299 wait_for_completion(&se_cmd->cmd_wait_comp);
2300 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2301 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2302 se_cmd->se_tfo->get_cmd_state(se_cmd));
2303 }
2304
2305 se_cmd->se_tfo->release_cmd(se_cmd);
2306 }
2307}
2308EXPORT_SYMBOL(target_wait_for_sess_cmds);
2309
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002310/* transport_lun_wait_for_tasks():
2311 *
2312 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2313 * an struct se_lun to be successfully shutdown.
2314 */
2315static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2316{
2317 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002318 int ret = 0;
2319
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002320 /*
2321 * If the frontend has already requested this struct se_cmd to
2322 * be stopped, we can safely ignore this struct se_cmd.
2323 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002324 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002325 if (cmd->transport_state & CMD_T_STOP) {
2326 cmd->transport_state &= ~CMD_T_LUN_STOP;
2327
2328 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2329 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002330 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002331 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002332 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002333 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002334 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002335 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002336
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002337 // XXX: audit task_flags checks.
2338 spin_lock_irqsave(&cmd->t_state_lock, flags);
2339 if ((cmd->transport_state & CMD_T_BUSY) &&
2340 (cmd->transport_state & CMD_T_SENT)) {
2341 if (!target_stop_cmd(cmd, &flags))
2342 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002343 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002344 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002345
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002346 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2347 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002348 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002349 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002350 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002351 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002352 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002353 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002354 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002355
2356 return 0;
2357}
2358
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002359static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2360{
2361 struct se_cmd *cmd = NULL;
2362 unsigned long lun_flags, cmd_flags;
2363 /*
2364 * Do exception processing and return CHECK_CONDITION status to the
2365 * Initiator Port.
2366 */
2367 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002368 while (!list_empty(&lun->lun_cmd_list)) {
2369 cmd = list_first_entry(&lun->lun_cmd_list,
2370 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002371 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372
Andy Grovera1d8b492011-05-02 17:12:10 -07002373 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002374 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002375 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002376 cmd->se_lun->unpacked_lun,
2377 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002378 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002379 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002380
2381 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2382
Andy Grover6708bb22011-06-08 10:36:43 -07002383 if (!cmd->se_lun) {
2384 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002385 cmd->se_tfo->get_task_tag(cmd),
2386 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002387 BUG();
2388 }
2389 /*
2390 * If the Storage engine still owns the iscsi_cmd_t, determine
2391 * and/or stop its context.
2392 */
Andy Grover6708bb22011-06-08 10:36:43 -07002393 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002394 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2395 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002396
Andy Grovere3d6f902011-07-19 08:55:10 +00002397 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002398 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2399 continue;
2400 }
2401
Andy Grover6708bb22011-06-08 10:36:43 -07002402 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002403 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002404 cmd->se_lun->unpacked_lun,
2405 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002406
Andy Grovera1d8b492011-05-02 17:12:10 -07002407 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002408 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002409 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002410 goto check_cond;
2411 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002412 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002413 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002414 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002415
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002416 /*
2417 * The Storage engine stopped this struct se_cmd before it was
2418 * send to the fabric frontend for delivery back to the
2419 * Initiator Node. Return this SCSI CDB back with an
2420 * CHECK_CONDITION status.
2421 */
2422check_cond:
2423 transport_send_check_condition_and_sense(cmd,
2424 TCM_NON_EXISTENT_LUN, 0);
2425 /*
2426 * If the fabric frontend is waiting for this iscsi_cmd_t to
2427 * be released, notify the waiting thread now that LU has
2428 * finished accessing it.
2429 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002430 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002431 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002432 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002433 " struct se_cmd: %p ITT: 0x%08x\n",
2434 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002435 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002436
Andy Grovera1d8b492011-05-02 17:12:10 -07002437 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002438 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002439 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002440 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002441 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2442 continue;
2443 }
Andy Grover6708bb22011-06-08 10:36:43 -07002444 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002445 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002446
Andy Grovera1d8b492011-05-02 17:12:10 -07002447 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002448 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2449 }
2450 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2451}
2452
2453static int transport_clear_lun_thread(void *p)
2454{
Jörn Engel8359cf42011-11-24 02:05:51 +01002455 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002456
2457 __transport_clear_lun_from_sessions(lun);
2458 complete(&lun->lun_shutdown_comp);
2459
2460 return 0;
2461}
2462
2463int transport_clear_lun_from_sessions(struct se_lun *lun)
2464{
2465 struct task_struct *kt;
2466
Andy Grover5951146d2011-07-19 10:26:37 +00002467 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002468 "tcm_cl_%u", lun->unpacked_lun);
2469 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002470 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002471 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002472 }
2473 wait_for_completion(&lun->lun_shutdown_comp);
2474
2475 return 0;
2476}
2477
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002478/**
2479 * transport_wait_for_tasks - wait for completion to occur
2480 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002481 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002482 * Called from frontend fabric context to wait for storage engine
2483 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002484 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002485bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002486{
2487 unsigned long flags;
2488
Andy Grovera1d8b492011-05-02 17:12:10 -07002489 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002490 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2491 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002492 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002493 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002494 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002495
Andy Groverc8e31f22012-01-19 13:39:17 -08002496 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2497 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002498 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002499 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002500 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002501 /*
2502 * If we are already stopped due to an external event (ie: LUN shutdown)
2503 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002504 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002505 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2506 * has completed its operation on the struct se_cmd.
2507 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002508 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002509 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002510 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002511 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002512 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002513 /*
2514 * There is a special case for WRITES where a FE exception +
2515 * LUN shutdown means ConfigFS context is still sleeping on
2516 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2517 * We go ahead and up transport_lun_stop_comp just to be sure
2518 * here.
2519 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002520 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2521 complete(&cmd->transport_lun_stop_comp);
2522 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2523 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002524
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002525 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002526 /*
2527 * At this point, the frontend who was the originator of this
2528 * struct se_cmd, now owns the structure and can be released through
2529 * normal means below.
2530 */
Andy Grover6708bb22011-06-08 10:36:43 -07002531 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002532 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002533 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002534 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002536 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002538
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002539 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002540 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002541 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002542 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002543
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002544 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002545
Andy Grover6708bb22011-06-08 10:36:43 -07002546 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002547 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002548 cmd, cmd->se_tfo->get_task_tag(cmd),
2549 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002550
Andy Grovera1d8b492011-05-02 17:12:10 -07002551 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002552
Andy Grovera1d8b492011-05-02 17:12:10 -07002553 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002554
Andy Grovera1d8b492011-05-02 17:12:10 -07002555 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002556 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002557
Masanari Iida35d1efe2012-08-16 22:43:13 +09002558 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002559 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002560 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002561
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002562 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002563
2564 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002565}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002566EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002567
2568static int transport_get_sense_codes(
2569 struct se_cmd *cmd,
2570 u8 *asc,
2571 u8 *ascq)
2572{
2573 *asc = cmd->scsi_asc;
2574 *ascq = cmd->scsi_ascq;
2575
2576 return 0;
2577}
2578
Christoph Hellwigde103c92012-11-06 12:24:09 -08002579int
2580transport_send_check_condition_and_sense(struct se_cmd *cmd,
2581 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002582{
2583 unsigned char *buffer = cmd->sense_buffer;
2584 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585 u8 asc = 0, ascq = 0;
2586
Andy Grovera1d8b492011-05-02 17:12:10 -07002587 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002588 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002589 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002590 return 0;
2591 }
2592 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002593 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002594
2595 if (!reason && from_transport)
2596 goto after_reason;
2597
2598 if (!from_transport)
2599 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002600
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601 /*
2602 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2603 * SENSE KEY values from include/scsi/scsi.h
2604 */
2605 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002606 case TCM_NO_SENSE:
2607 /* CURRENT ERROR */
2608 buffer[0] = 0x70;
2609 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2610 /* Not Ready */
2611 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2612 /* NO ADDITIONAL SENSE INFORMATION */
2613 buffer[SPC_ASC_KEY_OFFSET] = 0;
2614 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2615 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002617 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002618 buffer[0] = 0x70;
2619 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002620 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002621 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002622 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002623 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002624 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002625 case TCM_UNSUPPORTED_SCSI_OPCODE:
2626 case TCM_SECTOR_COUNT_TOO_MANY:
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 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002631 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002632 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002633 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002634 break;
2635 case TCM_UNKNOWN_MODE_PAGE:
2636 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002637 buffer[0] = 0x70;
2638 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002639 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002640 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002641 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002642 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002643 break;
2644 case TCM_CHECK_CONDITION_ABORT_CMD:
2645 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002646 buffer[0] = 0x70;
2647 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002648 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002649 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002650 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002651 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2652 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002653 break;
2654 case TCM_INCORRECT_AMOUNT_OF_DATA:
2655 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002656 buffer[0] = 0x70;
2657 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002658 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002659 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002660 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002661 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002662 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002663 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002664 break;
2665 case TCM_INVALID_CDB_FIELD:
2666 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002667 buffer[0] = 0x70;
2668 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002669 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002670 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002671 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002672 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002673 break;
2674 case TCM_INVALID_PARAMETER_LIST:
2675 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002676 buffer[0] = 0x70;
2677 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002678 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002679 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002680 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002681 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002683 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2684 /* CURRENT ERROR */
2685 buffer[0] = 0x70;
2686 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2687 /* ILLEGAL REQUEST */
2688 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2689 /* PARAMETER LIST LENGTH ERROR */
2690 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2691 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002692 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2693 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002694 buffer[0] = 0x70;
2695 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002696 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002697 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002698 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002699 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002700 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002701 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702 break;
2703 case TCM_SERVICE_CRC_ERROR:
2704 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002705 buffer[0] = 0x70;
2706 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002707 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002708 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002709 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002710 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002711 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002712 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713 break;
2714 case TCM_SNACK_REJECTED:
2715 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002716 buffer[0] = 0x70;
2717 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002718 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002719 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002720 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002721 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002722 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002723 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002724 break;
2725 case TCM_WRITE_PROTECTED:
2726 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002727 buffer[0] = 0x70;
2728 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002729 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002730 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002732 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002733 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002734 case TCM_ADDRESS_OUT_OF_RANGE:
2735 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002736 buffer[0] = 0x70;
2737 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002738 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002739 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002740 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002741 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002742 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002743 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2744 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002745 buffer[0] = 0x70;
2746 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002747 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002748 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002749 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002750 buffer[SPC_ASC_KEY_OFFSET] = asc;
2751 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002752 break;
2753 case TCM_CHECK_CONDITION_NOT_READY:
2754 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002755 buffer[0] = 0x70;
2756 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002757 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002758 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002760 buffer[SPC_ASC_KEY_OFFSET] = asc;
2761 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002762 break;
2763 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2764 default:
2765 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002766 buffer[0] = 0x70;
2767 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002768 /*
2769 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2770 * Solaris initiators. Returning NOT READY instead means the
2771 * operations will be retried a finite number of times and we
2772 * can survive intermittent errors.
2773 */
2774 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002775 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002776 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002777 break;
2778 }
2779 /*
2780 * This code uses linux/include/scsi/scsi.h SAM status codes!
2781 */
2782 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2783 /*
2784 * Automatically padded, this value is encoded in the fabric's
2785 * data_length response PDU containing the SCSI defined sense data.
2786 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002787 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002788
2789after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002790 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002791}
2792EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2793
2794int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2795{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002796 if (!(cmd->transport_state & CMD_T_ABORTED))
2797 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002798
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002799 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2800 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002801
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002802 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2803 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002804
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002805 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
2806 cmd->se_tfo->queue_status(cmd);
2807
2808 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002809}
2810EXPORT_SYMBOL(transport_check_aborted_status);
2811
2812void transport_send_task_abort(struct se_cmd *cmd)
2813{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002814 unsigned long flags;
2815
2816 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002817 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002818 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2819 return;
2820 }
2821 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2822
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002823 /*
2824 * If there are still expected incoming fabric WRITEs, we wait
2825 * until until they have completed before sending a TASK_ABORTED
2826 * response. This response with TASK_ABORTED status will be
2827 * queued back to fabric module by transport_check_aborted_status().
2828 */
2829 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002830 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002831 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002832 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002833 }
2834 }
2835 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002836
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002837 transport_lun_remove_cmd(cmd);
2838
Andy Grover6708bb22011-06-08 10:36:43 -07002839 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002840 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002841 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002842
Andy Grovere3d6f902011-07-19 08:55:10 +00002843 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002844}
2845
Christoph Hellwigaf877292012-07-08 15:58:49 -04002846static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002847{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002848 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002849 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002850 struct se_tmr_req *tmr = cmd->se_tmr_req;
2851 int ret;
2852
2853 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002854 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002855 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002856 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002857 case TMR_ABORT_TASK_SET:
2858 case TMR_CLEAR_ACA:
2859 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002860 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2861 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002862 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002863 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2864 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2865 TMR_FUNCTION_REJECTED;
2866 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002867 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002868 tmr->response = TMR_FUNCTION_REJECTED;
2869 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002870 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002871 tmr->response = TMR_FUNCTION_REJECTED;
2872 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002873 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002874 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002875 tmr->function);
2876 tmr->response = TMR_FUNCTION_REJECTED;
2877 break;
2878 }
2879
2880 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002881 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002882
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002883 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002884}
2885
Christoph Hellwigaf877292012-07-08 15:58:49 -04002886int transport_generic_handle_tmr(
2887 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002888{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002889 INIT_WORK(&cmd->work, target_tmr_work);
2890 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002891 return 0;
2892}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002893EXPORT_SYMBOL(transport_generic_handle_tmr);