blob: 3cc76ad14ce208526fae9cb1f0f73bc1293c86f3 [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 *
6 * Copyright (c) 2002, 2003, 2004, 2005 PyX Technologies, Inc.
7 * Copyright (c) 2005, 2006, 2007 SBE, Inc.
8 * Copyright (c) 2007-2010 Rising Tide Systems
9 * Copyright (c) 2008-2010 Linux-iSCSI.org
10 *
11 * Nicholas A. Bellinger <nab@kernel.org>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
26 *
27 ******************************************************************************/
28
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080029#include <linux/net.h>
30#include <linux/delay.h>
31#include <linux/string.h>
32#include <linux/timer.h>
33#include <linux/slab.h>
34#include <linux/blkdev.h>
35#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080036#include <linux/kthread.h>
37#include <linux/in.h>
38#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040039#include <linux/module.h>
Roland Dreier015487b2012-02-13 16:18:17 -080040#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080041#include <asm/unaligned.h>
42#include <net/sock.h>
43#include <net/tcp.h>
44#include <scsi/scsi.h>
45#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070046#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080047
48#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050049#include <target/target_core_backend.h>
50#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include <target/target_core_configfs.h>
52
Christoph Hellwige26d99a2011-11-14 12:30:30 -050053#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080054#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080055#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056#include "target_core_ua.h"
57
Christoph Hellwig35e0e752011-10-17 13:56:53 -040058static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080061struct kmem_cache *t10_pr_reg_cache;
62struct kmem_cache *t10_alua_lu_gp_cache;
63struct kmem_cache *t10_alua_lu_gp_mem_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_cache;
65struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
66
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070068static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040069 struct se_device *dev);
Andy Grover05d1c7c2011-07-20 19:13:28 +000070static int transport_generic_get_mem(struct se_cmd *cmd);
Roland Dreierbc187ea2012-07-16 11:04:40 -070071static int target_get_sess_cmd(struct se_session *, struct se_cmd *, bool);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -070072static void transport_put_cmd(struct se_cmd *cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073static int transport_set_sense_codes(struct se_cmd *cmd, u8 asc, u8 ascq);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040074static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075
Andy Grovere3d6f902011-07-19 08:55:10 +000076int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080077{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078 se_sess_cache = kmem_cache_create("se_sess_cache",
79 sizeof(struct se_session), __alignof__(struct se_session),
80 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070081 if (!se_sess_cache) {
82 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080084 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080085 }
86 se_ua_cache = kmem_cache_create("se_ua_cache",
87 sizeof(struct se_ua), __alignof__(struct se_ua),
88 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070089 if (!se_ua_cache) {
90 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040091 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080092 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080093 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
94 sizeof(struct t10_pr_registration),
95 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070096 if (!t10_pr_reg_cache) {
97 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040099 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800100 }
101 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
102 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
103 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700104 if (!t10_alua_lu_gp_cache) {
105 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400107 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800108 }
109 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
110 sizeof(struct t10_alua_lu_gp_member),
111 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700112 if (!t10_alua_lu_gp_mem_cache) {
113 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800114 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400115 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800116 }
117 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
118 sizeof(struct t10_alua_tg_pt_gp),
119 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700120 if (!t10_alua_tg_pt_gp_cache) {
121 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800122 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400123 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800124 }
125 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
126 "t10_alua_tg_pt_gp_mem_cache",
127 sizeof(struct t10_alua_tg_pt_gp_member),
128 __alignof__(struct t10_alua_tg_pt_gp_member),
129 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700130 if (!t10_alua_tg_pt_gp_mem_cache) {
131 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800132 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400133 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800134 }
135
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400136 target_completion_wq = alloc_workqueue("target_completion",
137 WQ_MEM_RECLAIM, 0);
138 if (!target_completion_wq)
139 goto out_free_tg_pt_gp_mem_cache;
140
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800141 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400142
143out_free_tg_pt_gp_mem_cache:
144 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
145out_free_tg_pt_gp_cache:
146 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
147out_free_lu_gp_mem_cache:
148 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
149out_free_lu_gp_cache:
150 kmem_cache_destroy(t10_alua_lu_gp_cache);
151out_free_pr_reg_cache:
152 kmem_cache_destroy(t10_pr_reg_cache);
153out_free_ua_cache:
154 kmem_cache_destroy(se_ua_cache);
155out_free_sess_cache:
156 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000158 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800159}
160
Andy Grovere3d6f902011-07-19 08:55:10 +0000161void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400163 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164 kmem_cache_destroy(se_sess_cache);
165 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800166 kmem_cache_destroy(t10_pr_reg_cache);
167 kmem_cache_destroy(t10_alua_lu_gp_cache);
168 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
169 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
170 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800171}
172
Andy Grovere3d6f902011-07-19 08:55:10 +0000173/* This code ensures unique mib indexes are handed out. */
174static DEFINE_SPINLOCK(scsi_mib_index_lock);
175static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800176
177/*
178 * Allocate a new row index for the entry type specified
179 */
180u32 scsi_get_new_index(scsi_index_t type)
181{
182 u32 new_index;
183
Andy Grovere3d6f902011-07-19 08:55:10 +0000184 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800185
Andy Grovere3d6f902011-07-19 08:55:10 +0000186 spin_lock(&scsi_mib_index_lock);
187 new_index = ++scsi_mib_index[type];
188 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800189
190 return new_index;
191}
192
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700193void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800194{
195 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700196 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800197
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700198 if (sub_api_initialized)
199 return;
200
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800201 ret = request_module("target_core_iblock");
202 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700203 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800204
205 ret = request_module("target_core_file");
206 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700207 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800208
209 ret = request_module("target_core_pscsi");
210 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700211 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800212
Andy Grovere3d6f902011-07-19 08:55:10 +0000213 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800214}
215
216struct se_session *transport_init_session(void)
217{
218 struct se_session *se_sess;
219
220 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700221 if (!se_sess) {
222 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800223 " se_sess_cache\n");
224 return ERR_PTR(-ENOMEM);
225 }
226 INIT_LIST_HEAD(&se_sess->sess_list);
227 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700228 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700229 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800230 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800231
232 return se_sess;
233}
234EXPORT_SYMBOL(transport_init_session);
235
236/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700237 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800238 */
239void __transport_register_session(
240 struct se_portal_group *se_tpg,
241 struct se_node_acl *se_nacl,
242 struct se_session *se_sess,
243 void *fabric_sess_ptr)
244{
245 unsigned char buf[PR_REG_ISID_LEN];
246
247 se_sess->se_tpg = se_tpg;
248 se_sess->fabric_sess_ptr = fabric_sess_ptr;
249 /*
250 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
251 *
252 * Only set for struct se_session's that will actually be moving I/O.
253 * eg: *NOT* discovery sessions.
254 */
255 if (se_nacl) {
256 /*
257 * If the fabric module supports an ISID based TransportID,
258 * save this value in binary from the fabric I_T Nexus now.
259 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000260 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800261 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000262 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800263 &buf[0], PR_REG_ISID_LEN);
264 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
265 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800266 kref_get(&se_nacl->acl_kref);
267
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800268 spin_lock_irq(&se_nacl->nacl_sess_lock);
269 /*
270 * The se_nacl->nacl_sess pointer will be set to the
271 * last active I_T Nexus for each struct se_node_acl.
272 */
273 se_nacl->nacl_sess = se_sess;
274
275 list_add_tail(&se_sess->sess_acl_list,
276 &se_nacl->acl_sess_list);
277 spin_unlock_irq(&se_nacl->nacl_sess_lock);
278 }
279 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
280
Andy Grover6708bb22011-06-08 10:36:43 -0700281 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000282 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800283}
284EXPORT_SYMBOL(__transport_register_session);
285
286void transport_register_session(
287 struct se_portal_group *se_tpg,
288 struct se_node_acl *se_nacl,
289 struct se_session *se_sess,
290 void *fabric_sess_ptr)
291{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700292 unsigned long flags;
293
294 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800295 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700296 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800297}
298EXPORT_SYMBOL(transport_register_session);
299
Joern Engel41492682012-05-18 13:57:19 -0700300void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800301{
302 struct se_session *se_sess = container_of(kref,
303 struct se_session, sess_kref);
304 struct se_portal_group *se_tpg = se_sess->se_tpg;
305
306 se_tpg->se_tpg_tfo->close_session(se_sess);
307}
308
309void target_get_session(struct se_session *se_sess)
310{
311 kref_get(&se_sess->sess_kref);
312}
313EXPORT_SYMBOL(target_get_session);
314
Jörn Engel33933a02012-05-11 10:35:08 -0400315void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800316{
Joern Engel41492682012-05-18 13:57:19 -0700317 struct se_portal_group *tpg = se_sess->se_tpg;
318
319 if (tpg->se_tpg_tfo->put_session != NULL) {
320 tpg->se_tpg_tfo->put_session(se_sess);
321 return;
322 }
Jörn Engel33933a02012-05-11 10:35:08 -0400323 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800324}
325EXPORT_SYMBOL(target_put_session);
326
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800327static void target_complete_nacl(struct kref *kref)
328{
329 struct se_node_acl *nacl = container_of(kref,
330 struct se_node_acl, acl_kref);
331
332 complete(&nacl->acl_free_comp);
333}
334
335void target_put_nacl(struct se_node_acl *nacl)
336{
337 kref_put(&nacl->acl_kref, target_complete_nacl);
338}
339
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800340void transport_deregister_session_configfs(struct se_session *se_sess)
341{
342 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700343 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800344 /*
345 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
346 */
347 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700348 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700349 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800350 if (se_nacl->acl_stop == 0)
351 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800352 /*
353 * If the session list is empty, then clear the pointer.
354 * Otherwise, set the struct se_session pointer from the tail
355 * element of the per struct se_node_acl active session list.
356 */
357 if (list_empty(&se_nacl->acl_sess_list))
358 se_nacl->nacl_sess = NULL;
359 else {
360 se_nacl->nacl_sess = container_of(
361 se_nacl->acl_sess_list.prev,
362 struct se_session, sess_acl_list);
363 }
Roland Dreier23388862011-06-22 01:02:21 -0700364 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800365 }
366}
367EXPORT_SYMBOL(transport_deregister_session_configfs);
368
369void transport_free_session(struct se_session *se_sess)
370{
371 kmem_cache_free(se_sess_cache, se_sess);
372}
373EXPORT_SYMBOL(transport_free_session);
374
375void transport_deregister_session(struct se_session *se_sess)
376{
377 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800378 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800379 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700380 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800381 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800382
Andy Grover6708bb22011-06-08 10:36:43 -0700383 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800384 transport_free_session(se_sess);
385 return;
386 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800387 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800388
Roland Dreiere63a8e12011-08-12 16:01:02 -0700389 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800390 list_del(&se_sess->sess_list);
391 se_sess->se_tpg = NULL;
392 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700393 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800394
395 /*
396 * Determine if we need to do extra work for this initiator node's
397 * struct se_node_acl if it had been previously dynamically generated.
398 */
399 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800400
Nicholas Bellinger01468342012-03-10 14:32:52 -0800401 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
402 if (se_nacl && se_nacl->dynamic_node_acl) {
403 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
404 list_del(&se_nacl->acl_list);
405 se_tpg->num_node_acls--;
406 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
407 core_tpg_wait_for_nacl_pr_ref(se_nacl);
408 core_free_device_list_for_node(se_nacl, se_tpg);
409 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
410
411 comp_nacl = false;
412 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800413 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800415 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800416
Andy Grover6708bb22011-06-08 10:36:43 -0700417 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000418 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800419 /*
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800420 * If last kref is dropping now for an explict NodeACL, awake sleeping
421 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
422 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800423 */
424 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800425 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800426
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800427 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800428}
429EXPORT_SYMBOL(transport_deregister_session);
430
431/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700432 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800433 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400434static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800435{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400436 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800437 unsigned long flags;
438
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400439 if (!dev)
440 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800441
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400442 if (cmd->transport_state & CMD_T_BUSY)
443 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800444
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400445 spin_lock_irqsave(&dev->execute_task_lock, flags);
446 if (cmd->state_active) {
447 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400448 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800449 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400450 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800451}
452
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400453static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800454{
455 unsigned long flags;
456
Andy Grovera1d8b492011-05-02 17:12:10 -0700457 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800458 /*
459 * Determine if IOCTL context caller in requesting the stopping of this
460 * command for LUN shutdown purposes.
461 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500462 if (cmd->transport_state & CMD_T_LUN_STOP) {
463 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
464 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800465
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500466 cmd->transport_state &= ~CMD_T_ACTIVE;
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400467 if (remove_from_lists)
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400468 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -0700469 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470
Andy Grovera1d8b492011-05-02 17:12:10 -0700471 complete(&cmd->transport_lun_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800472 return 1;
473 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400474
475 if (remove_from_lists) {
476 target_remove_from_state_list(cmd);
477
478 /*
479 * Clear struct se_cmd->se_lun before the handoff to FE.
480 */
481 cmd->se_lun = NULL;
482 }
483
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800484 /*
485 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000486 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500488 if (cmd->transport_state & CMD_T_STOP) {
489 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
490 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000491 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800492
Andy Grovera1d8b492011-05-02 17:12:10 -0700493 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800494
Andy Grovera1d8b492011-05-02 17:12:10 -0700495 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800496 return 1;
497 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800498
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400499 cmd->transport_state &= ~CMD_T_ACTIVE;
500 if (remove_from_lists) {
501 /*
502 * Some fabric modules like tcm_loop can release
503 * their internally allocated I/O reference now and
504 * struct se_cmd now.
505 *
506 * Fabric modules are expected to return '1' here if the
507 * se_cmd being passed is released at this point,
508 * or zero if not being released.
509 */
510 if (cmd->se_tfo->check_stop_free != NULL) {
511 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
512 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800513 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400514 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800515
Andy Grovera1d8b492011-05-02 17:12:10 -0700516 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800517 return 0;
518}
519
520static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
521{
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400522 return transport_cmd_check_stop(cmd, true);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800523}
524
525static void transport_lun_remove_cmd(struct se_cmd *cmd)
526{
Andy Grovere3d6f902011-07-19 08:55:10 +0000527 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800528 unsigned long flags;
529
530 if (!lun)
531 return;
532
Andy Grovera1d8b492011-05-02 17:12:10 -0700533 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500534 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
535 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400536 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800537 }
Andy Grovera1d8b492011-05-02 17:12:10 -0700538 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800539
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800540 spin_lock_irqsave(&lun->lun_cmd_lock, flags);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -0500541 if (!list_empty(&cmd->se_lun_node))
542 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543 spin_unlock_irqrestore(&lun->lun_cmd_lock, flags);
544}
545
546void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
547{
Andy Groverc8e31f22012-01-19 13:39:17 -0800548 if (!(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellinger8dc52b52011-10-09 02:02:51 -0700549 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550
551 if (transport_cmd_check_stop_to_fabric(cmd))
552 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400553 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200554 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800555}
556
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400557static void target_complete_failure_work(struct work_struct *work)
558{
559 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
560
Nicholas Bellinger03e98c92011-11-04 02:36:16 -0700561 transport_generic_request_failure(cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400562}
563
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200564/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200565 * Used when asking transport to copy Sense Data from the underlying
566 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200567 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200568static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200569{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200570 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200571
572 WARN_ON(!cmd->se_lun);
573
574 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200575 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200576
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200577 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
578 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200579
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700580 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200581
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200582 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200583 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700584 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200585}
586
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400587void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800588{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400589 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400590 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800592
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400593 cmd->scsi_status = scsi_status;
594
595
Andy Grovera1d8b492011-05-02 17:12:10 -0700596 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400597 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800599 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200600 dev->transport->transport_complete(cmd,
601 cmd->t_data_sg,
602 transport_get_sense_buffer(cmd));
603 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800604 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800605 }
606
607 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400608 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800609 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400610 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700611 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400612 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800613 return;
614 }
Christoph Hellwig22350072011-11-02 05:06:35 -0700615
616 if (!success)
Christoph Hellwig7d680f32011-12-21 14:13:47 -0500617 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig22350072011-11-02 05:06:35 -0700618
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800619 /*
620 * Check for case where an explict ABORT_TASK has been received
621 * and transport_wait_for_tasks() will be waiting for completion..
622 */
623 if (cmd->transport_state & CMD_T_ABORTED &&
624 cmd->transport_state & CMD_T_STOP) {
625 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
626 complete(&cmd->t_transport_stop_comp);
627 return;
628 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig41e16e92011-11-23 06:54:15 -0500629 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400630 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800631 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400632 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800633 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400634
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400635 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800636 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700637 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800638
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400639 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800640}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400641EXPORT_SYMBOL(target_complete_cmd);
642
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400643static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800644{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400645 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646 unsigned long flags;
647
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800648 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400649 if (!cmd->state_active) {
650 list_add_tail(&cmd->state_list, &dev->state_list);
651 cmd->state_active = true;
652 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800653 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800654}
655
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700656/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700657 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700658 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400659static void transport_write_pending_qf(struct se_cmd *cmd);
660static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700661
662static void target_qf_do_work(struct work_struct *work)
663{
664 struct se_device *dev = container_of(work, struct se_device,
665 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700666 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700667 struct se_cmd *cmd, *cmd_tmp;
668
669 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700670 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
671 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700672
Roland Dreierbcac3642011-08-27 21:33:16 -0700673 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700674 list_del(&cmd->se_qf_node);
675 atomic_dec(&dev->dev_qf_count);
676 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700677
Andy Grover6708bb22011-06-08 10:36:43 -0700678 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700679 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400680 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700681 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
682 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400683
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400684 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
685 transport_write_pending_qf(cmd);
686 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
687 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700688 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700689}
690
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800691unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
692{
693 switch (cmd->data_direction) {
694 case DMA_NONE:
695 return "NONE";
696 case DMA_FROM_DEVICE:
697 return "READ";
698 case DMA_TO_DEVICE:
699 return "WRITE";
700 case DMA_BIDIRECTIONAL:
701 return "BIDI";
702 default:
703 break;
704 }
705
706 return "UNKNOWN";
707}
708
709void transport_dump_dev_state(
710 struct se_device *dev,
711 char *b,
712 int *bl)
713{
714 *bl += sprintf(b + *bl, "Status: ");
715 switch (dev->dev_status) {
716 case TRANSPORT_DEVICE_ACTIVATED:
717 *bl += sprintf(b + *bl, "ACTIVATED");
718 break;
719 case TRANSPORT_DEVICE_DEACTIVATED:
720 *bl += sprintf(b + *bl, "DEACTIVATED");
721 break;
722 case TRANSPORT_DEVICE_SHUTDOWN:
723 *bl += sprintf(b + *bl, "SHUTDOWN");
724 break;
725 case TRANSPORT_DEVICE_OFFLINE_ACTIVATED:
726 case TRANSPORT_DEVICE_OFFLINE_DEACTIVATED:
727 *bl += sprintf(b + *bl, "OFFLINE");
728 break;
729 default:
730 *bl += sprintf(b + *bl, "UNKNOWN=%d", dev->dev_status);
731 break;
732 }
733
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400734 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700735 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
736 dev->se_sub_dev->se_dev_attrib.block_size,
737 dev->se_sub_dev->se_dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800738 *bl += sprintf(b + *bl, " ");
739}
740
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800741void transport_dump_vpd_proto_id(
742 struct t10_vpd *vpd,
743 unsigned char *p_buf,
744 int p_buf_len)
745{
746 unsigned char buf[VPD_TMP_BUF_SIZE];
747 int len;
748
749 memset(buf, 0, VPD_TMP_BUF_SIZE);
750 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
751
752 switch (vpd->protocol_identifier) {
753 case 0x00:
754 sprintf(buf+len, "Fibre Channel\n");
755 break;
756 case 0x10:
757 sprintf(buf+len, "Parallel SCSI\n");
758 break;
759 case 0x20:
760 sprintf(buf+len, "SSA\n");
761 break;
762 case 0x30:
763 sprintf(buf+len, "IEEE 1394\n");
764 break;
765 case 0x40:
766 sprintf(buf+len, "SCSI Remote Direct Memory Access"
767 " Protocol\n");
768 break;
769 case 0x50:
770 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
771 break;
772 case 0x60:
773 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
774 break;
775 case 0x70:
776 sprintf(buf+len, "Automation/Drive Interface Transport"
777 " Protocol\n");
778 break;
779 case 0x80:
780 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
781 break;
782 default:
783 sprintf(buf+len, "Unknown 0x%02x\n",
784 vpd->protocol_identifier);
785 break;
786 }
787
788 if (p_buf)
789 strncpy(p_buf, buf, p_buf_len);
790 else
Andy Grover6708bb22011-06-08 10:36:43 -0700791 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800792}
793
794void
795transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
796{
797 /*
798 * Check if the Protocol Identifier Valid (PIV) bit is set..
799 *
800 * from spc3r23.pdf section 7.5.1
801 */
802 if (page_83[1] & 0x80) {
803 vpd->protocol_identifier = (page_83[0] & 0xf0);
804 vpd->protocol_identifier_set = 1;
805 transport_dump_vpd_proto_id(vpd, NULL, 0);
806 }
807}
808EXPORT_SYMBOL(transport_set_vpd_proto_id);
809
810int transport_dump_vpd_assoc(
811 struct t10_vpd *vpd,
812 unsigned char *p_buf,
813 int p_buf_len)
814{
815 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000816 int ret = 0;
817 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818
819 memset(buf, 0, VPD_TMP_BUF_SIZE);
820 len = sprintf(buf, "T10 VPD Identifier Association: ");
821
822 switch (vpd->association) {
823 case 0x00:
824 sprintf(buf+len, "addressed logical unit\n");
825 break;
826 case 0x10:
827 sprintf(buf+len, "target port\n");
828 break;
829 case 0x20:
830 sprintf(buf+len, "SCSI target device\n");
831 break;
832 default:
833 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000834 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800835 break;
836 }
837
838 if (p_buf)
839 strncpy(p_buf, buf, p_buf_len);
840 else
Andy Grover6708bb22011-06-08 10:36:43 -0700841 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800842
843 return ret;
844}
845
846int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
847{
848 /*
849 * The VPD identification association..
850 *
851 * from spc3r23.pdf Section 7.6.3.1 Table 297
852 */
853 vpd->association = (page_83[1] & 0x30);
854 return transport_dump_vpd_assoc(vpd, NULL, 0);
855}
856EXPORT_SYMBOL(transport_set_vpd_assoc);
857
858int transport_dump_vpd_ident_type(
859 struct t10_vpd *vpd,
860 unsigned char *p_buf,
861 int p_buf_len)
862{
863 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000864 int ret = 0;
865 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800866
867 memset(buf, 0, VPD_TMP_BUF_SIZE);
868 len = sprintf(buf, "T10 VPD Identifier Type: ");
869
870 switch (vpd->device_identifier_type) {
871 case 0x00:
872 sprintf(buf+len, "Vendor specific\n");
873 break;
874 case 0x01:
875 sprintf(buf+len, "T10 Vendor ID based\n");
876 break;
877 case 0x02:
878 sprintf(buf+len, "EUI-64 based\n");
879 break;
880 case 0x03:
881 sprintf(buf+len, "NAA\n");
882 break;
883 case 0x04:
884 sprintf(buf+len, "Relative target port identifier\n");
885 break;
886 case 0x08:
887 sprintf(buf+len, "SCSI name string\n");
888 break;
889 default:
890 sprintf(buf+len, "Unsupported: 0x%02x\n",
891 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000892 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800893 break;
894 }
895
Andy Grovere3d6f902011-07-19 08:55:10 +0000896 if (p_buf) {
897 if (p_buf_len < strlen(buf)+1)
898 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800899 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000900 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700901 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000902 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800903
904 return ret;
905}
906
907int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
908{
909 /*
910 * The VPD identifier type..
911 *
912 * from spc3r23.pdf Section 7.6.3.1 Table 298
913 */
914 vpd->device_identifier_type = (page_83[1] & 0x0f);
915 return transport_dump_vpd_ident_type(vpd, NULL, 0);
916}
917EXPORT_SYMBOL(transport_set_vpd_ident_type);
918
919int transport_dump_vpd_ident(
920 struct t10_vpd *vpd,
921 unsigned char *p_buf,
922 int p_buf_len)
923{
924 unsigned char buf[VPD_TMP_BUF_SIZE];
925 int ret = 0;
926
927 memset(buf, 0, VPD_TMP_BUF_SIZE);
928
929 switch (vpd->device_identifier_code_set) {
930 case 0x01: /* Binary */
931 sprintf(buf, "T10 VPD Binary Device Identifier: %s\n",
932 &vpd->device_identifier[0]);
933 break;
934 case 0x02: /* ASCII */
935 sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n",
936 &vpd->device_identifier[0]);
937 break;
938 case 0x03: /* UTF-8 */
939 sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n",
940 &vpd->device_identifier[0]);
941 break;
942 default:
943 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
944 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000945 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800946 break;
947 }
948
949 if (p_buf)
950 strncpy(p_buf, buf, p_buf_len);
951 else
Andy Grover6708bb22011-06-08 10:36:43 -0700952 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800953
954 return ret;
955}
956
957int
958transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
959{
960 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +0900961 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800962
963 /*
964 * The VPD Code Set (encoding)
965 *
966 * from spc3r23.pdf Section 7.6.3.1 Table 296
967 */
968 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
969 switch (vpd->device_identifier_code_set) {
970 case 0x01: /* Binary */
971 vpd->device_identifier[j++] =
972 hex_str[vpd->device_identifier_type];
973 while (i < (4 + page_83[3])) {
974 vpd->device_identifier[j++] =
975 hex_str[(page_83[i] & 0xf0) >> 4];
976 vpd->device_identifier[j++] =
977 hex_str[page_83[i] & 0x0f];
978 i++;
979 }
980 break;
981 case 0x02: /* ASCII */
982 case 0x03: /* UTF-8 */
983 while (i < (4 + page_83[3]))
984 vpd->device_identifier[j++] = page_83[i++];
985 break;
986 default:
987 break;
988 }
989
990 return transport_dump_vpd_ident(vpd, NULL, 0);
991}
992EXPORT_SYMBOL(transport_set_vpd_ident);
993
994static void core_setup_task_attr_emulation(struct se_device *dev)
995{
996 /*
997 * If this device is from Target_Core_Mod/pSCSI, disable the
998 * SAM Task Attribute emulation.
999 *
1000 * This is currently not available in upsream Linux/SCSI Target
1001 * mode code, and is assumed to be disabled while using TCM/pSCSI.
1002 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001003 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001004 dev->dev_task_attr_type = SAM_TASK_ATTR_PASSTHROUGH;
1005 return;
1006 }
1007
1008 dev->dev_task_attr_type = SAM_TASK_ATTR_EMULATED;
Andy Grover6708bb22011-06-08 10:36:43 -07001009 pr_debug("%s: Using SAM_TASK_ATTR_EMULATED for SPC: 0x%02x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001010 " device\n", dev->transport->name,
1011 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001012}
1013
1014static void scsi_dump_inquiry(struct se_device *dev)
1015{
Andy Grovere3d6f902011-07-19 08:55:10 +00001016 struct t10_wwn *wwn = &dev->se_sub_dev->t10_wwn;
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001017 char buf[17];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001018 int i, device_type;
1019 /*
1020 * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer
1021 */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001022 for (i = 0; i < 8; i++)
1023 if (wwn->vendor[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001024 buf[i] = wwn->vendor[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001025 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001026 buf[i] = ' ';
1027 buf[i] = '\0';
1028 pr_debug(" Vendor: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001029
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001030 for (i = 0; i < 16; i++)
1031 if (wwn->model[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001032 buf[i] = wwn->model[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001033 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001034 buf[i] = ' ';
1035 buf[i] = '\0';
1036 pr_debug(" Model: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001037
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001038 for (i = 0; i < 4; i++)
1039 if (wwn->revision[i] >= 0x20)
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001040 buf[i] = wwn->revision[i];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001041 else
Sebastian Andrzej Siewiore59a41b2012-01-10 14:16:57 +01001042 buf[i] = ' ';
1043 buf[i] = '\0';
1044 pr_debug(" Revision: %s\n", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001045
Andy Grovere3d6f902011-07-19 08:55:10 +00001046 device_type = dev->transport->get_device_type(dev);
Andy Grover6708bb22011-06-08 10:36:43 -07001047 pr_debug(" Type: %s ", scsi_device_type(device_type));
1048 pr_debug(" ANSI SCSI revision: %02x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001049 dev->transport->get_device_rev(dev));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001050}
1051
1052struct se_device *transport_add_device_to_core_hba(
1053 struct se_hba *hba,
1054 struct se_subsystem_api *transport,
1055 struct se_subsystem_dev *se_dev,
1056 u32 device_flags,
1057 void *transport_dev,
1058 struct se_dev_limits *dev_limits,
1059 const char *inquiry_prod,
1060 const char *inquiry_rev)
1061{
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001062 int force_pt;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001063 struct se_device *dev;
1064
1065 dev = kzalloc(sizeof(struct se_device), GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001066 if (!dev) {
1067 pr_err("Unable to allocate memory for se_dev_t\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001068 return NULL;
1069 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001070
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001071 dev->dev_flags = device_flags;
1072 dev->dev_status |= TRANSPORT_DEVICE_DEACTIVATED;
Andy Grover5951146d2011-07-19 10:26:37 +00001073 dev->dev_ptr = transport_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001074 dev->se_hba = hba;
1075 dev->se_sub_dev = se_dev;
1076 dev->transport = transport;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001077 INIT_LIST_HEAD(&dev->dev_list);
1078 INIT_LIST_HEAD(&dev->dev_sep_list);
1079 INIT_LIST_HEAD(&dev->dev_tmr_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001080 INIT_LIST_HEAD(&dev->delayed_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001081 INIT_LIST_HEAD(&dev->state_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001082 INIT_LIST_HEAD(&dev->qf_cmd_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001083 spin_lock_init(&dev->execute_task_lock);
1084 spin_lock_init(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001085 spin_lock_init(&dev->dev_reservation_lock);
1086 spin_lock_init(&dev->dev_status_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001087 spin_lock_init(&dev->se_port_lock);
1088 spin_lock_init(&dev->se_tmr_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001089 spin_lock_init(&dev->qf_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001090 atomic_set(&dev->dev_ordered_id, 0);
1091
1092 se_dev_set_default_attribs(dev, dev_limits);
1093
1094 dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX);
1095 dev->creation_time = get_jiffies_64();
1096 spin_lock_init(&dev->stats_lock);
1097
1098 spin_lock(&hba->device_lock);
1099 list_add_tail(&dev->dev_list, &hba->hba_dev_list);
1100 hba->dev_count++;
1101 spin_unlock(&hba->device_lock);
1102 /*
1103 * Setup the SAM Task Attribute emulation for struct se_device
1104 */
1105 core_setup_task_attr_emulation(dev);
1106 /*
1107 * Force PR and ALUA passthrough emulation with internal object use.
1108 */
1109 force_pt = (hba->hba_flags & HBA_FLAGS_INTERNAL_USE);
1110 /*
1111 * Setup the Reservations infrastructure for struct se_device
1112 */
1113 core_setup_reservations(dev, force_pt);
1114 /*
1115 * Setup the Asymmetric Logical Unit Assignment for struct se_device
1116 */
1117 if (core_setup_alua(dev, force_pt) < 0)
Dan Carpenter29628462012-07-20 10:07:34 +03001118 goto err_dev_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001119
1120 /*
1121 * Startup the struct se_device processing thread
1122 */
Christoph Hellwigaf877292012-07-08 15:58:49 -04001123 dev->tmr_wq = alloc_workqueue("tmr-%s", WQ_MEM_RECLAIM | WQ_UNBOUND, 1,
1124 dev->transport->name);
1125 if (!dev->tmr_wq) {
1126 pr_err("Unable to create tmr workqueue for %s\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001127 dev->transport->name);
Dan Carpenter29628462012-07-20 10:07:34 +03001128 goto err_dev_list;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001129 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001130 /*
1131 * Setup work_queue for QUEUE_FULL
1132 */
1133 INIT_WORK(&dev->qf_work_queue, target_qf_do_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001134 /*
1135 * Preload the initial INQUIRY const values if we are doing
1136 * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI
1137 * passthrough because this is being provided by the backend LLD.
1138 * This is required so that transport_get_inquiry() copies these
1139 * originals once back into DEV_T10_WWN(dev) for the virtual device
1140 * setup.
1141 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001142 if (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
Roland Dreierf22c1192011-05-02 22:15:37 -07001143 if (!inquiry_prod || !inquiry_rev) {
Andy Grover6708bb22011-06-08 10:36:43 -07001144 pr_err("All non TCM/pSCSI plugins require"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001145 " INQUIRY consts\n");
Dan Carpenter29628462012-07-20 10:07:34 +03001146 goto err_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001147 }
1148
Andy Grovere3d6f902011-07-19 08:55:10 +00001149 strncpy(&dev->se_sub_dev->t10_wwn.vendor[0], "LIO-ORG", 8);
1150 strncpy(&dev->se_sub_dev->t10_wwn.model[0], inquiry_prod, 16);
1151 strncpy(&dev->se_sub_dev->t10_wwn.revision[0], inquiry_rev, 4);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001152 }
1153 scsi_dump_inquiry(dev);
1154
Nicholas Bellinger12a18bd2011-03-14 04:06:06 -07001155 return dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001156
Dan Carpenter29628462012-07-20 10:07:34 +03001157err_wq:
1158 destroy_workqueue(dev->tmr_wq);
1159err_dev_list:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001160 spin_lock(&hba->device_lock);
1161 list_del(&dev->dev_list);
1162 hba->dev_count--;
1163 spin_unlock(&hba->device_lock);
1164
1165 se_release_vpd_for_dev(dev);
1166
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001167 kfree(dev);
1168
1169 return NULL;
1170}
1171EXPORT_SYMBOL(transport_add_device_to_core_hba);
1172
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001173int target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001174{
1175 struct se_device *dev = cmd->se_dev;
1176
1177 if (cmd->unknown_data_length) {
1178 cmd->data_length = size;
1179 } else if (size != cmd->data_length) {
1180 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1181 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1182 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1183 cmd->data_length, size, cmd->t_task_cdb[0]);
1184
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001185 if (cmd->data_direction == DMA_TO_DEVICE) {
1186 pr_err("Rejecting underflow/overflow"
1187 " WRITE data\n");
1188 goto out_invalid_cdb_field;
1189 }
1190 /*
1191 * Reject READ_* or WRITE_* with overflow/underflow for
1192 * type SCF_SCSI_DATA_CDB.
1193 */
1194 if (dev->se_sub_dev->se_dev_attrib.block_size != 512) {
1195 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1196 " CDB on non 512-byte sector setup subsystem"
1197 " plugin: %s\n", dev->transport->name);
1198 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
1199 goto out_invalid_cdb_field;
1200 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001201 /*
1202 * For the overflow case keep the existing fabric provided
1203 * ->data_length. Otherwise for the underflow case, reset
1204 * ->data_length to the smaller SCSI expected data transfer
1205 * length.
1206 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001207 if (size > cmd->data_length) {
1208 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1209 cmd->residual_count = (size - cmd->data_length);
1210 } else {
1211 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1212 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001213 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001214 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001215 }
1216
1217 return 0;
1218
1219out_invalid_cdb_field:
1220 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1221 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
1222 return -EINVAL;
1223}
1224
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001225/*
1226 * Used by fabric modules containing a local struct se_cmd within their
1227 * fabric dependent per I/O descriptor.
1228 */
1229void transport_init_se_cmd(
1230 struct se_cmd *cmd,
1231 struct target_core_fabric_ops *tfo,
1232 struct se_session *se_sess,
1233 u32 data_length,
1234 int data_direction,
1235 int task_attr,
1236 unsigned char *sense_buffer)
1237{
Andy Grover5951146d2011-07-19 10:26:37 +00001238 INIT_LIST_HEAD(&cmd->se_lun_node);
1239 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001240 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001241 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001242 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001243 init_completion(&cmd->transport_lun_fe_stop_comp);
1244 init_completion(&cmd->transport_lun_stop_comp);
1245 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001246 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001247 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001248 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001249 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001250
1251 cmd->se_tfo = tfo;
1252 cmd->se_sess = se_sess;
1253 cmd->data_length = data_length;
1254 cmd->data_direction = data_direction;
1255 cmd->sam_task_attr = task_attr;
1256 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001257
1258 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001259}
1260EXPORT_SYMBOL(transport_init_se_cmd);
1261
1262static int transport_check_alloc_task_attr(struct se_cmd *cmd)
1263{
1264 /*
1265 * Check if SAM Task Attribute emulation is enabled for this
1266 * struct se_device storage object
1267 */
Andy Grover5951146d2011-07-19 10:26:37 +00001268 if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001269 return 0;
1270
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001271 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001272 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001273 " emulation is not supported\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00001274 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001275 }
1276 /*
1277 * Used to determine when ORDERED commands should go from
1278 * Dormant to Active status.
1279 */
Andy Grover5951146d2011-07-19 10:26:37 +00001280 cmd->se_ordered_id = atomic_inc_return(&cmd->se_dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001281 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001282 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001283 cmd->se_ordered_id, cmd->sam_task_attr,
Andy Grover6708bb22011-06-08 10:36:43 -07001284 cmd->se_dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001285 return 0;
1286}
1287
Andy Grovera12f41f2012-04-03 15:51:20 -07001288/* target_setup_cmd_from_cdb():
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001289 *
1290 * Called from fabric RX Thread.
1291 */
Andy Grovera12f41f2012-04-03 15:51:20 -07001292int target_setup_cmd_from_cdb(
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001293 struct se_cmd *cmd,
1294 unsigned char *cdb)
1295{
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001296 struct se_subsystem_dev *su_dev = cmd->se_dev->se_sub_dev;
1297 u32 pr_reg_type = 0;
1298 u8 alua_ascq = 0;
1299 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001300 int ret;
1301
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001302 /*
1303 * Ensure that the received CDB is less than the max (252 + 8) bytes
1304 * for VARIABLE_LENGTH_CMD
1305 */
1306 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001307 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001308 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1309 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001310 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1311 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grovere3d6f902011-07-19 08:55:10 +00001312 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001313 }
1314 /*
1315 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1316 * allocate the additional extended CDB buffer now.. Otherwise
1317 * setup the pointer from __t_task_cdb to t_task_cdb.
1318 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001319 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1320 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001321 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001322 if (!cmd->t_task_cdb) {
1323 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001324 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001325 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001326 (unsigned long)sizeof(cmd->__t_task_cdb));
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001327 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1328 cmd->scsi_sense_reason =
1329 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grovere3d6f902011-07-19 08:55:10 +00001330 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001331 }
1332 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001333 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001334 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001335 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001336 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001337 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001338
1339 /*
1340 * Check for an existing UNIT ATTENTION condition
1341 */
1342 if (core_scsi3_ua_check(cmd, cdb) < 0) {
1343 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1344 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_UNIT_ATTENTION;
1345 return -EINVAL;
1346 }
1347
1348 ret = su_dev->t10_alua.alua_state_check(cmd, cdb, &alua_ascq);
1349 if (ret != 0) {
1350 /*
1351 * Set SCSI additional sense code (ASC) to 'LUN Not Accessible';
1352 * The ALUA additional sense code qualifier (ASCQ) is determined
1353 * by the ALUA primary or secondary access state..
1354 */
1355 if (ret > 0) {
1356 pr_debug("[%s]: ALUA TG Port not available, "
1357 "SenseKey: NOT_READY, ASC/ASCQ: "
1358 "0x04/0x%02x\n",
1359 cmd->se_tfo->get_fabric_name(), alua_ascq);
1360
1361 transport_set_sense_codes(cmd, 0x04, alua_ascq);
1362 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1363 cmd->scsi_sense_reason = TCM_CHECK_CONDITION_NOT_READY;
1364 return -EINVAL;
1365 }
1366 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1367 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
1368 return -EINVAL;
1369 }
1370
1371 /*
1372 * Check status for SPC-3 Persistent Reservations
1373 */
1374 if (su_dev->t10_pr.pr_ops.t10_reservation_check(cmd, &pr_reg_type)) {
1375 if (su_dev->t10_pr.pr_ops.t10_seq_non_holder(
1376 cmd, cdb, pr_reg_type) != 0) {
1377 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1378 cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT;
1379 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1380 cmd->scsi_sense_reason = TCM_RESERVATION_CONFLICT;
1381 return -EBUSY;
1382 }
1383 /*
1384 * This means the CDB is allowed for the SCSI Initiator port
1385 * when said port is *NOT* holding the legacy SPC-2 or
1386 * SPC-3 Persistent Reservation.
1387 */
1388 }
1389
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001390 ret = cmd->se_dev->transport->parse_cdb(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001391 if (ret < 0)
1392 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001393
1394 spin_lock_irqsave(&cmd->t_state_lock, flags);
1395 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
1396 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
1397
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001398 /*
1399 * Check for SAM Task Attribute Emulation
1400 */
1401 if (transport_check_alloc_task_attr(cmd) < 0) {
1402 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1403 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
Andy Grover5951146d2011-07-19 10:26:37 +00001404 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001405 }
1406 spin_lock(&cmd->se_lun->lun_sep_lock);
1407 if (cmd->se_lun->lun_sep)
1408 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1409 spin_unlock(&cmd->se_lun->lun_sep_lock);
1410 return 0;
1411}
Andy Grovera12f41f2012-04-03 15:51:20 -07001412EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001413
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001414/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001415 * Used by fabric module frontends to queue tasks directly.
1416 * Many only be used from process context only
1417 */
1418int transport_handle_cdb_direct(
1419 struct se_cmd *cmd)
1420{
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001421 int ret;
1422
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001423 if (!cmd->se_lun) {
1424 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001425 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001426 return -EINVAL;
1427 }
1428 if (in_interrupt()) {
1429 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001430 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001431 " from interrupt context\n");
1432 return -EINVAL;
1433 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001434 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001435 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1436 * outstanding descriptors are handled correctly during shutdown via
1437 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001438 *
1439 * Also, we don't take cmd->t_state_lock here as we only expect
1440 * this to be called for initial descriptor submission.
1441 */
1442 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001443 cmd->transport_state |= CMD_T_ACTIVE;
1444
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001445 /*
1446 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1447 * so follow TRANSPORT_NEW_CMD processing thread context usage
1448 * and call transport_generic_request_failure() if necessary..
1449 */
1450 ret = transport_generic_new_cmd(cmd);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001451 if (ret < 0)
1452 transport_generic_request_failure(cmd);
1453
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001454 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001455}
1456EXPORT_SYMBOL(transport_handle_cdb_direct);
1457
Nicholas Bellingera6360782011-11-18 20:36:22 -08001458/**
1459 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1460 *
1461 * @se_cmd: command descriptor to submit
1462 * @se_sess: associated se_sess for endpoint
1463 * @cdb: pointer to SCSI CDB
1464 * @sense: pointer to SCSI sense buffer
1465 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1466 * @data_length: fabric expected data transfer length
1467 * @task_addr: SAM task attribute
1468 * @data_dir: DMA data direction
1469 * @flags: flags for command submission from target_sc_flags_tables
1470 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001471 * Returns non zero to signal active I/O shutdown failure. All other
1472 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1473 * but still return zero here.
1474 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001475 * This may only be called from process context, and also currently
1476 * assumes internal allocation of fabric payload buffer by target-core.
1477 **/
Roland Dreierd6dfc862012-07-16 11:04:39 -07001478int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001479 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1480 u32 data_length, int task_attr, int data_dir, int flags)
1481{
1482 struct se_portal_group *se_tpg;
1483 int rc;
1484
1485 se_tpg = se_sess->se_tpg;
1486 BUG_ON(!se_tpg);
1487 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1488 BUG_ON(in_interrupt());
1489 /*
1490 * Initialize se_cmd for target operation. From this point
1491 * exceptions are handled by sending exception status via
1492 * target_core_fabric_ops->queue_status() callback
1493 */
1494 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1495 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001496 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1497 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001498 /*
1499 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1500 * se_sess->sess_cmd_list. A second kref_get here is necessary
1501 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1502 * kref_put() to happen during fabric packet acknowledgement.
1503 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001504 rc = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1505 if (rc)
Roland Dreierd6dfc862012-07-16 11:04:39 -07001506 return rc;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001507 /*
1508 * Signal bidirectional data payloads to target-core
1509 */
1510 if (flags & TARGET_SCF_BIDI_OP)
1511 se_cmd->se_cmd_flags |= SCF_BIDI;
1512 /*
1513 * Locate se_lun pointer and attach it to struct se_cmd
1514 */
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001515 if (transport_lookup_cmd_lun(se_cmd, unpacked_lun) < 0) {
1516 transport_send_check_condition_and_sense(se_cmd,
1517 se_cmd->scsi_sense_reason, 0);
1518 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001519 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001520 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001521
Andy Grovera12f41f2012-04-03 15:51:20 -07001522 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001523 if (rc != 0) {
1524 transport_generic_request_failure(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001525 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001526 }
Andy Grover11e319e2012-04-03 15:51:28 -07001527
1528 /*
1529 * Check if we need to delay processing because of ALUA
1530 * Active/NonOptimized primary access state..
1531 */
1532 core_alua_check_nonop_delay(se_cmd);
1533
Nicholas Bellingera6360782011-11-18 20:36:22 -08001534 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001535 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001536}
1537EXPORT_SYMBOL(target_submit_cmd);
1538
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001539static void target_complete_tmr_failure(struct work_struct *work)
1540{
1541 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1542
1543 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1544 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
1545 transport_generic_free_cmd(se_cmd, 0);
1546}
1547
Andy Groverea98d7f2012-01-19 13:39:21 -08001548/**
1549 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1550 * for TMR CDBs
1551 *
1552 * @se_cmd: command descriptor to submit
1553 * @se_sess: associated se_sess for endpoint
1554 * @sense: pointer to SCSI sense buffer
1555 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1556 * @fabric_context: fabric context for TMR req
1557 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001558 * @gfp: gfp type for caller
1559 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001560 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001561 *
1562 * Callable from all contexts.
1563 **/
1564
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001565int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001566 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001567 void *fabric_tmr_ptr, unsigned char tm_type,
1568 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001569{
1570 struct se_portal_group *se_tpg;
1571 int ret;
1572
1573 se_tpg = se_sess->se_tpg;
1574 BUG_ON(!se_tpg);
1575
1576 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1577 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001578 /*
1579 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1580 * allocation failure.
1581 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001582 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001583 if (ret < 0)
1584 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001585
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001586 if (tm_type == TMR_ABORT_TASK)
1587 se_cmd->se_tmr_req->ref_task_tag = tag;
1588
Andy Groverea98d7f2012-01-19 13:39:21 -08001589 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001590 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1591 if (ret) {
1592 core_tmr_release_req(se_cmd->se_tmr_req);
1593 return ret;
1594 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001595
Andy Groverea98d7f2012-01-19 13:39:21 -08001596 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1597 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001598 /*
1599 * For callback during failure handling, push this work off
1600 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1601 */
1602 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1603 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001604 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001605 }
1606 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001607 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001608}
1609EXPORT_SYMBOL(target_submit_tmr);
1610
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001611/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001612 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001613 * has completed.
1614 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001615bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001616{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001617 bool was_active = false;
1618
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001619 if (cmd->transport_state & CMD_T_BUSY) {
1620 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001621 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1622
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001623 pr_debug("cmd %p waiting to complete\n", cmd);
1624 wait_for_completion(&cmd->task_stop_comp);
1625 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001626
1627 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001628 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1629 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001630 was_active = true;
1631 }
1632
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001633 return was_active;
1634}
1635
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001636/*
1637 * Handle SAM-esque emulation for generic transport request failures.
1638 */
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001639void transport_generic_request_failure(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001640{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001641 int ret = 0;
1642
Andy Grover6708bb22011-06-08 10:36:43 -07001643 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001644 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001645 cmd->t_task_cdb[0]);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001646 pr_debug("-----[ i_state: %d t_state: %d scsi_sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001647 cmd->se_tfo->get_cmd_state(cmd),
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001648 cmd->t_state, cmd->scsi_sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001649 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f32011-12-21 14:13:47 -05001650 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1651 (cmd->transport_state & CMD_T_STOP) != 0,
1652 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001653
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001654 /*
1655 * For SAM Task Attribute emulation for failed struct se_cmd
1656 */
1657 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1658 transport_complete_task_attr(cmd);
1659
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001660 switch (cmd->scsi_sense_reason) {
1661 case TCM_NON_EXISTENT_LUN:
1662 case TCM_UNSUPPORTED_SCSI_OPCODE:
1663 case TCM_INVALID_CDB_FIELD:
1664 case TCM_INVALID_PARAMETER_LIST:
1665 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1666 case TCM_UNKNOWN_MODE_PAGE:
1667 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001668 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001669 case TCM_CHECK_CONDITION_ABORT_CMD:
1670 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1671 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001672 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001673 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001674 /*
1675 * No SENSE Data payload for this case, set SCSI Status
1676 * and queue the response to $FABRIC_MOD.
1677 *
1678 * Uses linux/include/scsi/scsi.h SAM status codes defs
1679 */
1680 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1681 /*
1682 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1683 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1684 * CONFLICT STATUS.
1685 *
1686 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1687 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001688 if (cmd->se_sess &&
1689 cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2)
1690 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001691 cmd->orig_fe_lun, 0x2C,
1692 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1693
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001694 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001695 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001696 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001697 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001698 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001699 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001700 cmd->t_task_cdb[0], cmd->scsi_sense_reason);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001701 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1702 break;
1703 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001704
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001705 ret = transport_send_check_condition_and_sense(cmd,
1706 cmd->scsi_sense_reason, 0);
1707 if (ret == -EAGAIN || ret == -ENOMEM)
1708 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001709
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001710check_stop:
1711 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001712 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001713 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001714 return;
1715
1716queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001717 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1718 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001719}
Nicholas Bellinger2fbff122012-02-10 16:18:11 -08001720EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001721
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001722static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001723{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -04001724 int error = 0;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001725
1726 spin_lock_irq(&cmd->t_state_lock);
1727 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1728 spin_unlock_irq(&cmd->t_state_lock);
1729
1730 if (cmd->execute_cmd)
1731 error = cmd->execute_cmd(cmd);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001732
1733 if (error) {
1734 spin_lock_irq(&cmd->t_state_lock);
1735 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1736 spin_unlock_irq(&cmd->t_state_lock);
1737
1738 transport_generic_request_failure(cmd);
1739 }
1740}
1741
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001742void target_execute_cmd(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001743{
1744 struct se_device *dev = cmd->se_dev;
1745
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001746 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001747 * If the received CDB has aleady been aborted stop processing it here.
1748 */
1749 if (transport_check_aborted_status(cmd, 1))
1750 return;
1751
1752 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001753 * Determine if IOCTL context caller in requesting the stopping of this
1754 * command for LUN shutdown purposes.
1755 */
1756 spin_lock_irq(&cmd->t_state_lock);
1757 if (cmd->transport_state & CMD_T_LUN_STOP) {
1758 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1759 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1760
1761 cmd->transport_state &= ~CMD_T_ACTIVE;
1762 spin_unlock_irq(&cmd->t_state_lock);
1763 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001764 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001765 }
1766 /*
1767 * Determine if frontend context caller is requesting the stopping of
1768 * this command for frontend exceptions.
1769 */
1770 if (cmd->transport_state & CMD_T_STOP) {
1771 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1772 __func__, __LINE__,
1773 cmd->se_tfo->get_task_tag(cmd));
1774
1775 spin_unlock_irq(&cmd->t_state_lock);
1776 complete(&cmd->t_transport_stop_comp);
1777 return;
1778 }
1779
1780 cmd->t_state = TRANSPORT_PROCESSING;
1781 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001782
1783 if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
1784 goto execute;
1785
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001786 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001787 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001788 * to allow the passed struct se_cmd list of tasks to the front of the list.
1789 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001790 switch (cmd->sam_task_attr) {
1791 case MSG_HEAD_TAG:
1792 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1793 "se_ordered_id: %u\n",
1794 cmd->t_task_cdb[0], cmd->se_ordered_id);
1795 goto execute;
1796 case MSG_ORDERED_TAG:
1797 atomic_inc(&dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001798 smp_mb__after_atomic_inc();
1799
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001800 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1801 " se_ordered_id: %u\n",
1802 cmd->t_task_cdb[0], cmd->se_ordered_id);
1803
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001804 /*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001805 * Execute an ORDERED command if no other older commands
1806 * exist that need to be completed first.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001807 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001808 if (!atomic_read(&dev->simple_cmds))
1809 goto execute;
1810 break;
1811 default:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001812 /*
1813 * For SIMPLE and UNTAGGED Task Attribute commands
1814 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001815 atomic_inc(&dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001816 smp_mb__after_atomic_inc();
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001817 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001818 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001819
1820 if (atomic_read(&dev->dev_ordered_sync) != 0) {
1821 spin_lock(&dev->delayed_cmd_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001822 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1823 spin_unlock(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001824
Andy Grover6708bb22011-06-08 10:36:43 -07001825 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001826 " delayed CMD list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07001827 cmd->t_task_cdb[0], cmd->sam_task_attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001828 cmd->se_ordered_id);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001829 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001830 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001831
1832execute:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001833 /*
1834 * Otherwise, no ORDERED task attributes exist..
1835 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001836 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001837}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001838EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001839
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001840/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001841 * Process all commands up to the last received ORDERED task attribute which
1842 * requires another blocking boundary
1843 */
1844static void target_restart_delayed_cmds(struct se_device *dev)
1845{
1846 for (;;) {
1847 struct se_cmd *cmd;
1848
1849 spin_lock(&dev->delayed_cmd_lock);
1850 if (list_empty(&dev->delayed_cmd_list)) {
1851 spin_unlock(&dev->delayed_cmd_lock);
1852 break;
1853 }
1854
1855 cmd = list_entry(dev->delayed_cmd_list.next,
1856 struct se_cmd, se_delayed_node);
1857 list_del(&cmd->se_delayed_node);
1858 spin_unlock(&dev->delayed_cmd_lock);
1859
1860 __target_execute_cmd(cmd);
1861
1862 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1863 break;
1864 }
1865}
1866
1867/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001868 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001869 * and ordered cmds need to have their tasks added to the execution queue.
1870 */
1871static void transport_complete_task_attr(struct se_cmd *cmd)
1872{
Andy Grover5951146d2011-07-19 10:26:37 +00001873 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001874
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001875 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001876 atomic_dec(&dev->simple_cmds);
1877 smp_mb__after_atomic_dec();
1878 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001879 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001880 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1881 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001882 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001883 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001884 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001885 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1886 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001887 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001888 atomic_dec(&dev->dev_ordered_sync);
1889 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001890
1891 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001892 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001893 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1894 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001895
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001896 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001897}
1898
Christoph Hellwige057f532011-10-17 13:56:41 -04001899static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001900{
1901 int ret = 0;
1902
Christoph Hellwige057f532011-10-17 13:56:41 -04001903 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1904 transport_complete_task_attr(cmd);
1905
1906 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1907 ret = cmd->se_tfo->queue_status(cmd);
1908 if (ret)
1909 goto out;
1910 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001911
1912 switch (cmd->data_direction) {
1913 case DMA_FROM_DEVICE:
1914 ret = cmd->se_tfo->queue_data_in(cmd);
1915 break;
1916 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001917 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001918 ret = cmd->se_tfo->queue_data_in(cmd);
1919 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001920 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001921 }
1922 /* Fall through for DMA_TO_DEVICE */
1923 case DMA_NONE:
1924 ret = cmd->se_tfo->queue_status(cmd);
1925 break;
1926 default:
1927 break;
1928 }
1929
Christoph Hellwige057f532011-10-17 13:56:41 -04001930out:
1931 if (ret < 0) {
1932 transport_handle_queue_full(cmd, cmd->se_dev);
1933 return;
1934 }
1935 transport_lun_remove_cmd(cmd);
1936 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001937}
1938
1939static void transport_handle_queue_full(
1940 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001941 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001942{
1943 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001944 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1945 atomic_inc(&dev->dev_qf_count);
1946 smp_mb__after_atomic_inc();
1947 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1948
1949 schedule_work(&cmd->se_dev->qf_work_queue);
1950}
1951
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001952static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001953{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001954 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001955 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001956
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001957 /*
1958 * Check if we need to move delayed/dormant tasks from cmds on the
1959 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1960 * Attribute.
1961 */
Andy Grover5951146d2011-07-19 10:26:37 +00001962 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001963 transport_complete_task_attr(cmd);
1964 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001965 * Check to schedule QUEUE_FULL work, or execute an existing
1966 * cmd->transport_qf_callback()
1967 */
1968 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1969 schedule_work(&cmd->se_dev->qf_work_queue);
1970
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001971 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001972 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001973 * the struct se_cmd in question.
1974 */
1975 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001976 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001977 ret = transport_send_check_condition_and_sense(
1978 cmd, 0, 1);
1979 if (ret == -EAGAIN || ret == -ENOMEM)
1980 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001981
Paolo Bonzini27a27092012-09-05 17:09:14 +02001982 transport_lun_remove_cmd(cmd);
1983 transport_cmd_check_stop_to_fabric(cmd);
1984 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985 }
1986 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001987 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001988 * XDWRITE_READ_10 emulation.
1989 */
1990 if (cmd->transport_complete_callback)
1991 cmd->transport_complete_callback(cmd);
1992
1993 switch (cmd->data_direction) {
1994 case DMA_FROM_DEVICE:
1995 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001996 if (cmd->se_lun->lun_sep) {
1997 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001998 cmd->data_length;
1999 }
2000 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002001
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002002 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002003 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002004 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002005 break;
2006 case DMA_TO_DEVICE:
2007 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002008 if (cmd->se_lun->lun_sep) {
2009 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002010 cmd->data_length;
2011 }
2012 spin_unlock(&cmd->se_lun->lun_sep_lock);
2013 /*
2014 * Check if we need to send READ payload for BIDI-COMMAND
2015 */
Andy Groverec98f782011-07-20 19:28:46 +00002016 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002017 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002018 if (cmd->se_lun->lun_sep) {
2019 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002020 cmd->data_length;
2021 }
2022 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002023 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002024 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002025 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002026 break;
2027 }
2028 /* Fall through for DMA_TO_DEVICE */
2029 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002030 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002031 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002032 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002033 break;
2034 default:
2035 break;
2036 }
2037
2038 transport_lun_remove_cmd(cmd);
2039 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002040 return;
2041
2042queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07002043 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002044 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04002045 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
2046 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002047}
2048
Andy Grover6708bb22011-06-08 10:36:43 -07002049static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002050{
Andy Groverec98f782011-07-20 19:28:46 +00002051 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002052 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002053
Andy Grover6708bb22011-06-08 10:36:43 -07002054 for_each_sg(sgl, sg, nents, count)
2055 __free_page(sg_page(sg));
2056
2057 kfree(sgl);
2058}
2059
2060static inline void transport_free_pages(struct se_cmd *cmd)
2061{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002062 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07002063 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002064
Andy Grover6708bb22011-06-08 10:36:43 -07002065 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002066 cmd->t_data_sg = NULL;
2067 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002068
Andy Grover6708bb22011-06-08 10:36:43 -07002069 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002070 cmd->t_bidi_data_sg = NULL;
2071 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002072}
2073
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002074/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002075 * transport_release_cmd - free a command
2076 * @cmd: command to free
2077 *
2078 * This routine unconditionally frees a command, and reference counting
2079 * or list removal must be done in the caller.
2080 */
2081static void transport_release_cmd(struct se_cmd *cmd)
2082{
2083 BUG_ON(!cmd->se_tfo);
2084
Andy Groverc8e31f22012-01-19 13:39:17 -08002085 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002086 core_tmr_release_req(cmd->se_tmr_req);
2087 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2088 kfree(cmd->t_task_cdb);
2089 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002090 * If this cmd has been setup with target_get_sess_cmd(), drop
2091 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002092 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002093 if (cmd->check_release != 0) {
2094 target_put_sess_cmd(cmd->se_sess, cmd);
2095 return;
2096 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002097 cmd->se_tfo->release_cmd(cmd);
2098}
2099
2100/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002101 * transport_put_cmd - release a reference to a command
2102 * @cmd: command to release
2103 *
2104 * This routine releases our reference to the command and frees it if possible.
2105 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002106static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002107{
2108 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002109
Andy Grovera1d8b492011-05-02 17:12:10 -07002110 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002111 if (atomic_read(&cmd->t_fe_count)) {
2112 if (!atomic_dec_and_test(&cmd->t_fe_count))
2113 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002114 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002115
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002116 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
2117 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002118 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002119 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002120 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002121
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002122 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02002123 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002124 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002125out_busy:
2126 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002127}
2128
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002129/*
Andy Groverec98f782011-07-20 19:28:46 +00002130 * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of
2131 * allocating in the core.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002132 * @cmd: Associated se_cmd descriptor
2133 * @mem: SGL style memory for TCM WRITE / READ
2134 * @sg_mem_num: Number of SGL elements
2135 * @mem_bidi_in: SGL style memory for TCM BIDI READ
2136 * @sg_mem_bidi_num: Number of BIDI READ SGL elements
2137 *
2138 * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage
2139 * of parameters.
2140 */
2141int transport_generic_map_mem_to_cmd(
2142 struct se_cmd *cmd,
Andy Grover5951146d2011-07-19 10:26:37 +00002143 struct scatterlist *sgl,
2144 u32 sgl_count,
2145 struct scatterlist *sgl_bidi,
2146 u32 sgl_bidi_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002147{
Andy Grover5951146d2011-07-19 10:26:37 +00002148 if (!sgl || !sgl_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002149 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002150
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002151 /*
2152 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
2153 * scatterlists already have been set to follow what the fabric
2154 * passes for the original expected data transfer length.
2155 */
2156 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
2157 pr_warn("Rejecting SCSI DATA overflow for fabric using"
2158 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
2159 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2160 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
2161 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162 }
2163
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002164 cmd->t_data_sg = sgl;
2165 cmd->t_data_nents = sgl_count;
2166
2167 if (sgl_bidi && sgl_bidi_count) {
2168 cmd->t_bidi_data_sg = sgl_bidi;
2169 cmd->t_bidi_data_nents = sgl_bidi_count;
2170 }
2171 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002172 return 0;
2173}
2174EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
2175
Andy Grover49493142012-01-16 16:57:08 -08002176void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002177{
Andy Groverec98f782011-07-20 19:28:46 +00002178 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002179 struct page **pages;
2180 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002181
Andy Grover05d1c7c2011-07-20 19:13:28 +00002182 /*
Andy Groverec98f782011-07-20 19:28:46 +00002183 * We need to take into account a possible offset here for fabrics like
2184 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2185 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002186 */
Andy Grover49493142012-01-16 16:57:08 -08002187 if (!cmd->t_data_nents)
2188 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002189
2190 BUG_ON(!sg);
2191 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002192 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002193
Andy Grover49493142012-01-16 16:57:08 -08002194 /* >1 page. use vmap */
2195 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002196 if (!pages) {
2197 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grover49493142012-01-16 16:57:08 -08002198 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002199 }
Andy Grover49493142012-01-16 16:57:08 -08002200
2201 /* convert sg[] to pages[] */
2202 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2203 pages[i] = sg_page(sg);
2204 }
2205
2206 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2207 kfree(pages);
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002208 if (!cmd->t_data_vmap) {
2209 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grover49493142012-01-16 16:57:08 -08002210 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002211 }
Andy Grover49493142012-01-16 16:57:08 -08002212
2213 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002214}
Andy Grover49493142012-01-16 16:57:08 -08002215EXPORT_SYMBOL(transport_kmap_data_sg);
2216
2217void transport_kunmap_data_sg(struct se_cmd *cmd)
2218{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002219 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002220 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002221 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002222 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002223 return;
2224 }
Andy Grover49493142012-01-16 16:57:08 -08002225
2226 vunmap(cmd->t_data_vmap);
2227 cmd->t_data_vmap = NULL;
2228}
2229EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002230
2231static int
2232transport_generic_get_mem(struct se_cmd *cmd)
2233{
Andy Groverec98f782011-07-20 19:28:46 +00002234 u32 length = cmd->data_length;
2235 unsigned int nents;
2236 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002237 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002238 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002239
Andy Groverec98f782011-07-20 19:28:46 +00002240 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2241 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2242 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002243 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002244
Andy Groverec98f782011-07-20 19:28:46 +00002245 cmd->t_data_nents = nents;
2246 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002247
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002248 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002249
Andy Groverec98f782011-07-20 19:28:46 +00002250 while (length) {
2251 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002252 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002253 if (!page)
2254 goto out;
2255
2256 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2257 length -= page_len;
2258 i++;
2259 }
2260 return 0;
2261
2262out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002263 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002264 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002265 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002266 }
2267 kfree(cmd->t_data_sg);
2268 cmd->t_data_sg = NULL;
2269 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002270}
2271
Andy Grovera1d8b492011-05-02 17:12:10 -07002272/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002273 * Allocate any required resources to execute the command. For writes we
2274 * might not have the payload yet, so notify the fabric via a call to
2275 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002276 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002277int transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002278{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002279 int ret = 0;
2280
2281 /*
2282 * Determine is the TCM fabric module has already allocated physical
2283 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002284 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002285 */
Andy Groverec98f782011-07-20 19:28:46 +00002286 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2287 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002288 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002289 if (ret < 0)
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002290 goto out_fail;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002291 }
Nicholas Bellinger74f4cf22012-08-16 17:06:41 -07002292 /*
2293 * If this command doesn't have any payload and we don't have to call
2294 * into the fabric for data transfers, go ahead and complete it right
2295 * away.
2296 */
Paolo Bonzini306c11b2012-09-07 17:30:32 +02002297 if (!cmd->data_length &&
Paolo Bonzini6abbdf32012-09-07 17:30:37 +02002298 cmd->t_task_cdb[0] != REQUEST_SENSE &&
2299 cmd->se_dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002300 spin_lock_irq(&cmd->t_state_lock);
Roland Dreier410f6702011-11-22 13:51:32 -08002301 cmd->t_state = TRANSPORT_COMPLETE;
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002302 cmd->transport_state |= CMD_T_ACTIVE;
2303 spin_unlock_irq(&cmd->t_state_lock);
Nicholas Bellinger91ec1d32012-01-13 12:01:34 -08002304
Roland Dreier410f6702011-11-22 13:51:32 -08002305 INIT_WORK(&cmd->work, target_complete_ok_work);
2306 queue_work(target_completion_wq, &cmd->work);
2307 return 0;
2308 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002309
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002310 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002311
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002312 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002313 * If this command is not a write we can execute it right here,
2314 * for write buffers we need to notify the fabric driver first
2315 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002316 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002317 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002318 if (cmd->data_direction != DMA_TO_DEVICE) {
2319 target_execute_cmd(cmd);
2320 return 0;
2321 }
2322
2323 spin_lock_irq(&cmd->t_state_lock);
2324 cmd->t_state = TRANSPORT_WRITE_PENDING;
2325 spin_unlock_irq(&cmd->t_state_lock);
2326
2327 transport_cmd_check_stop(cmd, false);
2328
2329 ret = cmd->se_tfo->write_pending(cmd);
2330 if (ret == -EAGAIN || ret == -ENOMEM)
2331 goto queue_full;
2332
2333 if (ret < 0)
2334 return ret;
2335 return 1;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002336
2337out_fail:
2338 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2339 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2340 return -EINVAL;
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002341queue_full:
2342 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2343 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2344 transport_handle_queue_full(cmd, cmd->se_dev);
2345 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002346}
Andy Grovera1d8b492011-05-02 17:12:10 -07002347EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002348
Christoph Hellwige057f532011-10-17 13:56:41 -04002349static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002350{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002351 int ret;
2352
2353 ret = cmd->se_tfo->write_pending(cmd);
2354 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002355 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2356 cmd);
2357 transport_handle_queue_full(cmd, cmd->se_dev);
2358 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002359}
2360
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002361void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002362{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002363 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002364 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002365 transport_wait_for_tasks(cmd);
2366
Christoph Hellwig35462972011-05-31 23:56:57 -04002367 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002368 } else {
2369 if (wait_for_tasks)
2370 transport_wait_for_tasks(cmd);
2371
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002372 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2373
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002374 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002375 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002376
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002377 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002378 }
2379}
2380EXPORT_SYMBOL(transport_generic_free_cmd);
2381
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002382/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2383 * @se_sess: session to reference
2384 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002385 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002386 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002387static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2388 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002389{
2390 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002391 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002392
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002393 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002394 /*
2395 * Add a second kref if the fabric caller is expecting to handle
2396 * fabric acknowledgement that requires two target_put_sess_cmd()
2397 * invocations before se_cmd descriptor release.
2398 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002399 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002400 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002401 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2402 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002403
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002404 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002405 if (se_sess->sess_tearing_down) {
2406 ret = -ESHUTDOWN;
2407 goto out;
2408 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002409 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2410 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002411
2412out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002413 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002414 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002415}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002416
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002417static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002418{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002419 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2420 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002421 unsigned long flags;
2422
2423 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2424 if (list_empty(&se_cmd->se_cmd_list)) {
2425 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002426 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002427 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002428 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002429 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2430 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2431 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002432 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002433 }
2434 list_del(&se_cmd->se_cmd_list);
2435 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2436
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002437 se_cmd->se_tfo->release_cmd(se_cmd);
2438}
2439
2440/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2441 * @se_sess: session to reference
2442 * @se_cmd: command descriptor to drop
2443 */
2444int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2445{
2446 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002447}
2448EXPORT_SYMBOL(target_put_sess_cmd);
2449
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002450/* target_sess_cmd_list_set_waiting - Flag all commands in
2451 * sess_cmd_list to complete cmd_wait_comp. Set
2452 * sess_tearing_down so no more commands are queued.
2453 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002454 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002455void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002456{
2457 struct se_cmd *se_cmd;
2458 unsigned long flags;
2459
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002460 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002461
2462 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002463 se_sess->sess_tearing_down = 1;
2464
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002465 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002466 se_cmd->cmd_wait_set = 1;
2467
2468 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2469}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002470EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002471
2472/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2473 * @se_sess: session to wait for active I/O
2474 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2475 */
2476void target_wait_for_sess_cmds(
2477 struct se_session *se_sess,
2478 int wait_for_tasks)
2479{
2480 struct se_cmd *se_cmd, *tmp_cmd;
2481 bool rc = false;
2482
2483 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002484 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002485 list_del(&se_cmd->se_cmd_list);
2486
2487 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2488 " %d\n", se_cmd, se_cmd->t_state,
2489 se_cmd->se_tfo->get_cmd_state(se_cmd));
2490
2491 if (wait_for_tasks) {
2492 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2493 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2494 se_cmd->se_tfo->get_cmd_state(se_cmd));
2495
2496 rc = transport_wait_for_tasks(se_cmd);
2497
2498 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2499 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2500 se_cmd->se_tfo->get_cmd_state(se_cmd));
2501 }
2502
2503 if (!rc) {
2504 wait_for_completion(&se_cmd->cmd_wait_comp);
2505 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2506 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2507 se_cmd->se_tfo->get_cmd_state(se_cmd));
2508 }
2509
2510 se_cmd->se_tfo->release_cmd(se_cmd);
2511 }
2512}
2513EXPORT_SYMBOL(target_wait_for_sess_cmds);
2514
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002515/* transport_lun_wait_for_tasks():
2516 *
2517 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2518 * an struct se_lun to be successfully shutdown.
2519 */
2520static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2521{
2522 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002523 int ret = 0;
2524
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002525 /*
2526 * If the frontend has already requested this struct se_cmd to
2527 * be stopped, we can safely ignore this struct se_cmd.
2528 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002529 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002530 if (cmd->transport_state & CMD_T_STOP) {
2531 cmd->transport_state &= ~CMD_T_LUN_STOP;
2532
2533 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2534 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002535 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002536 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002537 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002538 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002539 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002540 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002541
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002542 // XXX: audit task_flags checks.
2543 spin_lock_irqsave(&cmd->t_state_lock, flags);
2544 if ((cmd->transport_state & CMD_T_BUSY) &&
2545 (cmd->transport_state & CMD_T_SENT)) {
2546 if (!target_stop_cmd(cmd, &flags))
2547 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002548 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002549 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002550
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002551 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2552 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002554 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002555 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002556 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002557 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002558 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002559 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002560
2561 return 0;
2562}
2563
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002564static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2565{
2566 struct se_cmd *cmd = NULL;
2567 unsigned long lun_flags, cmd_flags;
2568 /*
2569 * Do exception processing and return CHECK_CONDITION status to the
2570 * Initiator Port.
2571 */
2572 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002573 while (!list_empty(&lun->lun_cmd_list)) {
2574 cmd = list_first_entry(&lun->lun_cmd_list,
2575 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002576 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002577
Andy Grovera1d8b492011-05-02 17:12:10 -07002578 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002579 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002580 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002581 cmd->se_lun->unpacked_lun,
2582 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002583 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002584 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585
2586 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2587
Andy Grover6708bb22011-06-08 10:36:43 -07002588 if (!cmd->se_lun) {
2589 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002590 cmd->se_tfo->get_task_tag(cmd),
2591 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002592 BUG();
2593 }
2594 /*
2595 * If the Storage engine still owns the iscsi_cmd_t, determine
2596 * and/or stop its context.
2597 */
Andy Grover6708bb22011-06-08 10:36:43 -07002598 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002599 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2600 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601
Andy Grovere3d6f902011-07-19 08:55:10 +00002602 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002603 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2604 continue;
2605 }
2606
Andy Grover6708bb22011-06-08 10:36:43 -07002607 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002609 cmd->se_lun->unpacked_lun,
2610 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002611
Andy Grovera1d8b492011-05-02 17:12:10 -07002612 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002613 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002614 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002615 goto check_cond;
2616 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002617 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002618 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002619 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002620
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002621 /*
2622 * The Storage engine stopped this struct se_cmd before it was
2623 * send to the fabric frontend for delivery back to the
2624 * Initiator Node. Return this SCSI CDB back with an
2625 * CHECK_CONDITION status.
2626 */
2627check_cond:
2628 transport_send_check_condition_and_sense(cmd,
2629 TCM_NON_EXISTENT_LUN, 0);
2630 /*
2631 * If the fabric frontend is waiting for this iscsi_cmd_t to
2632 * be released, notify the waiting thread now that LU has
2633 * finished accessing it.
2634 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002635 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002636 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002637 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002638 " struct se_cmd: %p ITT: 0x%08x\n",
2639 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002640 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002641
Andy Grovera1d8b492011-05-02 17:12:10 -07002642 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002643 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002644 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002645 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002646 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2647 continue;
2648 }
Andy Grover6708bb22011-06-08 10:36:43 -07002649 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002650 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651
Andy Grovera1d8b492011-05-02 17:12:10 -07002652 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002653 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2654 }
2655 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2656}
2657
2658static int transport_clear_lun_thread(void *p)
2659{
Jörn Engel8359cf42011-11-24 02:05:51 +01002660 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002661
2662 __transport_clear_lun_from_sessions(lun);
2663 complete(&lun->lun_shutdown_comp);
2664
2665 return 0;
2666}
2667
2668int transport_clear_lun_from_sessions(struct se_lun *lun)
2669{
2670 struct task_struct *kt;
2671
Andy Grover5951146d2011-07-19 10:26:37 +00002672 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002673 "tcm_cl_%u", lun->unpacked_lun);
2674 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002675 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002676 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677 }
2678 wait_for_completion(&lun->lun_shutdown_comp);
2679
2680 return 0;
2681}
2682
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002683/**
2684 * transport_wait_for_tasks - wait for completion to occur
2685 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002686 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002687 * Called from frontend fabric context to wait for storage engine
2688 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002689 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002690bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691{
2692 unsigned long flags;
2693
Andy Grovera1d8b492011-05-02 17:12:10 -07002694 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002695 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2696 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002697 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002698 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002699 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002700
Andy Groverc8e31f22012-01-19 13:39:17 -08002701 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2702 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002703 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002704 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002705 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002706 /*
2707 * If we are already stopped due to an external event (ie: LUN shutdown)
2708 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002709 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002710 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2711 * has completed its operation on the struct se_cmd.
2712 */
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002713 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002714 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002715 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002716 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002717 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002718 /*
2719 * There is a special case for WRITES where a FE exception +
2720 * LUN shutdown means ConfigFS context is still sleeping on
2721 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2722 * We go ahead and up transport_lun_stop_comp just to be sure
2723 * here.
2724 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002725 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2726 complete(&cmd->transport_lun_stop_comp);
2727 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2728 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002729
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002730 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002731 /*
2732 * At this point, the frontend who was the originator of this
2733 * struct se_cmd, now owns the structure and can be released through
2734 * normal means below.
2735 */
Andy Grover6708bb22011-06-08 10:36:43 -07002736 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002737 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002738 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002739 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002741 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 }
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002743
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002744 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002745 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002746 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002747 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002748
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002749 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002750
Andy Grover6708bb22011-06-08 10:36:43 -07002751 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002752 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002753 cmd, cmd->se_tfo->get_task_tag(cmd),
2754 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002755
Andy Grovera1d8b492011-05-02 17:12:10 -07002756 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002757
Andy Grovera1d8b492011-05-02 17:12:10 -07002758 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002759
Andy Grovera1d8b492011-05-02 17:12:10 -07002760 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002761 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002762
Masanari Iida35d1efe2012-08-16 22:43:13 +09002763 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002764 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002765 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002766
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002767 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002768
2769 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002770}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002771EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002772
2773static int transport_get_sense_codes(
2774 struct se_cmd *cmd,
2775 u8 *asc,
2776 u8 *ascq)
2777{
2778 *asc = cmd->scsi_asc;
2779 *ascq = cmd->scsi_ascq;
2780
2781 return 0;
2782}
2783
2784static int transport_set_sense_codes(
2785 struct se_cmd *cmd,
2786 u8 asc,
2787 u8 ascq)
2788{
2789 cmd->scsi_asc = asc;
2790 cmd->scsi_ascq = ascq;
2791
2792 return 0;
2793}
2794
2795int transport_send_check_condition_and_sense(
2796 struct se_cmd *cmd,
2797 u8 reason,
2798 int from_transport)
2799{
2800 unsigned char *buffer = cmd->sense_buffer;
2801 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002802 u8 asc = 0, ascq = 0;
2803
Andy Grovera1d8b492011-05-02 17:12:10 -07002804 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002805 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002806 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002807 return 0;
2808 }
2809 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002810 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002811
2812 if (!reason && from_transport)
2813 goto after_reason;
2814
2815 if (!from_transport)
2816 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002817
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002818 /*
2819 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2820 * SENSE KEY values from include/scsi/scsi.h
2821 */
2822 switch (reason) {
2823 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002824 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002825 buffer[0] = 0x70;
2826 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002827 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002828 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002829 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002830 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002831 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002832 case TCM_UNSUPPORTED_SCSI_OPCODE:
2833 case TCM_SECTOR_COUNT_TOO_MANY:
2834 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002835 buffer[0] = 0x70;
2836 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002837 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002838 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002839 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002840 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002841 break;
2842 case TCM_UNKNOWN_MODE_PAGE:
2843 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002844 buffer[0] = 0x70;
2845 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002846 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002847 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002848 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002849 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002850 break;
2851 case TCM_CHECK_CONDITION_ABORT_CMD:
2852 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002853 buffer[0] = 0x70;
2854 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002855 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002856 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002857 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002858 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2859 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002860 break;
2861 case TCM_INCORRECT_AMOUNT_OF_DATA:
2862 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002863 buffer[0] = 0x70;
2864 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002865 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002866 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002867 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002868 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002869 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002870 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002871 break;
2872 case TCM_INVALID_CDB_FIELD:
2873 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002874 buffer[0] = 0x70;
2875 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002876 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002877 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002878 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002879 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002880 break;
2881 case TCM_INVALID_PARAMETER_LIST:
2882 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002883 buffer[0] = 0x70;
2884 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002885 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002886 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002887 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002888 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002889 break;
2890 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2891 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002892 buffer[0] = 0x70;
2893 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002894 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002895 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002896 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002897 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002898 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002899 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002900 break;
2901 case TCM_SERVICE_CRC_ERROR:
2902 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002903 buffer[0] = 0x70;
2904 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002905 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002906 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002907 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002908 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002909 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002910 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002911 break;
2912 case TCM_SNACK_REJECTED:
2913 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002914 buffer[0] = 0x70;
2915 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002916 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002917 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002918 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002919 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002920 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002921 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002922 break;
2923 case TCM_WRITE_PROTECTED:
2924 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002925 buffer[0] = 0x70;
2926 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002927 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002928 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002929 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002930 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002931 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002932 case TCM_ADDRESS_OUT_OF_RANGE:
2933 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002934 buffer[0] = 0x70;
2935 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002936 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002937 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002938 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002939 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002940 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002941 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2942 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002943 buffer[0] = 0x70;
2944 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002945 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002946 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002947 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002948 buffer[SPC_ASC_KEY_OFFSET] = asc;
2949 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002950 break;
2951 case TCM_CHECK_CONDITION_NOT_READY:
2952 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002953 buffer[0] = 0x70;
2954 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002955 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002956 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002957 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002958 buffer[SPC_ASC_KEY_OFFSET] = asc;
2959 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002960 break;
2961 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2962 default:
2963 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002964 buffer[0] = 0x70;
2965 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002966 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002967 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002968 /* LOGICAL UNIT COMMUNICATION FAILURE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002969 buffer[SPC_ASC_KEY_OFFSET] = 0x80;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002970 break;
2971 }
2972 /*
2973 * This code uses linux/include/scsi/scsi.h SAM status codes!
2974 */
2975 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2976 /*
2977 * Automatically padded, this value is encoded in the fabric's
2978 * data_length response PDU containing the SCSI defined sense data.
2979 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002980 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002981
2982after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002983 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002984}
2985EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2986
2987int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2988{
2989 int ret = 0;
2990
Christoph Hellwig7d680f32011-12-21 14:13:47 -05002991 if (cmd->transport_state & CMD_T_ABORTED) {
Andy Grover6708bb22011-06-08 10:36:43 -07002992 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002993 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2994 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002995
Andy Grover6708bb22011-06-08 10:36:43 -07002996 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002997 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07002998 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002999 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003000
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003001 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00003002 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003003 ret = 1;
3004 }
3005 return ret;
3006}
3007EXPORT_SYMBOL(transport_check_aborted_status);
3008
3009void transport_send_task_abort(struct se_cmd *cmd)
3010{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07003011 unsigned long flags;
3012
3013 spin_lock_irqsave(&cmd->t_state_lock, flags);
3014 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
3015 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3016 return;
3017 }
3018 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3019
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003020 /*
3021 * If there are still expected incoming fabric WRITEs, we wait
3022 * until until they have completed before sending a TASK_ABORTED
3023 * response. This response with TASK_ABORTED status will be
3024 * queued back to fabric module by transport_check_aborted_status().
3025 */
3026 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00003027 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f32011-12-21 14:13:47 -05003028 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003029 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003030 }
3031 }
3032 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07003033
Andy Grover6708bb22011-06-08 10:36:43 -07003034 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07003035 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00003036 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003037
Andy Grovere3d6f902011-07-19 08:55:10 +00003038 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003039}
3040
Christoph Hellwigaf877292012-07-08 15:58:49 -04003041static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003042{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003043 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00003044 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003045 struct se_tmr_req *tmr = cmd->se_tmr_req;
3046 int ret;
3047
3048 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003049 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08003050 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003051 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003052 case TMR_ABORT_TASK_SET:
3053 case TMR_CLEAR_ACA:
3054 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003055 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
3056 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003057 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003058 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
3059 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
3060 TMR_FUNCTION_REJECTED;
3061 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003062 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003063 tmr->response = TMR_FUNCTION_REJECTED;
3064 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003065 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003066 tmr->response = TMR_FUNCTION_REJECTED;
3067 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003068 default:
Andy Grover6708bb22011-06-08 10:36:43 -07003069 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003070 tmr->function);
3071 tmr->response = TMR_FUNCTION_REJECTED;
3072 break;
3073 }
3074
3075 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00003076 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003077
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04003078 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003079}
3080
Christoph Hellwigaf877292012-07-08 15:58:49 -04003081int transport_generic_handle_tmr(
3082 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003083{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003084 INIT_WORK(&cmd->work, target_tmr_work);
3085 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003086 return 0;
3087}
Christoph Hellwigaf877292012-07-08 15:58:49 -04003088EXPORT_SYMBOL(transport_generic_handle_tmr);