blob: 18c828dc3b9ebd36006a0816bd851aee6385da84 [file] [log] [blame]
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001/*******************************************************************************
2 * Filename: target_core_transport.c
3 *
4 * This file contains the Generic Target Engine Core.
5 *
Nicholas Bellinger4c762512013-09-05 15:29:12 -07006 * (c) Copyright 2002-2013 Datera, Inc.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08007 *
8 * Nicholas A. Bellinger <nab@kernel.org>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 ******************************************************************************/
25
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080026#include <linux/net.h>
27#include <linux/delay.h>
28#include <linux/string.h>
29#include <linux/timer.h>
30#include <linux/slab.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080031#include <linux/spinlock.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080032#include <linux/kthread.h>
33#include <linux/in.h>
34#include <linux/cdrom.h>
Paul Gortmaker827509e2011-08-30 14:20:44 -040035#include <linux/module.h>
Roland Dreier015487b2012-02-13 16:18:17 -080036#include <linux/ratelimit.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080037#include <asm/unaligned.h>
38#include <net/sock.h>
39#include <net/tcp.h>
40#include <scsi/scsi.h>
41#include <scsi/scsi_cmnd.h>
Nicholas Bellingere66ecd52011-05-19 20:19:14 -070042#include <scsi/scsi_tcq.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080043
44#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050045#include <target/target_core_backend.h>
46#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080047#include <target/target_core_configfs.h>
48
Christoph Hellwige26d99a2011-11-14 12:30:30 -050049#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080050#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080051#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080052#include "target_core_ua.h"
53
Roland Dreiere5c0d6a2013-06-26 17:36:17 -070054#define CREATE_TRACE_POINTS
55#include <trace/events/target.h>
56
Christoph Hellwig35e0e752011-10-17 13:56:53 -040057static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080059struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080060struct kmem_cache *t10_pr_reg_cache;
61struct kmem_cache *t10_alua_lu_gp_cache;
62struct kmem_cache *t10_alua_lu_gp_mem_cache;
63struct kmem_cache *t10_alua_tg_pt_gp_cache;
64struct kmem_cache *t10_alua_tg_pt_gp_mem_cache;
Hannes Reinecke229d4f12013-12-17 09:18:50 +010065struct kmem_cache *t10_alua_lba_map_cache;
66struct kmem_cache *t10_alua_lba_map_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080067
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080068static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070069static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040070 struct se_device *dev);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -070071static int transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040072static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073
Andy Grovere3d6f902011-07-19 08:55:10 +000074int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080075{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080076 se_sess_cache = kmem_cache_create("se_sess_cache",
77 sizeof(struct se_session), __alignof__(struct se_session),
78 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070079 if (!se_sess_cache) {
80 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080081 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080082 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080083 }
84 se_ua_cache = kmem_cache_create("se_ua_cache",
85 sizeof(struct se_ua), __alignof__(struct se_ua),
86 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070087 if (!se_ua_cache) {
88 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040089 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080090 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080091 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
92 sizeof(struct t10_pr_registration),
93 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070094 if (!t10_pr_reg_cache) {
95 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080096 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040097 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080098 }
99 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
100 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
101 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700102 if (!t10_alua_lu_gp_cache) {
103 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800104 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400105 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800106 }
107 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
108 sizeof(struct t10_alua_lu_gp_member),
109 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700110 if (!t10_alua_lu_gp_mem_cache) {
111 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800112 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400113 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800114 }
115 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
116 sizeof(struct t10_alua_tg_pt_gp),
117 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700118 if (!t10_alua_tg_pt_gp_cache) {
119 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800120 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400121 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800122 }
123 t10_alua_tg_pt_gp_mem_cache = kmem_cache_create(
124 "t10_alua_tg_pt_gp_mem_cache",
125 sizeof(struct t10_alua_tg_pt_gp_member),
126 __alignof__(struct t10_alua_tg_pt_gp_member),
127 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700128 if (!t10_alua_tg_pt_gp_mem_cache) {
129 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800130 "mem_t failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400131 goto out_free_tg_pt_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800132 }
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100133 t10_alua_lba_map_cache = kmem_cache_create(
134 "t10_alua_lba_map_cache",
135 sizeof(struct t10_alua_lba_map),
136 __alignof__(struct t10_alua_lba_map), 0, NULL);
137 if (!t10_alua_lba_map_cache) {
138 pr_err("kmem_cache_create() for t10_alua_lba_map_"
139 "cache failed\n");
140 goto out_free_tg_pt_gp_mem_cache;
141 }
142 t10_alua_lba_map_mem_cache = kmem_cache_create(
143 "t10_alua_lba_map_mem_cache",
144 sizeof(struct t10_alua_lba_map_member),
145 __alignof__(struct t10_alua_lba_map_member), 0, NULL);
146 if (!t10_alua_lba_map_mem_cache) {
147 pr_err("kmem_cache_create() for t10_alua_lba_map_mem_"
148 "cache failed\n");
149 goto out_free_lba_map_cache;
150 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800151
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400152 target_completion_wq = alloc_workqueue("target_completion",
153 WQ_MEM_RECLAIM, 0);
154 if (!target_completion_wq)
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100155 goto out_free_lba_map_mem_cache;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400156
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800157 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400158
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100159out_free_lba_map_mem_cache:
160 kmem_cache_destroy(t10_alua_lba_map_mem_cache);
161out_free_lba_map_cache:
162 kmem_cache_destroy(t10_alua_lba_map_cache);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400163out_free_tg_pt_gp_mem_cache:
164 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
165out_free_tg_pt_gp_cache:
166 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
167out_free_lu_gp_mem_cache:
168 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
169out_free_lu_gp_cache:
170 kmem_cache_destroy(t10_alua_lu_gp_cache);
171out_free_pr_reg_cache:
172 kmem_cache_destroy(t10_pr_reg_cache);
173out_free_ua_cache:
174 kmem_cache_destroy(se_ua_cache);
175out_free_sess_cache:
176 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800177out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000178 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800179}
180
Andy Grovere3d6f902011-07-19 08:55:10 +0000181void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800182{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400183 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800184 kmem_cache_destroy(se_sess_cache);
185 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800186 kmem_cache_destroy(t10_pr_reg_cache);
187 kmem_cache_destroy(t10_alua_lu_gp_cache);
188 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
189 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
190 kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache);
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100191 kmem_cache_destroy(t10_alua_lba_map_cache);
192 kmem_cache_destroy(t10_alua_lba_map_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800193}
194
Andy Grovere3d6f902011-07-19 08:55:10 +0000195/* This code ensures unique mib indexes are handed out. */
196static DEFINE_SPINLOCK(scsi_mib_index_lock);
197static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800198
199/*
200 * Allocate a new row index for the entry type specified
201 */
202u32 scsi_get_new_index(scsi_index_t type)
203{
204 u32 new_index;
205
Andy Grovere3d6f902011-07-19 08:55:10 +0000206 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800207
Andy Grovere3d6f902011-07-19 08:55:10 +0000208 spin_lock(&scsi_mib_index_lock);
209 new_index = ++scsi_mib_index[type];
210 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800211
212 return new_index;
213}
214
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700215void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800216{
217 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700218 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800219
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700220 if (sub_api_initialized)
221 return;
222
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800223 ret = request_module("target_core_iblock");
224 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700225 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800226
227 ret = request_module("target_core_file");
228 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700229 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800230
231 ret = request_module("target_core_pscsi");
232 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700233 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800234
Andy Grovere3d6f902011-07-19 08:55:10 +0000235 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800236}
237
238struct se_session *transport_init_session(void)
239{
240 struct se_session *se_sess;
241
242 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700243 if (!se_sess) {
244 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800245 " se_sess_cache\n");
246 return ERR_PTR(-ENOMEM);
247 }
248 INIT_LIST_HEAD(&se_sess->sess_list);
249 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700250 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -0700251 INIT_LIST_HEAD(&se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700252 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800253 kref_init(&se_sess->sess_kref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800254
255 return se_sess;
256}
257EXPORT_SYMBOL(transport_init_session);
258
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700259int transport_alloc_session_tags(struct se_session *se_sess,
260 unsigned int tag_num, unsigned int tag_size)
261{
262 int rc;
263
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700264 se_sess->sess_cmd_map = kzalloc(tag_num * tag_size,
265 GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700266 if (!se_sess->sess_cmd_map) {
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700267 se_sess->sess_cmd_map = vzalloc(tag_num * tag_size);
268 if (!se_sess->sess_cmd_map) {
269 pr_err("Unable to allocate se_sess->sess_cmd_map\n");
270 return -ENOMEM;
271 }
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700272 }
273
274 rc = percpu_ida_init(&se_sess->sess_tag_pool, tag_num);
275 if (rc < 0) {
276 pr_err("Unable to init se_sess->sess_tag_pool,"
277 " tag_num: %u\n", tag_num);
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700278 if (is_vmalloc_addr(se_sess->sess_cmd_map))
279 vfree(se_sess->sess_cmd_map);
280 else
281 kfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700282 se_sess->sess_cmd_map = NULL;
283 return -ENOMEM;
284 }
285
286 return 0;
287}
288EXPORT_SYMBOL(transport_alloc_session_tags);
289
290struct se_session *transport_init_session_tags(unsigned int tag_num,
291 unsigned int tag_size)
292{
293 struct se_session *se_sess;
294 int rc;
295
296 se_sess = transport_init_session();
297 if (IS_ERR(se_sess))
298 return se_sess;
299
300 rc = transport_alloc_session_tags(se_sess, tag_num, tag_size);
301 if (rc < 0) {
302 transport_free_session(se_sess);
303 return ERR_PTR(-ENOMEM);
304 }
305
306 return se_sess;
307}
308EXPORT_SYMBOL(transport_init_session_tags);
309
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800310/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700311 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800312 */
313void __transport_register_session(
314 struct se_portal_group *se_tpg,
315 struct se_node_acl *se_nacl,
316 struct se_session *se_sess,
317 void *fabric_sess_ptr)
318{
319 unsigned char buf[PR_REG_ISID_LEN];
320
321 se_sess->se_tpg = se_tpg;
322 se_sess->fabric_sess_ptr = fabric_sess_ptr;
323 /*
324 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
325 *
326 * Only set for struct se_session's that will actually be moving I/O.
327 * eg: *NOT* discovery sessions.
328 */
329 if (se_nacl) {
330 /*
331 * If the fabric module supports an ISID based TransportID,
332 * save this value in binary from the fabric I_T Nexus now.
333 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000334 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800335 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000336 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800337 &buf[0], PR_REG_ISID_LEN);
338 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
339 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800340 kref_get(&se_nacl->acl_kref);
341
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800342 spin_lock_irq(&se_nacl->nacl_sess_lock);
343 /*
344 * The se_nacl->nacl_sess pointer will be set to the
345 * last active I_T Nexus for each struct se_node_acl.
346 */
347 se_nacl->nacl_sess = se_sess;
348
349 list_add_tail(&se_sess->sess_acl_list,
350 &se_nacl->acl_sess_list);
351 spin_unlock_irq(&se_nacl->nacl_sess_lock);
352 }
353 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
354
Andy Grover6708bb22011-06-08 10:36:43 -0700355 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000356 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800357}
358EXPORT_SYMBOL(__transport_register_session);
359
360void transport_register_session(
361 struct se_portal_group *se_tpg,
362 struct se_node_acl *se_nacl,
363 struct se_session *se_sess,
364 void *fabric_sess_ptr)
365{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700366 unsigned long flags;
367
368 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800369 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700370 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800371}
372EXPORT_SYMBOL(transport_register_session);
373
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800374static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800375{
376 struct se_session *se_sess = container_of(kref,
377 struct se_session, sess_kref);
378 struct se_portal_group *se_tpg = se_sess->se_tpg;
379
380 se_tpg->se_tpg_tfo->close_session(se_sess);
381}
382
383void target_get_session(struct se_session *se_sess)
384{
385 kref_get(&se_sess->sess_kref);
386}
387EXPORT_SYMBOL(target_get_session);
388
Jörn Engel33933a02012-05-11 10:35:08 -0400389void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800390{
Joern Engel41492682012-05-18 13:57:19 -0700391 struct se_portal_group *tpg = se_sess->se_tpg;
392
393 if (tpg->se_tpg_tfo->put_session != NULL) {
394 tpg->se_tpg_tfo->put_session(se_sess);
395 return;
396 }
Jörn Engel33933a02012-05-11 10:35:08 -0400397 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800398}
399EXPORT_SYMBOL(target_put_session);
400
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800401static void target_complete_nacl(struct kref *kref)
402{
403 struct se_node_acl *nacl = container_of(kref,
404 struct se_node_acl, acl_kref);
405
406 complete(&nacl->acl_free_comp);
407}
408
409void target_put_nacl(struct se_node_acl *nacl)
410{
411 kref_put(&nacl->acl_kref, target_complete_nacl);
412}
413
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800414void transport_deregister_session_configfs(struct se_session *se_sess)
415{
416 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700417 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800418 /*
419 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
420 */
421 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700422 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700423 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800424 if (se_nacl->acl_stop == 0)
425 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800426 /*
427 * If the session list is empty, then clear the pointer.
428 * Otherwise, set the struct se_session pointer from the tail
429 * element of the per struct se_node_acl active session list.
430 */
431 if (list_empty(&se_nacl->acl_sess_list))
432 se_nacl->nacl_sess = NULL;
433 else {
434 se_nacl->nacl_sess = container_of(
435 se_nacl->acl_sess_list.prev,
436 struct se_session, sess_acl_list);
437 }
Roland Dreier23388862011-06-22 01:02:21 -0700438 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800439 }
440}
441EXPORT_SYMBOL(transport_deregister_session_configfs);
442
443void transport_free_session(struct se_session *se_sess)
444{
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700445 if (se_sess->sess_cmd_map) {
446 percpu_ida_destroy(&se_sess->sess_tag_pool);
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700447 if (is_vmalloc_addr(se_sess->sess_cmd_map))
448 vfree(se_sess->sess_cmd_map);
449 else
450 kfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700451 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800452 kmem_cache_free(se_sess_cache, se_sess);
453}
454EXPORT_SYMBOL(transport_free_session);
455
456void transport_deregister_session(struct se_session *se_sess)
457{
458 struct se_portal_group *se_tpg = se_sess->se_tpg;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800459 struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700461 unsigned long flags;
Nicholas Bellinger01468342012-03-10 14:32:52 -0800462 bool comp_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800463
Andy Grover6708bb22011-06-08 10:36:43 -0700464 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800465 transport_free_session(se_sess);
466 return;
467 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800468 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800469
Roland Dreiere63a8e12011-08-12 16:01:02 -0700470 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800471 list_del(&se_sess->sess_list);
472 se_sess->se_tpg = NULL;
473 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700474 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800475
476 /*
477 * Determine if we need to do extra work for this initiator node's
478 * struct se_node_acl if it had been previously dynamically generated.
479 */
480 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800481
Nicholas Bellinger01468342012-03-10 14:32:52 -0800482 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
483 if (se_nacl && se_nacl->dynamic_node_acl) {
484 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
485 list_del(&se_nacl->acl_list);
486 se_tpg->num_node_acls--;
487 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
488 core_tpg_wait_for_nacl_pr_ref(se_nacl);
489 core_free_device_list_for_node(se_nacl, se_tpg);
490 se_tfo->tpg_release_fabric_acl(se_tpg, se_nacl);
491
492 comp_nacl = false;
493 spin_lock_irqsave(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800494 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800495 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800496 spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800497
Andy Grover6708bb22011-06-08 10:36:43 -0700498 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000499 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800500 /*
Hannes Reinecke125d0112013-11-19 09:07:46 +0100501 * If last kref is dropping now for an explicit NodeACL, awake sleeping
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800502 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
503 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800504 */
505 if (se_nacl && comp_nacl == true)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800506 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800507
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800508 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800509}
510EXPORT_SYMBOL(transport_deregister_session);
511
512/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700513 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800514 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400515static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800516{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400517 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800518 unsigned long flags;
519
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400520 if (!dev)
521 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800522
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400523 if (cmd->transport_state & CMD_T_BUSY)
524 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800525
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400526 spin_lock_irqsave(&dev->execute_task_lock, flags);
527 if (cmd->state_active) {
528 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400529 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800530 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400531 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800532}
533
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700534static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
535 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800536{
537 unsigned long flags;
538
Andy Grovera1d8b492011-05-02 17:12:10 -0700539 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700540 if (write_pending)
541 cmd->t_state = TRANSPORT_WRITE_PENDING;
542
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400543 if (remove_from_lists) {
544 target_remove_from_state_list(cmd);
545
546 /*
547 * Clear struct se_cmd->se_lun before the handoff to FE.
548 */
549 cmd->se_lun = NULL;
550 }
551
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800552 /*
553 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000554 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800555 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500556 if (cmd->transport_state & CMD_T_STOP) {
557 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
558 __func__, __LINE__,
Andy Grovere3d6f902011-07-19 08:55:10 +0000559 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800560
Andy Grovera1d8b492011-05-02 17:12:10 -0700561 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800562
Andy Grovera1d8b492011-05-02 17:12:10 -0700563 complete(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800564 return 1;
565 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800566
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400567 cmd->transport_state &= ~CMD_T_ACTIVE;
568 if (remove_from_lists) {
569 /*
570 * Some fabric modules like tcm_loop can release
571 * their internally allocated I/O reference now and
572 * struct se_cmd now.
573 *
574 * Fabric modules are expected to return '1' here if the
575 * se_cmd being passed is released at this point,
576 * or zero if not being released.
577 */
578 if (cmd->se_tfo->check_stop_free != NULL) {
579 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
580 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800581 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400582 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583
Andy Grovera1d8b492011-05-02 17:12:10 -0700584 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800585 return 0;
586}
587
588static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
589{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700590 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800591}
592
593static void transport_lun_remove_cmd(struct se_cmd *cmd)
594{
Andy Grovere3d6f902011-07-19 08:55:10 +0000595 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800596
Nicholas Bellinger52777972013-11-06 21:03:43 -0800597 if (!lun || !cmd->lun_ref_active)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598 return;
599
Nicholas Bellinger52777972013-11-06 21:03:43 -0800600 percpu_ref_put(&lun->lun_ref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800601}
602
603void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
604{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800605 if (transport_cmd_check_stop_to_fabric(cmd))
606 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400607 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200608 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800609}
610
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400611static void target_complete_failure_work(struct work_struct *work)
612{
613 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
614
Christoph Hellwigde103c92012-11-06 12:24:09 -0800615 transport_generic_request_failure(cmd,
616 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400617}
618
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200619/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200620 * Used when asking transport to copy Sense Data from the underlying
621 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200622 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200623static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200624{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200625 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200626
627 WARN_ON(!cmd->se_lun);
628
629 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200630 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200631
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200632 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
633 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200634
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700635 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200636
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200637 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200638 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700639 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200640}
641
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400642void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800643{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400644 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400645 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800646 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800647
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400648 cmd->scsi_status = scsi_status;
649
650
Andy Grovera1d8b492011-05-02 17:12:10 -0700651 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400652 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800653
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800654 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200655 dev->transport->transport_complete(cmd,
656 cmd->t_data_sg,
657 transport_get_sense_buffer(cmd));
658 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800659 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800660 }
661
662 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400663 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800664 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400665 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700666 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400667 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800668 return;
669 }
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700670
671 if (!success)
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500672 cmd->transport_state |= CMD_T_FAILED;
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700673
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800674 /*
Hannes Reinecke125d0112013-11-19 09:07:46 +0100675 * Check for case where an explicit ABORT_TASK has been received
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800676 * and transport_wait_for_tasks() will be waiting for completion..
677 */
678 if (cmd->transport_state & CMD_T_ABORTED &&
679 cmd->transport_state & CMD_T_STOP) {
680 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
681 complete(&cmd->t_transport_stop_comp);
682 return;
683 } else if (cmd->transport_state & CMD_T_FAILED) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400684 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800685 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400686 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800687 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400688
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400689 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800690 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700691 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800692
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400693 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800694}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400695EXPORT_SYMBOL(target_complete_cmd);
696
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400697static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800698{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400699 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800700 unsigned long flags;
701
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800702 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400703 if (!cmd->state_active) {
704 list_add_tail(&cmd->state_list, &dev->state_list);
705 cmd->state_active = true;
706 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800707 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800708}
709
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700710/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700711 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700712 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400713static void transport_write_pending_qf(struct se_cmd *cmd);
714static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700715
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400716void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700717{
718 struct se_device *dev = container_of(work, struct se_device,
719 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700720 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700721 struct se_cmd *cmd, *cmd_tmp;
722
723 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700724 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
725 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700726
Roland Dreierbcac3642011-08-27 21:33:16 -0700727 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700728 list_del(&cmd->se_qf_node);
729 atomic_dec(&dev->dev_qf_count);
730 smp_mb__after_atomic_dec();
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700731
Andy Grover6708bb22011-06-08 10:36:43 -0700732 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700733 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400734 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700735 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
736 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400737
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400738 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
739 transport_write_pending_qf(cmd);
740 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
741 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700742 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700743}
744
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800745unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
746{
747 switch (cmd->data_direction) {
748 case DMA_NONE:
749 return "NONE";
750 case DMA_FROM_DEVICE:
751 return "READ";
752 case DMA_TO_DEVICE:
753 return "WRITE";
754 case DMA_BIDIRECTIONAL:
755 return "BIDI";
756 default:
757 break;
758 }
759
760 return "UNKNOWN";
761}
762
763void transport_dump_dev_state(
764 struct se_device *dev,
765 char *b,
766 int *bl)
767{
768 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400769 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800770 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400771 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800772 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800773
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400774 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700775 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400776 dev->dev_attrib.block_size,
777 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800778 *bl += sprintf(b + *bl, " ");
779}
780
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800781void transport_dump_vpd_proto_id(
782 struct t10_vpd *vpd,
783 unsigned char *p_buf,
784 int p_buf_len)
785{
786 unsigned char buf[VPD_TMP_BUF_SIZE];
787 int len;
788
789 memset(buf, 0, VPD_TMP_BUF_SIZE);
790 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
791
792 switch (vpd->protocol_identifier) {
793 case 0x00:
794 sprintf(buf+len, "Fibre Channel\n");
795 break;
796 case 0x10:
797 sprintf(buf+len, "Parallel SCSI\n");
798 break;
799 case 0x20:
800 sprintf(buf+len, "SSA\n");
801 break;
802 case 0x30:
803 sprintf(buf+len, "IEEE 1394\n");
804 break;
805 case 0x40:
806 sprintf(buf+len, "SCSI Remote Direct Memory Access"
807 " Protocol\n");
808 break;
809 case 0x50:
810 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
811 break;
812 case 0x60:
813 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
814 break;
815 case 0x70:
816 sprintf(buf+len, "Automation/Drive Interface Transport"
817 " Protocol\n");
818 break;
819 case 0x80:
820 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
821 break;
822 default:
823 sprintf(buf+len, "Unknown 0x%02x\n",
824 vpd->protocol_identifier);
825 break;
826 }
827
828 if (p_buf)
829 strncpy(p_buf, buf, p_buf_len);
830 else
Andy Grover6708bb22011-06-08 10:36:43 -0700831 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800832}
833
834void
835transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
836{
837 /*
838 * Check if the Protocol Identifier Valid (PIV) bit is set..
839 *
840 * from spc3r23.pdf section 7.5.1
841 */
842 if (page_83[1] & 0x80) {
843 vpd->protocol_identifier = (page_83[0] & 0xf0);
844 vpd->protocol_identifier_set = 1;
845 transport_dump_vpd_proto_id(vpd, NULL, 0);
846 }
847}
848EXPORT_SYMBOL(transport_set_vpd_proto_id);
849
850int transport_dump_vpd_assoc(
851 struct t10_vpd *vpd,
852 unsigned char *p_buf,
853 int p_buf_len)
854{
855 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000856 int ret = 0;
857 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800858
859 memset(buf, 0, VPD_TMP_BUF_SIZE);
860 len = sprintf(buf, "T10 VPD Identifier Association: ");
861
862 switch (vpd->association) {
863 case 0x00:
864 sprintf(buf+len, "addressed logical unit\n");
865 break;
866 case 0x10:
867 sprintf(buf+len, "target port\n");
868 break;
869 case 0x20:
870 sprintf(buf+len, "SCSI target device\n");
871 break;
872 default:
873 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000874 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800875 break;
876 }
877
878 if (p_buf)
879 strncpy(p_buf, buf, p_buf_len);
880 else
Andy Grover6708bb22011-06-08 10:36:43 -0700881 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800882
883 return ret;
884}
885
886int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
887{
888 /*
889 * The VPD identification association..
890 *
891 * from spc3r23.pdf Section 7.6.3.1 Table 297
892 */
893 vpd->association = (page_83[1] & 0x30);
894 return transport_dump_vpd_assoc(vpd, NULL, 0);
895}
896EXPORT_SYMBOL(transport_set_vpd_assoc);
897
898int transport_dump_vpd_ident_type(
899 struct t10_vpd *vpd,
900 unsigned char *p_buf,
901 int p_buf_len)
902{
903 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000904 int ret = 0;
905 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800906
907 memset(buf, 0, VPD_TMP_BUF_SIZE);
908 len = sprintf(buf, "T10 VPD Identifier Type: ");
909
910 switch (vpd->device_identifier_type) {
911 case 0x00:
912 sprintf(buf+len, "Vendor specific\n");
913 break;
914 case 0x01:
915 sprintf(buf+len, "T10 Vendor ID based\n");
916 break;
917 case 0x02:
918 sprintf(buf+len, "EUI-64 based\n");
919 break;
920 case 0x03:
921 sprintf(buf+len, "NAA\n");
922 break;
923 case 0x04:
924 sprintf(buf+len, "Relative target port identifier\n");
925 break;
926 case 0x08:
927 sprintf(buf+len, "SCSI name string\n");
928 break;
929 default:
930 sprintf(buf+len, "Unsupported: 0x%02x\n",
931 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000932 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800933 break;
934 }
935
Andy Grovere3d6f902011-07-19 08:55:10 +0000936 if (p_buf) {
937 if (p_buf_len < strlen(buf)+1)
938 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800939 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000940 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700941 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000942 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800943
944 return ret;
945}
946
947int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
948{
949 /*
950 * The VPD identifier type..
951 *
952 * from spc3r23.pdf Section 7.6.3.1 Table 298
953 */
954 vpd->device_identifier_type = (page_83[1] & 0x0f);
955 return transport_dump_vpd_ident_type(vpd, NULL, 0);
956}
957EXPORT_SYMBOL(transport_set_vpd_ident_type);
958
959int transport_dump_vpd_ident(
960 struct t10_vpd *vpd,
961 unsigned char *p_buf,
962 int p_buf_len)
963{
964 unsigned char buf[VPD_TMP_BUF_SIZE];
965 int ret = 0;
966
967 memset(buf, 0, VPD_TMP_BUF_SIZE);
968
969 switch (vpd->device_identifier_code_set) {
970 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +0300971 snprintf(buf, sizeof(buf),
972 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800973 &vpd->device_identifier[0]);
974 break;
975 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +0300976 snprintf(buf, sizeof(buf),
977 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800978 &vpd->device_identifier[0]);
979 break;
980 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +0300981 snprintf(buf, sizeof(buf),
982 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800983 &vpd->device_identifier[0]);
984 break;
985 default:
986 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
987 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +0000988 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800989 break;
990 }
991
992 if (p_buf)
993 strncpy(p_buf, buf, p_buf_len);
994 else
Andy Grover6708bb22011-06-08 10:36:43 -0700995 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800996
997 return ret;
998}
999
1000int
1001transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
1002{
1003 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +09001004 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001005
1006 /*
1007 * The VPD Code Set (encoding)
1008 *
1009 * from spc3r23.pdf Section 7.6.3.1 Table 296
1010 */
1011 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
1012 switch (vpd->device_identifier_code_set) {
1013 case 0x01: /* Binary */
1014 vpd->device_identifier[j++] =
1015 hex_str[vpd->device_identifier_type];
1016 while (i < (4 + page_83[3])) {
1017 vpd->device_identifier[j++] =
1018 hex_str[(page_83[i] & 0xf0) >> 4];
1019 vpd->device_identifier[j++] =
1020 hex_str[page_83[i] & 0x0f];
1021 i++;
1022 }
1023 break;
1024 case 0x02: /* ASCII */
1025 case 0x03: /* UTF-8 */
1026 while (i < (4 + page_83[3]))
1027 vpd->device_identifier[j++] = page_83[i++];
1028 break;
1029 default:
1030 break;
1031 }
1032
1033 return transport_dump_vpd_ident(vpd, NULL, 0);
1034}
1035EXPORT_SYMBOL(transport_set_vpd_ident);
1036
Christoph Hellwigde103c92012-11-06 12:24:09 -08001037sense_reason_t
1038target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001039{
1040 struct se_device *dev = cmd->se_dev;
1041
1042 if (cmd->unknown_data_length) {
1043 cmd->data_length = size;
1044 } else if (size != cmd->data_length) {
1045 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1046 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1047 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1048 cmd->data_length, size, cmd->t_task_cdb[0]);
1049
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001050 if (cmd->data_direction == DMA_TO_DEVICE) {
1051 pr_err("Rejecting underflow/overflow"
1052 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001053 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001054 }
1055 /*
1056 * Reject READ_* or WRITE_* with overflow/underflow for
1057 * type SCF_SCSI_DATA_CDB.
1058 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001059 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001060 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1061 " CDB on non 512-byte sector setup subsystem"
1062 " plugin: %s\n", dev->transport->name);
1063 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001064 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001065 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001066 /*
1067 * For the overflow case keep the existing fabric provided
1068 * ->data_length. Otherwise for the underflow case, reset
1069 * ->data_length to the smaller SCSI expected data transfer
1070 * length.
1071 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001072 if (size > cmd->data_length) {
1073 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1074 cmd->residual_count = (size - cmd->data_length);
1075 } else {
1076 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1077 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001078 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001079 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001080 }
1081
1082 return 0;
1083
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001084}
1085
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001086/*
1087 * Used by fabric modules containing a local struct se_cmd within their
1088 * fabric dependent per I/O descriptor.
1089 */
1090void transport_init_se_cmd(
1091 struct se_cmd *cmd,
1092 struct target_core_fabric_ops *tfo,
1093 struct se_session *se_sess,
1094 u32 data_length,
1095 int data_direction,
1096 int task_attr,
1097 unsigned char *sense_buffer)
1098{
Andy Grover5951146d2011-07-19 10:26:37 +00001099 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001100 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001101 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001102 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001103 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001104 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001105 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001106 spin_lock_init(&cmd->t_state_lock);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001107 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001108
1109 cmd->se_tfo = tfo;
1110 cmd->se_sess = se_sess;
1111 cmd->data_length = data_length;
1112 cmd->data_direction = data_direction;
1113 cmd->sam_task_attr = task_attr;
1114 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001115
1116 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001117}
1118EXPORT_SYMBOL(transport_init_se_cmd);
1119
Christoph Hellwigde103c92012-11-06 12:24:09 -08001120static sense_reason_t
1121transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001122{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001123 struct se_device *dev = cmd->se_dev;
1124
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001125 /*
1126 * Check if SAM Task Attribute emulation is enabled for this
1127 * struct se_device storage object
1128 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001129 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001130 return 0;
1131
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001132 if (cmd->sam_task_attr == MSG_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001133 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001134 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001135 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001136 }
1137 /*
1138 * Used to determine when ORDERED commands should go from
1139 * Dormant to Active status.
1140 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001141 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001142 smp_mb__after_atomic_inc();
Andy Grover6708bb22011-06-08 10:36:43 -07001143 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001144 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001145 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001146 return 0;
1147}
1148
Christoph Hellwigde103c92012-11-06 12:24:09 -08001149sense_reason_t
1150target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001152 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001153 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001154
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001155 /*
1156 * Ensure that the received CDB is less than the max (252 + 8) bytes
1157 * for VARIABLE_LENGTH_CMD
1158 */
1159 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001160 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001161 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1162 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001163 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001164 }
1165 /*
1166 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1167 * allocate the additional extended CDB buffer now.. Otherwise
1168 * setup the pointer from __t_task_cdb to t_task_cdb.
1169 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001170 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1171 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001172 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001173 if (!cmd->t_task_cdb) {
1174 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001175 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001176 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001177 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001178 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001179 }
1180 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001181 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001182 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001183 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001184 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001185 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001186
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001187 trace_target_sequencer_start(cmd);
1188
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001189 /*
1190 * Check for an existing UNIT ATTENTION condition
1191 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001192 ret = target_scsi3_ua_check(cmd);
1193 if (ret)
1194 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001195
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001196 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001197 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001198 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001199
Christoph Hellwigde103c92012-11-06 12:24:09 -08001200 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001201 if (ret) {
1202 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001203 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001204 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001205
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001206 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001207 if (ret)
1208 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001209
Christoph Hellwigde103c92012-11-06 12:24:09 -08001210 ret = transport_check_alloc_task_attr(cmd);
1211 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001212 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001213
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001214 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001215
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001216 spin_lock(&cmd->se_lun->lun_sep_lock);
1217 if (cmd->se_lun->lun_sep)
1218 cmd->se_lun->lun_sep->sep_stats.cmd_pdus++;
1219 spin_unlock(&cmd->se_lun->lun_sep_lock);
1220 return 0;
1221}
Andy Grovera12f41f2012-04-03 15:51:20 -07001222EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001223
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001224/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001225 * Used by fabric module frontends to queue tasks directly.
1226 * Many only be used from process context only
1227 */
1228int transport_handle_cdb_direct(
1229 struct se_cmd *cmd)
1230{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001231 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001232
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001233 if (!cmd->se_lun) {
1234 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001235 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001236 return -EINVAL;
1237 }
1238 if (in_interrupt()) {
1239 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001240 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001241 " from interrupt context\n");
1242 return -EINVAL;
1243 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001244 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001245 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1246 * outstanding descriptors are handled correctly during shutdown via
1247 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001248 *
1249 * Also, we don't take cmd->t_state_lock here as we only expect
1250 * this to be called for initial descriptor submission.
1251 */
1252 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001253 cmd->transport_state |= CMD_T_ACTIVE;
1254
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001255 /*
1256 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1257 * so follow TRANSPORT_NEW_CMD processing thread context usage
1258 * and call transport_generic_request_failure() if necessary..
1259 */
1260 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001261 if (ret)
1262 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001263 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001264}
1265EXPORT_SYMBOL(transport_handle_cdb_direct);
1266
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07001267sense_reason_t
Christoph Hellwigde103c92012-11-06 12:24:09 -08001268transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1269 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1270{
1271 if (!sgl || !sgl_count)
1272 return 0;
1273
1274 /*
1275 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1276 * scatterlists already have been set to follow what the fabric
1277 * passes for the original expected data transfer length.
1278 */
1279 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1280 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1281 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1282 return TCM_INVALID_CDB_FIELD;
1283 }
1284
1285 cmd->t_data_sg = sgl;
1286 cmd->t_data_nents = sgl_count;
1287
1288 if (sgl_bidi && sgl_bidi_count) {
1289 cmd->t_bidi_data_sg = sgl_bidi;
1290 cmd->t_bidi_data_nents = sgl_bidi_count;
1291 }
1292 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1293 return 0;
1294}
1295
Nicholas Bellingera0267572012-10-01 17:23:22 -07001296/*
1297 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1298 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001299 *
1300 * @se_cmd: command descriptor to submit
1301 * @se_sess: associated se_sess for endpoint
1302 * @cdb: pointer to SCSI CDB
1303 * @sense: pointer to SCSI sense buffer
1304 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1305 * @data_length: fabric expected data transfer length
1306 * @task_addr: SAM task attribute
1307 * @data_dir: DMA data direction
1308 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001309 * @sgl: struct scatterlist memory for unidirectional mapping
1310 * @sgl_count: scatterlist count for unidirectional mapping
1311 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1312 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingera6360782011-11-18 20:36:22 -08001313 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001314 * Returns non zero to signal active I/O shutdown failure. All other
1315 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1316 * but still return zero here.
1317 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001318 * This may only be called from process context, and also currently
1319 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001320 */
1321int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Nicholas Bellingera6360782011-11-18 20:36:22 -08001322 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001323 u32 data_length, int task_attr, int data_dir, int flags,
1324 struct scatterlist *sgl, u32 sgl_count,
1325 struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001326{
1327 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001328 sense_reason_t rc;
1329 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001330
1331 se_tpg = se_sess->se_tpg;
1332 BUG_ON(!se_tpg);
1333 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1334 BUG_ON(in_interrupt());
1335 /*
1336 * Initialize se_cmd for target operation. From this point
1337 * exceptions are handled by sending exception status via
1338 * target_core_fabric_ops->queue_status() callback
1339 */
1340 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1341 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001342 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1343 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001344 /*
1345 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1346 * se_sess->sess_cmd_list. A second kref_get here is necessary
1347 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1348 * kref_put() to happen during fabric packet acknowledgement.
1349 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001350 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1351 if (ret)
1352 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001353 /*
1354 * Signal bidirectional data payloads to target-core
1355 */
1356 if (flags & TARGET_SCF_BIDI_OP)
1357 se_cmd->se_cmd_flags |= SCF_BIDI;
1358 /*
1359 * Locate se_lun pointer and attach it to struct se_cmd
1360 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001361 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1362 if (rc) {
1363 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001364 target_put_sess_cmd(se_sess, se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001365 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001366 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001367
Andy Grovera12f41f2012-04-03 15:51:20 -07001368 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001369 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001370 transport_generic_request_failure(se_cmd, rc);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001371 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001372 }
Nicholas Bellingera0267572012-10-01 17:23:22 -07001373 /*
1374 * When a non zero sgl_count has been passed perform SGL passthrough
1375 * mapping for pre-allocated fabric memory instead of having target
1376 * core perform an internal SGL allocation..
1377 */
1378 if (sgl_count != 0) {
1379 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001380
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001381 /*
1382 * A work-around for tcm_loop as some userspace code via
1383 * scsi-generic do not memset their associated read buffers,
1384 * so go ahead and do that here for type non-data CDBs. Also
1385 * note that this is currently guaranteed to be a single SGL
1386 * for this case by target core in target_setup_cmd_from_cdb()
1387 * -> transport_generic_cmd_sequencer().
1388 */
1389 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1390 se_cmd->data_direction == DMA_FROM_DEVICE) {
1391 unsigned char *buf = NULL;
1392
1393 if (sgl)
1394 buf = kmap(sg_page(sgl)) + sgl->offset;
1395
1396 if (buf) {
1397 memset(buf, 0, sgl->length);
1398 kunmap(sg_page(sgl));
1399 }
1400 }
1401
Nicholas Bellingera0267572012-10-01 17:23:22 -07001402 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1403 sgl_bidi, sgl_bidi_count);
1404 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001405 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001406 return 0;
1407 }
1408 }
Andy Grover11e319e2012-04-03 15:51:28 -07001409 /*
1410 * Check if we need to delay processing because of ALUA
1411 * Active/NonOptimized primary access state..
1412 */
1413 core_alua_check_nonop_delay(se_cmd);
1414
Nicholas Bellingera6360782011-11-18 20:36:22 -08001415 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001416 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001417}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001418EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1419
1420/*
1421 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1422 *
1423 * @se_cmd: command descriptor to submit
1424 * @se_sess: associated se_sess for endpoint
1425 * @cdb: pointer to SCSI CDB
1426 * @sense: pointer to SCSI sense buffer
1427 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1428 * @data_length: fabric expected data transfer length
1429 * @task_addr: SAM task attribute
1430 * @data_dir: DMA data direction
1431 * @flags: flags for command submission from target_sc_flags_tables
1432 *
1433 * Returns non zero to signal active I/O shutdown failure. All other
1434 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1435 * but still return zero here.
1436 *
1437 * This may only be called from process context, and also currently
1438 * assumes internal allocation of fabric payload buffer by target-core.
1439 *
1440 * It also assumes interal target core SGL memory allocation.
1441 */
1442int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
1443 unsigned char *cdb, unsigned char *sense, u32 unpacked_lun,
1444 u32 data_length, int task_attr, int data_dir, int flags)
1445{
1446 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1447 unpacked_lun, data_length, task_attr, data_dir,
1448 flags, NULL, 0, NULL, 0);
1449}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001450EXPORT_SYMBOL(target_submit_cmd);
1451
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001452static void target_complete_tmr_failure(struct work_struct *work)
1453{
1454 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1455
1456 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1457 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc02013-01-02 12:47:59 -08001458
1459 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001460}
1461
Andy Groverea98d7f2012-01-19 13:39:21 -08001462/**
1463 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1464 * for TMR CDBs
1465 *
1466 * @se_cmd: command descriptor to submit
1467 * @se_sess: associated se_sess for endpoint
1468 * @sense: pointer to SCSI sense buffer
1469 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1470 * @fabric_context: fabric context for TMR req
1471 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001472 * @gfp: gfp type for caller
1473 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001474 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001475 *
1476 * Callable from all contexts.
1477 **/
1478
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001479int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Andy Groverea98d7f2012-01-19 13:39:21 -08001480 unsigned char *sense, u32 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001481 void *fabric_tmr_ptr, unsigned char tm_type,
1482 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001483{
1484 struct se_portal_group *se_tpg;
1485 int ret;
1486
1487 se_tpg = se_sess->se_tpg;
1488 BUG_ON(!se_tpg);
1489
1490 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1491 0, DMA_NONE, MSG_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001492 /*
1493 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1494 * allocation failure.
1495 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001496 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001497 if (ret < 0)
1498 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001499
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001500 if (tm_type == TMR_ABORT_TASK)
1501 se_cmd->se_tmr_req->ref_task_tag = tag;
1502
Andy Groverea98d7f2012-01-19 13:39:21 -08001503 /* See target_submit_cmd for commentary */
Roland Dreierbc187ea2012-07-16 11:04:40 -07001504 ret = target_get_sess_cmd(se_sess, se_cmd, (flags & TARGET_SCF_ACK_KREF));
1505 if (ret) {
1506 core_tmr_release_req(se_cmd->se_tmr_req);
1507 return ret;
1508 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001509
Andy Groverea98d7f2012-01-19 13:39:21 -08001510 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1511 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001512 /*
1513 * For callback during failure handling, push this work off
1514 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1515 */
1516 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1517 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001518 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001519 }
1520 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001521 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001522}
1523EXPORT_SYMBOL(target_submit_tmr);
1524
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001525/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001526 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001527 * has completed.
1528 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001529bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001530{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001531 bool was_active = false;
1532
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001533 if (cmd->transport_state & CMD_T_BUSY) {
1534 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001535 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1536
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001537 pr_debug("cmd %p waiting to complete\n", cmd);
1538 wait_for_completion(&cmd->task_stop_comp);
1539 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001540
1541 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001542 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1543 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001544 was_active = true;
1545 }
1546
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001547 return was_active;
1548}
1549
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001550/*
1551 * Handle SAM-esque emulation for generic transport request failures.
1552 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001553void transport_generic_request_failure(struct se_cmd *cmd,
1554 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001555{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001556 int ret = 0;
1557
Andy Grover6708bb22011-06-08 10:36:43 -07001558 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x"
Andy Grovere3d6f902011-07-19 08:55:10 +00001559 " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd),
Andy Grovera1d8b492011-05-02 17:12:10 -07001560 cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001561 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001562 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001563 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001564 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001565 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1566 (cmd->transport_state & CMD_T_STOP) != 0,
1567 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001568
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001569 /*
1570 * For SAM Task Attribute emulation for failed struct se_cmd
1571 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001572 transport_complete_task_attr(cmd);
Nicholas Bellingercf6d1f02013-08-21 19:34:43 -07001573 /*
1574 * Handle special case for COMPARE_AND_WRITE failure, where the
1575 * callback is expected to drop the per device ->caw_mutex.
1576 */
1577 if ((cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) &&
1578 cmd->transport_complete_callback)
1579 cmd->transport_complete_callback(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001580
Christoph Hellwigde103c92012-11-06 12:24:09 -08001581 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001582 case TCM_NON_EXISTENT_LUN:
1583 case TCM_UNSUPPORTED_SCSI_OPCODE:
1584 case TCM_INVALID_CDB_FIELD:
1585 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001586 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001587 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1588 case TCM_UNKNOWN_MODE_PAGE:
1589 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001590 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001591 case TCM_CHECK_CONDITION_ABORT_CMD:
1592 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1593 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001594 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001595 case TCM_OUT_OF_RESOURCES:
1596 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1597 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001598 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001599 /*
1600 * No SENSE Data payload for this case, set SCSI Status
1601 * and queue the response to $FABRIC_MOD.
1602 *
1603 * Uses linux/include/scsi/scsi.h SAM status codes defs
1604 */
1605 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1606 /*
1607 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1608 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1609 * CONFLICT STATUS.
1610 *
1611 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1612 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001613 if (cmd->se_sess &&
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001614 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2)
Andy Grovere3d6f902011-07-19 08:55:10 +00001615 core_scsi3_ua_allocate(cmd->se_sess->se_node_acl,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001616 cmd->orig_fe_lun, 0x2C,
1617 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1618
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001619 trace_target_cmd_complete(cmd);
1620 ret = cmd->se_tfo-> queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001621 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001622 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001623 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001624 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001625 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001626 cmd->t_task_cdb[0], sense_reason);
1627 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001628 break;
1629 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001630
Christoph Hellwigde103c92012-11-06 12:24:09 -08001631 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001632 if (ret == -EAGAIN || ret == -ENOMEM)
1633 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001634
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001635check_stop:
1636 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001637 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001638 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001639 return;
1640
1641queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001642 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1643 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001644}
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001645EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001646
Nicholas Bellinger76dde502013-08-21 16:04:10 -07001647void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001648{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001649 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001650
Christoph Hellwigde103c92012-11-06 12:24:09 -08001651 if (cmd->execute_cmd) {
1652 ret = cmd->execute_cmd(cmd);
1653 if (ret) {
1654 spin_lock_irq(&cmd->t_state_lock);
1655 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1656 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001657
Christoph Hellwigde103c92012-11-06 12:24:09 -08001658 transport_generic_request_failure(cmd, ret);
1659 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001660 }
1661}
1662
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001663static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001664{
1665 struct se_device *dev = cmd->se_dev;
1666
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001667 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1668 return false;
1669
1670 /*
1671 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1672 * to allow the passed struct se_cmd list of tasks to the front of the list.
1673 */
1674 switch (cmd->sam_task_attr) {
1675 case MSG_HEAD_TAG:
1676 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1677 "se_ordered_id: %u\n",
1678 cmd->t_task_cdb[0], cmd->se_ordered_id);
1679 return false;
1680 case MSG_ORDERED_TAG:
1681 atomic_inc(&dev->dev_ordered_sync);
1682 smp_mb__after_atomic_inc();
1683
1684 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1685 " se_ordered_id: %u\n",
1686 cmd->t_task_cdb[0], cmd->se_ordered_id);
1687
1688 /*
1689 * Execute an ORDERED command if no other older commands
1690 * exist that need to be completed first.
1691 */
1692 if (!atomic_read(&dev->simple_cmds))
1693 return false;
1694 break;
1695 default:
1696 /*
1697 * For SIMPLE and UNTAGGED Task Attribute commands
1698 */
1699 atomic_inc(&dev->simple_cmds);
1700 smp_mb__after_atomic_inc();
1701 break;
1702 }
1703
1704 if (atomic_read(&dev->dev_ordered_sync) == 0)
1705 return false;
1706
1707 spin_lock(&dev->delayed_cmd_lock);
1708 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1709 spin_unlock(&dev->delayed_cmd_lock);
1710
1711 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1712 " delayed CMD list, se_ordered_id: %u\n",
1713 cmd->t_task_cdb[0], cmd->sam_task_attr,
1714 cmd->se_ordered_id);
1715 return true;
1716}
1717
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001718void target_execute_cmd(struct se_cmd *cmd)
1719{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001720 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001721 * If the received CDB has aleady been aborted stop processing it here.
1722 */
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -08001723 if (transport_check_aborted_status(cmd, 1))
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001724 return;
1725
1726 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001727 * Determine if frontend context caller is requesting the stopping of
1728 * this command for frontend exceptions.
1729 */
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -08001730 spin_lock_irq(&cmd->t_state_lock);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001731 if (cmd->transport_state & CMD_T_STOP) {
1732 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08x\n",
1733 __func__, __LINE__,
1734 cmd->se_tfo->get_task_tag(cmd));
1735
1736 spin_unlock_irq(&cmd->t_state_lock);
1737 complete(&cmd->t_transport_stop_comp);
1738 return;
1739 }
1740
1741 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001742 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001743 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001744
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001745 if (target_handle_task_attr(cmd)) {
1746 spin_lock_irq(&cmd->t_state_lock);
1747 cmd->transport_state &= ~CMD_T_BUSY|CMD_T_SENT;
1748 spin_unlock_irq(&cmd->t_state_lock);
1749 return;
1750 }
1751
1752 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001753}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001754EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001755
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001756/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001757 * Process all commands up to the last received ORDERED task attribute which
1758 * requires another blocking boundary
1759 */
1760static void target_restart_delayed_cmds(struct se_device *dev)
1761{
1762 for (;;) {
1763 struct se_cmd *cmd;
1764
1765 spin_lock(&dev->delayed_cmd_lock);
1766 if (list_empty(&dev->delayed_cmd_list)) {
1767 spin_unlock(&dev->delayed_cmd_lock);
1768 break;
1769 }
1770
1771 cmd = list_entry(dev->delayed_cmd_list.next,
1772 struct se_cmd, se_delayed_node);
1773 list_del(&cmd->se_delayed_node);
1774 spin_unlock(&dev->delayed_cmd_lock);
1775
1776 __target_execute_cmd(cmd);
1777
1778 if (cmd->sam_task_attr == MSG_ORDERED_TAG)
1779 break;
1780 }
1781}
1782
1783/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001784 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001785 * and ordered cmds need to have their tasks added to the execution queue.
1786 */
1787static void transport_complete_task_attr(struct se_cmd *cmd)
1788{
Andy Grover5951146d2011-07-19 10:26:37 +00001789 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001790
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001791 if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV)
1792 return;
1793
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001794 if (cmd->sam_task_attr == MSG_SIMPLE_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001795 atomic_dec(&dev->simple_cmds);
1796 smp_mb__after_atomic_dec();
1797 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001798 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001799 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1800 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001801 } else if (cmd->sam_task_attr == MSG_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001802 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001803 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001804 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1805 cmd->se_ordered_id);
Nicholas Bellingere66ecd52011-05-19 20:19:14 -07001806 } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001807 atomic_dec(&dev->dev_ordered_sync);
1808 smp_mb__after_atomic_dec();
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001809
1810 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001811 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001812 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1813 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001814
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001815 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001816}
1817
Christoph Hellwige057f532011-10-17 13:56:41 -04001818static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001819{
1820 int ret = 0;
1821
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001822 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001823
1824 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001825 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001826 ret = cmd->se_tfo->queue_status(cmd);
1827 if (ret)
1828 goto out;
1829 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001830
1831 switch (cmd->data_direction) {
1832 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001833 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001834 ret = cmd->se_tfo->queue_data_in(cmd);
1835 break;
1836 case DMA_TO_DEVICE:
Nicholas Bellinger64577402013-08-21 14:39:19 -07001837 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001838 ret = cmd->se_tfo->queue_data_in(cmd);
1839 if (ret < 0)
Christoph Hellwige057f532011-10-17 13:56:41 -04001840 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001841 }
1842 /* Fall through for DMA_TO_DEVICE */
1843 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001844 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001845 ret = cmd->se_tfo->queue_status(cmd);
1846 break;
1847 default:
1848 break;
1849 }
1850
Christoph Hellwige057f532011-10-17 13:56:41 -04001851out:
1852 if (ret < 0) {
1853 transport_handle_queue_full(cmd, cmd->se_dev);
1854 return;
1855 }
1856 transport_lun_remove_cmd(cmd);
1857 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001858}
1859
1860static void transport_handle_queue_full(
1861 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001862 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001863{
1864 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001865 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
1866 atomic_inc(&dev->dev_qf_count);
1867 smp_mb__after_atomic_inc();
1868 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1869
1870 schedule_work(&cmd->se_dev->qf_work_queue);
1871}
1872
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001873static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001874{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001875 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001876 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001877
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001878 /*
1879 * Check if we need to move delayed/dormant tasks from cmds on the
1880 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1881 * Attribute.
1882 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001883 transport_complete_task_attr(cmd);
1884
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001885 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001886 * Check to schedule QUEUE_FULL work, or execute an existing
1887 * cmd->transport_qf_callback()
1888 */
1889 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
1890 schedule_work(&cmd->se_dev->qf_work_queue);
1891
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001892 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02001893 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001894 * the struct se_cmd in question.
1895 */
1896 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02001897 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001898 ret = transport_send_check_condition_and_sense(
1899 cmd, 0, 1);
1900 if (ret == -EAGAIN || ret == -ENOMEM)
1901 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001902
Paolo Bonzini27a27092012-09-05 17:09:14 +02001903 transport_lun_remove_cmd(cmd);
1904 transport_cmd_check_stop_to_fabric(cmd);
1905 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001906 }
1907 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001908 * Check for a callback, used by amongst other things
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001909 * XDWRITE_READ_10 and COMPARE_AND_WRITE emulation.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001910 */
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001911 if (cmd->transport_complete_callback) {
1912 sense_reason_t rc;
1913
1914 rc = cmd->transport_complete_callback(cmd);
Nicholas Bellingera2890082013-08-21 18:10:04 -07001915 if (!rc && !(cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE_POST)) {
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001916 return;
Nicholas Bellingera2890082013-08-21 18:10:04 -07001917 } else if (rc) {
1918 ret = transport_send_check_condition_and_sense(cmd,
1919 rc, 0);
1920 if (ret == -EAGAIN || ret == -ENOMEM)
1921 goto queue_full;
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001922
Nicholas Bellingera2890082013-08-21 18:10:04 -07001923 transport_lun_remove_cmd(cmd);
1924 transport_cmd_check_stop_to_fabric(cmd);
1925 return;
1926 }
Nicholas Bellingera6b01332013-08-19 14:34:17 -07001927 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001928
1929 switch (cmd->data_direction) {
1930 case DMA_FROM_DEVICE:
1931 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001932 if (cmd->se_lun->lun_sep) {
1933 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001934 cmd->data_length;
1935 }
1936 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001937
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001938 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001939 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001940 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001941 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001942 break;
1943 case DMA_TO_DEVICE:
1944 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001945 if (cmd->se_lun->lun_sep) {
1946 cmd->se_lun->lun_sep->sep_stats.rx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001947 cmd->data_length;
1948 }
1949 spin_unlock(&cmd->se_lun->lun_sep_lock);
1950 /*
1951 * Check if we need to send READ payload for BIDI-COMMAND
1952 */
Nicholas Bellinger64577402013-08-21 14:39:19 -07001953 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001954 spin_lock(&cmd->se_lun->lun_sep_lock);
Andy Grovere3d6f902011-07-19 08:55:10 +00001955 if (cmd->se_lun->lun_sep) {
1956 cmd->se_lun->lun_sep->sep_stats.tx_data_octets +=
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001957 cmd->data_length;
1958 }
1959 spin_unlock(&cmd->se_lun->lun_sep_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001960 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001961 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001962 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001963 break;
1964 }
1965 /* Fall through for DMA_TO_DEVICE */
1966 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001967 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001968 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001969 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001970 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001971 break;
1972 default:
1973 break;
1974 }
1975
1976 transport_lun_remove_cmd(cmd);
1977 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001978 return;
1979
1980queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07001981 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001982 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04001983 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1984 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001985}
1986
Andy Grover6708bb22011-06-08 10:36:43 -07001987static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001988{
Andy Groverec98f782011-07-20 19:28:46 +00001989 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00001990 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991
Andy Grover6708bb22011-06-08 10:36:43 -07001992 for_each_sg(sgl, sg, nents, count)
1993 __free_page(sg_page(sg));
1994
1995 kfree(sgl);
1996}
1997
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07001998static inline void transport_reset_sgl_orig(struct se_cmd *cmd)
1999{
2000 /*
2001 * Check for saved t_data_sg that may be used for COMPARE_AND_WRITE
2002 * emulation, and free + reset pointers if necessary..
2003 */
2004 if (!cmd->t_data_sg_orig)
2005 return;
2006
2007 kfree(cmd->t_data_sg);
2008 cmd->t_data_sg = cmd->t_data_sg_orig;
2009 cmd->t_data_sg_orig = NULL;
2010 cmd->t_data_nents = cmd->t_data_nents_orig;
2011 cmd->t_data_nents_orig = 0;
2012}
2013
Andy Grover6708bb22011-06-08 10:36:43 -07002014static inline void transport_free_pages(struct se_cmd *cmd)
2015{
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002016 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) {
2017 transport_reset_sgl_orig(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002018 return;
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002019 }
2020 transport_reset_sgl_orig(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002021
Andy Grover6708bb22011-06-08 10:36:43 -07002022 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002023 cmd->t_data_sg = NULL;
2024 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002025
Andy Grover6708bb22011-06-08 10:36:43 -07002026 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002027 cmd->t_bidi_data_sg = NULL;
2028 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002029}
2030
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002031/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002032 * transport_release_cmd - free a command
2033 * @cmd: command to free
2034 *
2035 * This routine unconditionally frees a command, and reference counting
2036 * or list removal must be done in the caller.
2037 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002038static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002039{
2040 BUG_ON(!cmd->se_tfo);
2041
Andy Groverc8e31f22012-01-19 13:39:17 -08002042 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002043 core_tmr_release_req(cmd->se_tmr_req);
2044 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2045 kfree(cmd->t_task_cdb);
2046 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002047 * If this cmd has been setup with target_get_sess_cmd(), drop
2048 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002049 */
Nicholas Bellingerca249762013-06-06 02:06:14 -07002050 return target_put_sess_cmd(cmd->se_sess, cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002051}
2052
2053/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002054 * transport_put_cmd - release a reference to a command
2055 * @cmd: command to release
2056 *
2057 * This routine releases our reference to the command and frees it if possible.
2058 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002059static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002060{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002061 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002062 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002063}
2064
Andy Grover49493142012-01-16 16:57:08 -08002065void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002066{
Andy Groverec98f782011-07-20 19:28:46 +00002067 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002068 struct page **pages;
2069 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002070
Andy Grover05d1c7c2011-07-20 19:13:28 +00002071 /*
Andy Groverec98f782011-07-20 19:28:46 +00002072 * We need to take into account a possible offset here for fabrics like
2073 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2074 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002075 */
Andy Grover49493142012-01-16 16:57:08 -08002076 if (!cmd->t_data_nents)
2077 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002078
2079 BUG_ON(!sg);
2080 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002081 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002082
Andy Grover49493142012-01-16 16:57:08 -08002083 /* >1 page. use vmap */
2084 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002085 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002086 return NULL;
2087
2088 /* convert sg[] to pages[] */
2089 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2090 pages[i] = sg_page(sg);
2091 }
2092
2093 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2094 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002095 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002096 return NULL;
2097
2098 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002099}
Andy Grover49493142012-01-16 16:57:08 -08002100EXPORT_SYMBOL(transport_kmap_data_sg);
2101
2102void transport_kunmap_data_sg(struct se_cmd *cmd)
2103{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002104 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002105 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002106 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002107 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002108 return;
2109 }
Andy Grover49493142012-01-16 16:57:08 -08002110
2111 vunmap(cmd->t_data_vmap);
2112 cmd->t_data_vmap = NULL;
2113}
2114EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002115
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07002116int
Nicholas Bellinger20093992013-08-25 15:44:03 -07002117target_alloc_sgl(struct scatterlist **sgl, unsigned int *nents, u32 length,
2118 bool zero_page)
Andy Grover05d1c7c2011-07-20 19:13:28 +00002119{
Nicholas Bellinger20093992013-08-25 15:44:03 -07002120 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002121 struct page *page;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002122 gfp_t zero_flag = (zero_page) ? __GFP_ZERO : 0;
2123 unsigned int nent;
Andy Groverec98f782011-07-20 19:28:46 +00002124 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002125
Nicholas Bellinger20093992013-08-25 15:44:03 -07002126 nent = DIV_ROUND_UP(length, PAGE_SIZE);
2127 sg = kmalloc(sizeof(struct scatterlist) * nent, GFP_KERNEL);
2128 if (!sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002129 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002130
Nicholas Bellinger20093992013-08-25 15:44:03 -07002131 sg_init_table(sg, nent);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002132
Andy Groverec98f782011-07-20 19:28:46 +00002133 while (length) {
2134 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002135 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002136 if (!page)
2137 goto out;
2138
Nicholas Bellinger20093992013-08-25 15:44:03 -07002139 sg_set_page(&sg[i], page, page_len, 0);
Andy Groverec98f782011-07-20 19:28:46 +00002140 length -= page_len;
2141 i++;
2142 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002143 *sgl = sg;
2144 *nents = nent;
Andy Groverec98f782011-07-20 19:28:46 +00002145 return 0;
2146
2147out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002148 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002149 i--;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002150 __free_page(sg_page(&sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002151 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002152 kfree(sg);
Andy Groverec98f782011-07-20 19:28:46 +00002153 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002154}
2155
Andy Grovera1d8b492011-05-02 17:12:10 -07002156/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002157 * Allocate any required resources to execute the command. For writes we
2158 * might not have the payload yet, so notify the fabric via a call to
2159 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002160 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002161sense_reason_t
2162transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002163{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002164 int ret = 0;
2165
2166 /*
2167 * Determine is the TCM fabric module has already allocated physical
2168 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002169 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002170 */
Andy Groverec98f782011-07-20 19:28:46 +00002171 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2172 cmd->data_length) {
Nicholas Bellinger20093992013-08-25 15:44:03 -07002173 bool zero_flag = !(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB);
2174
Nicholas Bellinger8cefe072013-08-25 16:10:57 -07002175 if ((cmd->se_cmd_flags & SCF_BIDI) ||
2176 (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)) {
2177 u32 bidi_length;
2178
2179 if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)
2180 bidi_length = cmd->t_task_nolb *
2181 cmd->se_dev->dev_attrib.block_size;
2182 else
2183 bidi_length = cmd->data_length;
2184
2185 ret = target_alloc_sgl(&cmd->t_bidi_data_sg,
2186 &cmd->t_bidi_data_nents,
2187 bidi_length, zero_flag);
2188 if (ret < 0)
2189 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2190 }
2191
Nicholas Bellinger20093992013-08-25 15:44:03 -07002192 ret = target_alloc_sgl(&cmd->t_data_sg, &cmd->t_data_nents,
2193 cmd->data_length, zero_flag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002194 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002195 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002196 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002197 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002198 * If this command is not a write we can execute it right here,
2199 * for write buffers we need to notify the fabric driver first
2200 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002201 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002202 target_add_to_state_list(cmd);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002203 if (cmd->data_direction != DMA_TO_DEVICE) {
2204 target_execute_cmd(cmd);
2205 return 0;
2206 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002207 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002208
2209 ret = cmd->se_tfo->write_pending(cmd);
2210 if (ret == -EAGAIN || ret == -ENOMEM)
2211 goto queue_full;
2212
Christoph Hellwigde103c92012-11-06 12:24:09 -08002213 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2214 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002215
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002216 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002217
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002218queue_full:
2219 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2220 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2221 transport_handle_queue_full(cmd, cmd->se_dev);
2222 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002223}
Andy Grovera1d8b492011-05-02 17:12:10 -07002224EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002225
Christoph Hellwige057f532011-10-17 13:56:41 -04002226static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002227{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002228 int ret;
2229
2230 ret = cmd->se_tfo->write_pending(cmd);
2231 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002232 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2233 cmd);
2234 transport_handle_queue_full(cmd, cmd->se_dev);
2235 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002236}
2237
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002238int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002239{
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002240 unsigned long flags;
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002241 int ret = 0;
2242
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002243 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002244 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002245 transport_wait_for_tasks(cmd);
2246
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002247 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002248 } else {
2249 if (wait_for_tasks)
2250 transport_wait_for_tasks(cmd);
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002251 /*
2252 * Handle WRITE failure case where transport_generic_new_cmd()
2253 * has already added se_cmd to state_list, but fabric has
2254 * failed command before I/O submission.
2255 */
2256 if (cmd->state_active) {
2257 spin_lock_irqsave(&cmd->t_state_lock, flags);
2258 target_remove_from_state_list(cmd);
2259 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2260 }
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002261
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002262 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002263 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002264
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002265 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002266 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002267 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002268}
2269EXPORT_SYMBOL(transport_generic_free_cmd);
2270
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002271/* target_get_sess_cmd - Add command to active ->sess_cmd_list
2272 * @se_sess: session to reference
2273 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002274 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002275 */
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002276int target_get_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd,
Roland Dreierbc187ea2012-07-16 11:04:40 -07002277 bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002278{
2279 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002280 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002281
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002282 kref_init(&se_cmd->cmd_kref);
Nicholas Bellingera6360782011-11-18 20:36:22 -08002283 /*
2284 * Add a second kref if the fabric caller is expecting to handle
2285 * fabric acknowledgement that requires two target_put_sess_cmd()
2286 * invocations before se_cmd descriptor release.
2287 */
Nicholas Bellinger86715562012-02-13 01:07:22 -08002288 if (ack_kref == true) {
Nicholas Bellingera6360782011-11-18 20:36:22 -08002289 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger86715562012-02-13 01:07:22 -08002290 se_cmd->se_cmd_flags |= SCF_ACK_KREF;
2291 }
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002292
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002293 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002294 if (se_sess->sess_tearing_down) {
2295 ret = -ESHUTDOWN;
2296 goto out;
2297 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002298 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002299out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002300 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002301 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002302}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002303EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002304
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002305static void target_release_cmd_kref(struct kref *kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002306{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002307 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2308 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002309
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002310 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002311 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002312 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002313 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002314 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002315 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002316 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002317 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002318 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002319 }
2320 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002321 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002322
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002323 se_cmd->se_tfo->release_cmd(se_cmd);
2324}
2325
2326/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
2327 * @se_sess: session to reference
2328 * @se_cmd: command descriptor to drop
2329 */
2330int target_put_sess_cmd(struct se_session *se_sess, struct se_cmd *se_cmd)
2331{
Joern Engelccf5ae82013-05-13 16:30:06 -04002332 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2333 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002334}
2335EXPORT_SYMBOL(target_put_sess_cmd);
2336
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002337/* target_sess_cmd_list_set_waiting - Flag all commands in
2338 * sess_cmd_list to complete cmd_wait_comp. Set
2339 * sess_tearing_down so no more commands are queued.
2340 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002341 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002342void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002343{
2344 struct se_cmd *se_cmd;
2345 unsigned long flags;
2346
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002347 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002348 if (se_sess->sess_tearing_down) {
2349 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2350 return;
2351 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002352 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002353 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002354
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002355 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002356 se_cmd->cmd_wait_set = 1;
2357
2358 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2359}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002360EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002361
2362/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2363 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002364 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002365void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002366{
2367 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002368 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002369
2370 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002371 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002372 list_del(&se_cmd->se_cmd_list);
2373
2374 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2375 " %d\n", se_cmd, se_cmd->t_state,
2376 se_cmd->se_tfo->get_cmd_state(se_cmd));
2377
Joern Engelbe646c2d2013-05-15 00:44:07 -07002378 wait_for_completion(&se_cmd->cmd_wait_comp);
2379 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2380 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2381 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002382
2383 se_cmd->se_tfo->release_cmd(se_cmd);
2384 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002385
2386 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2387 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2388 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2389
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002390}
2391EXPORT_SYMBOL(target_wait_for_sess_cmds);
2392
Nicholas Bellinger52777972013-11-06 21:03:43 -08002393static int transport_clear_lun_ref_thread(void *p)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002394{
Jörn Engel8359cf42011-11-24 02:05:51 +01002395 struct se_lun *lun = p;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002396
Nicholas Bellinger52777972013-11-06 21:03:43 -08002397 percpu_ref_kill(&lun->lun_ref);
2398
2399 wait_for_completion(&lun->lun_ref_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002400 complete(&lun->lun_shutdown_comp);
2401
2402 return 0;
2403}
2404
Nicholas Bellinger52777972013-11-06 21:03:43 -08002405int transport_clear_lun_ref(struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002406{
2407 struct task_struct *kt;
2408
Nicholas Bellinger52777972013-11-06 21:03:43 -08002409 kt = kthread_run(transport_clear_lun_ref_thread, lun,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002410 "tcm_cl_%u", lun->unpacked_lun);
2411 if (IS_ERR(kt)) {
Andy Grover6708bb22011-06-08 10:36:43 -07002412 pr_err("Unable to start clear_lun thread\n");
Andy Grovere3d6f902011-07-19 08:55:10 +00002413 return PTR_ERR(kt);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002414 }
2415 wait_for_completion(&lun->lun_shutdown_comp);
2416
2417 return 0;
2418}
2419
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002420/**
2421 * transport_wait_for_tasks - wait for completion to occur
2422 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002423 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002424 * Called from frontend fabric context to wait for storage engine
2425 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002426 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002427bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002428{
2429 unsigned long flags;
2430
Andy Grovera1d8b492011-05-02 17:12:10 -07002431 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002432 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2433 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002434 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002435 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002436 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002437
Andy Groverc8e31f22012-01-19 13:39:17 -08002438 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2439 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002440 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002441 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002442 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002443
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002444 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002445 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002446 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002447 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002448
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002449 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002450
Andy Grover6708bb22011-06-08 10:36:43 -07002451 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x"
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002452 " i_state: %d, t_state: %d, CMD_T_STOP\n",
Christoph Hellwigf2da9db2011-10-17 13:56:51 -04002453 cmd, cmd->se_tfo->get_task_tag(cmd),
2454 cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002455
Andy Grovera1d8b492011-05-02 17:12:10 -07002456 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002457
Andy Grovera1d8b492011-05-02 17:12:10 -07002458 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002459
Andy Grovera1d8b492011-05-02 17:12:10 -07002460 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002461 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002462
Masanari Iida35d1efe2012-08-16 22:43:13 +09002463 pr_debug("wait_for_tasks: Stopped wait_for_completion("
Andy Grovera1d8b492011-05-02 17:12:10 -07002464 "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00002465 cmd->se_tfo->get_task_tag(cmd));
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002466
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002467 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002468
2469 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002470}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002471EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002472
2473static int transport_get_sense_codes(
2474 struct se_cmd *cmd,
2475 u8 *asc,
2476 u8 *ascq)
2477{
2478 *asc = cmd->scsi_asc;
2479 *ascq = cmd->scsi_ascq;
2480
2481 return 0;
2482}
2483
Christoph Hellwigde103c92012-11-06 12:24:09 -08002484int
2485transport_send_check_condition_and_sense(struct se_cmd *cmd,
2486 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002487{
2488 unsigned char *buffer = cmd->sense_buffer;
2489 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002490 u8 asc = 0, ascq = 0;
2491
Andy Grovera1d8b492011-05-02 17:12:10 -07002492 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002493 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002494 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002495 return 0;
2496 }
2497 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002498 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002499
2500 if (!reason && from_transport)
2501 goto after_reason;
2502
2503 if (!from_transport)
2504 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002505
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002506 /*
2507 * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses
2508 * SENSE KEY values from include/scsi/scsi.h
2509 */
2510 switch (reason) {
Hannes Reineckeba829132012-12-17 09:53:33 +01002511 case TCM_NO_SENSE:
2512 /* CURRENT ERROR */
2513 buffer[0] = 0x70;
2514 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2515 /* Not Ready */
2516 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
2517 /* NO ADDITIONAL SENSE INFORMATION */
2518 buffer[SPC_ASC_KEY_OFFSET] = 0;
2519 buffer[SPC_ASCQ_KEY_OFFSET] = 0;
2520 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002521 case TCM_NON_EXISTENT_LUN:
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002522 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002523 buffer[0] = 0x70;
2524 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002525 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002526 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002527 /* LOGICAL UNIT NOT SUPPORTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002528 buffer[SPC_ASC_KEY_OFFSET] = 0x25;
Nicholas Bellingereb39d342011-07-26 16:59:00 -07002529 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002530 case TCM_UNSUPPORTED_SCSI_OPCODE:
2531 case TCM_SECTOR_COUNT_TOO_MANY:
2532 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002533 buffer[0] = 0x70;
2534 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002535 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002536 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002537 /* INVALID COMMAND OPERATION CODE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002538 buffer[SPC_ASC_KEY_OFFSET] = 0x20;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002539 break;
2540 case TCM_UNKNOWN_MODE_PAGE:
2541 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002542 buffer[0] = 0x70;
2543 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002544 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002545 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002546 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002547 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002548 break;
2549 case TCM_CHECK_CONDITION_ABORT_CMD:
2550 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002551 buffer[0] = 0x70;
2552 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002553 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002554 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002555 /* BUS DEVICE RESET FUNCTION OCCURRED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002556 buffer[SPC_ASC_KEY_OFFSET] = 0x29;
2557 buffer[SPC_ASCQ_KEY_OFFSET] = 0x03;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002558 break;
2559 case TCM_INCORRECT_AMOUNT_OF_DATA:
2560 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002561 buffer[0] = 0x70;
2562 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002563 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002564 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002565 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002566 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002567 /* NOT ENOUGH UNSOLICITED DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002568 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0d;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002569 break;
2570 case TCM_INVALID_CDB_FIELD:
2571 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002572 buffer[0] = 0x70;
2573 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002574 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002575 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002576 /* INVALID FIELD IN CDB */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002577 buffer[SPC_ASC_KEY_OFFSET] = 0x24;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002578 break;
2579 case TCM_INVALID_PARAMETER_LIST:
2580 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002581 buffer[0] = 0x70;
2582 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreier9fbc8902012-01-09 17:54:00 -08002583 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002584 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002585 /* INVALID FIELD IN PARAMETER LIST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002586 buffer[SPC_ASC_KEY_OFFSET] = 0x26;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002587 break;
Roland Dreierbb992e72013-02-08 15:18:39 -08002588 case TCM_PARAMETER_LIST_LENGTH_ERROR:
2589 /* CURRENT ERROR */
2590 buffer[0] = 0x70;
2591 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2592 /* ILLEGAL REQUEST */
2593 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
2594 /* PARAMETER LIST LENGTH ERROR */
2595 buffer[SPC_ASC_KEY_OFFSET] = 0x1a;
2596 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002597 case TCM_UNEXPECTED_UNSOLICITED_DATA:
2598 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002599 buffer[0] = 0x70;
2600 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002602 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002603 /* WRITE ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002604 buffer[SPC_ASC_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002605 /* UNEXPECTED_UNSOLICITED_DATA */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002606 buffer[SPC_ASCQ_KEY_OFFSET] = 0x0c;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002607 break;
2608 case TCM_SERVICE_CRC_ERROR:
2609 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002610 buffer[0] = 0x70;
2611 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002612 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002613 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002614 /* PROTOCOL SERVICE CRC ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002615 buffer[SPC_ASC_KEY_OFFSET] = 0x47;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002616 /* N/A */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002617 buffer[SPC_ASCQ_KEY_OFFSET] = 0x05;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002618 break;
2619 case TCM_SNACK_REJECTED:
2620 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002621 buffer[0] = 0x70;
2622 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002623 /* ABORTED COMMAND */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002624 buffer[SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002625 /* READ ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002626 buffer[SPC_ASC_KEY_OFFSET] = 0x11;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002627 /* FAILED RETRANSMISSION REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002628 buffer[SPC_ASCQ_KEY_OFFSET] = 0x13;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002629 break;
2630 case TCM_WRITE_PROTECTED:
2631 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002632 buffer[0] = 0x70;
2633 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002634 /* DATA PROTECT */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002635 buffer[SPC_SENSE_KEY_OFFSET] = DATA_PROTECT;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002636 /* WRITE PROTECTED */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002637 buffer[SPC_ASC_KEY_OFFSET] = 0x27;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002638 break;
Roland Dreiere2397c72012-07-16 15:34:21 -07002639 case TCM_ADDRESS_OUT_OF_RANGE:
2640 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002641 buffer[0] = 0x70;
2642 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Roland Dreiere2397c72012-07-16 15:34:21 -07002643 /* ILLEGAL REQUEST */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002644 buffer[SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST;
Roland Dreiere2397c72012-07-16 15:34:21 -07002645 /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002646 buffer[SPC_ASC_KEY_OFFSET] = 0x21;
Roland Dreiere2397c72012-07-16 15:34:21 -07002647 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002648 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
2649 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002650 buffer[0] = 0x70;
2651 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002652 /* UNIT ATTENTION */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002653 buffer[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002654 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002655 buffer[SPC_ASC_KEY_OFFSET] = asc;
2656 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002657 break;
2658 case TCM_CHECK_CONDITION_NOT_READY:
2659 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002660 buffer[0] = 0x70;
2661 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002662 /* Not Ready */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002663 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002664 transport_get_sense_codes(cmd, &asc, &ascq);
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002665 buffer[SPC_ASC_KEY_OFFSET] = asc;
2666 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002667 break;
Nicholas Bellinger818b5712013-08-19 15:10:38 -07002668 case TCM_MISCOMPARE_VERIFY:
2669 /* CURRENT ERROR */
2670 buffer[0] = 0x70;
2671 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
2672 buffer[SPC_SENSE_KEY_OFFSET] = MISCOMPARE;
2673 /* MISCOMPARE DURING VERIFY OPERATION */
2674 buffer[SPC_ASC_KEY_OFFSET] = 0x1d;
2675 buffer[SPC_ASCQ_KEY_OFFSET] = 0x00;
2676 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002677 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
2678 default:
2679 /* CURRENT ERROR */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002680 buffer[0] = 0x70;
2681 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 10;
Jörn Engelad673282013-03-18 18:30:31 -04002682 /*
2683 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2684 * Solaris initiators. Returning NOT READY instead means the
2685 * operations will be retried a finite number of times and we
2686 * can survive intermittent errors.
2687 */
2688 buffer[SPC_SENSE_KEY_OFFSET] = NOT_READY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002689 /* LOGICAL UNIT COMMUNICATION FAILURE */
Hannes Reinecke18a9df42012-12-17 09:53:32 +01002690 buffer[SPC_ASC_KEY_OFFSET] = 0x08;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002691 break;
2692 }
2693 /*
2694 * This code uses linux/include/scsi/scsi.h SAM status codes!
2695 */
2696 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2697 /*
2698 * Automatically padded, this value is encoded in the fabric's
2699 * data_length response PDU containing the SCSI defined sense data.
2700 */
Roland Dreier9c58b7d2012-08-15 14:35:25 -07002701 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002702
2703after_reason:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002704 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002705 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002706}
2707EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2708
2709int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2710{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002711 if (!(cmd->transport_state & CMD_T_ABORTED))
2712 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002713
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002714 if (!send_status || (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS))
2715 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002716
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002717 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08x\n",
2718 cmd->t_task_cdb[0], cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002719
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002720 cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS;
Nicholas Bellinger29f4c092013-11-13 14:39:14 -08002721 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002722 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002723 cmd->se_tfo->queue_status(cmd);
2724
2725 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002726}
2727EXPORT_SYMBOL(transport_check_aborted_status);
2728
2729void transport_send_task_abort(struct se_cmd *cmd)
2730{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002731 unsigned long flags;
2732
2733 spin_lock_irqsave(&cmd->t_state_lock, flags);
Roland Dreier3ea160b2012-11-16 08:06:16 -08002734 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION | SCF_SENT_DELAYED_TAS)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002735 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2736 return;
2737 }
2738 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2739
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002740 /*
2741 * If there are still expected incoming fabric WRITEs, we wait
2742 * until until they have completed before sending a TASK_ABORTED
2743 * response. This response with TASK_ABORTED status will be
2744 * queued back to fabric module by transport_check_aborted_status().
2745 */
2746 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002747 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002748 cmd->transport_state |= CMD_T_ABORTED;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002749 smp_mb__after_atomic_inc();
Nicholas Bellinger29f4c092013-11-13 14:39:14 -08002750 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002751 }
2752 }
2753 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002754
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002755 transport_lun_remove_cmd(cmd);
2756
Andy Grover6708bb22011-06-08 10:36:43 -07002757 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x,"
Andy Grovera1d8b492011-05-02 17:12:10 -07002758 " ITT: 0x%08x\n", cmd->t_task_cdb[0],
Andy Grovere3d6f902011-07-19 08:55:10 +00002759 cmd->se_tfo->get_task_tag(cmd));
Andy Grover8b1e1242012-04-03 15:51:12 -07002760
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002761 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002762 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002763}
2764
Christoph Hellwigaf877292012-07-08 15:58:49 -04002765static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002766{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002767 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002768 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002769 struct se_tmr_req *tmr = cmd->se_tmr_req;
2770 int ret;
2771
2772 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002773 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002774 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002775 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002776 case TMR_ABORT_TASK_SET:
2777 case TMR_CLEAR_ACA:
2778 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002779 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2780 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002781 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002782 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2783 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2784 TMR_FUNCTION_REJECTED;
2785 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002786 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002787 tmr->response = TMR_FUNCTION_REJECTED;
2788 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002789 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002790 tmr->response = TMR_FUNCTION_REJECTED;
2791 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002792 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002793 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002794 tmr->function);
2795 tmr->response = TMR_FUNCTION_REJECTED;
2796 break;
2797 }
2798
2799 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002800 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002801
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002802 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002803}
2804
Christoph Hellwigaf877292012-07-08 15:58:49 -04002805int transport_generic_handle_tmr(
2806 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002807{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002808 INIT_WORK(&cmd->work, target_tmr_work);
2809 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002810 return 0;
2811}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002812EXPORT_SYMBOL(transport_generic_handle_tmr);