blob: 6ef44c9db3813a9d7e3ec90bd444ae3a2d4e8bb8 [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>
David S. Miller5538d292015-05-28 11:35:41 -070037#include <linux/vmalloc.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080038#include <asm/unaligned.h>
39#include <net/sock.h>
40#include <net/tcp.h>
Bart Van Asscheba929992015-05-08 10:11:12 +020041#include <scsi/scsi_proto.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080042
43#include <target/target_core_base.h>
Christoph Hellwigc4795fb2011-11-16 09:46:48 -050044#include <target/target_core_backend.h>
45#include <target/target_core_fabric.h>
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080046
Christoph Hellwige26d99a2011-11-14 12:30:30 -050047#include "target_core_internal.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080048#include "target_core_alua.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080049#include "target_core_pr.h"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080050#include "target_core_ua.h"
51
Roland Dreiere5c0d6a2013-06-26 17:36:17 -070052#define CREATE_TRACE_POINTS
53#include <trace/events/target.h>
54
Christoph Hellwig35e0e752011-10-17 13:56:53 -040055static struct workqueue_struct *target_completion_wq;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080056static struct kmem_cache *se_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080057struct kmem_cache *se_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080058struct kmem_cache *t10_pr_reg_cache;
59struct kmem_cache *t10_alua_lu_gp_cache;
60struct kmem_cache *t10_alua_lu_gp_mem_cache;
61struct kmem_cache *t10_alua_tg_pt_gp_cache;
Hannes Reinecke229d4f12013-12-17 09:18:50 +010062struct kmem_cache *t10_alua_lba_map_cache;
63struct kmem_cache *t10_alua_lba_map_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080064
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080065static void transport_complete_task_attr(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -070066static void transport_handle_queue_full(struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -040067 struct se_device *dev);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -070068static int transport_put_cmd(struct se_cmd *cmd);
Christoph Hellwig35e0e752011-10-17 13:56:53 -040069static void target_complete_ok_work(struct work_struct *work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080070
Andy Grovere3d6f902011-07-19 08:55:10 +000071int init_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080072{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080073 se_sess_cache = kmem_cache_create("se_sess_cache",
74 sizeof(struct se_session), __alignof__(struct se_session),
75 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070076 if (!se_sess_cache) {
77 pr_err("kmem_cache_create() for struct se_session"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080078 " failed\n");
Andy Groverc8e31f22012-01-19 13:39:17 -080079 goto out;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080080 }
81 se_ua_cache = kmem_cache_create("se_ua_cache",
82 sizeof(struct se_ua), __alignof__(struct se_ua),
83 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070084 if (!se_ua_cache) {
85 pr_err("kmem_cache_create() for struct se_ua failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040086 goto out_free_sess_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080087 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080088 t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache",
89 sizeof(struct t10_pr_registration),
90 __alignof__(struct t10_pr_registration), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070091 if (!t10_pr_reg_cache) {
92 pr_err("kmem_cache_create() for struct t10_pr_registration"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080093 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -040094 goto out_free_ua_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -080095 }
96 t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache",
97 sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp),
98 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -070099 if (!t10_alua_lu_gp_cache) {
100 pr_err("kmem_cache_create() for t10_alua_lu_gp_cache"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800101 " failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400102 goto out_free_pr_reg_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800103 }
104 t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache",
105 sizeof(struct t10_alua_lu_gp_member),
106 __alignof__(struct t10_alua_lu_gp_member), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700107 if (!t10_alua_lu_gp_mem_cache) {
108 pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800109 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400110 goto out_free_lu_gp_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800111 }
112 t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache",
113 sizeof(struct t10_alua_tg_pt_gp),
114 __alignof__(struct t10_alua_tg_pt_gp), 0, NULL);
Andy Grover6708bb22011-06-08 10:36:43 -0700115 if (!t10_alua_tg_pt_gp_cache) {
116 pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800117 "cache failed\n");
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400118 goto out_free_lu_gp_mem_cache;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800119 }
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100120 t10_alua_lba_map_cache = kmem_cache_create(
121 "t10_alua_lba_map_cache",
122 sizeof(struct t10_alua_lba_map),
123 __alignof__(struct t10_alua_lba_map), 0, NULL);
124 if (!t10_alua_lba_map_cache) {
125 pr_err("kmem_cache_create() for t10_alua_lba_map_"
126 "cache failed\n");
Christoph Hellwigadf653f2015-05-25 21:33:08 -0700127 goto out_free_tg_pt_gp_cache;
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100128 }
129 t10_alua_lba_map_mem_cache = kmem_cache_create(
130 "t10_alua_lba_map_mem_cache",
131 sizeof(struct t10_alua_lba_map_member),
132 __alignof__(struct t10_alua_lba_map_member), 0, NULL);
133 if (!t10_alua_lba_map_mem_cache) {
134 pr_err("kmem_cache_create() for t10_alua_lba_map_mem_"
135 "cache failed\n");
136 goto out_free_lba_map_cache;
137 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800138
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400139 target_completion_wq = alloc_workqueue("target_completion",
140 WQ_MEM_RECLAIM, 0);
141 if (!target_completion_wq)
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100142 goto out_free_lba_map_mem_cache;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400143
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800144 return 0;
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400145
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100146out_free_lba_map_mem_cache:
147 kmem_cache_destroy(t10_alua_lba_map_mem_cache);
148out_free_lba_map_cache:
149 kmem_cache_destroy(t10_alua_lba_map_cache);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400150out_free_tg_pt_gp_cache:
151 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
152out_free_lu_gp_mem_cache:
153 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
154out_free_lu_gp_cache:
155 kmem_cache_destroy(t10_alua_lu_gp_cache);
156out_free_pr_reg_cache:
157 kmem_cache_destroy(t10_pr_reg_cache);
158out_free_ua_cache:
159 kmem_cache_destroy(se_ua_cache);
160out_free_sess_cache:
161 kmem_cache_destroy(se_sess_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800162out:
Andy Grovere3d6f902011-07-19 08:55:10 +0000163 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800164}
165
Andy Grovere3d6f902011-07-19 08:55:10 +0000166void release_se_kmem_caches(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800167{
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400168 destroy_workqueue(target_completion_wq);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800169 kmem_cache_destroy(se_sess_cache);
170 kmem_cache_destroy(se_ua_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800171 kmem_cache_destroy(t10_pr_reg_cache);
172 kmem_cache_destroy(t10_alua_lu_gp_cache);
173 kmem_cache_destroy(t10_alua_lu_gp_mem_cache);
174 kmem_cache_destroy(t10_alua_tg_pt_gp_cache);
Hannes Reinecke229d4f12013-12-17 09:18:50 +0100175 kmem_cache_destroy(t10_alua_lba_map_cache);
176 kmem_cache_destroy(t10_alua_lba_map_mem_cache);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800177}
178
Andy Grovere3d6f902011-07-19 08:55:10 +0000179/* This code ensures unique mib indexes are handed out. */
180static DEFINE_SPINLOCK(scsi_mib_index_lock);
181static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX];
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800182
183/*
184 * Allocate a new row index for the entry type specified
185 */
186u32 scsi_get_new_index(scsi_index_t type)
187{
188 u32 new_index;
189
Andy Grovere3d6f902011-07-19 08:55:10 +0000190 BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX));
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800191
Andy Grovere3d6f902011-07-19 08:55:10 +0000192 spin_lock(&scsi_mib_index_lock);
193 new_index = ++scsi_mib_index[type];
194 spin_unlock(&scsi_mib_index_lock);
Nicholas Bellingere89d15e2011-02-09 15:35:03 -0800195
196 return new_index;
197}
198
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700199void transport_subsystem_check_init(void)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800200{
201 int ret;
Andy Grover283669d2012-07-30 15:54:17 -0700202 static int sub_api_initialized;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800203
Nicholas Bellingerdbc56232011-10-22 01:03:54 -0700204 if (sub_api_initialized)
205 return;
206
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800207 ret = request_module("target_core_iblock");
208 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700209 pr_err("Unable to load target_core_iblock\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800210
211 ret = request_module("target_core_file");
212 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700213 pr_err("Unable to load target_core_file\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800214
215 ret = request_module("target_core_pscsi");
216 if (ret != 0)
Andy Grover6708bb22011-06-08 10:36:43 -0700217 pr_err("Unable to load target_core_pscsi\n");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800218
Andy Grover7c9e7a62014-10-01 16:07:05 -0700219 ret = request_module("target_core_user");
220 if (ret != 0)
221 pr_err("Unable to load target_core_user\n");
222
Andy Grovere3d6f902011-07-19 08:55:10 +0000223 sub_api_initialized = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800224}
225
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700226struct se_session *transport_init_session(enum target_prot_op sup_prot_ops)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800227{
228 struct se_session *se_sess;
229
230 se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -0700231 if (!se_sess) {
232 pr_err("Unable to allocate struct se_session from"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800233 " se_sess_cache\n");
234 return ERR_PTR(-ENOMEM);
235 }
236 INIT_LIST_HEAD(&se_sess->sess_list);
237 INIT_LIST_HEAD(&se_sess->sess_acl_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700238 INIT_LIST_HEAD(&se_sess->sess_cmd_list);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -0700239 INIT_LIST_HEAD(&se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -0700240 spin_lock_init(&se_sess->sess_cmd_lock);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800241 kref_init(&se_sess->sess_kref);
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700242 se_sess->sup_prot_ops = sup_prot_ops;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800243
244 return se_sess;
245}
246EXPORT_SYMBOL(transport_init_session);
247
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700248int transport_alloc_session_tags(struct se_session *se_sess,
249 unsigned int tag_num, unsigned int tag_size)
250{
251 int rc;
252
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700253 se_sess->sess_cmd_map = kzalloc(tag_num * tag_size,
254 GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700255 if (!se_sess->sess_cmd_map) {
Nicholas Bellinger8c7f6e92013-09-23 11:57:38 -0700256 se_sess->sess_cmd_map = vzalloc(tag_num * tag_size);
257 if (!se_sess->sess_cmd_map) {
258 pr_err("Unable to allocate se_sess->sess_cmd_map\n");
259 return -ENOMEM;
260 }
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700261 }
262
263 rc = percpu_ida_init(&se_sess->sess_tag_pool, tag_num);
264 if (rc < 0) {
265 pr_err("Unable to init se_sess->sess_tag_pool,"
266 " tag_num: %u\n", tag_num);
Pekka Enbergde64d3a2015-06-30 14:59:24 -0700267 kvfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700268 se_sess->sess_cmd_map = NULL;
269 return -ENOMEM;
270 }
271
272 return 0;
273}
274EXPORT_SYMBOL(transport_alloc_session_tags);
275
276struct se_session *transport_init_session_tags(unsigned int tag_num,
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700277 unsigned int tag_size,
278 enum target_prot_op sup_prot_ops)
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700279{
280 struct se_session *se_sess;
281 int rc;
282
Nicholas Bellingere70beee2014-04-02 12:52:38 -0700283 se_sess = transport_init_session(sup_prot_ops);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700284 if (IS_ERR(se_sess))
285 return se_sess;
286
287 rc = transport_alloc_session_tags(se_sess, tag_num, tag_size);
288 if (rc < 0) {
289 transport_free_session(se_sess);
290 return ERR_PTR(-ENOMEM);
291 }
292
293 return se_sess;
294}
295EXPORT_SYMBOL(transport_init_session_tags);
296
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800297/*
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700298 * Called with spin_lock_irqsave(&struct se_portal_group->session_lock called.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800299 */
300void __transport_register_session(
301 struct se_portal_group *se_tpg,
302 struct se_node_acl *se_nacl,
303 struct se_session *se_sess,
304 void *fabric_sess_ptr)
305{
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200306 const struct target_core_fabric_ops *tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800307 unsigned char buf[PR_REG_ISID_LEN];
308
309 se_sess->se_tpg = se_tpg;
310 se_sess->fabric_sess_ptr = fabric_sess_ptr;
311 /*
312 * Used by struct se_node_acl's under ConfigFS to locate active se_session-t
313 *
314 * Only set for struct se_session's that will actually be moving I/O.
315 * eg: *NOT* discovery sessions.
316 */
317 if (se_nacl) {
318 /*
Nicholas Bellingerbffb5122015-04-14 11:52:22 -0700319 *
320 * Determine if fabric allows for T10-PI feature bits exposed to
321 * initiators for device backends with !dev->dev_attrib.pi_prot_type.
322 *
323 * If so, then always save prot_type on a per se_node_acl node
324 * basis and re-instate the previous sess_prot_type to avoid
325 * disabling PI from below any previously initiator side
326 * registered LUNs.
327 */
328 if (se_nacl->saved_prot_type)
329 se_sess->sess_prot_type = se_nacl->saved_prot_type;
330 else if (tfo->tpg_check_prot_fabric_only)
331 se_sess->sess_prot_type = se_nacl->saved_prot_type =
332 tfo->tpg_check_prot_fabric_only(se_tpg);
333 /*
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800334 * If the fabric module supports an ISID based TransportID,
335 * save this value in binary from the fabric I_T Nexus now.
336 */
Andy Grovere3d6f902011-07-19 08:55:10 +0000337 if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800338 memset(&buf[0], 0, PR_REG_ISID_LEN);
Andy Grovere3d6f902011-07-19 08:55:10 +0000339 se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800340 &buf[0], PR_REG_ISID_LEN);
341 se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]);
342 }
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800343 kref_get(&se_nacl->acl_kref);
344
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800345 spin_lock_irq(&se_nacl->nacl_sess_lock);
346 /*
347 * The se_nacl->nacl_sess pointer will be set to the
348 * last active I_T Nexus for each struct se_node_acl.
349 */
350 se_nacl->nacl_sess = se_sess;
351
352 list_add_tail(&se_sess->sess_acl_list,
353 &se_nacl->acl_sess_list);
354 spin_unlock_irq(&se_nacl->nacl_sess_lock);
355 }
356 list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list);
357
Andy Grover6708bb22011-06-08 10:36:43 -0700358 pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000359 se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800360}
361EXPORT_SYMBOL(__transport_register_session);
362
363void transport_register_session(
364 struct se_portal_group *se_tpg,
365 struct se_node_acl *se_nacl,
366 struct se_session *se_sess,
367 void *fabric_sess_ptr)
368{
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700369 unsigned long flags;
370
371 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800372 __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr);
Nicholas Bellinger140854c2011-08-31 12:34:39 -0700373 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800374}
375EXPORT_SYMBOL(transport_register_session);
376
Fengguang Wuecf0dd62012-10-10 07:30:20 +0800377static void target_release_session(struct kref *kref)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800378{
379 struct se_session *se_sess = container_of(kref,
380 struct se_session, sess_kref);
381 struct se_portal_group *se_tpg = se_sess->se_tpg;
382
383 se_tpg->se_tpg_tfo->close_session(se_sess);
384}
385
386void target_get_session(struct se_session *se_sess)
387{
388 kref_get(&se_sess->sess_kref);
389}
390EXPORT_SYMBOL(target_get_session);
391
Jörn Engel33933a02012-05-11 10:35:08 -0400392void target_put_session(struct se_session *se_sess)
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800393{
Jörn Engel33933a02012-05-11 10:35:08 -0400394 kref_put(&se_sess->sess_kref, target_release_session);
Nicholas Bellinger41ac82b2012-02-26 22:22:10 -0800395}
396EXPORT_SYMBOL(target_put_session);
397
Nicholas Bellingerf8e471f2015-03-06 20:34:32 -0800398ssize_t target_show_dynamic_sessions(struct se_portal_group *se_tpg, char *page)
399{
400 struct se_session *se_sess;
401 ssize_t len = 0;
402
403 spin_lock_bh(&se_tpg->session_lock);
404 list_for_each_entry(se_sess, &se_tpg->tpg_sess_list, sess_list) {
405 if (!se_sess->se_node_acl)
406 continue;
407 if (!se_sess->se_node_acl->dynamic_node_acl)
408 continue;
409 if (strlen(se_sess->se_node_acl->initiatorname) + 1 + len > PAGE_SIZE)
410 break;
411
412 len += snprintf(page + len, PAGE_SIZE - len, "%s\n",
413 se_sess->se_node_acl->initiatorname);
414 len += 1; /* Include NULL terminator */
415 }
416 spin_unlock_bh(&se_tpg->session_lock);
417
418 return len;
419}
420EXPORT_SYMBOL(target_show_dynamic_sessions);
421
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800422static void target_complete_nacl(struct kref *kref)
423{
424 struct se_node_acl *nacl = container_of(kref,
425 struct se_node_acl, acl_kref);
426
427 complete(&nacl->acl_free_comp);
428}
429
430void target_put_nacl(struct se_node_acl *nacl)
431{
432 kref_put(&nacl->acl_kref, target_complete_nacl);
433}
434
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800435void transport_deregister_session_configfs(struct se_session *se_sess)
436{
437 struct se_node_acl *se_nacl;
Roland Dreier23388862011-06-22 01:02:21 -0700438 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800439 /*
440 * Used by struct se_node_acl's under ConfigFS to locate active struct se_session
441 */
442 se_nacl = se_sess->se_node_acl;
Andy Grover6708bb22011-06-08 10:36:43 -0700443 if (se_nacl) {
Roland Dreier23388862011-06-22 01:02:21 -0700444 spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellinger337c0602012-03-10 14:36:21 -0800445 if (se_nacl->acl_stop == 0)
446 list_del(&se_sess->sess_acl_list);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800447 /*
448 * If the session list is empty, then clear the pointer.
449 * Otherwise, set the struct se_session pointer from the tail
450 * element of the per struct se_node_acl active session list.
451 */
452 if (list_empty(&se_nacl->acl_sess_list))
453 se_nacl->nacl_sess = NULL;
454 else {
455 se_nacl->nacl_sess = container_of(
456 se_nacl->acl_sess_list.prev,
457 struct se_session, sess_acl_list);
458 }
Roland Dreier23388862011-06-22 01:02:21 -0700459 spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800460 }
461}
462EXPORT_SYMBOL(transport_deregister_session_configfs);
463
464void transport_free_session(struct se_session *se_sess)
465{
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700466 if (se_sess->sess_cmd_map) {
467 percpu_ida_destroy(&se_sess->sess_tag_pool);
Pekka Enbergde64d3a2015-06-30 14:59:24 -0700468 kvfree(se_sess->sess_cmd_map);
Nicholas Bellingerc0add7f2013-06-07 17:38:58 -0700469 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800470 kmem_cache_free(se_sess_cache, se_sess);
471}
472EXPORT_SYMBOL(transport_free_session);
473
474void transport_deregister_session(struct se_session *se_sess)
475{
476 struct se_portal_group *se_tpg = se_sess->se_tpg;
Christoph Hellwig9ac89282015-04-08 20:01:35 +0200477 const struct target_core_fabric_ops *se_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800478 struct se_node_acl *se_nacl;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700479 unsigned long flags;
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000480 bool comp_nacl = true, drop_nacl = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800481
Andy Grover6708bb22011-06-08 10:36:43 -0700482 if (!se_tpg) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800483 transport_free_session(se_sess);
484 return;
485 }
Nicholas Bellinger01468342012-03-10 14:32:52 -0800486 se_tfo = se_tpg->se_tpg_tfo;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800487
Roland Dreiere63a8e12011-08-12 16:01:02 -0700488 spin_lock_irqsave(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800489 list_del(&se_sess->sess_list);
490 se_sess->se_tpg = NULL;
491 se_sess->fabric_sess_ptr = NULL;
Roland Dreiere63a8e12011-08-12 16:01:02 -0700492 spin_unlock_irqrestore(&se_tpg->session_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800493
494 /*
495 * Determine if we need to do extra work for this initiator node's
496 * struct se_node_acl if it had been previously dynamically generated.
497 */
498 se_nacl = se_sess->se_node_acl;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800499
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000500 mutex_lock(&se_tpg->acl_node_mutex);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800501 if (se_nacl && se_nacl->dynamic_node_acl) {
502 if (!se_tfo->tpg_check_demo_mode_cache(se_tpg)) {
503 list_del(&se_nacl->acl_list);
504 se_tpg->num_node_acls--;
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000505 drop_nacl = true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800506 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800507 }
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000508 mutex_unlock(&se_tpg->acl_node_mutex);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800509
Nicholas Bellinger403edd72015-03-08 22:33:47 +0000510 if (drop_nacl) {
511 core_tpg_wait_for_nacl_pr_ref(se_nacl);
512 core_free_device_list_for_node(se_nacl, se_tpg);
513 kfree(se_nacl);
514 comp_nacl = false;
515 }
Andy Grover6708bb22011-06-08 10:36:43 -0700516 pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n",
Andy Grovere3d6f902011-07-19 08:55:10 +0000517 se_tpg->se_tpg_tfo->get_fabric_name());
Nicholas Bellinger01468342012-03-10 14:32:52 -0800518 /*
Hannes Reinecke125d0112013-11-19 09:07:46 +0100519 * If last kref is dropping now for an explicit NodeACL, awake sleeping
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800520 * ->acl_free_comp caller to wakeup configfs se_node_acl->acl_group
521 * removal context.
Nicholas Bellinger01468342012-03-10 14:32:52 -0800522 */
Christophe Vu-Brugier0bcc2972014-06-06 17:15:16 +0200523 if (se_nacl && comp_nacl)
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800524 target_put_nacl(se_nacl);
Nicholas Bellinger01468342012-03-10 14:32:52 -0800525
Nicholas Bellingerafb999f2012-03-08 23:45:02 -0800526 transport_free_session(se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800527}
528EXPORT_SYMBOL(transport_deregister_session);
529
530/*
Andy Grovera1d8b492011-05-02 17:12:10 -0700531 * Called with cmd->t_state_lock held.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800532 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400533static void target_remove_from_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800534{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400535 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800536 unsigned long flags;
537
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400538 if (!dev)
539 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800540
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400541 if (cmd->transport_state & CMD_T_BUSY)
542 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800543
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400544 spin_lock_irqsave(&dev->execute_task_lock, flags);
545 if (cmd->state_active) {
546 list_del(&cmd->state_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400547 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800548 }
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400549 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800550}
551
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700552static int transport_cmd_check_stop(struct se_cmd *cmd, bool remove_from_lists,
553 bool write_pending)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800554{
555 unsigned long flags;
556
Andy Grovera1d8b492011-05-02 17:12:10 -0700557 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700558 if (write_pending)
559 cmd->t_state = TRANSPORT_WRITE_PENDING;
560
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400561 if (remove_from_lists) {
562 target_remove_from_state_list(cmd);
563
564 /*
565 * Clear struct se_cmd->se_lun before the handoff to FE.
566 */
567 cmd->se_lun = NULL;
568 }
569
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800570 /*
571 * Determine if frontend context caller is requesting the stopping of
Andy Grovere3d6f902011-07-19 08:55:10 +0000572 * this command for frontend exceptions.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800573 */
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -0500574 if (cmd->transport_state & CMD_T_STOP) {
Bart Van Assche649ee052015-04-14 13:26:44 +0200575 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08llx\n",
576 __func__, __LINE__, cmd->tag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800577
Andy Grovera1d8b492011-05-02 17:12:10 -0700578 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800579
Nicholas Bellingera95d6512014-06-09 23:36:51 +0000580 complete_all(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800581 return 1;
582 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800583
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400584 cmd->transport_state &= ~CMD_T_ACTIVE;
585 if (remove_from_lists) {
586 /*
587 * Some fabric modules like tcm_loop can release
588 * their internally allocated I/O reference now and
589 * struct se_cmd now.
590 *
591 * Fabric modules are expected to return '1' here if the
592 * se_cmd being passed is released at this point,
593 * or zero if not being released.
594 */
595 if (cmd->se_tfo->check_stop_free != NULL) {
596 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
597 return cmd->se_tfo->check_stop_free(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800598 }
Christoph Hellwigf7113a42012-07-08 15:58:38 -0400599 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800600
Andy Grovera1d8b492011-05-02 17:12:10 -0700601 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800602 return 0;
603}
604
605static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd)
606{
Nicholas Bellinger862e6382013-06-06 01:35:18 -0700607 return transport_cmd_check_stop(cmd, true, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800608}
609
610static void transport_lun_remove_cmd(struct se_cmd *cmd)
611{
Andy Grovere3d6f902011-07-19 08:55:10 +0000612 struct se_lun *lun = cmd->se_lun;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800613
Nicholas Bellinger5259a062014-01-28 17:56:30 -0800614 if (!lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800615 return;
616
Nicholas Bellinger5259a062014-01-28 17:56:30 -0800617 if (cmpxchg(&cmd->lun_ref_active, true, false))
618 percpu_ref_put(&lun->lun_ref);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800619}
620
621void transport_cmd_finish_abort(struct se_cmd *cmd, int remove)
622{
Alex Leung68259b52014-03-21 22:20:41 -0700623 if (cmd->se_cmd_flags & SCF_SE_LUN_CMD)
624 transport_lun_remove_cmd(cmd);
Nicholas Bellinger131e6ab2014-03-22 14:55:56 -0700625 /*
626 * Allow the fabric driver to unmap any resources before
627 * releasing the descriptor via TFO->release_cmd()
628 */
629 if (remove)
630 cmd->se_tfo->aborted_task(cmd);
Alex Leung68259b52014-03-21 22:20:41 -0700631
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800632 if (transport_cmd_check_stop_to_fabric(cmd))
633 return;
Christoph Hellwigaf877292012-07-08 15:58:49 -0400634 if (remove)
Christoph Hellwige6a25732011-09-13 23:08:50 +0200635 transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800636}
637
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400638static void target_complete_failure_work(struct work_struct *work)
639{
640 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
641
Christoph Hellwigde103c92012-11-06 12:24:09 -0800642 transport_generic_request_failure(cmd,
643 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE);
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400644}
645
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200646/*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200647 * Used when asking transport to copy Sense Data from the underlying
648 * Linux/SCSI struct scsi_cmnd
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200649 */
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200650static unsigned char *transport_get_sense_buffer(struct se_cmd *cmd)
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200651{
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200652 struct se_device *dev = cmd->se_dev;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200653
654 WARN_ON(!cmd->se_lun);
655
656 if (!dev)
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200657 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200658
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200659 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION)
660 return NULL;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200661
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700662 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200663
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200664 pr_debug("HBA_[%u]_PLUG[%s]: Requesting sense for SAM STATUS: 0x%02x\n",
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200665 dev->se_hba->hba_id, dev->transport->name, cmd->scsi_status);
Roland Dreier9c58b7d2012-08-15 14:35:25 -0700666 return cmd->sense_buffer;
Paolo Bonzini6138ed22012-09-05 17:09:13 +0200667}
668
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400669void target_complete_cmd(struct se_cmd *cmd, u8 scsi_status)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800670{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400671 struct se_device *dev = cmd->se_dev;
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400672 int success = scsi_status == GOOD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800673 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800674
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400675 cmd->scsi_status = scsi_status;
676
677
Andy Grovera1d8b492011-05-02 17:12:10 -0700678 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400679 cmd->transport_state &= ~CMD_T_BUSY;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800680
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800681 if (dev && dev->transport->transport_complete) {
Paolo Bonzinid5829ea2012-09-05 17:09:15 +0200682 dev->transport->transport_complete(cmd,
683 cmd->t_data_sg,
684 transport_get_sense_buffer(cmd));
685 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800686 success = 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800687 }
688
689 /*
Christoph Hellwig5787cac2012-04-24 00:25:06 -0400690 * See if we are waiting to complete for an exception condition.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800691 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400692 if (cmd->transport_state & CMD_T_REQUEST_STOP) {
Andy Grovera1d8b492011-05-02 17:12:10 -0700693 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400694 complete(&cmd->task_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800695 return;
696 }
Christoph Hellwig2235007c2011-11-02 05:06:35 -0700697
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800698 /*
Hannes Reinecke125d0112013-11-19 09:07:46 +0100699 * Check for case where an explicit ABORT_TASK has been received
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800700 * and transport_wait_for_tasks() will be waiting for completion..
701 */
702 if (cmd->transport_state & CMD_T_ABORTED &&
703 cmd->transport_state & CMD_T_STOP) {
704 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera95d6512014-06-09 23:36:51 +0000705 complete_all(&cmd->t_transport_stop_comp);
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800706 return;
Roland Dreier3dca1472014-02-03 14:08:26 -0800707 } else if (!success) {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400708 INIT_WORK(&cmd->work, target_complete_failure_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800709 } else {
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400710 INIT_WORK(&cmd->work, target_complete_ok_work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800711 }
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400712
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400713 cmd->t_state = TRANSPORT_COMPLETE;
Nicholas Bellinger3d289342012-02-13 02:38:14 -0800714 cmd->transport_state |= (CMD_T_COMPLETE | CMD_T_ACTIVE);
Andy Grovera1d8b492011-05-02 17:12:10 -0700715 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800716
Christoph Hellwig35e0e752011-10-17 13:56:53 -0400717 queue_work(target_completion_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800718}
Christoph Hellwig6bb35e02012-04-23 11:35:33 -0400719EXPORT_SYMBOL(target_complete_cmd);
720
Roland Dreier2426bd42014-06-10 11:07:47 -0700721void target_complete_cmd_with_length(struct se_cmd *cmd, u8 scsi_status, int length)
722{
723 if (scsi_status == SAM_STAT_GOOD && length < cmd->data_length) {
724 if (cmd->se_cmd_flags & SCF_UNDERFLOW_BIT) {
725 cmd->residual_count += cmd->data_length - length;
726 } else {
727 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
728 cmd->residual_count = cmd->data_length - length;
729 }
730
731 cmd->data_length = length;
732 }
733
734 target_complete_cmd(cmd, scsi_status);
735}
736EXPORT_SYMBOL(target_complete_cmd_with_length);
737
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400738static void target_add_to_state_list(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800739{
Christoph Hellwig42bf8292011-10-12 11:07:00 -0400740 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800741 unsigned long flags;
742
Nicholas Bellinger4d2300c2011-11-30 18:18:33 -0800743 spin_lock_irqsave(&dev->execute_task_lock, flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -0400744 if (!cmd->state_active) {
745 list_add_tail(&cmd->state_list, &dev->state_list);
746 cmd->state_active = true;
747 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800748 spin_unlock_irqrestore(&dev->execute_task_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800749}
750
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700751/*
Nicholas Bellingerf147abb2011-10-25 23:57:41 -0700752 * Handle QUEUE_FULL / -EAGAIN and -ENOMEM status
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700753 */
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400754static void transport_write_pending_qf(struct se_cmd *cmd);
755static void transport_complete_qf(struct se_cmd *cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700756
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400757void target_qf_do_work(struct work_struct *work)
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700758{
759 struct se_device *dev = container_of(work, struct se_device,
760 qf_work_queue);
Roland Dreierbcac3642011-08-27 21:33:16 -0700761 LIST_HEAD(qf_cmd_list);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700762 struct se_cmd *cmd, *cmd_tmp;
763
764 spin_lock_irq(&dev->qf_cmd_lock);
Roland Dreierbcac3642011-08-27 21:33:16 -0700765 list_splice_init(&dev->qf_cmd_list, &qf_cmd_list);
766 spin_unlock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700767
Roland Dreierbcac3642011-08-27 21:33:16 -0700768 list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700769 list_del(&cmd->se_qf_node);
Joern Engel33940d02014-09-16 16:23:12 -0400770 atomic_dec_mb(&dev->dev_qf_count);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700771
Andy Grover6708bb22011-06-08 10:36:43 -0700772 pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue"
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700773 " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -0400774 (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" :
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700775 (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING"
776 : "UNKNOWN");
Christoph Hellwigf7a5cc02011-10-17 13:56:42 -0400777
Christoph Hellwig7a6f0a12012-07-08 15:58:47 -0400778 if (cmd->t_state == TRANSPORT_COMPLETE_QF_WP)
779 transport_write_pending_qf(cmd);
780 else if (cmd->t_state == TRANSPORT_COMPLETE_QF_OK)
781 transport_complete_qf(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700782 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -0700783}
784
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800785unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd)
786{
787 switch (cmd->data_direction) {
788 case DMA_NONE:
789 return "NONE";
790 case DMA_FROM_DEVICE:
791 return "READ";
792 case DMA_TO_DEVICE:
793 return "WRITE";
794 case DMA_BIDIRECTIONAL:
795 return "BIDI";
796 default:
797 break;
798 }
799
800 return "UNKNOWN";
801}
802
803void transport_dump_dev_state(
804 struct se_device *dev,
805 char *b,
806 int *bl)
807{
808 *bl += sprintf(b + *bl, "Status: ");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400809 if (dev->export_count)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800810 *bl += sprintf(b + *bl, "ACTIVATED");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400811 else
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800812 *bl += sprintf(b + *bl, "DEACTIVATED");
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800813
Christoph Hellwig5f41a312012-05-20 14:34:44 -0400814 *bl += sprintf(b + *bl, " Max Queue Depth: %d", dev->queue_depth);
Nicholas Bellinger11e764b2012-05-09 12:42:09 -0700815 *bl += sprintf(b + *bl, " SectorSize: %u HwMaxSectors: %u\n",
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400816 dev->dev_attrib.block_size,
817 dev->dev_attrib.hw_max_sectors);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800818 *bl += sprintf(b + *bl, " ");
819}
820
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800821void transport_dump_vpd_proto_id(
822 struct t10_vpd *vpd,
823 unsigned char *p_buf,
824 int p_buf_len)
825{
826 unsigned char buf[VPD_TMP_BUF_SIZE];
827 int len;
828
829 memset(buf, 0, VPD_TMP_BUF_SIZE);
830 len = sprintf(buf, "T10 VPD Protocol Identifier: ");
831
832 switch (vpd->protocol_identifier) {
833 case 0x00:
834 sprintf(buf+len, "Fibre Channel\n");
835 break;
836 case 0x10:
837 sprintf(buf+len, "Parallel SCSI\n");
838 break;
839 case 0x20:
840 sprintf(buf+len, "SSA\n");
841 break;
842 case 0x30:
843 sprintf(buf+len, "IEEE 1394\n");
844 break;
845 case 0x40:
846 sprintf(buf+len, "SCSI Remote Direct Memory Access"
847 " Protocol\n");
848 break;
849 case 0x50:
850 sprintf(buf+len, "Internet SCSI (iSCSI)\n");
851 break;
852 case 0x60:
853 sprintf(buf+len, "SAS Serial SCSI Protocol\n");
854 break;
855 case 0x70:
856 sprintf(buf+len, "Automation/Drive Interface Transport"
857 " Protocol\n");
858 break;
859 case 0x80:
860 sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n");
861 break;
862 default:
863 sprintf(buf+len, "Unknown 0x%02x\n",
864 vpd->protocol_identifier);
865 break;
866 }
867
868 if (p_buf)
869 strncpy(p_buf, buf, p_buf_len);
870 else
Andy Grover6708bb22011-06-08 10:36:43 -0700871 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800872}
873
874void
875transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83)
876{
877 /*
878 * Check if the Protocol Identifier Valid (PIV) bit is set..
879 *
880 * from spc3r23.pdf section 7.5.1
881 */
882 if (page_83[1] & 0x80) {
883 vpd->protocol_identifier = (page_83[0] & 0xf0);
884 vpd->protocol_identifier_set = 1;
885 transport_dump_vpd_proto_id(vpd, NULL, 0);
886 }
887}
888EXPORT_SYMBOL(transport_set_vpd_proto_id);
889
890int transport_dump_vpd_assoc(
891 struct t10_vpd *vpd,
892 unsigned char *p_buf,
893 int p_buf_len)
894{
895 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000896 int ret = 0;
897 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800898
899 memset(buf, 0, VPD_TMP_BUF_SIZE);
900 len = sprintf(buf, "T10 VPD Identifier Association: ");
901
902 switch (vpd->association) {
903 case 0x00:
904 sprintf(buf+len, "addressed logical unit\n");
905 break;
906 case 0x10:
907 sprintf(buf+len, "target port\n");
908 break;
909 case 0x20:
910 sprintf(buf+len, "SCSI target device\n");
911 break;
912 default:
913 sprintf(buf+len, "Unknown 0x%02x\n", vpd->association);
Andy Grovere3d6f902011-07-19 08:55:10 +0000914 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800915 break;
916 }
917
918 if (p_buf)
919 strncpy(p_buf, buf, p_buf_len);
920 else
Andy Grover6708bb22011-06-08 10:36:43 -0700921 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800922
923 return ret;
924}
925
926int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83)
927{
928 /*
929 * The VPD identification association..
930 *
931 * from spc3r23.pdf Section 7.6.3.1 Table 297
932 */
933 vpd->association = (page_83[1] & 0x30);
934 return transport_dump_vpd_assoc(vpd, NULL, 0);
935}
936EXPORT_SYMBOL(transport_set_vpd_assoc);
937
938int transport_dump_vpd_ident_type(
939 struct t10_vpd *vpd,
940 unsigned char *p_buf,
941 int p_buf_len)
942{
943 unsigned char buf[VPD_TMP_BUF_SIZE];
Andy Grovere3d6f902011-07-19 08:55:10 +0000944 int ret = 0;
945 int len;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800946
947 memset(buf, 0, VPD_TMP_BUF_SIZE);
948 len = sprintf(buf, "T10 VPD Identifier Type: ");
949
950 switch (vpd->device_identifier_type) {
951 case 0x00:
952 sprintf(buf+len, "Vendor specific\n");
953 break;
954 case 0x01:
955 sprintf(buf+len, "T10 Vendor ID based\n");
956 break;
957 case 0x02:
958 sprintf(buf+len, "EUI-64 based\n");
959 break;
960 case 0x03:
961 sprintf(buf+len, "NAA\n");
962 break;
963 case 0x04:
964 sprintf(buf+len, "Relative target port identifier\n");
965 break;
966 case 0x08:
967 sprintf(buf+len, "SCSI name string\n");
968 break;
969 default:
970 sprintf(buf+len, "Unsupported: 0x%02x\n",
971 vpd->device_identifier_type);
Andy Grovere3d6f902011-07-19 08:55:10 +0000972 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800973 break;
974 }
975
Andy Grovere3d6f902011-07-19 08:55:10 +0000976 if (p_buf) {
977 if (p_buf_len < strlen(buf)+1)
978 return -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800979 strncpy(p_buf, buf, p_buf_len);
Andy Grovere3d6f902011-07-19 08:55:10 +0000980 } else {
Andy Grover6708bb22011-06-08 10:36:43 -0700981 pr_debug("%s", buf);
Andy Grovere3d6f902011-07-19 08:55:10 +0000982 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -0800983
984 return ret;
985}
986
987int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83)
988{
989 /*
990 * The VPD identifier type..
991 *
992 * from spc3r23.pdf Section 7.6.3.1 Table 298
993 */
994 vpd->device_identifier_type = (page_83[1] & 0x0f);
995 return transport_dump_vpd_ident_type(vpd, NULL, 0);
996}
997EXPORT_SYMBOL(transport_set_vpd_ident_type);
998
999int transport_dump_vpd_ident(
1000 struct t10_vpd *vpd,
1001 unsigned char *p_buf,
1002 int p_buf_len)
1003{
1004 unsigned char buf[VPD_TMP_BUF_SIZE];
1005 int ret = 0;
1006
1007 memset(buf, 0, VPD_TMP_BUF_SIZE);
1008
1009 switch (vpd->device_identifier_code_set) {
1010 case 0x01: /* Binary */
Dan Carpenter703d6412013-01-18 16:05:12 +03001011 snprintf(buf, sizeof(buf),
1012 "T10 VPD Binary Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001013 &vpd->device_identifier[0]);
1014 break;
1015 case 0x02: /* ASCII */
Dan Carpenter703d6412013-01-18 16:05:12 +03001016 snprintf(buf, sizeof(buf),
1017 "T10 VPD ASCII Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001018 &vpd->device_identifier[0]);
1019 break;
1020 case 0x03: /* UTF-8 */
Dan Carpenter703d6412013-01-18 16:05:12 +03001021 snprintf(buf, sizeof(buf),
1022 "T10 VPD UTF-8 Device Identifier: %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001023 &vpd->device_identifier[0]);
1024 break;
1025 default:
1026 sprintf(buf, "T10 VPD Device Identifier encoding unsupported:"
1027 " 0x%02x", vpd->device_identifier_code_set);
Andy Grovere3d6f902011-07-19 08:55:10 +00001028 ret = -EINVAL;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001029 break;
1030 }
1031
1032 if (p_buf)
1033 strncpy(p_buf, buf, p_buf_len);
1034 else
Andy Grover6708bb22011-06-08 10:36:43 -07001035 pr_debug("%s", buf);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001036
1037 return ret;
1038}
1039
1040int
1041transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83)
1042{
1043 static const char hex_str[] = "0123456789abcdef";
Masanari Iida35d1efe2012-08-16 22:43:13 +09001044 int j = 0, i = 4; /* offset to start of the identifier */
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001045
1046 /*
1047 * The VPD Code Set (encoding)
1048 *
1049 * from spc3r23.pdf Section 7.6.3.1 Table 296
1050 */
1051 vpd->device_identifier_code_set = (page_83[0] & 0x0f);
1052 switch (vpd->device_identifier_code_set) {
1053 case 0x01: /* Binary */
1054 vpd->device_identifier[j++] =
1055 hex_str[vpd->device_identifier_type];
1056 while (i < (4 + page_83[3])) {
1057 vpd->device_identifier[j++] =
1058 hex_str[(page_83[i] & 0xf0) >> 4];
1059 vpd->device_identifier[j++] =
1060 hex_str[page_83[i] & 0x0f];
1061 i++;
1062 }
1063 break;
1064 case 0x02: /* ASCII */
1065 case 0x03: /* UTF-8 */
1066 while (i < (4 + page_83[3]))
1067 vpd->device_identifier[j++] = page_83[i++];
1068 break;
1069 default:
1070 break;
1071 }
1072
1073 return transport_dump_vpd_ident(vpd, NULL, 0);
1074}
1075EXPORT_SYMBOL(transport_set_vpd_ident);
1076
Christoph Hellwigde103c92012-11-06 12:24:09 -08001077sense_reason_t
1078target_cmd_size_check(struct se_cmd *cmd, unsigned int size)
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001079{
1080 struct se_device *dev = cmd->se_dev;
1081
1082 if (cmd->unknown_data_length) {
1083 cmd->data_length = size;
1084 } else if (size != cmd->data_length) {
1085 pr_warn("TARGET_CORE[%s]: Expected Transfer Length:"
1086 " %u does not match SCSI CDB Length: %u for SAM Opcode:"
1087 " 0x%02x\n", cmd->se_tfo->get_fabric_name(),
1088 cmd->data_length, size, cmd->t_task_cdb[0]);
1089
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001090 if (cmd->data_direction == DMA_TO_DEVICE) {
1091 pr_err("Rejecting underflow/overflow"
1092 " WRITE data\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001093 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001094 }
1095 /*
1096 * Reject READ_* or WRITE_* with overflow/underflow for
1097 * type SCF_SCSI_DATA_CDB.
1098 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001099 if (dev->dev_attrib.block_size != 512) {
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001100 pr_err("Failing OVERFLOW/UNDERFLOW for LBA op"
1101 " CDB on non 512-byte sector setup subsystem"
1102 " plugin: %s\n", dev->transport->name);
1103 /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001104 return TCM_INVALID_CDB_FIELD;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001105 }
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001106 /*
1107 * For the overflow case keep the existing fabric provided
1108 * ->data_length. Otherwise for the underflow case, reset
1109 * ->data_length to the smaller SCSI expected data transfer
1110 * length.
1111 */
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001112 if (size > cmd->data_length) {
1113 cmd->se_cmd_flags |= SCF_OVERFLOW_BIT;
1114 cmd->residual_count = (size - cmd->data_length);
1115 } else {
1116 cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT;
1117 cmd->residual_count = (cmd->data_length - size);
Nicholas Bellinger4c054ba2012-08-16 15:33:10 -07001118 cmd->data_length = size;
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001119 }
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001120 }
1121
1122 return 0;
1123
Christoph Hellwig9b3b8042012-05-20 11:59:12 -04001124}
1125
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001126/*
1127 * Used by fabric modules containing a local struct se_cmd within their
1128 * fabric dependent per I/O descriptor.
Bart Van Assche649ee052015-04-14 13:26:44 +02001129 *
1130 * Preserves the value of @cmd->tag.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001131 */
1132void transport_init_se_cmd(
1133 struct se_cmd *cmd,
Christoph Hellwig9ac89282015-04-08 20:01:35 +02001134 const struct target_core_fabric_ops *tfo,
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001135 struct se_session *se_sess,
1136 u32 data_length,
1137 int data_direction,
1138 int task_attr,
1139 unsigned char *sense_buffer)
1140{
Andy Grover5951146d2011-07-19 10:26:37 +00001141 INIT_LIST_HEAD(&cmd->se_delayed_node);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001142 INIT_LIST_HEAD(&cmd->se_qf_node);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001143 INIT_LIST_HEAD(&cmd->se_cmd_list);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001144 INIT_LIST_HEAD(&cmd->state_list);
Andy Grovera1d8b492011-05-02 17:12:10 -07001145 init_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07001146 init_completion(&cmd->cmd_wait_comp);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001147 init_completion(&cmd->task_stop_comp);
Andy Grovera1d8b492011-05-02 17:12:10 -07001148 spin_lock_init(&cmd->t_state_lock);
Mikulas Patocka1e1110c2014-05-17 06:49:22 -04001149 kref_init(&cmd->cmd_kref);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001150 cmd->transport_state = CMD_T_DEV_ACTIVE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001151
1152 cmd->se_tfo = tfo;
1153 cmd->se_sess = se_sess;
1154 cmd->data_length = data_length;
1155 cmd->data_direction = data_direction;
1156 cmd->sam_task_attr = task_attr;
1157 cmd->sense_buffer = sense_buffer;
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001158
1159 cmd->state_active = false;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001160}
1161EXPORT_SYMBOL(transport_init_se_cmd);
1162
Christoph Hellwigde103c92012-11-06 12:24:09 -08001163static sense_reason_t
1164transport_check_alloc_task_attr(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001165{
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001166 struct se_device *dev = cmd->se_dev;
1167
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001168 /*
1169 * Check if SAM Task Attribute emulation is enabled for this
1170 * struct se_device storage object
1171 */
Andy Grovera3541702015-05-19 14:44:41 -07001172 if (dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001173 return 0;
1174
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001175 if (cmd->sam_task_attr == TCM_ACA_TAG) {
Andy Grover6708bb22011-06-08 10:36:43 -07001176 pr_debug("SAM Task Attribute ACA"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001177 " emulation is not supported\n");
Christoph Hellwigde103c92012-11-06 12:24:09 -08001178 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001179 }
1180 /*
1181 * Used to determine when ORDERED commands should go from
1182 * Dormant to Active status.
1183 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001184 cmd->se_ordered_id = atomic_inc_return(&dev->dev_ordered_id);
Andy Grover6708bb22011-06-08 10:36:43 -07001185 pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001186 cmd->se_ordered_id, cmd->sam_task_attr,
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001187 dev->transport->name);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001188 return 0;
1189}
1190
Christoph Hellwigde103c92012-11-06 12:24:09 -08001191sense_reason_t
1192target_setup_cmd_from_cdb(struct se_cmd *cmd, unsigned char *cdb)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001193{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001194 struct se_device *dev = cmd->se_dev;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001195 sense_reason_t ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001196
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001197 /*
1198 * Ensure that the received CDB is less than the max (252 + 8) bytes
1199 * for VARIABLE_LENGTH_CMD
1200 */
1201 if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) {
Andy Grover6708bb22011-06-08 10:36:43 -07001202 pr_err("Received SCSI CDB with command_size: %d that"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001203 " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n",
1204 scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001205 return TCM_INVALID_CDB_FIELD;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001206 }
1207 /*
1208 * If the received CDB is larger than TCM_MAX_COMMAND_SIZE,
1209 * allocate the additional extended CDB buffer now.. Otherwise
1210 * setup the pointer from __t_task_cdb to t_task_cdb.
1211 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001212 if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) {
1213 cmd->t_task_cdb = kzalloc(scsi_command_size(cdb),
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001214 GFP_KERNEL);
Andy Grover6708bb22011-06-08 10:36:43 -07001215 if (!cmd->t_task_cdb) {
1216 pr_err("Unable to allocate cmd->t_task_cdb"
Andy Grovera1d8b492011-05-02 17:12:10 -07001217 " %u > sizeof(cmd->__t_task_cdb): %lu ops\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001218 scsi_command_size(cdb),
Andy Grovera1d8b492011-05-02 17:12:10 -07001219 (unsigned long)sizeof(cmd->__t_task_cdb));
Christoph Hellwigde103c92012-11-06 12:24:09 -08001220 return TCM_OUT_OF_RESOURCES;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001221 }
1222 } else
Andy Grovera1d8b492011-05-02 17:12:10 -07001223 cmd->t_task_cdb = &cmd->__t_task_cdb[0];
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001224 /*
Andy Grovera1d8b492011-05-02 17:12:10 -07001225 * Copy the original CDB into cmd->
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001226 */
Andy Grovera1d8b492011-05-02 17:12:10 -07001227 memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb));
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001228
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001229 trace_target_sequencer_start(cmd);
1230
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001231 /*
1232 * Check for an existing UNIT ATTENTION condition
1233 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001234 ret = target_scsi3_ua_check(cmd);
1235 if (ret)
1236 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001237
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001238 ret = target_alua_state_check(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001239 if (ret)
Christoph Hellwigd977f432012-10-10 17:37:15 -04001240 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001241
Christoph Hellwigde103c92012-11-06 12:24:09 -08001242 ret = target_check_reservation(cmd);
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001243 if (ret) {
1244 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001245 return ret;
Nicholas Bellingerf85eda82013-03-28 23:06:00 -07001246 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001247
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -04001248 ret = dev->transport->parse_cdb(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001249 if (ret)
1250 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001251
Christoph Hellwigde103c92012-11-06 12:24:09 -08001252 ret = transport_check_alloc_task_attr(cmd);
1253 if (ret)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001254 return ret;
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001255
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04001256 cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE;
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -07001257 atomic_long_inc(&cmd->se_lun->lun_stats.cmd_pdus);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001258 return 0;
1259}
Andy Grovera12f41f2012-04-03 15:51:20 -07001260EXPORT_SYMBOL(target_setup_cmd_from_cdb);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001261
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001262/*
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001263 * Used by fabric module frontends to queue tasks directly.
1264 * Many only be used from process context only
1265 */
1266int transport_handle_cdb_direct(
1267 struct se_cmd *cmd)
1268{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001269 sense_reason_t ret;
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001270
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001271 if (!cmd->se_lun) {
1272 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001273 pr_err("cmd->se_lun is NULL\n");
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001274 return -EINVAL;
1275 }
1276 if (in_interrupt()) {
1277 dump_stack();
Andy Grover6708bb22011-06-08 10:36:43 -07001278 pr_err("transport_generic_handle_cdb cannot be called"
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001279 " from interrupt context\n");
1280 return -EINVAL;
1281 }
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001282 /*
Christoph Hellwigaf877292012-07-08 15:58:49 -04001283 * Set TRANSPORT_NEW_CMD state and CMD_T_ACTIVE to ensure that
1284 * outstanding descriptors are handled correctly during shutdown via
1285 * transport_wait_for_tasks()
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001286 *
1287 * Also, we don't take cmd->t_state_lock here as we only expect
1288 * this to be called for initial descriptor submission.
1289 */
1290 cmd->t_state = TRANSPORT_NEW_CMD;
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001291 cmd->transport_state |= CMD_T_ACTIVE;
1292
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001293 /*
1294 * transport_generic_new_cmd() is already handling QUEUE_FULL,
1295 * so follow TRANSPORT_NEW_CMD processing thread context usage
1296 * and call transport_generic_request_failure() if necessary..
1297 */
1298 ret = transport_generic_new_cmd(cmd);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001299 if (ret)
1300 transport_generic_request_failure(cmd, ret);
Nicholas Bellingerdd8ae592011-07-30 05:03:58 -07001301 return 0;
Nicholas Bellinger695434e12011-06-03 20:59:19 -07001302}
1303EXPORT_SYMBOL(transport_handle_cdb_direct);
1304
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07001305sense_reason_t
Christoph Hellwigde103c92012-11-06 12:24:09 -08001306transport_generic_map_mem_to_cmd(struct se_cmd *cmd, struct scatterlist *sgl,
1307 u32 sgl_count, struct scatterlist *sgl_bidi, u32 sgl_bidi_count)
1308{
1309 if (!sgl || !sgl_count)
1310 return 0;
1311
1312 /*
1313 * Reject SCSI data overflow with map_mem_to_cmd() as incoming
1314 * scatterlists already have been set to follow what the fabric
1315 * passes for the original expected data transfer length.
1316 */
1317 if (cmd->se_cmd_flags & SCF_OVERFLOW_BIT) {
1318 pr_warn("Rejecting SCSI DATA overflow for fabric using"
1319 " SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC\n");
1320 return TCM_INVALID_CDB_FIELD;
1321 }
1322
1323 cmd->t_data_sg = sgl;
1324 cmd->t_data_nents = sgl_count;
Ilias Tsitsimpisb32bd0a2015-04-23 21:30:07 +03001325 cmd->t_bidi_data_sg = sgl_bidi;
1326 cmd->t_bidi_data_nents = sgl_bidi_count;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001327
Christoph Hellwigde103c92012-11-06 12:24:09 -08001328 cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC;
1329 return 0;
1330}
1331
Nicholas Bellingera0267572012-10-01 17:23:22 -07001332/*
1333 * target_submit_cmd_map_sgls - lookup unpacked lun and submit uninitialized
1334 * se_cmd + use pre-allocated SGL memory.
Nicholas Bellingera6360782011-11-18 20:36:22 -08001335 *
1336 * @se_cmd: command descriptor to submit
1337 * @se_sess: associated se_sess for endpoint
1338 * @cdb: pointer to SCSI CDB
1339 * @sense: pointer to SCSI sense buffer
1340 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1341 * @data_length: fabric expected data transfer length
1342 * @task_addr: SAM task attribute
1343 * @data_dir: DMA data direction
1344 * @flags: flags for command submission from target_sc_flags_tables
Nicholas Bellingera0267572012-10-01 17:23:22 -07001345 * @sgl: struct scatterlist memory for unidirectional mapping
1346 * @sgl_count: scatterlist count for unidirectional mapping
1347 * @sgl_bidi: struct scatterlist memory for bidirectional READ mapping
1348 * @sgl_bidi_count: scatterlist count for bidirectional READ mapping
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001349 * @sgl_prot: struct scatterlist memory protection information
1350 * @sgl_prot_count: scatterlist count for protection information
Nicholas Bellingera6360782011-11-18 20:36:22 -08001351 *
Bart Van Assche649ee052015-04-14 13:26:44 +02001352 * Task tags are supported if the caller has set @se_cmd->tag.
1353 *
Roland Dreierd6dfc862012-07-16 11:04:39 -07001354 * Returns non zero to signal active I/O shutdown failure. All other
1355 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1356 * but still return zero here.
1357 *
Nicholas Bellingera6360782011-11-18 20:36:22 -08001358 * This may only be called from process context, and also currently
1359 * assumes internal allocation of fabric payload buffer by target-core.
Nicholas Bellingera0267572012-10-01 17:23:22 -07001360 */
1361int target_submit_cmd_map_sgls(struct se_cmd *se_cmd, struct se_session *se_sess,
Hannes Reineckef2d30682015-06-10 08:41:22 +02001362 unsigned char *cdb, unsigned char *sense, u64 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001363 u32 data_length, int task_attr, int data_dir, int flags,
1364 struct scatterlist *sgl, u32 sgl_count,
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001365 struct scatterlist *sgl_bidi, u32 sgl_bidi_count,
1366 struct scatterlist *sgl_prot, u32 sgl_prot_count)
Nicholas Bellingera6360782011-11-18 20:36:22 -08001367{
1368 struct se_portal_group *se_tpg;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001369 sense_reason_t rc;
1370 int ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001371
1372 se_tpg = se_sess->se_tpg;
1373 BUG_ON(!se_tpg);
1374 BUG_ON(se_cmd->se_tfo || se_cmd->se_sess);
1375 BUG_ON(in_interrupt());
1376 /*
1377 * Initialize se_cmd for target operation. From this point
1378 * exceptions are handled by sending exception status via
1379 * target_core_fabric_ops->queue_status() callback
1380 */
1381 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
1382 data_length, data_dir, task_attr, sense);
Sebastian Andrzej Siewiorb0d79942012-01-10 14:16:59 +01001383 if (flags & TARGET_SCF_UNKNOWN_SIZE)
1384 se_cmd->unknown_data_length = 1;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001385 /*
1386 * Obtain struct se_cmd->cmd_kref reference and add new cmd to
1387 * se_sess->sess_cmd_list. A second kref_get here is necessary
1388 * for fabrics using TARGET_SCF_ACK_KREF that expect a second
1389 * kref_put() to happen during fabric packet acknowledgement.
1390 */
Bart Van Asscheafc16602015-04-27 13:52:36 +02001391 ret = target_get_sess_cmd(se_cmd, flags & TARGET_SCF_ACK_KREF);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001392 if (ret)
1393 return ret;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001394 /*
1395 * Signal bidirectional data payloads to target-core
1396 */
1397 if (flags & TARGET_SCF_BIDI_OP)
1398 se_cmd->se_cmd_flags |= SCF_BIDI;
1399 /*
1400 * Locate se_lun pointer and attach it to struct se_cmd
1401 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001402 rc = transport_lookup_cmd_lun(se_cmd, unpacked_lun);
1403 if (rc) {
1404 transport_send_check_condition_and_sense(se_cmd, rc, 0);
Bart Van Asscheafc16602015-04-27 13:52:36 +02001405 target_put_sess_cmd(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001406 return 0;
Nicholas Bellinger735703c2012-01-20 19:02:56 -08001407 }
Sagi Grimbergb5b8e292014-02-19 17:50:17 +02001408
1409 rc = target_setup_cmd_from_cdb(se_cmd, cdb);
1410 if (rc != 0) {
1411 transport_generic_request_failure(se_cmd, rc);
1412 return 0;
1413 }
1414
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001415 /*
1416 * Save pointers for SGLs containing protection information,
1417 * if present.
1418 */
1419 if (sgl_prot_count) {
1420 se_cmd->t_prot_sg = sgl_prot;
1421 se_cmd->t_prot_nents = sgl_prot_count;
Akinobu Mita58358122015-05-01 15:23:49 +09001422 se_cmd->se_cmd_flags |= SCF_PASSTHROUGH_PROT_SG_TO_MEM_NOALLOC;
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001423 }
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001424
Nicholas Bellingera0267572012-10-01 17:23:22 -07001425 /*
1426 * When a non zero sgl_count has been passed perform SGL passthrough
1427 * mapping for pre-allocated fabric memory instead of having target
1428 * core perform an internal SGL allocation..
1429 */
1430 if (sgl_count != 0) {
1431 BUG_ON(!sgl);
Andy Grover11e319e2012-04-03 15:51:28 -07001432
Nicholas Bellinger944981c2012-10-02 14:00:33 -07001433 /*
1434 * A work-around for tcm_loop as some userspace code via
1435 * scsi-generic do not memset their associated read buffers,
1436 * so go ahead and do that here for type non-data CDBs. Also
1437 * note that this is currently guaranteed to be a single SGL
1438 * for this case by target core in target_setup_cmd_from_cdb()
1439 * -> transport_generic_cmd_sequencer().
1440 */
1441 if (!(se_cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) &&
1442 se_cmd->data_direction == DMA_FROM_DEVICE) {
1443 unsigned char *buf = NULL;
1444
1445 if (sgl)
1446 buf = kmap(sg_page(sgl)) + sgl->offset;
1447
1448 if (buf) {
1449 memset(buf, 0, sgl->length);
1450 kunmap(sg_page(sgl));
1451 }
1452 }
1453
Nicholas Bellingera0267572012-10-01 17:23:22 -07001454 rc = transport_generic_map_mem_to_cmd(se_cmd, sgl, sgl_count,
1455 sgl_bidi, sgl_bidi_count);
1456 if (rc != 0) {
Christoph Hellwigde103c92012-11-06 12:24:09 -08001457 transport_generic_request_failure(se_cmd, rc);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001458 return 0;
1459 }
1460 }
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001461
Andy Grover11e319e2012-04-03 15:51:28 -07001462 /*
1463 * Check if we need to delay processing because of ALUA
1464 * Active/NonOptimized primary access state..
1465 */
1466 core_alua_check_nonop_delay(se_cmd);
1467
Nicholas Bellingera6360782011-11-18 20:36:22 -08001468 transport_handle_cdb_direct(se_cmd);
Roland Dreierd6dfc862012-07-16 11:04:39 -07001469 return 0;
Nicholas Bellingera6360782011-11-18 20:36:22 -08001470}
Nicholas Bellingera0267572012-10-01 17:23:22 -07001471EXPORT_SYMBOL(target_submit_cmd_map_sgls);
1472
1473/*
1474 * target_submit_cmd - lookup unpacked lun and submit uninitialized se_cmd
1475 *
1476 * @se_cmd: command descriptor to submit
1477 * @se_sess: associated se_sess for endpoint
1478 * @cdb: pointer to SCSI CDB
1479 * @sense: pointer to SCSI sense buffer
1480 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1481 * @data_length: fabric expected data transfer length
1482 * @task_addr: SAM task attribute
1483 * @data_dir: DMA data direction
1484 * @flags: flags for command submission from target_sc_flags_tables
1485 *
Bart Van Assche649ee052015-04-14 13:26:44 +02001486 * Task tags are supported if the caller has set @se_cmd->tag.
1487 *
Nicholas Bellingera0267572012-10-01 17:23:22 -07001488 * Returns non zero to signal active I/O shutdown failure. All other
1489 * setup exceptions will be returned as a SCSI CHECK_CONDITION response,
1490 * but still return zero here.
1491 *
1492 * This may only be called from process context, and also currently
1493 * assumes internal allocation of fabric payload buffer by target-core.
1494 *
1495 * It also assumes interal target core SGL memory allocation.
1496 */
1497int target_submit_cmd(struct se_cmd *se_cmd, struct se_session *se_sess,
Hannes Reineckef2d30682015-06-10 08:41:22 +02001498 unsigned char *cdb, unsigned char *sense, u64 unpacked_lun,
Nicholas Bellingera0267572012-10-01 17:23:22 -07001499 u32 data_length, int task_attr, int data_dir, int flags)
1500{
1501 return target_submit_cmd_map_sgls(se_cmd, se_sess, cdb, sense,
1502 unpacked_lun, data_length, task_attr, data_dir,
Nicholas Bellingerdef2b332013-12-23 20:38:30 +00001503 flags, NULL, 0, NULL, 0, NULL, 0);
Nicholas Bellingera0267572012-10-01 17:23:22 -07001504}
Nicholas Bellingera6360782011-11-18 20:36:22 -08001505EXPORT_SYMBOL(target_submit_cmd);
1506
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001507static void target_complete_tmr_failure(struct work_struct *work)
1508{
1509 struct se_cmd *se_cmd = container_of(work, struct se_cmd, work);
1510
1511 se_cmd->se_tmr_req->response = TMR_LUN_DOES_NOT_EXIST;
1512 se_cmd->se_tfo->queue_tm_rsp(se_cmd);
Roland Dreier5a3b6fc02013-01-02 12:47:59 -08001513
1514 transport_cmd_check_stop_to_fabric(se_cmd);
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001515}
1516
Andy Groverea98d7f2012-01-19 13:39:21 -08001517/**
1518 * target_submit_tmr - lookup unpacked lun and submit uninitialized se_cmd
1519 * for TMR CDBs
1520 *
1521 * @se_cmd: command descriptor to submit
1522 * @se_sess: associated se_sess for endpoint
1523 * @sense: pointer to SCSI sense buffer
1524 * @unpacked_lun: unpacked LUN to reference for struct se_lun
1525 * @fabric_context: fabric context for TMR req
1526 * @tm_type: Type of TM request
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001527 * @gfp: gfp type for caller
1528 * @tag: referenced task tag for TMR_ABORT_TASK
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001529 * @flags: submit cmd flags
Andy Groverea98d7f2012-01-19 13:39:21 -08001530 *
1531 * Callable from all contexts.
1532 **/
1533
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001534int target_submit_tmr(struct se_cmd *se_cmd, struct se_session *se_sess,
Hannes Reineckef2d30682015-06-10 08:41:22 +02001535 unsigned char *sense, u64 unpacked_lun,
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001536 void *fabric_tmr_ptr, unsigned char tm_type,
1537 gfp_t gfp, unsigned int tag, int flags)
Andy Groverea98d7f2012-01-19 13:39:21 -08001538{
1539 struct se_portal_group *se_tpg;
1540 int ret;
1541
1542 se_tpg = se_sess->se_tpg;
1543 BUG_ON(!se_tpg);
1544
1545 transport_init_se_cmd(se_cmd, se_tpg->se_tpg_tfo, se_sess,
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001546 0, DMA_NONE, TCM_SIMPLE_TAG, sense);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001547 /*
1548 * FIXME: Currently expect caller to handle se_cmd->se_tmr_req
1549 * allocation failure.
1550 */
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001551 ret = core_tmr_alloc_req(se_cmd, fabric_tmr_ptr, tm_type, gfp);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001552 if (ret < 0)
1553 return -ENOMEM;
Andy Groverea98d7f2012-01-19 13:39:21 -08001554
Nicholas Bellingerc0974f82012-02-25 05:10:04 -08001555 if (tm_type == TMR_ABORT_TASK)
1556 se_cmd->se_tmr_req->ref_task_tag = tag;
1557
Andy Groverea98d7f2012-01-19 13:39:21 -08001558 /* See target_submit_cmd for commentary */
Bart Van Asscheafc16602015-04-27 13:52:36 +02001559 ret = target_get_sess_cmd(se_cmd, flags & TARGET_SCF_ACK_KREF);
Roland Dreierbc187ea2012-07-16 11:04:40 -07001560 if (ret) {
1561 core_tmr_release_req(se_cmd->se_tmr_req);
1562 return ret;
1563 }
Andy Groverea98d7f2012-01-19 13:39:21 -08001564
Andy Groverea98d7f2012-01-19 13:39:21 -08001565 ret = transport_lookup_tmr_lun(se_cmd, unpacked_lun);
1566 if (ret) {
Nicholas Bellinger9f0d05c2012-02-25 05:02:48 -08001567 /*
1568 * For callback during failure handling, push this work off
1569 * to process context with TMR_LUN_DOES_NOT_EXIST status.
1570 */
1571 INIT_WORK(&se_cmd->work, target_complete_tmr_failure);
1572 schedule_work(&se_cmd->work);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001573 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001574 }
1575 transport_generic_handle_tmr(se_cmd);
Nicholas Bellingerc7042ca2012-02-25 01:40:24 -08001576 return 0;
Andy Groverea98d7f2012-01-19 13:39:21 -08001577}
1578EXPORT_SYMBOL(target_submit_tmr);
1579
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001580/*
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001581 * If the cmd is active, request it to be stopped and sleep until it
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001582 * has completed.
1583 */
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001584bool target_stop_cmd(struct se_cmd *cmd, unsigned long *flags)
Bart Van Asschecb0df4d2015-04-10 14:49:02 +02001585 __releases(&cmd->t_state_lock)
1586 __acquires(&cmd->t_state_lock)
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001587{
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001588 bool was_active = false;
1589
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001590 if (cmd->transport_state & CMD_T_BUSY) {
1591 cmd->transport_state |= CMD_T_REQUEST_STOP;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001592 spin_unlock_irqrestore(&cmd->t_state_lock, *flags);
1593
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001594 pr_debug("cmd %p waiting to complete\n", cmd);
1595 wait_for_completion(&cmd->task_stop_comp);
1596 pr_debug("cmd %p stopped successfully\n", cmd);
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001597
1598 spin_lock_irqsave(&cmd->t_state_lock, *flags);
Christoph Hellwigcf572a92012-04-24 00:25:05 -04001599 cmd->transport_state &= ~CMD_T_REQUEST_STOP;
1600 cmd->transport_state &= ~CMD_T_BUSY;
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001601 was_active = true;
1602 }
1603
Christoph Hellwigcdbb70b2011-10-17 13:56:46 -04001604 return was_active;
1605}
1606
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001607/*
1608 * Handle SAM-esque emulation for generic transport request failures.
1609 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08001610void transport_generic_request_failure(struct se_cmd *cmd,
1611 sense_reason_t sense_reason)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001612{
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001613 int ret = 0;
1614
Bart Van Assche649ee052015-04-14 13:26:44 +02001615 pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08llx"
1616 " CDB: 0x%02x\n", cmd, cmd->tag, cmd->t_task_cdb[0]);
Christoph Hellwigde103c92012-11-06 12:24:09 -08001617 pr_debug("-----[ i_state: %d t_state: %d sense_reason: %d\n",
Andy Grovere3d6f902011-07-19 08:55:10 +00001618 cmd->se_tfo->get_cmd_state(cmd),
Christoph Hellwigde103c92012-11-06 12:24:09 -08001619 cmd->t_state, sense_reason);
Christoph Hellwigd43d6ae2012-04-24 00:25:08 -04001620 pr_debug("-----[ CMD_T_ACTIVE: %d CMD_T_STOP: %d CMD_T_SENT: %d\n",
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05001621 (cmd->transport_state & CMD_T_ACTIVE) != 0,
1622 (cmd->transport_state & CMD_T_STOP) != 0,
1623 (cmd->transport_state & CMD_T_SENT) != 0);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001624
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001625 /*
1626 * For SAM Task Attribute emulation for failed struct se_cmd
1627 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001628 transport_complete_task_attr(cmd);
Nicholas Bellingercf6d1f02013-08-21 19:34:43 -07001629 /*
1630 * Handle special case for COMPARE_AND_WRITE failure, where the
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00001631 * callback is expected to drop the per device ->caw_sem.
Nicholas Bellingercf6d1f02013-08-21 19:34:43 -07001632 */
1633 if ((cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) &&
1634 cmd->transport_complete_callback)
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00001635 cmd->transport_complete_callback(cmd, false);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001636
Christoph Hellwigde103c92012-11-06 12:24:09 -08001637 switch (sense_reason) {
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001638 case TCM_NON_EXISTENT_LUN:
1639 case TCM_UNSUPPORTED_SCSI_OPCODE:
1640 case TCM_INVALID_CDB_FIELD:
1641 case TCM_INVALID_PARAMETER_LIST:
Roland Dreierbb992e72013-02-08 15:18:39 -08001642 case TCM_PARAMETER_LIST_LENGTH_ERROR:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001643 case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE:
1644 case TCM_UNKNOWN_MODE_PAGE:
1645 case TCM_WRITE_PROTECTED:
Roland Dreiere2397c72012-07-16 15:34:21 -07001646 case TCM_ADDRESS_OUT_OF_RANGE:
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001647 case TCM_CHECK_CONDITION_ABORT_CMD:
1648 case TCM_CHECK_CONDITION_UNIT_ATTENTION:
1649 case TCM_CHECK_CONDITION_NOT_READY:
Nicholas Bellinger94387aa2014-02-23 14:04:09 +00001650 case TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED:
1651 case TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED:
1652 case TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001653 break;
Christoph Hellwigde103c92012-11-06 12:24:09 -08001654 case TCM_OUT_OF_RESOURCES:
1655 sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1656 break;
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001657 case TCM_RESERVATION_CONFLICT:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001658 /*
1659 * No SENSE Data payload for this case, set SCSI Status
1660 * and queue the response to $FABRIC_MOD.
1661 *
1662 * Uses linux/include/scsi/scsi.h SAM status codes defs
1663 */
1664 cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT;
1665 /*
1666 * For UA Interlock Code 11b, a RESERVATION CONFLICT will
1667 * establish a UNIT ATTENTION with PREVIOUS RESERVATION
1668 * CONFLICT STATUS.
1669 *
1670 * See spc4r17, section 7.4.6 Control Mode Page, Table 349
1671 */
Andy Grovere3d6f902011-07-19 08:55:10 +00001672 if (cmd->se_sess &&
Hannes Reineckec51c8e72015-06-11 10:01:26 +02001673 cmd->se_dev->dev_attrib.emulate_ua_intlck_ctrl == 2) {
1674 target_ua_allocate_lun(cmd->se_sess->se_node_acl,
1675 cmd->orig_fe_lun, 0x2C,
1676 ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS);
1677 }
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001678 trace_target_cmd_complete(cmd);
Hannes Reineckec51c8e72015-06-11 10:01:26 +02001679 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07001680 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001681 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001682 goto check_stop;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001683 default:
Andy Grover6708bb22011-06-08 10:36:43 -07001684 pr_err("Unknown transport error for CDB 0x%02x: %d\n",
Christoph Hellwigde103c92012-11-06 12:24:09 -08001685 cmd->t_task_cdb[0], sense_reason);
1686 sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001687 break;
1688 }
Christoph Hellwigf3146432012-07-08 15:58:48 -04001689
Christoph Hellwigde103c92012-11-06 12:24:09 -08001690 ret = transport_send_check_condition_and_sense(cmd, sense_reason, 0);
Nicholas Bellinger03e98c92011-11-04 02:36:16 -07001691 if (ret == -EAGAIN || ret == -ENOMEM)
1692 goto queue_full;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001693
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001694check_stop:
1695 transport_lun_remove_cmd(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07001696 if (!transport_cmd_check_stop_to_fabric(cmd))
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001697 ;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001698 return;
1699
1700queue_full:
Christoph Hellwige057f532011-10-17 13:56:41 -04001701 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
1702 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001703}
Nicholas Bellinger2fbff1272012-02-10 16:18:11 -08001704EXPORT_SYMBOL(transport_generic_request_failure);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001705
Nicholas Bellinger76dde502013-08-21 16:04:10 -07001706void __target_execute_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001707{
Christoph Hellwigde103c92012-11-06 12:24:09 -08001708 sense_reason_t ret;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001709
Christoph Hellwigde103c92012-11-06 12:24:09 -08001710 if (cmd->execute_cmd) {
1711 ret = cmd->execute_cmd(cmd);
1712 if (ret) {
1713 spin_lock_irq(&cmd->t_state_lock);
1714 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
1715 spin_unlock_irq(&cmd->t_state_lock);
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001716
Christoph Hellwigde103c92012-11-06 12:24:09 -08001717 transport_generic_request_failure(cmd, ret);
1718 }
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001719 }
1720}
1721
Nicholas Bellingeraa58b532015-02-08 12:39:06 -08001722static int target_write_prot_action(struct se_cmd *cmd)
1723{
Nicholas Bellinger5132d1e2015-02-08 03:06:17 -08001724 u32 sectors;
Nicholas Bellingeraa58b532015-02-08 12:39:06 -08001725 /*
1726 * Perform WRITE_INSERT of PI using software emulation when backend
1727 * device has PI enabled, if the transport has not already generated
1728 * PI using hardware WRITE_INSERT offload.
1729 */
1730 switch (cmd->prot_op) {
1731 case TARGET_PROT_DOUT_INSERT:
1732 if (!(cmd->se_sess->sup_prot_ops & TARGET_PROT_DOUT_INSERT))
1733 sbc_dif_generate(cmd);
1734 break;
Nicholas Bellinger5132d1e2015-02-08 03:06:17 -08001735 case TARGET_PROT_DOUT_STRIP:
1736 if (cmd->se_sess->sup_prot_ops & TARGET_PROT_DOUT_STRIP)
1737 break;
1738
1739 sectors = cmd->data_length >> ilog2(cmd->se_dev->dev_attrib.block_size);
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +03001740 cmd->pi_err = sbc_dif_verify(cmd, cmd->t_task_lba,
1741 sectors, 0, cmd->t_prot_sg, 0);
Nicholas Bellinger5132d1e2015-02-08 03:06:17 -08001742 if (unlikely(cmd->pi_err)) {
1743 spin_lock_irq(&cmd->t_state_lock);
Bart Van Assche6c2faea2015-05-13 09:19:02 +02001744 cmd->transport_state &= ~(CMD_T_BUSY|CMD_T_SENT);
Nicholas Bellinger5132d1e2015-02-08 03:06:17 -08001745 spin_unlock_irq(&cmd->t_state_lock);
1746 transport_generic_request_failure(cmd, cmd->pi_err);
1747 return -1;
1748 }
1749 break;
Nicholas Bellingeraa58b532015-02-08 12:39:06 -08001750 default:
1751 break;
1752 }
1753
1754 return 0;
1755}
1756
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001757static bool target_handle_task_attr(struct se_cmd *cmd)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001758{
1759 struct se_device *dev = cmd->se_dev;
1760
Andy Grovera3541702015-05-19 14:44:41 -07001761 if (dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH)
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001762 return false;
1763
1764 /*
1765 * Check for the existence of HEAD_OF_QUEUE, and if true return 1
1766 * to allow the passed struct se_cmd list of tasks to the front of the list.
1767 */
1768 switch (cmd->sam_task_attr) {
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001769 case TCM_HEAD_TAG:
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001770 pr_debug("Added HEAD_OF_QUEUE for CDB: 0x%02x, "
1771 "se_ordered_id: %u\n",
1772 cmd->t_task_cdb[0], cmd->se_ordered_id);
1773 return false;
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001774 case TCM_ORDERED_TAG:
Joern Engel33940d02014-09-16 16:23:12 -04001775 atomic_inc_mb(&dev->dev_ordered_sync);
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001776
1777 pr_debug("Added ORDERED for CDB: 0x%02x to ordered list, "
1778 " se_ordered_id: %u\n",
1779 cmd->t_task_cdb[0], cmd->se_ordered_id);
1780
1781 /*
1782 * Execute an ORDERED command if no other older commands
1783 * exist that need to be completed first.
1784 */
1785 if (!atomic_read(&dev->simple_cmds))
1786 return false;
1787 break;
1788 default:
1789 /*
1790 * For SIMPLE and UNTAGGED Task Attribute commands
1791 */
Joern Engel33940d02014-09-16 16:23:12 -04001792 atomic_inc_mb(&dev->simple_cmds);
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001793 break;
1794 }
1795
1796 if (atomic_read(&dev->dev_ordered_sync) == 0)
1797 return false;
1798
1799 spin_lock(&dev->delayed_cmd_lock);
1800 list_add_tail(&cmd->se_delayed_node, &dev->delayed_cmd_list);
1801 spin_unlock(&dev->delayed_cmd_lock);
1802
1803 pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to"
1804 " delayed CMD list, se_ordered_id: %u\n",
1805 cmd->t_task_cdb[0], cmd->sam_task_attr,
1806 cmd->se_ordered_id);
1807 return true;
1808}
1809
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001810void target_execute_cmd(struct se_cmd *cmd)
1811{
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001812 /*
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001813 * If the received CDB has aleady been aborted stop processing it here.
1814 */
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -08001815 if (transport_check_aborted_status(cmd, 1))
Christoph Hellwigd59a02b2012-07-08 15:58:40 -04001816 return;
1817
1818 /*
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001819 * Determine if frontend context caller is requesting the stopping of
1820 * this command for frontend exceptions.
1821 */
Nicholas Bellinger4a9a6c82013-11-06 21:05:19 -08001822 spin_lock_irq(&cmd->t_state_lock);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001823 if (cmd->transport_state & CMD_T_STOP) {
Bart Van Assche649ee052015-04-14 13:26:44 +02001824 pr_debug("%s:%d CMD_T_STOP for ITT: 0x%08llx\n",
1825 __func__, __LINE__, cmd->tag);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001826
1827 spin_unlock_irq(&cmd->t_state_lock);
Nicholas Bellingera95d6512014-06-09 23:36:51 +00001828 complete_all(&cmd->t_transport_stop_comp);
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001829 return;
1830 }
1831
1832 cmd->t_state = TRANSPORT_PROCESSING;
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001833 cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
Christoph Hellwigf7113a42012-07-08 15:58:38 -04001834 spin_unlock_irq(&cmd->t_state_lock);
Nicholas Bellingeraa58b532015-02-08 12:39:06 -08001835
1836 if (target_write_prot_action(cmd))
1837 return;
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001838
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001839 if (target_handle_task_attr(cmd)) {
1840 spin_lock_irq(&cmd->t_state_lock);
Bart Van Assche6c2faea2015-05-13 09:19:02 +02001841 cmd->transport_state &= ~(CMD_T_BUSY | CMD_T_SENT);
Nicholas Bellinger1a398b92013-06-06 01:40:27 -07001842 spin_unlock_irq(&cmd->t_state_lock);
1843 return;
1844 }
1845
1846 __target_execute_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001847}
Christoph Hellwig70baf0a2012-07-08 15:58:39 -04001848EXPORT_SYMBOL(target_execute_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001849
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001850/*
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001851 * Process all commands up to the last received ORDERED task attribute which
1852 * requires another blocking boundary
1853 */
1854static void target_restart_delayed_cmds(struct se_device *dev)
1855{
1856 for (;;) {
1857 struct se_cmd *cmd;
1858
1859 spin_lock(&dev->delayed_cmd_lock);
1860 if (list_empty(&dev->delayed_cmd_list)) {
1861 spin_unlock(&dev->delayed_cmd_lock);
1862 break;
1863 }
1864
1865 cmd = list_entry(dev->delayed_cmd_list.next,
1866 struct se_cmd, se_delayed_node);
1867 list_del(&cmd->se_delayed_node);
1868 spin_unlock(&dev->delayed_cmd_lock);
1869
1870 __target_execute_cmd(cmd);
1871
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001872 if (cmd->sam_task_attr == TCM_ORDERED_TAG)
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001873 break;
1874 }
1875}
1876
1877/*
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001878 * Called from I/O completion to determine which dormant/delayed
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001879 * and ordered cmds need to have their tasks added to the execution queue.
1880 */
1881static void transport_complete_task_attr(struct se_cmd *cmd)
1882{
Andy Grover5951146d2011-07-19 10:26:37 +00001883 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001884
Andy Grovera3541702015-05-19 14:44:41 -07001885 if (dev->transport->transport_flags & TRANSPORT_FLAG_PASSTHROUGH)
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001886 return;
1887
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001888 if (cmd->sam_task_attr == TCM_SIMPLE_TAG) {
Joern Engel33940d02014-09-16 16:23:12 -04001889 atomic_dec_mb(&dev->simple_cmds);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001890 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001891 pr_debug("Incremented dev->dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001892 " SIMPLE: %u\n", dev->dev_cur_ordered_id,
1893 cmd->se_ordered_id);
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001894 } else if (cmd->sam_task_attr == TCM_HEAD_TAG) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001895 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001896 pr_debug("Incremented dev_cur_ordered_id: %u for"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001897 " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id,
1898 cmd->se_ordered_id);
Christoph Hellwig68d81f42014-11-24 07:07:25 -08001899 } else if (cmd->sam_task_attr == TCM_ORDERED_TAG) {
Joern Engel33940d02014-09-16 16:23:12 -04001900 atomic_dec_mb(&dev->dev_ordered_sync);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001901
1902 dev->dev_cur_ordered_id++;
Andy Grover6708bb22011-06-08 10:36:43 -07001903 pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:"
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001904 " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id);
1905 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001906
Christoph Hellwig5f41a312012-05-20 14:34:44 -04001907 target_restart_delayed_cmds(dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001908}
1909
Christoph Hellwige057f532011-10-17 13:56:41 -04001910static void transport_complete_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001911{
1912 int ret = 0;
1913
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001914 transport_complete_task_attr(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001915
1916 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001917 trace_target_cmd_complete(cmd);
Christoph Hellwige057f532011-10-17 13:56:41 -04001918 ret = cmd->se_tfo->queue_status(cmd);
Quinn Tran082f58a2014-09-25 06:22:28 -04001919 goto out;
Christoph Hellwige057f532011-10-17 13:56:41 -04001920 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001921
1922 switch (cmd->data_direction) {
1923 case DMA_FROM_DEVICE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001924 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001925 ret = cmd->se_tfo->queue_data_in(cmd);
1926 break;
1927 case DMA_TO_DEVICE:
Nicholas Bellinger64577402013-08-21 14:39:19 -07001928 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001929 ret = cmd->se_tfo->queue_data_in(cmd);
Bart Van Assche63509c62015-05-13 09:17:54 +02001930 break;
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001931 }
1932 /* Fall through for DMA_TO_DEVICE */
1933 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07001934 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001935 ret = cmd->se_tfo->queue_status(cmd);
1936 break;
1937 default:
1938 break;
1939 }
1940
Christoph Hellwige057f532011-10-17 13:56:41 -04001941out:
1942 if (ret < 0) {
1943 transport_handle_queue_full(cmd, cmd->se_dev);
1944 return;
1945 }
1946 transport_lun_remove_cmd(cmd);
1947 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001948}
1949
1950static void transport_handle_queue_full(
1951 struct se_cmd *cmd,
Christoph Hellwige057f532011-10-17 13:56:41 -04001952 struct se_device *dev)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001953{
1954 spin_lock_irq(&dev->qf_cmd_lock);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001955 list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list);
Joern Engel33940d02014-09-16 16:23:12 -04001956 atomic_inc_mb(&dev->dev_qf_count);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07001957 spin_unlock_irq(&cmd->se_dev->qf_cmd_lock);
1958
1959 schedule_work(&cmd->se_dev->qf_work_queue);
1960}
1961
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08001962static bool target_read_prot_action(struct se_cmd *cmd)
Nicholas Bellingerbc005862014-04-02 14:55:33 -07001963{
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08001964 switch (cmd->prot_op) {
1965 case TARGET_PROT_DIN_STRIP:
1966 if (!(cmd->se_sess->sup_prot_ops & TARGET_PROT_DIN_STRIP)) {
Sagi Grimbergf75b6fa2015-04-19 20:27:19 +03001967 u32 sectors = cmd->data_length >>
1968 ilog2(cmd->se_dev->dev_attrib.block_size);
1969
1970 cmd->pi_err = sbc_dif_verify(cmd, cmd->t_task_lba,
1971 sectors, 0, cmd->t_prot_sg,
1972 0);
1973 if (cmd->pi_err)
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08001974 return true;
Nicholas Bellingerbc005862014-04-02 14:55:33 -07001975 }
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08001976 break;
Nicholas Bellinger72c038502015-02-08 04:02:08 -08001977 case TARGET_PROT_DIN_INSERT:
1978 if (cmd->se_sess->sup_prot_ops & TARGET_PROT_DIN_INSERT)
1979 break;
1980
1981 sbc_dif_generate(cmd);
1982 break;
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08001983 default:
1984 break;
Nicholas Bellingerbc005862014-04-02 14:55:33 -07001985 }
1986
1987 return false;
1988}
1989
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001990static void target_complete_ok_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001991{
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001992 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Paolo Bonzini27a27092012-09-05 17:09:14 +02001993 int ret;
Christoph Hellwig35e0e752011-10-17 13:56:53 -04001994
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08001995 /*
1996 * Check if we need to move delayed/dormant tasks from cmds on the
1997 * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task
1998 * Attribute.
1999 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04002000 transport_complete_task_attr(cmd);
2001
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002002 /*
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002003 * Check to schedule QUEUE_FULL work, or execute an existing
2004 * cmd->transport_qf_callback()
2005 */
2006 if (atomic_read(&cmd->se_dev->dev_qf_count) != 0)
2007 schedule_work(&cmd->se_dev->qf_work_queue);
2008
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002009 /*
Paolo Bonzinid5829ea2012-09-05 17:09:15 +02002010 * Check if we need to send a sense buffer from
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002011 * the struct se_cmd in question.
2012 */
2013 if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) {
Paolo Bonzini27a27092012-09-05 17:09:14 +02002014 WARN_ON(!cmd->scsi_status);
Paolo Bonzini27a27092012-09-05 17:09:14 +02002015 ret = transport_send_check_condition_and_sense(
2016 cmd, 0, 1);
2017 if (ret == -EAGAIN || ret == -ENOMEM)
2018 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002019
Paolo Bonzini27a27092012-09-05 17:09:14 +02002020 transport_lun_remove_cmd(cmd);
2021 transport_cmd_check_stop_to_fabric(cmd);
2022 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002023 }
2024 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002025 * Check for a callback, used by amongst other things
Nicholas Bellingera6b01332013-08-19 14:34:17 -07002026 * XDWRITE_READ_10 and COMPARE_AND_WRITE emulation.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002027 */
Nicholas Bellingera6b01332013-08-19 14:34:17 -07002028 if (cmd->transport_complete_callback) {
2029 sense_reason_t rc;
2030
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002031 rc = cmd->transport_complete_callback(cmd, true);
Nicholas Bellingera2890082013-08-21 18:10:04 -07002032 if (!rc && !(cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE_POST)) {
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002033 if ((cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) &&
2034 !cmd->data_length)
2035 goto queue_rsp;
2036
Nicholas Bellingera6b01332013-08-19 14:34:17 -07002037 return;
Nicholas Bellingera2890082013-08-21 18:10:04 -07002038 } else if (rc) {
2039 ret = transport_send_check_condition_and_sense(cmd,
2040 rc, 0);
2041 if (ret == -EAGAIN || ret == -ENOMEM)
2042 goto queue_full;
Nicholas Bellingera6b01332013-08-19 14:34:17 -07002043
Nicholas Bellingera2890082013-08-21 18:10:04 -07002044 transport_lun_remove_cmd(cmd);
2045 transport_cmd_check_stop_to_fabric(cmd);
2046 return;
2047 }
Nicholas Bellingera6b01332013-08-19 14:34:17 -07002048 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002049
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002050queue_rsp:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002051 switch (cmd->data_direction) {
2052 case DMA_FROM_DEVICE:
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -07002053 atomic_long_add(cmd->data_length,
2054 &cmd->se_lun->lun_stats.tx_data_octets);
Nicholas Bellingerbc005862014-04-02 14:55:33 -07002055 /*
2056 * Perform READ_STRIP of PI using software emulation when
2057 * backend had PI enabled, if the transport will not be
2058 * performing hardware READ_STRIP offload.
2059 */
Nicholas Bellingerfdeab852015-02-08 02:53:25 -08002060 if (target_read_prot_action(cmd)) {
Nicholas Bellingerbc005862014-04-02 14:55:33 -07002061 ret = transport_send_check_condition_and_sense(cmd,
2062 cmd->pi_err, 0);
2063 if (ret == -EAGAIN || ret == -ENOMEM)
2064 goto queue_full;
2065
2066 transport_lun_remove_cmd(cmd);
2067 transport_cmd_check_stop_to_fabric(cmd);
2068 return;
2069 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002070
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002071 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002072 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002073 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002074 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002075 break;
2076 case DMA_TO_DEVICE:
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -07002077 atomic_long_add(cmd->data_length,
2078 &cmd->se_lun->lun_stats.rx_data_octets);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002079 /*
2080 * Check if we need to send READ payload for BIDI-COMMAND
2081 */
Nicholas Bellinger64577402013-08-21 14:39:19 -07002082 if (cmd->se_cmd_flags & SCF_BIDI) {
Nicholas Bellinger4cc987e2015-05-19 00:03:07 -07002083 atomic_long_add(cmd->data_length,
2084 &cmd->se_lun->lun_stats.tx_data_octets);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002085 ret = cmd->se_tfo->queue_data_in(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002086 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002087 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002088 break;
2089 }
2090 /* Fall through for DMA_TO_DEVICE */
2091 case DMA_NONE:
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002092 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002093 ret = cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002094 if (ret == -EAGAIN || ret == -ENOMEM)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002095 goto queue_full;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002096 break;
2097 default:
2098 break;
2099 }
2100
2101 transport_lun_remove_cmd(cmd);
2102 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002103 return;
2104
2105queue_full:
Andy Grover6708bb22011-06-08 10:36:43 -07002106 pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p,"
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002107 " data_direction: %d\n", cmd, cmd->data_direction);
Christoph Hellwige057f532011-10-17 13:56:41 -04002108 cmd->t_state = TRANSPORT_COMPLETE_QF_OK;
2109 transport_handle_queue_full(cmd, cmd->se_dev);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002110}
2111
Andy Grover6708bb22011-06-08 10:36:43 -07002112static inline void transport_free_sgl(struct scatterlist *sgl, int nents)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002113{
Andy Groverec98f782011-07-20 19:28:46 +00002114 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002115 int count;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002116
Andy Grover6708bb22011-06-08 10:36:43 -07002117 for_each_sg(sgl, sg, nents, count)
2118 __free_page(sg_page(sg));
2119
2120 kfree(sgl);
2121}
2122
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002123static inline void transport_reset_sgl_orig(struct se_cmd *cmd)
2124{
2125 /*
2126 * Check for saved t_data_sg that may be used for COMPARE_AND_WRITE
2127 * emulation, and free + reset pointers if necessary..
2128 */
2129 if (!cmd->t_data_sg_orig)
2130 return;
2131
2132 kfree(cmd->t_data_sg);
2133 cmd->t_data_sg = cmd->t_data_sg_orig;
2134 cmd->t_data_sg_orig = NULL;
2135 cmd->t_data_nents = cmd->t_data_nents_orig;
2136 cmd->t_data_nents_orig = 0;
2137}
2138
Andy Grover6708bb22011-06-08 10:36:43 -07002139static inline void transport_free_pages(struct se_cmd *cmd)
2140{
Akinobu Mita58358122015-05-01 15:23:49 +09002141 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_PROT_SG_TO_MEM_NOALLOC)) {
2142 transport_free_sgl(cmd->t_prot_sg, cmd->t_prot_nents);
2143 cmd->t_prot_sg = NULL;
2144 cmd->t_prot_nents = 0;
2145 }
2146
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002147 if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) {
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002148 /*
2149 * Release special case READ buffer payload required for
2150 * SG_TO_MEM_NOALLOC to function with COMPARE_AND_WRITE
2151 */
2152 if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) {
2153 transport_free_sgl(cmd->t_bidi_data_sg,
2154 cmd->t_bidi_data_nents);
2155 cmd->t_bidi_data_sg = NULL;
2156 cmd->t_bidi_data_nents = 0;
2157 }
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002158 transport_reset_sgl_orig(cmd);
Andy Grover6708bb22011-06-08 10:36:43 -07002159 return;
Nicholas Bellinger47e459e2013-08-20 10:45:16 -07002160 }
2161 transport_reset_sgl_orig(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002162
Andy Grover6708bb22011-06-08 10:36:43 -07002163 transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002164 cmd->t_data_sg = NULL;
2165 cmd->t_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002166
Andy Grover6708bb22011-06-08 10:36:43 -07002167 transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents);
Andy Groverec98f782011-07-20 19:28:46 +00002168 cmd->t_bidi_data_sg = NULL;
2169 cmd->t_bidi_data_nents = 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002170}
2171
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002172/**
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002173 * transport_release_cmd - free a command
2174 * @cmd: command to free
2175 *
2176 * This routine unconditionally frees a command, and reference counting
2177 * or list removal must be done in the caller.
2178 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002179static int transport_release_cmd(struct se_cmd *cmd)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002180{
2181 BUG_ON(!cmd->se_tfo);
2182
Andy Groverc8e31f22012-01-19 13:39:17 -08002183 if (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002184 core_tmr_release_req(cmd->se_tmr_req);
2185 if (cmd->t_task_cdb != cmd->__t_task_cdb)
2186 kfree(cmd->t_task_cdb);
2187 /*
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002188 * If this cmd has been setup with target_get_sess_cmd(), drop
2189 * the kref and call ->release_cmd() in kref callback.
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002190 */
Bart Van Asscheafc16602015-04-27 13:52:36 +02002191 return target_put_sess_cmd(cmd);
Christoph Hellwige26d99a2011-11-14 12:30:30 -05002192}
2193
2194/**
Christoph Hellwigd3df7822011-09-13 23:08:32 +02002195 * transport_put_cmd - release a reference to a command
2196 * @cmd: command to release
2197 *
2198 * This routine releases our reference to the command and frees it if possible.
2199 */
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002200static int transport_put_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002201{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002202 transport_free_pages(cmd);
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002203 return transport_release_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002204}
2205
Andy Grover49493142012-01-16 16:57:08 -08002206void *transport_kmap_data_sg(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002207{
Andy Groverec98f782011-07-20 19:28:46 +00002208 struct scatterlist *sg = cmd->t_data_sg;
Andy Grover49493142012-01-16 16:57:08 -08002209 struct page **pages;
2210 int i;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002211
Andy Grover05d1c7c2011-07-20 19:13:28 +00002212 /*
Andy Groverec98f782011-07-20 19:28:46 +00002213 * We need to take into account a possible offset here for fabrics like
2214 * tcm_loop who may be using a contig buffer from the SCSI midlayer for
2215 * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd()
Andy Grover05d1c7c2011-07-20 19:13:28 +00002216 */
Andy Grover49493142012-01-16 16:57:08 -08002217 if (!cmd->t_data_nents)
2218 return NULL;
Paolo Bonzini3717ef02012-09-07 17:30:35 +02002219
2220 BUG_ON(!sg);
2221 if (cmd->t_data_nents == 1)
Andy Grover49493142012-01-16 16:57:08 -08002222 return kmap(sg_page(sg)) + sg->offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002223
Andy Grover49493142012-01-16 16:57:08 -08002224 /* >1 page. use vmap */
2225 pages = kmalloc(sizeof(*pages) * cmd->t_data_nents, GFP_KERNEL);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002226 if (!pages)
Andy Grover49493142012-01-16 16:57:08 -08002227 return NULL;
2228
2229 /* convert sg[] to pages[] */
2230 for_each_sg(cmd->t_data_sg, sg, cmd->t_data_nents, i) {
2231 pages[i] = sg_page(sg);
2232 }
2233
2234 cmd->t_data_vmap = vmap(pages, cmd->t_data_nents, VM_MAP, PAGE_KERNEL);
2235 kfree(pages);
Christoph Hellwigde103c92012-11-06 12:24:09 -08002236 if (!cmd->t_data_vmap)
Andy Grover49493142012-01-16 16:57:08 -08002237 return NULL;
2238
2239 return cmd->t_data_vmap + cmd->t_data_sg[0].offset;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002240}
Andy Grover49493142012-01-16 16:57:08 -08002241EXPORT_SYMBOL(transport_kmap_data_sg);
2242
2243void transport_kunmap_data_sg(struct se_cmd *cmd)
2244{
Andy Grovera1edf9c2012-02-09 12:18:06 -08002245 if (!cmd->t_data_nents) {
Andy Grover49493142012-01-16 16:57:08 -08002246 return;
Andy Grovera1edf9c2012-02-09 12:18:06 -08002247 } else if (cmd->t_data_nents == 1) {
Andy Grover49493142012-01-16 16:57:08 -08002248 kunmap(sg_page(cmd->t_data_sg));
Andy Grovera1edf9c2012-02-09 12:18:06 -08002249 return;
2250 }
Andy Grover49493142012-01-16 16:57:08 -08002251
2252 vunmap(cmd->t_data_vmap);
2253 cmd->t_data_vmap = NULL;
2254}
2255EXPORT_SYMBOL(transport_kunmap_data_sg);
Andy Grover05d1c7c2011-07-20 19:13:28 +00002256
Nicholas Bellingerc5ff8d62013-08-22 11:58:43 -07002257int
Nicholas Bellinger20093992013-08-25 15:44:03 -07002258target_alloc_sgl(struct scatterlist **sgl, unsigned int *nents, u32 length,
2259 bool zero_page)
Andy Grover05d1c7c2011-07-20 19:13:28 +00002260{
Nicholas Bellinger20093992013-08-25 15:44:03 -07002261 struct scatterlist *sg;
Andy Groverec98f782011-07-20 19:28:46 +00002262 struct page *page;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002263 gfp_t zero_flag = (zero_page) ? __GFP_ZERO : 0;
2264 unsigned int nent;
Andy Groverec98f782011-07-20 19:28:46 +00002265 int i = 0;
Andy Grover05d1c7c2011-07-20 19:13:28 +00002266
Nicholas Bellinger20093992013-08-25 15:44:03 -07002267 nent = DIV_ROUND_UP(length, PAGE_SIZE);
2268 sg = kmalloc(sizeof(struct scatterlist) * nent, GFP_KERNEL);
2269 if (!sg)
Andy Grovere3d6f902011-07-19 08:55:10 +00002270 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002271
Nicholas Bellinger20093992013-08-25 15:44:03 -07002272 sg_init_table(sg, nent);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002273
Andy Groverec98f782011-07-20 19:28:46 +00002274 while (length) {
2275 u32 page_len = min_t(u32, length, PAGE_SIZE);
roland@purestorage.com9db9da32012-01-04 15:59:58 -08002276 page = alloc_page(GFP_KERNEL | zero_flag);
Andy Groverec98f782011-07-20 19:28:46 +00002277 if (!page)
2278 goto out;
2279
Nicholas Bellinger20093992013-08-25 15:44:03 -07002280 sg_set_page(&sg[i], page, page_len, 0);
Andy Groverec98f782011-07-20 19:28:46 +00002281 length -= page_len;
2282 i++;
2283 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002284 *sgl = sg;
2285 *nents = nent;
Andy Groverec98f782011-07-20 19:28:46 +00002286 return 0;
2287
2288out:
Yi Zoud0e27c82012-08-14 16:06:43 -07002289 while (i > 0) {
Andy Groverec98f782011-07-20 19:28:46 +00002290 i--;
Nicholas Bellinger20093992013-08-25 15:44:03 -07002291 __free_page(sg_page(&sg[i]));
Andy Groverec98f782011-07-20 19:28:46 +00002292 }
Nicholas Bellinger20093992013-08-25 15:44:03 -07002293 kfree(sg);
Andy Groverec98f782011-07-20 19:28:46 +00002294 return -ENOMEM;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002295}
2296
Andy Grovera1d8b492011-05-02 17:12:10 -07002297/*
Andy Groverb16a35b2012-04-03 15:51:21 -07002298 * Allocate any required resources to execute the command. For writes we
2299 * might not have the payload yet, so notify the fabric via a call to
2300 * ->write_pending instead. Otherwise place it on the execution queue.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002301 */
Christoph Hellwigde103c92012-11-06 12:24:09 -08002302sense_reason_t
2303transport_generic_new_cmd(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002304{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002305 int ret = 0;
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002306 bool zero_flag = !(cmd->se_cmd_flags & SCF_SCSI_DATA_CDB);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002307
Akinobu Mita58358122015-05-01 15:23:49 +09002308 if (cmd->prot_op != TARGET_PROT_NORMAL &&
2309 !(cmd->se_cmd_flags & SCF_PASSTHROUGH_PROT_SG_TO_MEM_NOALLOC)) {
2310 ret = target_alloc_sgl(&cmd->t_prot_sg, &cmd->t_prot_nents,
2311 cmd->prot_length, true);
2312 if (ret < 0)
2313 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2314 }
2315
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002316 /*
2317 * Determine is the TCM fabric module has already allocated physical
2318 * memory, and is directly calling transport_generic_map_mem_to_cmd()
Andy Groverec98f782011-07-20 19:28:46 +00002319 * beforehand.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002320 */
Andy Groverec98f782011-07-20 19:28:46 +00002321 if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) &&
2322 cmd->data_length) {
Nicholas Bellinger20093992013-08-25 15:44:03 -07002323
Nicholas Bellinger8cefe072013-08-25 16:10:57 -07002324 if ((cmd->se_cmd_flags & SCF_BIDI) ||
2325 (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)) {
2326 u32 bidi_length;
2327
2328 if (cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE)
2329 bidi_length = cmd->t_task_nolb *
2330 cmd->se_dev->dev_attrib.block_size;
2331 else
2332 bidi_length = cmd->data_length;
2333
2334 ret = target_alloc_sgl(&cmd->t_bidi_data_sg,
2335 &cmd->t_bidi_data_nents,
2336 bidi_length, zero_flag);
2337 if (ret < 0)
2338 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
2339 }
2340
Nicholas Bellinger20093992013-08-25 15:44:03 -07002341 ret = target_alloc_sgl(&cmd->t_data_sg, &cmd->t_data_nents,
2342 cmd->data_length, zero_flag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002343 if (ret < 0)
Christoph Hellwigde103c92012-11-06 12:24:09 -08002344 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc8e63982015-04-07 21:53:27 +00002345 } else if ((cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE) &&
2346 cmd->data_length) {
2347 /*
2348 * Special case for COMPARE_AND_WRITE with fabrics
2349 * using SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC.
2350 */
2351 u32 caw_length = cmd->t_task_nolb *
2352 cmd->se_dev->dev_attrib.block_size;
2353
2354 ret = target_alloc_sgl(&cmd->t_bidi_data_sg,
2355 &cmd->t_bidi_data_nents,
2356 caw_length, zero_flag);
2357 if (ret < 0)
2358 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002359 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002360 /*
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002361 * If this command is not a write we can execute it right here,
2362 * for write buffers we need to notify the fabric driver first
2363 * and let it call back once the write buffers are ready.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002364 */
Christoph Hellwig5f41a312012-05-20 14:34:44 -04002365 target_add_to_state_list(cmd);
Roland Dreier885e7b02014-10-14 14:16:24 -07002366 if (cmd->data_direction != DMA_TO_DEVICE || cmd->data_length == 0) {
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002367 target_execute_cmd(cmd);
2368 return 0;
2369 }
Nicholas Bellinger862e6382013-06-06 01:35:18 -07002370 transport_cmd_check_stop(cmd, false, true);
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002371
2372 ret = cmd->se_tfo->write_pending(cmd);
2373 if (ret == -EAGAIN || ret == -ENOMEM)
2374 goto queue_full;
2375
Christoph Hellwigde103c92012-11-06 12:24:09 -08002376 /* fabric drivers should only return -EAGAIN or -ENOMEM as error */
2377 WARN_ON(ret);
Christoph Hellwigda0f7612011-10-18 06:57:01 -04002378
Nicholas Bellingerb69c1fc2012-11-06 15:43:53 -08002379 return (!ret) ? 0 : TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
Christoph Hellwigde103c92012-11-06 12:24:09 -08002380
Christoph Hellwigc3196f02012-07-08 15:58:41 -04002381queue_full:
2382 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd);
2383 cmd->t_state = TRANSPORT_COMPLETE_QF_WP;
2384 transport_handle_queue_full(cmd, cmd->se_dev);
2385 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002386}
Andy Grovera1d8b492011-05-02 17:12:10 -07002387EXPORT_SYMBOL(transport_generic_new_cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002388
Christoph Hellwige057f532011-10-17 13:56:41 -04002389static void transport_write_pending_qf(struct se_cmd *cmd)
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002390{
Nicholas Bellingerf147abb2011-10-25 23:57:41 -07002391 int ret;
2392
2393 ret = cmd->se_tfo->write_pending(cmd);
2394 if (ret == -EAGAIN || ret == -ENOMEM) {
Christoph Hellwige057f532011-10-17 13:56:41 -04002395 pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n",
2396 cmd);
2397 transport_handle_queue_full(cmd, cmd->se_dev);
2398 }
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002399}
2400
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002401int transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002402{
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002403 unsigned long flags;
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002404 int ret = 0;
2405
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002406 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) {
Andy Groverc8e31f22012-01-19 13:39:17 -08002407 if (wait_for_tasks && (cmd->se_cmd_flags & SCF_SCSI_TMR_CDB))
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002408 transport_wait_for_tasks(cmd);
2409
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002410 ret = transport_release_cmd(cmd);
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002411 } else {
2412 if (wait_for_tasks)
2413 transport_wait_for_tasks(cmd);
Nicholas Bellingerc1304802013-08-31 15:12:01 -07002414 /*
2415 * Handle WRITE failure case where transport_generic_new_cmd()
2416 * has already added se_cmd to state_list, but fabric has
2417 * failed command before I/O submission.
2418 */
2419 if (cmd->state_active) {
2420 spin_lock_irqsave(&cmd->t_state_lock, flags);
2421 target_remove_from_state_list(cmd);
2422 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2423 }
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002424
Christoph Hellwig82f1c8a2011-09-13 23:09:01 +02002425 if (cmd->se_lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002426 transport_lun_remove_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002427
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002428 ret = transport_put_cmd(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002429 }
Nicholas Bellingerd5ddad4162013-05-31 00:46:11 -07002430 return ret;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002431}
2432EXPORT_SYMBOL(transport_generic_free_cmd);
2433
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002434/* target_get_sess_cmd - Add command to active ->sess_cmd_list
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002435 * @se_cmd: command descriptor to add
Nicholas Bellingera6360782011-11-18 20:36:22 -08002436 * @ack_kref: Signal that fabric will perform an ack target_put_sess_cmd()
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002437 */
Bart Van Asscheafc16602015-04-27 13:52:36 +02002438int target_get_sess_cmd(struct se_cmd *se_cmd, bool ack_kref)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002439{
Bart Van Asscheafc16602015-04-27 13:52:36 +02002440 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002441 unsigned long flags;
Roland Dreierbc187ea2012-07-16 11:04:40 -07002442 int ret = 0;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002443
Nicholas Bellingera6360782011-11-18 20:36:22 -08002444 /*
2445 * Add a second kref if the fabric caller is expecting to handle
2446 * fabric acknowledgement that requires two target_put_sess_cmd()
2447 * invocations before se_cmd descriptor release.
2448 */
Bart Van Assche054922b2015-04-10 14:49:44 +02002449 if (ack_kref)
Nicholas Bellingera6360782011-11-18 20:36:22 -08002450 kref_get(&se_cmd->cmd_kref);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002451
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002452 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002453 if (se_sess->sess_tearing_down) {
2454 ret = -ESHUTDOWN;
2455 goto out;
2456 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002457 list_add_tail(&se_cmd->se_cmd_list, &se_sess->sess_cmd_list);
Roland Dreierbc187ea2012-07-16 11:04:40 -07002458out:
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002459 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
Bart Van Assche7544e5972015-02-18 15:33:58 +01002460
2461 if (ret && ack_kref)
Bart Van Asscheafc16602015-04-27 13:52:36 +02002462 target_put_sess_cmd(se_cmd);
Bart Van Assche7544e5972015-02-18 15:33:58 +01002463
Roland Dreierbc187ea2012-07-16 11:04:40 -07002464 return ret;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002465}
Nicholas Bellinger20361e62013-03-21 22:54:28 -07002466EXPORT_SYMBOL(target_get_sess_cmd);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002467
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002468static void target_release_cmd_kref(struct kref *kref)
Christoph Hellwig077aa3b2015-03-26 12:27:34 +01002469 __releases(&se_cmd->se_sess->sess_cmd_lock)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002470{
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002471 struct se_cmd *se_cmd = container_of(kref, struct se_cmd, cmd_kref);
2472 struct se_session *se_sess = se_cmd->se_sess;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002473
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002474 if (list_empty(&se_cmd->se_cmd_list)) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002475 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingerffc32d52012-02-13 02:35:01 -08002476 se_cmd->se_tfo->release_cmd(se_cmd);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002477 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002478 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002479 if (se_sess->sess_tearing_down && se_cmd->cmd_wait_set) {
Joern Engelccf5ae82013-05-13 16:30:06 -04002480 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002481 complete(&se_cmd->cmd_wait_comp);
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002482 return;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002483 }
2484 list_del(&se_cmd->se_cmd_list);
Joern Engelccf5ae82013-05-13 16:30:06 -04002485 spin_unlock(&se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002486
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002487 se_cmd->se_tfo->release_cmd(se_cmd);
2488}
2489
2490/* target_put_sess_cmd - Check for active I/O shutdown via kref_put
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002491 * @se_cmd: command descriptor to drop
2492 */
Bart Van Asscheafc16602015-04-27 13:52:36 +02002493int target_put_sess_cmd(struct se_cmd *se_cmd)
Nicholas Bellinger7481deb2011-11-12 00:32:17 -08002494{
Bart Van Asscheafc16602015-04-27 13:52:36 +02002495 struct se_session *se_sess = se_cmd->se_sess;
2496
Nicholas Bellinger0ed6e182014-06-12 12:45:02 -07002497 if (!se_sess) {
2498 se_cmd->se_tfo->release_cmd(se_cmd);
2499 return 1;
2500 }
Joern Engelccf5ae82013-05-13 16:30:06 -04002501 return kref_put_spinlock_irqsave(&se_cmd->cmd_kref, target_release_cmd_kref,
2502 &se_sess->sess_cmd_lock);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002503}
2504EXPORT_SYMBOL(target_put_sess_cmd);
2505
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002506/* target_sess_cmd_list_set_waiting - Flag all commands in
2507 * sess_cmd_list to complete cmd_wait_comp. Set
2508 * sess_tearing_down so no more commands are queued.
2509 * @se_sess: session to flag
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002510 */
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002511void target_sess_cmd_list_set_waiting(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002512{
2513 struct se_cmd *se_cmd;
2514 unsigned long flags;
2515
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002516 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002517 if (se_sess->sess_tearing_down) {
2518 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2519 return;
2520 }
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002521 se_sess->sess_tearing_down = 1;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002522 list_splice_init(&se_sess->sess_cmd_list, &se_sess->sess_wait_list);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002523
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002524 list_for_each_entry(se_cmd, &se_sess->sess_wait_list, se_cmd_list)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002525 se_cmd->cmd_wait_set = 1;
2526
2527 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2528}
Roland Dreier1c7b13f2012-07-16 11:04:42 -07002529EXPORT_SYMBOL(target_sess_cmd_list_set_waiting);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002530
2531/* target_wait_for_sess_cmds - Wait for outstanding descriptors
2532 * @se_sess: session to wait for active I/O
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002533 */
Joern Engelbe646c2d2013-05-15 00:44:07 -07002534void target_wait_for_sess_cmds(struct se_session *se_sess)
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002535{
2536 struct se_cmd *se_cmd, *tmp_cmd;
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002537 unsigned long flags;
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002538
2539 list_for_each_entry_safe(se_cmd, tmp_cmd,
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002540 &se_sess->sess_wait_list, se_cmd_list) {
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002541 list_del(&se_cmd->se_cmd_list);
2542
2543 pr_debug("Waiting for se_cmd: %p t_state: %d, fabric state:"
2544 " %d\n", se_cmd, se_cmd->t_state,
2545 se_cmd->se_tfo->get_cmd_state(se_cmd));
2546
Joern Engelbe646c2d2013-05-15 00:44:07 -07002547 wait_for_completion(&se_cmd->cmd_wait_comp);
2548 pr_debug("After cmd_wait_comp: se_cmd: %p t_state: %d"
2549 " fabric state: %d\n", se_cmd, se_cmd->t_state,
2550 se_cmd->se_tfo->get_cmd_state(se_cmd));
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002551
2552 se_cmd->se_tfo->release_cmd(se_cmd);
2553 }
Nicholas Bellinger9b31a322013-05-15 00:52:44 -07002554
2555 spin_lock_irqsave(&se_sess->sess_cmd_lock, flags);
2556 WARN_ON(!list_empty(&se_sess->sess_cmd_list));
2557 spin_unlock_irqrestore(&se_sess->sess_cmd_lock, flags);
2558
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002559}
2560EXPORT_SYMBOL(target_wait_for_sess_cmds);
2561
Bart Van Asscheb3eeea62015-05-19 16:16:01 +02002562void transport_clear_lun_ref(struct se_lun *lun)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002563{
Nicholas Bellinger52777972013-11-06 21:03:43 -08002564 percpu_ref_kill(&lun->lun_ref);
Nicholas Bellinger52777972013-11-06 21:03:43 -08002565 wait_for_completion(&lun->lun_ref_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002566}
2567
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002568/**
2569 * transport_wait_for_tasks - wait for completion to occur
2570 * @cmd: command to wait
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002571 *
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002572 * Called from frontend fabric context to wait for storage engine
2573 * to pause and/or release frontend generated struct se_cmd.
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002574 */
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002575bool transport_wait_for_tasks(struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002576{
2577 unsigned long flags;
2578
Andy Grovera1d8b492011-05-02 17:12:10 -07002579 spin_lock_irqsave(&cmd->t_state_lock, flags);
Andy Groverc8e31f22012-01-19 13:39:17 -08002580 if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) &&
2581 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002582 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002583 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002584 }
Christoph Hellwigcb4f4d32012-05-20 11:59:10 -04002585
Andy Groverc8e31f22012-01-19 13:39:17 -08002586 if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) &&
2587 !(cmd->se_cmd_flags & SCF_SCSI_TMR_CDB)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002588 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002589 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002590 }
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002591
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002592 if (!(cmd->transport_state & CMD_T_ACTIVE)) {
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002593 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002594 return false;
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002595 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002596
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002597 cmd->transport_state |= CMD_T_STOP;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002598
Bart Van Assche649ee052015-04-14 13:26:44 +02002599 pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08llx i_state: %d, t_state: %d, CMD_T_STOP\n",
2600 cmd, cmd->tag, cmd->se_tfo->get_cmd_state(cmd), cmd->t_state);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002601
Andy Grovera1d8b492011-05-02 17:12:10 -07002602 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002603
Andy Grovera1d8b492011-05-02 17:12:10 -07002604 wait_for_completion(&cmd->t_transport_stop_comp);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002605
Andy Grovera1d8b492011-05-02 17:12:10 -07002606 spin_lock_irqsave(&cmd->t_state_lock, flags);
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002607 cmd->transport_state &= ~(CMD_T_ACTIVE | CMD_T_STOP);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002608
Bart Van Assche649ee052015-04-14 13:26:44 +02002609 pr_debug("wait_for_tasks: Stopped wait_for_completion(&cmd->t_transport_stop_comp) for ITT: 0x%08llx\n",
2610 cmd->tag);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002611
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002612 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingera17f0912011-11-02 21:52:08 -07002613
2614 return true;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002615}
Nicholas Bellingerd14921d2011-10-09 01:00:58 -07002616EXPORT_SYMBOL(transport_wait_for_tasks);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002617
Sagi Grimberg76736db2014-01-23 19:29:38 +02002618static
2619void transport_err_sector_info(unsigned char *buffer, sector_t bad_sector)
2620{
2621 /* Place failed LBA in sense data information descriptor 0. */
2622 buffer[SPC_ADD_SENSE_LEN_OFFSET] = 0xc;
2623 buffer[SPC_DESC_TYPE_OFFSET] = 0; /* Information */
2624 buffer[SPC_ADDITIONAL_DESC_LEN_OFFSET] = 0xa;
2625 buffer[SPC_VALIDITY_OFFSET] = 0x80;
2626
2627 /* Descriptor Information: failing sector */
2628 put_unaligned_be64(bad_sector, &buffer[12]);
2629}
2630
Bart Van Asscheab78fef2015-07-08 17:58:51 +03002631struct sense_info {
2632 u8 key;
2633 u8 asc;
2634 u8 ascq;
2635 bool add_sector_info;
2636};
2637
2638static const struct sense_info sense_info_table[] = {
2639 [TCM_NO_SENSE] = {
2640 .key = NOT_READY
2641 },
2642 [TCM_NON_EXISTENT_LUN] = {
2643 .key = ILLEGAL_REQUEST,
2644 .asc = 0x25 /* LOGICAL UNIT NOT SUPPORTED */
2645 },
2646 [TCM_UNSUPPORTED_SCSI_OPCODE] = {
2647 .key = ILLEGAL_REQUEST,
2648 .asc = 0x20, /* INVALID COMMAND OPERATION CODE */
2649 },
2650 [TCM_SECTOR_COUNT_TOO_MANY] = {
2651 .key = ILLEGAL_REQUEST,
2652 .asc = 0x20, /* INVALID COMMAND OPERATION CODE */
2653 },
2654 [TCM_UNKNOWN_MODE_PAGE] = {
2655 .key = ILLEGAL_REQUEST,
2656 .asc = 0x24, /* INVALID FIELD IN CDB */
2657 },
2658 [TCM_CHECK_CONDITION_ABORT_CMD] = {
2659 .key = ABORTED_COMMAND,
2660 .asc = 0x29, /* BUS DEVICE RESET FUNCTION OCCURRED */
2661 .ascq = 0x03,
2662 },
2663 [TCM_INCORRECT_AMOUNT_OF_DATA] = {
2664 .key = ABORTED_COMMAND,
2665 .asc = 0x0c, /* WRITE ERROR */
2666 .ascq = 0x0d, /* NOT ENOUGH UNSOLICITED DATA */
2667 },
2668 [TCM_INVALID_CDB_FIELD] = {
2669 .key = ILLEGAL_REQUEST,
2670 .asc = 0x24, /* INVALID FIELD IN CDB */
2671 },
2672 [TCM_INVALID_PARAMETER_LIST] = {
2673 .key = ILLEGAL_REQUEST,
2674 .asc = 0x26, /* INVALID FIELD IN PARAMETER LIST */
2675 },
2676 [TCM_PARAMETER_LIST_LENGTH_ERROR] = {
2677 .key = ILLEGAL_REQUEST,
2678 .asc = 0x1a, /* PARAMETER LIST LENGTH ERROR */
2679 },
2680 [TCM_UNEXPECTED_UNSOLICITED_DATA] = {
2681 .key = ILLEGAL_REQUEST,
2682 .asc = 0x0c, /* WRITE ERROR */
2683 .ascq = 0x0c, /* UNEXPECTED_UNSOLICITED_DATA */
2684 },
2685 [TCM_SERVICE_CRC_ERROR] = {
2686 .key = ABORTED_COMMAND,
2687 .asc = 0x47, /* PROTOCOL SERVICE CRC ERROR */
2688 .ascq = 0x05, /* N/A */
2689 },
2690 [TCM_SNACK_REJECTED] = {
2691 .key = ABORTED_COMMAND,
2692 .asc = 0x11, /* READ ERROR */
2693 .ascq = 0x13, /* FAILED RETRANSMISSION REQUEST */
2694 },
2695 [TCM_WRITE_PROTECTED] = {
2696 .key = DATA_PROTECT,
2697 .asc = 0x27, /* WRITE PROTECTED */
2698 },
2699 [TCM_ADDRESS_OUT_OF_RANGE] = {
2700 .key = ILLEGAL_REQUEST,
2701 .asc = 0x21, /* LOGICAL BLOCK ADDRESS OUT OF RANGE */
2702 },
2703 [TCM_CHECK_CONDITION_UNIT_ATTENTION] = {
2704 .key = UNIT_ATTENTION,
2705 },
2706 [TCM_CHECK_CONDITION_NOT_READY] = {
2707 .key = NOT_READY,
2708 },
2709 [TCM_MISCOMPARE_VERIFY] = {
2710 .key = MISCOMPARE,
2711 .asc = 0x1d, /* MISCOMPARE DURING VERIFY OPERATION */
2712 .ascq = 0x00,
2713 },
2714 [TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED] = {
2715 .key = ILLEGAL_REQUEST,
2716 .asc = 0x10,
2717 .ascq = 0x01, /* LOGICAL BLOCK GUARD CHECK FAILED */
2718 .add_sector_info = true,
2719 },
2720 [TCM_LOGICAL_BLOCK_APP_TAG_CHECK_FAILED] = {
2721 .key = ILLEGAL_REQUEST,
2722 .asc = 0x10,
2723 .ascq = 0x02, /* LOGICAL BLOCK APPLICATION TAG CHECK FAILED */
2724 .add_sector_info = true,
2725 },
2726 [TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED] = {
2727 .key = ILLEGAL_REQUEST,
2728 .asc = 0x10,
2729 .ascq = 0x03, /* LOGICAL BLOCK REFERENCE TAG CHECK FAILED */
2730 .add_sector_info = true,
2731 },
2732 [TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE] = {
2733 /*
2734 * Returning ILLEGAL REQUEST would cause immediate IO errors on
2735 * Solaris initiators. Returning NOT READY instead means the
2736 * operations will be retried a finite number of times and we
2737 * can survive intermittent errors.
2738 */
2739 .key = NOT_READY,
2740 .asc = 0x08, /* LOGICAL UNIT COMMUNICATION FAILURE */
2741 },
2742};
2743
2744static void translate_sense_reason(struct se_cmd *cmd, sense_reason_t reason)
2745{
2746 const struct sense_info *si;
2747 u8 *buffer = cmd->sense_buffer;
2748 int r = (__force int)reason;
2749 u8 asc, ascq;
2750
2751 if (r < ARRAY_SIZE(sense_info_table) && sense_info_table[r].key)
2752 si = &sense_info_table[r];
2753 else
2754 si = &sense_info_table[(__force int)
2755 TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE];
2756
2757 buffer[SPC_SENSE_KEY_OFFSET] = si->key;
2758 if (reason == TCM_CHECK_CONDITION_UNIT_ATTENTION) {
2759 core_scsi3_ua_for_check_condition(cmd, &asc, &ascq);
2760 WARN_ON_ONCE(asc == 0);
2761 } else if (si->asc == 0) {
2762 WARN_ON_ONCE(cmd->scsi_asc == 0);
2763 asc = cmd->scsi_asc;
2764 ascq = cmd->scsi_ascq;
2765 } else {
2766 asc = si->asc;
2767 ascq = si->ascq;
2768 }
2769 buffer[SPC_ASC_KEY_OFFSET] = asc;
2770 buffer[SPC_ASCQ_KEY_OFFSET] = ascq;
2771 if (si->add_sector_info)
2772 transport_err_sector_info(cmd->sense_buffer, cmd->bad_sector);
2773}
2774
Christoph Hellwigde103c92012-11-06 12:24:09 -08002775int
2776transport_send_check_condition_and_sense(struct se_cmd *cmd,
2777 sense_reason_t reason, int from_transport)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002778{
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002779 unsigned long flags;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002780
Andy Grovera1d8b492011-05-02 17:12:10 -07002781 spin_lock_irqsave(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002782 if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) {
Andy Grovera1d8b492011-05-02 17:12:10 -07002783 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002784 return 0;
2785 }
2786 cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION;
Andy Grovera1d8b492011-05-02 17:12:10 -07002787 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002788
Bart Van Asscheab78fef2015-07-08 17:58:51 +03002789 if (!from_transport) {
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002790 cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE;
Bart Van Asscheab78fef2015-07-08 17:58:51 +03002791 translate_sense_reason(cmd, reason);
2792 cmd->scsi_status = SAM_STAT_CHECK_CONDITION;
2793 cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002794 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002795
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002796 trace_target_cmd_complete(cmd);
Nicholas Bellinger07bde792011-06-13 14:46:09 -07002797 return cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002798}
2799EXPORT_SYMBOL(transport_send_check_condition_and_sense);
2800
2801int transport_check_aborted_status(struct se_cmd *cmd, int send_status)
2802{
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002803 if (!(cmd->transport_state & CMD_T_ABORTED))
2804 return 0;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002805
Alex Leung68259b52014-03-21 22:20:41 -07002806 /*
2807 * If cmd has been aborted but either no status is to be sent or it has
2808 * already been sent, just return
2809 */
2810 if (!send_status || !(cmd->se_cmd_flags & SCF_SEND_DELAYED_TAS))
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002811 return 1;
Andy Grover8b1e1242012-04-03 15:51:12 -07002812
Bart Van Assche649ee052015-04-14 13:26:44 +02002813 pr_debug("Sending delayed SAM_STAT_TASK_ABORTED status for CDB: 0x%02x ITT: 0x%08llx\n",
2814 cmd->t_task_cdb[0], cmd->tag);
Andy Grover8b1e1242012-04-03 15:51:12 -07002815
Alex Leung68259b52014-03-21 22:20:41 -07002816 cmd->se_cmd_flags &= ~SCF_SEND_DELAYED_TAS;
Nicholas Bellinger29f4c092013-11-13 14:39:14 -08002817 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002818 trace_target_cmd_complete(cmd);
Roland Dreierc18bc7d2012-11-16 08:06:19 -08002819 cmd->se_tfo->queue_status(cmd);
2820
2821 return 1;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002822}
2823EXPORT_SYMBOL(transport_check_aborted_status);
2824
2825void transport_send_task_abort(struct se_cmd *cmd)
2826{
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002827 unsigned long flags;
2828
2829 spin_lock_irqsave(&cmd->t_state_lock, flags);
Alex Leung68259b52014-03-21 22:20:41 -07002830 if (cmd->se_cmd_flags & (SCF_SENT_CHECK_CONDITION)) {
Nicholas Bellingerc252f002011-09-29 14:22:13 -07002831 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2832 return;
2833 }
2834 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2835
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002836 /*
2837 * If there are still expected incoming fabric WRITEs, we wait
2838 * until until they have completed before sending a TASK_ABORTED
2839 * response. This response with TASK_ABORTED status will be
2840 * queued back to fabric module by transport_check_aborted_status().
2841 */
2842 if (cmd->data_direction == DMA_TO_DEVICE) {
Andy Grovere3d6f902011-07-19 08:55:10 +00002843 if (cmd->se_tfo->write_pending_status(cmd) != 0) {
Christoph Hellwig7d680f3b2011-12-21 14:13:47 -05002844 cmd->transport_state |= CMD_T_ABORTED;
Alex Leung68259b52014-03-21 22:20:41 -07002845 cmd->se_cmd_flags |= SCF_SEND_DELAYED_TAS;
Nicholas Bellinger29f4c092013-11-13 14:39:14 -08002846 return;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002847 }
2848 }
2849 cmd->scsi_status = SAM_STAT_TASK_ABORTED;
Andy Grover8b1e1242012-04-03 15:51:12 -07002850
Roland Dreier72b59d6e2013-01-02 12:47:58 -08002851 transport_lun_remove_cmd(cmd);
2852
Bart Van Assche649ee052015-04-14 13:26:44 +02002853 pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x, ITT: 0x%08llx\n",
2854 cmd->t_task_cdb[0], cmd->tag);
Andy Grover8b1e1242012-04-03 15:51:12 -07002855
Roland Dreiere5c0d6a2013-06-26 17:36:17 -07002856 trace_target_cmd_complete(cmd);
Andy Grovere3d6f902011-07-19 08:55:10 +00002857 cmd->se_tfo->queue_status(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002858}
2859
Christoph Hellwigaf877292012-07-08 15:58:49 -04002860static void target_tmr_work(struct work_struct *work)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002861{
Christoph Hellwigaf877292012-07-08 15:58:49 -04002862 struct se_cmd *cmd = container_of(work, struct se_cmd, work);
Andy Grover5951146d2011-07-19 10:26:37 +00002863 struct se_device *dev = cmd->se_dev;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002864 struct se_tmr_req *tmr = cmd->se_tmr_req;
2865 int ret;
2866
2867 switch (tmr->function) {
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002868 case TMR_ABORT_TASK:
Nicholas Bellinger3d289342012-02-13 02:38:14 -08002869 core_tmr_abort_task(dev, tmr, cmd->se_sess);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002870 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002871 case TMR_ABORT_TASK_SET:
2872 case TMR_CLEAR_ACA:
2873 case TMR_CLEAR_TASK_SET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002874 tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED;
2875 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002876 case TMR_LUN_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002877 ret = core_tmr_lun_reset(dev, tmr, NULL, NULL);
2878 tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE :
2879 TMR_FUNCTION_REJECTED;
Hannes Reineckeb5aafb12015-06-11 10:01:28 +02002880 if (tmr->response == TMR_FUNCTION_COMPLETE) {
2881 target_ua_allocate_lun(cmd->se_sess->se_node_acl,
2882 cmd->orig_fe_lun, 0x29,
2883 ASCQ_29H_BUS_DEVICE_RESET_FUNCTION_OCCURRED);
2884 }
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002885 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002886 case TMR_TARGET_WARM_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002887 tmr->response = TMR_FUNCTION_REJECTED;
2888 break;
Nicholas Bellinger5c6cd612011-03-14 04:06:04 -07002889 case TMR_TARGET_COLD_RESET:
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002890 tmr->response = TMR_FUNCTION_REJECTED;
2891 break;
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002892 default:
Andy Grover6708bb22011-06-08 10:36:43 -07002893 pr_err("Uknown TMR function: 0x%02x.\n",
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002894 tmr->function);
2895 tmr->response = TMR_FUNCTION_REJECTED;
2896 break;
2897 }
2898
2899 cmd->t_state = TRANSPORT_ISTATE_PROCESSING;
Andy Grovere3d6f902011-07-19 08:55:10 +00002900 cmd->se_tfo->queue_tm_rsp(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002901
Christoph Hellwigb7b8bef2011-10-17 13:56:44 -04002902 transport_cmd_check_stop_to_fabric(cmd);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002903}
2904
Christoph Hellwigaf877292012-07-08 15:58:49 -04002905int transport_generic_handle_tmr(
2906 struct se_cmd *cmd)
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002907{
Nicholas Bellingerf15e9cd2014-06-09 23:13:20 +00002908 unsigned long flags;
2909
2910 spin_lock_irqsave(&cmd->t_state_lock, flags);
2911 cmd->transport_state |= CMD_T_ACTIVE;
2912 spin_unlock_irqrestore(&cmd->t_state_lock, flags);
2913
Christoph Hellwigaf877292012-07-08 15:58:49 -04002914 INIT_WORK(&cmd->work, target_tmr_work);
2915 queue_work(cmd->se_dev->tmr_wq, &cmd->work);
Nicholas Bellingerc66ac9d2010-12-17 11:11:26 -08002916 return 0;
2917}
Christoph Hellwigaf877292012-07-08 15:58:49 -04002918EXPORT_SYMBOL(transport_generic_handle_tmr);
Christoph Hellwig814e5b42015-04-20 15:00:30 +02002919
2920bool
2921target_check_wce(struct se_device *dev)
2922{
2923 bool wce = false;
2924
2925 if (dev->transport->get_write_cache)
2926 wce = dev->transport->get_write_cache(dev);
2927 else if (dev->dev_attrib.emulate_write_cache > 0)
2928 wce = true;
2929
2930 return wce;
2931}
2932
2933bool
2934target_check_fua(struct se_device *dev)
2935{
2936 return target_check_wce(dev) && dev->dev_attrib.emulate_fua_write > 0;
2937}