blob: d96d9aa3a4960e4b1656ba75f3d95b278de67e46 [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 Hellwig7d680f3b2011-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 Hellwig7d680f3b2011-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 Hellwig7d680f3b2011-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 Hellwig7d680f3b2011-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 Hellwig2235007c2011-11-02 05:06:35 -0700615
616 if (!success)
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500617 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig2235007c2011-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 Hellwig7d680f3b2011-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 Hellwig7d680f3b2011-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 Bellingera0267572012-10-01 17:23:22 -07001458/*
1459 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1460 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001461 *
1462 * @se_cmd: command descriptor to submit
1463 * @se_sess: associated se_sess for endpoint
1464 * @cdb: pointer to SCSI CDB
1465 * @sense: pointer to SCSI sense buffer
1466 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1467 * @data_length: fabric expected data transfer length
1468 * @task_addr: SAM task attribute
1469 * @data_dir: DMA data direction
1470 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001471 * @sgl: struct scatterlist memory for unidirectional mapping
1472 * @sgl_count: scatterlist count for unidirectional mapping
1473 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1474 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001475 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001476 * Returns non zero to signal active I/O shutdown failure. All other
1477 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1478 * but still return zero here.
1479 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001480 * This may only be called from process context, and also currently
1481 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001482 */
1483int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001484 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001485 u32 data_length, int task_attr, int data_dir, int flags,
1486 struct scatterlist *sgl, u32 sgl_count,
1487 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001488{
1489 struct se_portal_group *se_tpg;
1490 int rc;
1491
1492 se_tpg = se_sess->se_tpg;
1493 BUG_ON(!se_tpg);
1494 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1495 BUG_ON(in_interrupt());
1496 /*
1497 * Initialize se_cmd for target operation. From this point
1498 * exceptions are handled by sending exception status via
1499 * target_core_fabric_ops->queue_status() callback
1500 */
1501 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1502 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001503 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1504 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001505 /*
1506 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1507 * se_sess->sess_cmd_list. A second kref_get here is necessary
1508 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1509 * kref_put() to happen during fabric packet acknowledgement.
1510 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001511 rc = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1512 if (rc)
Roland Dreierd6dfc862012-07-16 11:04:39 -07001513 return rc;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001514 /*
1515 * Signal bidirectional data payloads to target-core
1516 */
1517 if (flags & TARGET_SCF_BIDI_OP)
1518 se_cmd->se_cmd_flags |= SCF_BIDI;
1519 /*
1520 * Locate se_lun pointer and attach it to struct se_cmd
1521 */
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001522 if (transport_lookup_cmd_lun(se_cmd, unpacked_lun) < 0) {
1523 transport_send_check_condition_and_sense(se_cmd,
1524 se_cmd->scsi_sense_reason, 0);
1525 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001526 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001527 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001528
Andy Grovera12f41f2012-04-03 15:51:20 -07001529 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001530 if (rc != 0) {
1531 transport_generic_request_failure(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001532 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001533 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001534 /*
1535 * When a non zero sgl_count has been passed perform SGL passthrough
1536 * mapping for pre-allocated fabric memory instead of having target
1537 * core perform an internal SGL allocation..
1538 */
1539 if (sgl_count != 0) {
1540 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001541
Nicholas Bellingera0267572012-10-01 17:23:22 -07001542 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1543 sgl_bidi, sgl_bidi_count);
1544 if (rc != 0) {
1545 transport_generic_request_failure(se_cmd);
1546 return 0;
1547 }
1548 }
Andy Grover11e319e2012-04-03 15:51:28 -07001549 /*
1550 * Check if we need to delay processing because of ALUA
1551 * Active/NonOptimized primary access state..
1552 */
1553 core_alua_check_nonop_delay(se_cmd);
1554
Nicholas Bellingera6360782011-11-18 20:36:22 -08001555 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001556 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001557}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001558EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1559
1560/*
1561 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1562 *
1563 * @se_cmd: command descriptor to submit
1564 * @se_sess: associated se_sess for endpoint
1565 * @cdb: pointer to SCSI CDB
1566 * @sense: pointer to SCSI sense buffer
1567 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1568 * @data_length: fabric expected data transfer length
1569 * @task_addr: SAM task attribute
1570 * @data_dir: DMA data direction
1571 * @flags: flags for command submission from target_sc_flags_tables
1572 *
1573 * Returns non zero to signal active I/O shutdown failure. All other
1574 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1575 * but still return zero here.
1576 *
1577 * This may only be called from process context, and also currently
1578 * assumes internal allocation of fabric payload buffer by target-core.
1579 *
1580 * It also assumes interal target core SGL memory allocation.
1581 */
1582int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1583 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1584 u32 data_length, int task_attr, int data_dir, int flags)
1585{
1586 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1587 unpacked_lun, data_length, task_attr, data_dir,
1588 flags, NULL, 0, NULL, 0);
1589}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001590EXPORT_SYMBOL(target_submit_cmd);
1591
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001592static void target_complete_tmr_failure(struct work_struct *work)
1593{
1594 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1595
1596 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1597 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
1598 transport_generic_free_cmd(se_cmd, 0);
1599}
1600
Andy Groverea98d7f2012-01-19 13:39:21 -08001601/**
1602 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1603 * for TMR CDBs
1604 *
1605 * @se_cmd: command descriptor to submit
1606 * @se_sess: associated se_sess for endpoint
1607 * @sense: pointer to SCSI sense buffer
1608 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1609 * @fabric_context: fabric context for TMR req
1610 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001611 * @gfp: gfp type for caller
1612 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001613 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001614 *
1615 * Callable from all contexts.
1616 **/
1617
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001618int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001619 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001620 void *fabric_tmr_ptr, unsigned char tm_type,
1621 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001622{
1623 struct se_portal_group *se_tpg;
1624 int ret;
1625
1626 se_tpg = se_sess->se_tpg;
1627 BUG_ON(!se_tpg);
1628
1629 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1630 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001631 /*
1632 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1633 * allocation failure.
1634 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001635 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001636 if (ret < 0)
1637 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001638
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001639 if (tm_type == TMR_ABORT_TASK)
1640 se_cmd->se_tmr_req->ref_task_tag = tag;
1641
Andy Groverea98d7f2012-01-19 13:39:21 -08001642 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001643 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1644 if (ret) {
1645 core_tmr_release_req(se_cmd->se_tmr_req);
1646 return ret;
1647 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001648
Andy Groverea98d7f2012-01-19 13:39:21 -08001649 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1650 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001651 /*
1652 * For callback during failure handling, push this work off
1653 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1654 */
1655 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1656 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001657 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001658 }
1659 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001660 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001661}
1662EXPORT_SYMBOL(target_submit_tmr);
1663
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001664/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001665 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001666 * has completed.
1667 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001668bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001669{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001670 bool was_active = false;
1671
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001672 if (cmd->transport_state & CMD_T_BUSY) {
1673 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001674 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1675
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001676 pr_debug("cmd %p waiting to complete\n", cmd);
1677 wait_for_completion(&cmd->task_stop_comp);
1678 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001679
1680 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001681 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1682 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001683 was_active = true;
1684 }
1685
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001686 return was_active;
1687}
1688
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001689/*
1690 * Handle SAM-esque emulation for generic transport request failures.
1691 */
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001692void transport_generic_request_failure(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001693{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001694 int ret = 0;
1695
Andy Grover6708bb22011-06-08 10:36:43 -07001696 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001697 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001698 cmd->t_task_cdb[0]);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001699 pr_debug("-----[ i_state: %d t_state: %d scsi_sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001700 cmd->se_tfo->get_cmd_state(cmd),
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001701 cmd->t_state, cmd->scsi_sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001702 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001703 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1704 (cmd->transport_state & CMD_T_STOP) != 0,
1705 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001706
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001707 /*
1708 * For SAM Task Attribute emulation for failed struct se_cmd
1709 */
1710 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1711 transport_complete_task_attr(cmd);
1712
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001713 switch (cmd->scsi_sense_reason) {
1714 case TCM_NON_EXISTENT_LUN:
1715 case TCM_UNSUPPORTED_SCSI_OPCODE:
1716 case TCM_INVALID_CDB_FIELD:
1717 case TCM_INVALID_PARAMETER_LIST:
1718 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1719 case TCM_UNKNOWN_MODE_PAGE:
1720 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001721 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001722 case TCM_CHECK_CONDITION_ABORT_CMD:
1723 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1724 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001725 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001726 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001727 /*
1728 * No SENSE Data payload for this case, set SCSI Status
1729 * and queue the response to $FABRIC_MOD.
1730 *
1731 * Uses linux/include/scsi/scsi.h SAM status codes defs
1732 */
1733 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1734 /*
1735 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1736 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1737 * CONFLICT STATUS.
1738 *
1739 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1740 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001741 if (cmd->se_sess &&
1742 cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2)
1743 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001744 cmd->orig_fe_lun, 0x2C,
1745 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1746
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001747 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001748 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001749 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001750 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001751 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001752 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001753 cmd->t_task_cdb[0], cmd->scsi_sense_reason);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001754 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1755 break;
1756 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001757
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001758 ret = transport_send_check_condition_and_sense(cmd,
1759 cmd->scsi_sense_reason, 0);
1760 if (ret == -EAGAIN || ret == -ENOMEM)
1761 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001762
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001763check_stop:
1764 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001765 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001766 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001767 return;
1768
1769queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001770 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1771 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001772}
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001773EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001774
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001775static void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001776{
Christoph Hellwig0c2ad7d2012-06-17 18:40:52 -04001777 int error = 0;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001778
1779 spin_lock_irq(&cmd->t_state_lock);
1780 cmd->transport_state |= (CMD_T_BUSY|CMD_T_SENT);
1781 spin_unlock_irq(&cmd->t_state_lock);
1782
1783 if (cmd->execute_cmd)
1784 error = cmd->execute_cmd(cmd);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001785
1786 if (error) {
1787 spin_lock_irq(&cmd->t_state_lock);
1788 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1789 spin_unlock_irq(&cmd->t_state_lock);
1790
1791 transport_generic_request_failure(cmd);
1792 }
1793}
1794
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001795void target_execute_cmd(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001796{
1797 struct se_device *dev = cmd->se_dev;
1798
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001799 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001800 * If the received CDB has aleady been aborted stop processing it here.
1801 */
1802 if (transport_check_aborted_status(cmd, 1))
1803 return;
1804
1805 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001806 * Determine if IOCTL context caller in requesting the stopping of this
1807 * command for LUN shutdown purposes.
1808 */
1809 spin_lock_irq(&cmd->t_state_lock);
1810 if (cmd->transport_state & CMD_T_LUN_STOP) {
1811 pr_debug("%s:%d CMD_T_LUN_STOP for ITT: 0x%08x\n",
1812 __func__, __LINE__, cmd->se_tfo->get_task_tag(cmd));
1813
1814 cmd->transport_state &= ~CMD_T_ACTIVE;
1815 spin_unlock_irq(&cmd->t_state_lock);
1816 complete(&cmd->transport_lun_stop_comp);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001817 return;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001818 }
1819 /*
1820 * Determine if frontend context caller is requesting the stopping of
1821 * this command for frontend exceptions.
1822 */
1823 if (cmd->transport_state & CMD_T_STOP) {
1824 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1825 __func__, __LINE__,
1826 cmd->se_tfo->get_task_tag(cmd));
1827
1828 spin_unlock_irq(&cmd->t_state_lock);
1829 complete(&cmd->t_transport_stop_comp);
1830 return;
1831 }
1832
1833 cmd->t_state = TRANSPORT_PROCESSING;
1834 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001835
1836 if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED)
1837 goto execute;
1838
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001839 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001840 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001841 * to allow the passed struct se_cmd list of tasks to the front of the list.
1842 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001843 switch (cmd->sam_task_attr) {
1844 case MSG_HEAD_TAG:
1845 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1846 "se_ordered_id: %u\n",
1847 cmd->t_task_cdb[0], cmd->se_ordered_id);
1848 goto execute;
1849 case MSG_ORDERED_TAG:
1850 atomic_inc(&dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001851 smp_mb__after_atomic_inc();
1852
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001853 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1854 " se_ordered_id: %u\n",
1855 cmd->t_task_cdb[0], cmd->se_ordered_id);
1856
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001857 /*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001858 * Execute an ORDERED command if no other older commands
1859 * exist that need to be completed first.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001860 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001861 if (!atomic_read(&dev->simple_cmds))
1862 goto execute;
1863 break;
1864 default:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001865 /*
1866 * For SIMPLE and UNTAGGED Task Attribute commands
1867 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001868 atomic_inc(&dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001869 smp_mb__after_atomic_inc();
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001870 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001871 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001872
1873 if (atomic_read(&dev->dev_ordered_sync) != 0) {
1874 spin_lock(&dev->delayed_cmd_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001875 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1876 spin_unlock(&dev->delayed_cmd_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001877
Andy Grover6708bb22011-06-08 10:36:43 -07001878 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001879 " delayed CMD list, se_ordered_id: %u\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07001880 cmd->t_task_cdb[0], cmd->sam_task_attr,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001881 cmd->se_ordered_id);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001882 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001883 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001884
1885execute:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001886 /*
1887 * Otherwise, no ORDERED task attributes exist..
1888 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001889 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001890}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001891EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001892
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001893/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001894 * Process all commands up to the last received ORDERED task attribute which
1895 * requires another blocking boundary
1896 */
1897static void target_restart_delayed_cmds(struct se_device *dev)
1898{
1899 for (;;) {
1900 struct se_cmd *cmd;
1901
1902 spin_lock(&dev->delayed_cmd_lock);
1903 if (list_empty(&dev->delayed_cmd_list)) {
1904 spin_unlock(&dev->delayed_cmd_lock);
1905 break;
1906 }
1907
1908 cmd = list_entry(dev->delayed_cmd_list.next,
1909 struct se_cmd, se_delayed_node);
1910 list_del(&cmd->se_delayed_node);
1911 spin_unlock(&dev->delayed_cmd_lock);
1912
1913 __target_execute_cmd(cmd);
1914
1915 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1916 break;
1917 }
1918}
1919
1920/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001921 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001922 * and ordered cmds need to have their tasks added to the execution queue.
1923 */
1924static void transport_complete_task_attr(struct se_cmd *cmd)
1925{
Andy Grover5951146d2011-07-19 10:26:37 +00001926 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001927
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001928 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001929 atomic_dec(&dev->simple_cmds);
1930 smp_mb__after_atomic_dec();
1931 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001932 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001933 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1934 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001935 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001936 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001937 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001938 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1939 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001940 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001941 atomic_dec(&dev->dev_ordered_sync);
1942 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001943
1944 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001945 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001946 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1947 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001948
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001949 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001950}
1951
Christoph Hellwige057f532011-10-17 13:56:41 -04001952static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001953{
1954 int ret = 0;
1955
Christoph Hellwige057f532011-10-17 13:56:41 -04001956 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
1957 transport_complete_task_attr(cmd);
1958
1959 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
1960 ret = cmd->se_tfo->queue_status(cmd);
1961 if (ret)
1962 goto out;
1963 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001964
1965 switch (cmd->data_direction) {
1966 case DMA_FROM_DEVICE:
1967 ret = cmd->se_tfo->queue_data_in(cmd);
1968 break;
1969 case DMA_TO_DEVICE:
Andy Groverec98f782011-07-20 19:28:46 +00001970 if (cmd->t_bidi_data_sg) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001971 ret = cmd->se_tfo->queue_data_in(cmd);
1972 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001973 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001974 }
1975 /* Fall through for DMA_TO_DEVICE */
1976 case DMA_NONE:
1977 ret = cmd->se_tfo->queue_status(cmd);
1978 break;
1979 default:
1980 break;
1981 }
1982
Christoph Hellwige057f532011-10-17 13:56:41 -04001983out:
1984 if (ret < 0) {
1985 transport_handle_queue_full(cmd, cmd->se_dev);
1986 return;
1987 }
1988 transport_lun_remove_cmd(cmd);
1989 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001990}
1991
1992static void transport_handle_queue_full(
1993 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001994 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001995{
1996 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001997 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1998 atomic_inc(&dev->dev_qf_count);
1999 smp_mb__after_atomic_inc();
2000 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
2001
2002 schedule_work(&cmd->se_dev->qf_work_queue);
2003}
2004
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002005static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002006{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002007 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02002008 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04002009
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002010 /*
2011 * Check if we need to move delayed/dormant tasks from cmds on the
2012 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
2013 * Attribute.
2014 */
Andy Grover5951146d2011-07-19 10:26:37 +00002015 if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002016 transport_complete_task_attr(cmd);
2017 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002018 * Check to schedule QUEUE_FULL work, or execute an existing
2019 * cmd->transport_qf_callback()
2020 */
2021 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
2022 schedule_work(&cmd->se_dev->qf_work_queue);
2023
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002024 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02002025 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002026 * the struct se_cmd in question.
2027 */
2028 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02002029 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02002030 ret = transport_send_check_condition_and_sense(
2031 cmd, 0, 1);
2032 if (ret == -EAGAIN || ret == -ENOMEM)
2033 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002034
Paolo Bonzini27a27092012-09-05 17:09:14 +02002035 transport_lun_remove_cmd(cmd);
2036 transport_cmd_check_stop_to_fabric(cmd);
2037 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002038 }
2039 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002040 * Check for a callback, used by amongst other things
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002041 * XDWRITE_READ_10 emulation.
2042 */
2043 if (cmd->transport_complete_callback)
2044 cmd->transport_complete_callback(cmd);
2045
2046 switch (cmd->data_direction) {
2047 case DMA_FROM_DEVICE:
2048 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002049 if (cmd->se_lun->lun_sep) {
2050 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002051 cmd->data_length;
2052 }
2053 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002054
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002055 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002056 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002057 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002058 break;
2059 case DMA_TO_DEVICE:
2060 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002061 if (cmd->se_lun->lun_sep) {
2062 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002063 cmd->data_length;
2064 }
2065 spin_unlock(&cmd->se_lun->lun_sep_lock);
2066 /*
2067 * Check if we need to send READ payload for BIDI-COMMAND
2068 */
Andy Groverec98f782011-07-20 19:28:46 +00002069 if (cmd->t_bidi_data_sg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002070 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00002071 if (cmd->se_lun->lun_sep) {
2072 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002073 cmd->data_length;
2074 }
2075 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002076 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002077 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002078 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002079 break;
2080 }
2081 /* Fall through for DMA_TO_DEVICE */
2082 case DMA_NONE:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002083 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002084 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002085 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002086 break;
2087 default:
2088 break;
2089 }
2090
2091 transport_lun_remove_cmd(cmd);
2092 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002093 return;
2094
2095queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07002096 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002097 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04002098 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
2099 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002100}
2101
Andy Grover6708bb22011-06-08 10:36:43 -07002102static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002103{
Andy Groverec98f782011-07-20 19:28:46 +00002104 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002105 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002106
Andy Grover6708bb22011-06-08 10:36:43 -07002107 for_each_sg(sgl, sg, nents, count)
2108 __free_page(sg_page(sg));
2109
2110 kfree(sgl);
2111}
2112
2113static inline void transport_free_pages(struct se_cmd *cmd)
2114{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002115 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)
Andy Grover6708bb22011-06-08 10:36:43 -07002116 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002117
Andy Grover6708bb22011-06-08 10:36:43 -07002118 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002119 cmd->t_data_sg = NULL;
2120 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002121
Andy Grover6708bb22011-06-08 10:36:43 -07002122 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002123 cmd->t_bidi_data_sg = NULL;
2124 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002125}
2126
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002127/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002128 * transport_release_cmd - free a command
2129 * @cmd: command to free
2130 *
2131 * This routine unconditionally frees a command, and reference counting
2132 * or list removal must be done in the caller.
2133 */
2134static void transport_release_cmd(struct se_cmd *cmd)
2135{
2136 BUG_ON(!cmd->se_tfo);
2137
Andy Groverc8e31f22012-01-19 13:39:17 -08002138 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002139 core_tmr_release_req(cmd->se_tmr_req);
2140 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2141 kfree(cmd->t_task_cdb);
2142 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002143 * If this cmd has been setup with target_get_sess_cmd(), drop
2144 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002145 */
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002146 if (cmd->check_release != 0) {
2147 target_put_sess_cmd(cmd->se_sess, cmd);
2148 return;
2149 }
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002150 cmd->se_tfo->release_cmd(cmd);
2151}
2152
2153/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002154 * transport_put_cmd - release a reference to a command
2155 * @cmd: command to release
2156 *
2157 * This routine releases our reference to the command and frees it if possible.
2158 */
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002159static void transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002160{
2161 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162
Andy Grovera1d8b492011-05-02 17:12:10 -07002163 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002164 if (atomic_read(&cmd->t_fe_count)) {
2165 if (!atomic_dec_and_test(&cmd->t_fe_count))
2166 goto out_busy;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002167 }
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002168
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002169 if (cmd->transport_state & CMD_T_DEV_ACTIVE) {
2170 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002171 target_remove_from_state_list(cmd);
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002172 }
Andy Grovera1d8b492011-05-02 17:12:10 -07002173 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002174
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002175 transport_free_pages(cmd);
Christoph Hellwig31afc392011-09-13 23:08:11 +02002176 transport_release_cmd(cmd);
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002177 return;
Christoph Hellwig4911e3c2011-09-13 23:08:42 +02002178out_busy:
2179 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002180}
2181
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002182/*
Andy Groverec98f782011-07-20 19:28:46 +00002183 * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of
2184 * allocating in the core.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002185 * @cmd: Associated se_cmd descriptor
2186 * @mem: SGL style memory for TCM WRITE / READ
2187 * @sg_mem_num: Number of SGL elements
2188 * @mem_bidi_in: SGL style memory for TCM BIDI READ
2189 * @sg_mem_bidi_num: Number of BIDI READ SGL elements
2190 *
2191 * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage
2192 * of parameters.
2193 */
2194int transport_generic_map_mem_to_cmd(
2195 struct se_cmd *cmd,
Andy Grover5951146d2011-07-19 10:26:37 +00002196 struct scatterlist *sgl,
2197 u32 sgl_count,
2198 struct scatterlist *sgl_bidi,
2199 u32 sgl_bidi_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002200{
Andy Grover5951146d2011-07-19 10:26:37 +00002201 if (!sgl || !sgl_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002202 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002203
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002204 /*
2205 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
2206 * scatterlists already have been set to follow what the fabric
2207 * passes for the original expected data transfer length.
2208 */
2209 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
2210 pr_warn("Rejecting SCSI DATA overflow for fabric using"
2211 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
2212 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2213 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
2214 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002215 }
2216
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002217 cmd->t_data_sg = sgl;
2218 cmd->t_data_nents = sgl_count;
2219
2220 if (sgl_bidi && sgl_bidi_count) {
2221 cmd->t_bidi_data_sg = sgl_bidi;
2222 cmd->t_bidi_data_nents = sgl_bidi_count;
2223 }
2224 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002225 return 0;
2226}
2227EXPORT_SYMBOL(transport_generic_map_mem_to_cmd);
2228
Andy Grover49493142012-01-16 16:57:08 -08002229void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002230{
Andy Groverec98f782011-07-20 19:28:46 +00002231 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002232 struct page **pages;
2233 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002234
Andy Grover05d1c7c2011-07-20 19:13:28 +00002235 /*
Andy Groverec98f782011-07-20 19:28:46 +00002236 * We need to take into account a possible offset here for fabrics like
2237 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2238 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002239 */
Andy Grover49493142012-01-16 16:57:08 -08002240 if (!cmd->t_data_nents)
2241 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002242
2243 BUG_ON(!sg);
2244 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002245 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002246
Andy Grover49493142012-01-16 16:57:08 -08002247 /* >1 page. use vmap */
2248 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002249 if (!pages) {
2250 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grover49493142012-01-16 16:57:08 -08002251 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002252 }
Andy Grover49493142012-01-16 16:57:08 -08002253
2254 /* convert sg[] to pages[] */
2255 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2256 pages[i] = sg_page(sg);
2257 }
2258
2259 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2260 kfree(pages);
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002261 if (!cmd->t_data_vmap) {
2262 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Andy Grover49493142012-01-16 16:57:08 -08002263 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002264 }
Andy Grover49493142012-01-16 16:57:08 -08002265
2266 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002267}
Andy Grover49493142012-01-16 16:57:08 -08002268EXPORT_SYMBOL(transport_kmap_data_sg);
2269
2270void transport_kunmap_data_sg(struct se_cmd *cmd)
2271{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002272 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002273 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002274 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002275 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002276 return;
2277 }
Andy Grover49493142012-01-16 16:57:08 -08002278
2279 vunmap(cmd->t_data_vmap);
2280 cmd->t_data_vmap = NULL;
2281}
2282EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002283
2284static int
2285transport_generic_get_mem(struct se_cmd *cmd)
2286{
Andy Groverec98f782011-07-20 19:28:46 +00002287 u32 length = cmd->data_length;
2288 unsigned int nents;
2289 struct page *page;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002290 gfp_t zero_flag;
Andy Groverec98f782011-07-20 19:28:46 +00002291 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002292
Andy Groverec98f782011-07-20 19:28:46 +00002293 nents = DIV_ROUND_UP(length, PAGE_SIZE);
2294 cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL);
2295 if (!cmd->t_data_sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002296 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002297
Andy Groverec98f782011-07-20 19:28:46 +00002298 cmd->t_data_nents = nents;
2299 sg_init_table(cmd->t_data_sg, nents);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002300
Christoph Hellwig64f1db32012-05-20 11:59:11 -04002301 zero_flag = cmd->se_cmd_flags & SCF_SCSI_DATA_CDB ? 0 : __GFP_ZERO;
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002302
Andy Groverec98f782011-07-20 19:28:46 +00002303 while (length) {
2304 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002305 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002306 if (!page)
2307 goto out;
2308
2309 sg_set_page(&cmd->t_data_sg[i], page, page_len, 0);
2310 length -= page_len;
2311 i++;
2312 }
2313 return 0;
2314
2315out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002316 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002317 i--;
Yi Zoud0e27c82012-08-14 16:06:43 -07002318 __free_page(sg_page(&cmd->t_data_sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002319 }
2320 kfree(cmd->t_data_sg);
2321 cmd->t_data_sg = NULL;
2322 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002323}
2324
Andy Grovera1d8b492011-05-02 17:12:10 -07002325/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002326 * Allocate any required resources to execute the command. For writes we
2327 * might not have the payload yet, so notify the fabric via a call to
2328 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002329 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002330int transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002331{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002332 int ret = 0;
2333
2334 /*
2335 * Determine is the TCM fabric module has already allocated physical
2336 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002337 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002338 */
Andy Groverec98f782011-07-20 19:28:46 +00002339 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2340 cmd->data_length) {
Andy Grover05d1c7c2011-07-20 19:13:28 +00002341 ret = transport_generic_get_mem(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002342 if (ret < 0)
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07002343 goto out_fail;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002344 }
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002345
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002346 atomic_inc(&cmd->t_fe_count);
Christoph Hellwig4101f0a2012-04-24 00:25:03 -04002347
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002348 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002349 * If this command is not a write we can execute it right here,
2350 * for write buffers we need to notify the fabric driver first
2351 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002352 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002353 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002354 if (cmd->data_direction != DMA_TO_DEVICE) {
2355 target_execute_cmd(cmd);
2356 return 0;
2357 }
2358
2359 spin_lock_irq(&cmd->t_state_lock);
2360 cmd->t_state = TRANSPORT_WRITE_PENDING;
2361 spin_unlock_irq(&cmd->t_state_lock);
2362
2363 transport_cmd_check_stop(cmd, false);
2364
2365 ret = cmd->se_tfo->write_pending(cmd);
2366 if (ret == -EAGAIN || ret == -ENOMEM)
2367 goto queue_full;
2368
2369 if (ret < 0)
2370 return ret;
2371 return 1;
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002372
2373out_fail:
2374 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
2375 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2376 return -EINVAL;
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002377queue_full:
2378 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2379 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2380 transport_handle_queue_full(cmd, cmd->se_dev);
2381 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002382}
Andy Grovera1d8b492011-05-02 17:12:10 -07002383EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002384
Christoph Hellwige057f532011-10-17 13:56:41 -04002385static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002386{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002387 int ret;
2388
2389 ret = cmd->se_tfo->write_pending(cmd);
2390 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002391 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2392 cmd);
2393 transport_handle_queue_full(cmd, cmd->se_dev);
2394 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002395}
2396
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002397void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002398{
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002399 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002400 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002401 transport_wait_for_tasks(cmd);
2402
Christoph Hellwig35462972011-05-31 23:56:57 -04002403 transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002404 } else {
2405 if (wait_for_tasks)
2406 transport_wait_for_tasks(cmd);
2407
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002408 core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd);
2409
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002410 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002411 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002412
Nicholas Bellinger39c05f32011-10-08 13:59:52 -07002413 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002414 }
2415}
2416EXPORT_SYMBOL(transport_generic_free_cmd);
2417
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002418/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2419 * @se_sess: session to reference
2420 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002421 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002422 */
Roland Dreierbc187ea2012-07-16 11:04:40 -07002423static int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
2424 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002425{
2426 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002427 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002428
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002429 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002430 /*
2431 * Add a second kref if the fabric caller is expecting to handle
2432 * fabric acknowledgement that requires two target_put_sess_cmd()
2433 * invocations before se_cmd descriptor release.
2434 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002435 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002436 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002437 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2438 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002439
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002440 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002441 if (se_sess->sess_tearing_down) {
2442 ret = -ESHUTDOWN;
2443 goto out;
2444 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002445 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
2446 se_cmd->check_release = 1;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002447
2448out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002449 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002450 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002451}
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002452
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002453static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002454{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002455 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2456 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002457 unsigned long flags;
2458
2459 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2460 if (list_empty(&se_cmd->se_cmd_list)) {
2461 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002462 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002463 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002464 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002465 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
2466 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2467 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002468 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002469 }
2470 list_del(&se_cmd->se_cmd_list);
2471 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2472
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002473 se_cmd->se_tfo->release_cmd(se_cmd);
2474}
2475
2476/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2477 * @se_sess: session to reference
2478 * @se_cmd: command descriptor to drop
2479 */
2480int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2481{
2482 return kref_put(&se_cmd->cmd_kref, target_release_cmd_kref);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002483}
2484EXPORT_SYMBOL(target_put_sess_cmd);
2485
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002486/* target_sess_cmd_list_set_waiting - Flag all commands in
2487 * sess_cmd_list to complete cmd_wait_comp. Set
2488 * sess_tearing_down so no more commands are queued.
2489 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002490 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002491void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002492{
2493 struct se_cmd *se_cmd;
2494 unsigned long flags;
2495
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002496 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002497
2498 WARN_ON(se_sess->sess_tearing_down);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002499 se_sess->sess_tearing_down = 1;
2500
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002501 list_for_each_entry(se_cmd, &se_sess->sess_cmd_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002502 se_cmd->cmd_wait_set = 1;
2503
2504 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2505}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002506EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002507
2508/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2509 * @se_sess: session to wait for active I/O
2510 * @wait_for_tasks: Make extra transport_wait_for_tasks call
2511 */
2512void target_wait_for_sess_cmds(
2513 struct se_session *se_sess,
2514 int wait_for_tasks)
2515{
2516 struct se_cmd *se_cmd, *tmp_cmd;
2517 bool rc = false;
2518
2519 list_for_each_entry_safe(se_cmd, tmp_cmd,
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002520 &se_sess->sess_cmd_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002521 list_del(&se_cmd->se_cmd_list);
2522
2523 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2524 " %d\n", se_cmd, se_cmd->t_state,
2525 se_cmd->se_tfo->get_cmd_state(se_cmd));
2526
2527 if (wait_for_tasks) {
2528 pr_debug("Calling transport_wait_for_tasks se_cmd: %p t_state: %d,"
2529 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2530 se_cmd->se_tfo->get_cmd_state(se_cmd));
2531
2532 rc = transport_wait_for_tasks(se_cmd);
2533
2534 pr_debug("After transport_wait_for_tasks se_cmd: %p t_state: %d,"
2535 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2536 se_cmd->se_tfo->get_cmd_state(se_cmd));
2537 }
2538
2539 if (!rc) {
2540 wait_for_completion(&se_cmd->cmd_wait_comp);
2541 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2542 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2543 se_cmd->se_tfo->get_cmd_state(se_cmd));
2544 }
2545
2546 se_cmd->se_tfo->release_cmd(se_cmd);
2547 }
2548}
2549EXPORT_SYMBOL(target_wait_for_sess_cmds);
2550
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002551/* transport_lun_wait_for_tasks():
2552 *
2553 * Called from ConfigFS context to stop the passed struct se_cmd to allow
2554 * an struct se_lun to be successfully shutdown.
2555 */
2556static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun)
2557{
2558 unsigned long flags;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002559 int ret = 0;
2560
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002561 /*
2562 * If the frontend has already requested this struct se_cmd to
2563 * be stopped, we can safely ignore this struct se_cmd.
2564 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002565 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002566 if (cmd->transport_state & CMD_T_STOP) {
2567 cmd->transport_state &= ~CMD_T_LUN_STOP;
2568
2569 pr_debug("ConfigFS ITT[0x%08x] - CMD_T_STOP, skipping\n",
2570 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002571 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002572 transport_cmd_check_stop(cmd, false);
Andy Grovere3d6f902011-07-19 08:55:10 +00002573 return -EPERM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002574 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002575 cmd->transport_state |= CMD_T_LUN_FE_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002576 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002577
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002578 // XXX: audit task_flags checks.
2579 spin_lock_irqsave(&cmd->t_state_lock, flags);
2580 if ((cmd->transport_state & CMD_T_BUSY) &&
2581 (cmd->transport_state & CMD_T_SENT)) {
2582 if (!target_stop_cmd(cmd, &flags))
2583 ret++;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002584 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002585 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002586
Christoph Hellwig785fdf72012-04-24 00:25:04 -04002587 pr_debug("ConfigFS: cmd: %p stop tasks ret:"
2588 " %d\n", cmd, ret);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002589 if (!ret) {
Andy Grover6708bb22011-06-08 10:36:43 -07002590 pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002591 cmd->se_tfo->get_task_tag(cmd));
Andy Grovera1d8b492011-05-02 17:12:10 -07002592 wait_for_completion(&cmd->transport_lun_stop_comp);
Andy Grover6708bb22011-06-08 10:36:43 -07002593 pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002594 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002595 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002596
2597 return 0;
2598}
2599
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002600static void __transport_clear_lun_from_sessions(struct se_lun *lun)
2601{
2602 struct se_cmd *cmd = NULL;
2603 unsigned long lun_flags, cmd_flags;
2604 /*
2605 * Do exception processing and return CHECK_CONDITION status to the
2606 * Initiator Port.
2607 */
2608 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
Andy Grover5951146d2011-07-19 10:26:37 +00002609 while (!list_empty(&lun->lun_cmd_list)) {
2610 cmd = list_first_entry(&lun->lun_cmd_list,
2611 struct se_cmd, se_lun_node);
Christoph Hellwig3d26fea2011-12-21 14:14:05 -05002612 list_del_init(&cmd->se_lun_node);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002613
Andy Grovera1d8b492011-05-02 17:12:10 -07002614 spin_lock(&cmd->t_state_lock);
Andy Grover6708bb22011-06-08 10:36:43 -07002615 pr_debug("SE_LUN[%d] - Setting cmd->transport"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 "_lun_stop for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002617 cmd->se_lun->unpacked_lun,
2618 cmd->se_tfo->get_task_tag(cmd));
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002619 cmd->transport_state |= CMD_T_LUN_STOP;
Andy Grovera1d8b492011-05-02 17:12:10 -07002620 spin_unlock(&cmd->t_state_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002621
2622 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2623
Andy Grover6708bb22011-06-08 10:36:43 -07002624 if (!cmd->se_lun) {
2625 pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002626 cmd->se_tfo->get_task_tag(cmd),
2627 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002628 BUG();
2629 }
2630 /*
2631 * If the Storage engine still owns the iscsi_cmd_t, determine
2632 * and/or stop its context.
2633 */
Andy Grover6708bb22011-06-08 10:36:43 -07002634 pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport"
Andy Grovere3d6f902011-07-19 08:55:10 +00002635 "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun,
2636 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002637
Andy Grovere3d6f902011-07-19 08:55:10 +00002638 if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002639 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2640 continue;
2641 }
2642
Andy Grover6708bb22011-06-08 10:36:43 -07002643 pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002644 "_wait_for_tasks(): SUCCESS\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002645 cmd->se_lun->unpacked_lun,
2646 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002647
Andy Grovera1d8b492011-05-02 17:12:10 -07002648 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002649 if (!(cmd->transport_state & CMD_T_DEV_ACTIVE)) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002650 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002651 goto check_cond;
2652 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002653 cmd->transport_state &= ~CMD_T_DEV_ACTIVE;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002654 target_remove_from_state_list(cmd);
Andy Grovera1d8b492011-05-02 17:12:10 -07002655 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002656
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002657 /*
2658 * The Storage engine stopped this struct se_cmd before it was
2659 * send to the fabric frontend for delivery back to the
2660 * Initiator Node. Return this SCSI CDB back with an
2661 * CHECK_CONDITION status.
2662 */
2663check_cond:
2664 transport_send_check_condition_and_sense(cmd,
2665 TCM_NON_EXISTENT_LUN, 0);
2666 /*
2667 * If the fabric frontend is waiting for this iscsi_cmd_t to
2668 * be released, notify the waiting thread now that LU has
2669 * finished accessing it.
2670 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002671 spin_lock_irqsave(&cmd->t_state_lock, cmd_flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002672 if (cmd->transport_state & CMD_T_LUN_FE_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002673 pr_debug("SE_LUN[%d] - Detected FE stop for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002674 " struct se_cmd: %p ITT: 0x%08x\n",
2675 lun->unpacked_lun,
Andy Grovere3d6f902011-07-19 08:55:10 +00002676 cmd, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677
Andy Grovera1d8b492011-05-02 17:12:10 -07002678 spin_unlock_irqrestore(&cmd->t_state_lock,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002679 cmd_flags);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04002680 transport_cmd_check_stop(cmd, false);
Andy Grovera1d8b492011-05-02 17:12:10 -07002681 complete(&cmd->transport_lun_fe_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002682 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2683 continue;
2684 }
Andy Grover6708bb22011-06-08 10:36:43 -07002685 pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002686 lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002687
Andy Grovera1d8b492011-05-02 17:12:10 -07002688 spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002689 spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags);
2690 }
2691 spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags);
2692}
2693
2694static int transport_clear_lun_thread(void *p)
2695{
Jörn Engel8359cf42011-11-24 02:05:51 +01002696 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002697
2698 __transport_clear_lun_from_sessions(lun);
2699 complete(&lun->lun_shutdown_comp);
2700
2701 return 0;
2702}
2703
2704int transport_clear_lun_from_sessions(struct se_lun *lun)
2705{
2706 struct task_struct *kt;
2707
Andy Grover5951146d2011-07-19 10:26:37 +00002708 kt = kthread_run(transport_clear_lun_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002709 "tcm_cl_%u", lun->unpacked_lun);
2710 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002711 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002712 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713 }
2714 wait_for_completion(&lun->lun_shutdown_comp);
2715
2716 return 0;
2717}
2718
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002719/**
2720 * transport_wait_for_tasks - wait for completion to occur
2721 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002722 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002723 * Called from frontend fabric context to wait for storage engine
2724 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002725 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002726bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002727{
2728 unsigned long flags;
2729
Andy Grovera1d8b492011-05-02 17:12:10 -07002730 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002731 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2732 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002733 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002734 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002735 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002736
Andy Groverc8e31f22012-01-19 13:39:17 -08002737 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2738 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002739 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002740 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002741 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002742 /*
2743 * If we are already stopped due to an external event (ie: LUN shutdown)
2744 * sleep until the connection can have the passed struct se_cmd back.
Andy Grovera1d8b492011-05-02 17:12:10 -07002745 * The cmd->transport_lun_stopped_sem will be upped by
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002746 * transport_clear_lun_from_sessions() once the ConfigFS context caller
2747 * has completed its operation on the struct se_cmd.
2748 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002749 if (cmd->transport_state & CMD_T_LUN_STOP) {
Andy Grover6708bb22011-06-08 10:36:43 -07002750 pr_debug("wait_for_tasks: Stopping"
Andy Grovere3d6f902011-07-19 08:55:10 +00002751 " wait_for_completion(&cmd->t_tasktransport_lun_fe"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002752 "_stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002753 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002754 /*
2755 * There is a special case for WRITES where a FE exception +
2756 * LUN shutdown means ConfigFS context is still sleeping on
2757 * transport_lun_stop_comp in transport_lun_wait_for_tasks().
2758 * We go ahead and up transport_lun_stop_comp just to be sure
2759 * here.
2760 */
Andy Grovera1d8b492011-05-02 17:12:10 -07002761 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2762 complete(&cmd->transport_lun_stop_comp);
2763 wait_for_completion(&cmd->transport_lun_fe_stop_comp);
2764 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002765
Christoph Hellwigcf572a92012-04-24 00:25:05 -04002766 target_remove_from_state_list(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002767 /*
2768 * At this point, the frontend who was the originator of this
2769 * struct se_cmd, now owns the structure and can be released through
2770 * normal means below.
2771 */
Andy Grover6708bb22011-06-08 10:36:43 -07002772 pr_debug("wait_for_tasks: Stopped"
Andy Grovere3d6f902011-07-19 08:55:10 +00002773 " wait_for_completion(&cmd->t_tasktransport_lun_fe_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002774 "stop_comp); for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002775 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002776
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002777 cmd->transport_state &= ~CMD_T_LUN_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002779
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002780 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002781 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002782 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002783 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002784
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002785 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002786
Andy Grover6708bb22011-06-08 10:36:43 -07002787 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002788 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002789 cmd, cmd->se_tfo->get_task_tag(cmd),
2790 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002791
Andy Grovera1d8b492011-05-02 17:12:10 -07002792 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002793
Andy Grovera1d8b492011-05-02 17:12:10 -07002794 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002795
Andy Grovera1d8b492011-05-02 17:12:10 -07002796 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002797 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002798
Masanari Iida35d1efe2012-08-16 22:43:13 +09002799 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002800 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002801 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002802
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002803 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002804
2805 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002806}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002807EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002808
2809static int transport_get_sense_codes(
2810 struct se_cmd *cmd,
2811 u8 *asc,
2812 u8 *ascq)
2813{
2814 *asc = cmd->scsi_asc;
2815 *ascq = cmd->scsi_ascq;
2816
2817 return 0;
2818}
2819
2820static int transport_set_sense_codes(
2821 struct se_cmd *cmd,
2822 u8 asc,
2823 u8 ascq)
2824{
2825 cmd->scsi_asc = asc;
2826 cmd->scsi_ascq = ascq;
2827
2828 return 0;
2829}
2830
2831int transport_send_check_condition_and_sense(
2832 struct se_cmd *cmd,
2833 u8 reason,
2834 int from_transport)
2835{
2836 unsigned char *buffer = cmd->sense_buffer;
2837 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002838 u8 asc = 0, ascq = 0;
2839
Andy Grovera1d8b492011-05-02 17:12:10 -07002840 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002841 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002842 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002843 return 0;
2844 }
2845 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002846 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002847
2848 if (!reason && from_transport)
2849 goto after_reason;
2850
2851 if (!from_transport)
2852 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002853
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002854 /*
2855 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2856 * SENSE KEY values from include/scsi/scsi.h
2857 */
2858 switch (reason) {
2859 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002860 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002861 buffer[0] = 0x70;
2862 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002863 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002864 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002865 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002866 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002867 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002868 case TCM_UNSUPPORTED_SCSI_OPCODE:
2869 case TCM_SECTOR_COUNT_TOO_MANY:
2870 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002871 buffer[0] = 0x70;
2872 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002873 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002874 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002875 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002876 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002877 break;
2878 case TCM_UNKNOWN_MODE_PAGE:
2879 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002880 buffer[0] = 0x70;
2881 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002882 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002883 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002884 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002885 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002886 break;
2887 case TCM_CHECK_CONDITION_ABORT_CMD:
2888 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002889 buffer[0] = 0x70;
2890 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002891 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002892 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002893 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002894 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2895 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002896 break;
2897 case TCM_INCORRECT_AMOUNT_OF_DATA:
2898 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002899 buffer[0] = 0x70;
2900 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002901 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002902 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002903 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002904 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002905 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002906 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002907 break;
2908 case TCM_INVALID_CDB_FIELD:
2909 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002910 buffer[0] = 0x70;
2911 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002912 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002913 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002914 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002915 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002916 break;
2917 case TCM_INVALID_PARAMETER_LIST:
2918 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002919 buffer[0] = 0x70;
2920 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002921 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002922 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002923 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002924 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002925 break;
2926 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2927 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002928 buffer[0] = 0x70;
2929 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002930 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002931 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002932 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002933 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002934 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002935 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002936 break;
2937 case TCM_SERVICE_CRC_ERROR:
2938 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002939 buffer[0] = 0x70;
2940 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002941 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002942 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002943 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002944 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002945 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002946 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002947 break;
2948 case TCM_SNACK_REJECTED:
2949 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002950 buffer[0] = 0x70;
2951 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002952 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002953 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002954 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002955 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002956 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002957 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002958 break;
2959 case TCM_WRITE_PROTECTED:
2960 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002961 buffer[0] = 0x70;
2962 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002963 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002964 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002965 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002966 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002967 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002968 case TCM_ADDRESS_OUT_OF_RANGE:
2969 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002970 buffer[0] = 0x70;
2971 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002972 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002973 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002974 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002975 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002976 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002977 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2978 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002979 buffer[0] = 0x70;
2980 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002981 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002982 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002983 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002984 buffer[SPC_ASC_KEY_OFFSET] = asc;
2985 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002986 break;
2987 case TCM_CHECK_CONDITION_NOT_READY:
2988 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002989 buffer[0] = 0x70;
2990 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002991 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002992 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002993 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002994 buffer[SPC_ASC_KEY_OFFSET] = asc;
2995 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002996 break;
2997 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2998 default:
2999 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003000 buffer[0] = 0x70;
3001 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003002 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003003 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003004 /* LOGICAL UNIT COMMUNICATION FAILURE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003005 buffer[SPC_ASC_KEY_OFFSET] = 0x80;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003006 break;
3007 }
3008 /*
3009 * This code uses linux/include/scsi/scsi.h SAM status codes!
3010 */
3011 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
3012 /*
3013 * Automatically padded, this value is encoded in the fabric's
3014 * data_length response PDU containing the SCSI defined sense data.
3015 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07003016 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003017
3018after_reason:
Nicholas Bellinger07bde792011-06-13 14:46:09 -07003019 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003020}
3021EXPORT_SYMBOL(transport_send_check_condition_and_sense);
3022
3023int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
3024{
3025 int ret = 0;
3026
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05003027 if (cmd->transport_state & CMD_T_ABORTED) {
Andy Grover6708bb22011-06-08 10:36:43 -07003028 if (!send_status ||
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003029 (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
3030 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07003031
Andy Grover6708bb22011-06-08 10:36:43 -07003032 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003033 " status for CDB: 0x%02x ITT: 0x%08x\n",
Andy Grovera1d8b492011-05-02 17:12:10 -07003034 cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00003035 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003036
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003037 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Andy Grovere3d6f902011-07-19 08:55:10 +00003038 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003039 ret = 1;
3040 }
3041 return ret;
3042}
3043EXPORT_SYMBOL(transport_check_aborted_status);
3044
3045void transport_send_task_abort(struct se_cmd *cmd)
3046{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07003047 unsigned long flags;
3048
3049 spin_lock_irqsave(&cmd->t_state_lock, flags);
3050 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
3051 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3052 return;
3053 }
3054 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
3055
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003056 /*
3057 * If there are still expected incoming fabric WRITEs, we wait
3058 * until until they have completed before sending a TASK_ABORTED
3059 * response. This response with TASK_ABORTED status will be
3060 * queued back to fabric module by transport_check_aborted_status().
3061 */
3062 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00003063 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05003064 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003065 smp_mb__after_atomic_inc();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003066 }
3067 }
3068 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07003069
Andy Grover6708bb22011-06-08 10:36:43 -07003070 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07003071 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00003072 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07003073
Andy Grovere3d6f902011-07-19 08:55:10 +00003074 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003075}
3076
Christoph Hellwigaf877292012-07-08 15:58:49 -04003077static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003078{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003079 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00003080 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003081 struct se_tmr_req *tmr = cmd->se_tmr_req;
3082 int ret;
3083
3084 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003085 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08003086 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003087 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003088 case TMR_ABORT_TASK_SET:
3089 case TMR_CLEAR_ACA:
3090 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003091 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
3092 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003093 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003094 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
3095 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
3096 TMR_FUNCTION_REJECTED;
3097 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003098 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003099 tmr->response = TMR_FUNCTION_REJECTED;
3100 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07003101 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003102 tmr->response = TMR_FUNCTION_REJECTED;
3103 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003104 default:
Andy Grover6708bb22011-06-08 10:36:43 -07003105 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003106 tmr->function);
3107 tmr->response = TMR_FUNCTION_REJECTED;
3108 break;
3109 }
3110
3111 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00003112 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003113
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04003114 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003115}
3116
Christoph Hellwigaf877292012-07-08 15:58:49 -04003117int transport_generic_handle_tmr(
3118 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003119{
Christoph Hellwigaf877292012-07-08 15:58:49 -04003120 INIT_WORK(&cmd->work, target_tmr_work);
3121 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08003122 return 0;
3123}
Christoph Hellwigaf877292012-07-08 15:58:49 -04003124EXPORT_SYMBOL(transport_generic_handle_tmr);