Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * Filename: target_core_transport.c |
| 3 | * |
| 4 | * This file contains the Generic Target Engine Core. |
| 5 | * |
| 6 | * Copyright (c) 2002, 2003, 2004, 2005 PyX Technologies, Inc. |
| 7 | * Copyright (c) 2005, 2006, 2007 SBE, Inc. |
| 8 | * Copyright (c) 2007-2010 Rising Tide Systems |
| 9 | * Copyright (c) 2008-2010 Linux-iSCSI.org |
| 10 | * |
| 11 | * Nicholas A. Bellinger <nab@kernel.org> |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or modify |
| 14 | * it under the terms of the GNU General Public License as published by |
| 15 | * the Free Software Foundation; either version 2 of the License, or |
| 16 | * (at your option) any later version. |
| 17 | * |
| 18 | * This program is distributed in the hope that it will be useful, |
| 19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 21 | * GNU General Public License for more details. |
| 22 | * |
| 23 | * You should have received a copy of the GNU General Public License |
| 24 | * along with this program; if not, write to the Free Software |
| 25 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 26 | * |
| 27 | ******************************************************************************/ |
| 28 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 29 | #include <linux/net.h> |
| 30 | #include <linux/delay.h> |
| 31 | #include <linux/string.h> |
| 32 | #include <linux/timer.h> |
| 33 | #include <linux/slab.h> |
| 34 | #include <linux/blkdev.h> |
| 35 | #include <linux/spinlock.h> |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 36 | #include <linux/kthread.h> |
| 37 | #include <linux/in.h> |
| 38 | #include <linux/cdrom.h> |
| 39 | #include <asm/unaligned.h> |
| 40 | #include <net/sock.h> |
| 41 | #include <net/tcp.h> |
| 42 | #include <scsi/scsi.h> |
| 43 | #include <scsi/scsi_cmnd.h> |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 44 | #include <scsi/scsi_tcq.h> |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 45 | |
| 46 | #include <target/target_core_base.h> |
| 47 | #include <target/target_core_device.h> |
| 48 | #include <target/target_core_tmr.h> |
| 49 | #include <target/target_core_tpg.h> |
| 50 | #include <target/target_core_transport.h> |
| 51 | #include <target/target_core_fabric_ops.h> |
| 52 | #include <target/target_core_configfs.h> |
| 53 | |
| 54 | #include "target_core_alua.h" |
| 55 | #include "target_core_hba.h" |
| 56 | #include "target_core_pr.h" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 57 | #include "target_core_ua.h" |
| 58 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 59 | static int sub_api_initialized; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 60 | |
| 61 | static struct kmem_cache *se_cmd_cache; |
| 62 | static struct kmem_cache *se_sess_cache; |
| 63 | struct kmem_cache *se_tmr_req_cache; |
| 64 | struct kmem_cache *se_ua_cache; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 65 | struct kmem_cache *t10_pr_reg_cache; |
| 66 | struct kmem_cache *t10_alua_lu_gp_cache; |
| 67 | struct kmem_cache *t10_alua_lu_gp_mem_cache; |
| 68 | struct kmem_cache *t10_alua_tg_pt_gp_cache; |
| 69 | struct kmem_cache *t10_alua_tg_pt_gp_mem_cache; |
| 70 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 71 | static int transport_generic_write_pending(struct se_cmd *); |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 72 | static int transport_processing_thread(void *param); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 73 | static int __transport_execute_tasks(struct se_device *dev); |
| 74 | static void transport_complete_task_attr(struct se_cmd *cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 75 | static void transport_handle_queue_full(struct se_cmd *cmd, |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 76 | struct se_device *dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 77 | static void transport_direct_request_timeout(struct se_cmd *cmd); |
| 78 | static void transport_free_dev_tasks(struct se_cmd *cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 79 | static u32 transport_allocate_tasks(struct se_cmd *cmd, |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 80 | unsigned long long starting_lba, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 81 | enum dma_data_direction data_direction, |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 82 | struct scatterlist *sgl, unsigned int nents); |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 83 | static int transport_generic_get_mem(struct se_cmd *cmd); |
Nicholas Bellinger | 39c05f3 | 2011-10-08 13:59:52 -0700 | [diff] [blame] | 84 | static void transport_put_cmd(struct se_cmd *cmd); |
Christoph Hellwig | 3df8d40 | 2011-10-17 13:56:43 -0400 | [diff] [blame] | 85 | static void transport_remove_cmd_from_queue(struct se_cmd *cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 86 | static int transport_set_sense_codes(struct se_cmd *cmd, u8 asc, u8 ascq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 87 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 88 | int init_se_kmem_caches(void) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 89 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 90 | se_cmd_cache = kmem_cache_create("se_cmd_cache", |
| 91 | sizeof(struct se_cmd), __alignof__(struct se_cmd), 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 92 | if (!se_cmd_cache) { |
| 93 | pr_err("kmem_cache_create for struct se_cmd failed\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 94 | goto out; |
| 95 | } |
| 96 | se_tmr_req_cache = kmem_cache_create("se_tmr_cache", |
| 97 | sizeof(struct se_tmr_req), __alignof__(struct se_tmr_req), |
| 98 | 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 99 | if (!se_tmr_req_cache) { |
| 100 | pr_err("kmem_cache_create() for struct se_tmr_req" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 101 | " failed\n"); |
| 102 | goto out; |
| 103 | } |
| 104 | se_sess_cache = kmem_cache_create("se_sess_cache", |
| 105 | sizeof(struct se_session), __alignof__(struct se_session), |
| 106 | 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 107 | if (!se_sess_cache) { |
| 108 | pr_err("kmem_cache_create() for struct se_session" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 109 | " failed\n"); |
| 110 | goto out; |
| 111 | } |
| 112 | se_ua_cache = kmem_cache_create("se_ua_cache", |
| 113 | sizeof(struct se_ua), __alignof__(struct se_ua), |
| 114 | 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 115 | if (!se_ua_cache) { |
| 116 | pr_err("kmem_cache_create() for struct se_ua failed\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 117 | goto out; |
| 118 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 119 | t10_pr_reg_cache = kmem_cache_create("t10_pr_reg_cache", |
| 120 | sizeof(struct t10_pr_registration), |
| 121 | __alignof__(struct t10_pr_registration), 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 122 | if (!t10_pr_reg_cache) { |
| 123 | pr_err("kmem_cache_create() for struct t10_pr_registration" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 124 | " failed\n"); |
| 125 | goto out; |
| 126 | } |
| 127 | t10_alua_lu_gp_cache = kmem_cache_create("t10_alua_lu_gp_cache", |
| 128 | sizeof(struct t10_alua_lu_gp), __alignof__(struct t10_alua_lu_gp), |
| 129 | 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 130 | if (!t10_alua_lu_gp_cache) { |
| 131 | pr_err("kmem_cache_create() for t10_alua_lu_gp_cache" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 132 | " failed\n"); |
| 133 | goto out; |
| 134 | } |
| 135 | t10_alua_lu_gp_mem_cache = kmem_cache_create("t10_alua_lu_gp_mem_cache", |
| 136 | sizeof(struct t10_alua_lu_gp_member), |
| 137 | __alignof__(struct t10_alua_lu_gp_member), 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 138 | if (!t10_alua_lu_gp_mem_cache) { |
| 139 | pr_err("kmem_cache_create() for t10_alua_lu_gp_mem_" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 140 | "cache failed\n"); |
| 141 | goto out; |
| 142 | } |
| 143 | t10_alua_tg_pt_gp_cache = kmem_cache_create("t10_alua_tg_pt_gp_cache", |
| 144 | sizeof(struct t10_alua_tg_pt_gp), |
| 145 | __alignof__(struct t10_alua_tg_pt_gp), 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 146 | if (!t10_alua_tg_pt_gp_cache) { |
| 147 | pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 148 | "cache failed\n"); |
| 149 | goto out; |
| 150 | } |
| 151 | t10_alua_tg_pt_gp_mem_cache = kmem_cache_create( |
| 152 | "t10_alua_tg_pt_gp_mem_cache", |
| 153 | sizeof(struct t10_alua_tg_pt_gp_member), |
| 154 | __alignof__(struct t10_alua_tg_pt_gp_member), |
| 155 | 0, NULL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 156 | if (!t10_alua_tg_pt_gp_mem_cache) { |
| 157 | pr_err("kmem_cache_create() for t10_alua_tg_pt_gp_" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 158 | "mem_t failed\n"); |
| 159 | goto out; |
| 160 | } |
| 161 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 162 | return 0; |
| 163 | out: |
| 164 | if (se_cmd_cache) |
| 165 | kmem_cache_destroy(se_cmd_cache); |
| 166 | if (se_tmr_req_cache) |
| 167 | kmem_cache_destroy(se_tmr_req_cache); |
| 168 | if (se_sess_cache) |
| 169 | kmem_cache_destroy(se_sess_cache); |
| 170 | if (se_ua_cache) |
| 171 | kmem_cache_destroy(se_ua_cache); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 172 | if (t10_pr_reg_cache) |
| 173 | kmem_cache_destroy(t10_pr_reg_cache); |
| 174 | if (t10_alua_lu_gp_cache) |
| 175 | kmem_cache_destroy(t10_alua_lu_gp_cache); |
| 176 | if (t10_alua_lu_gp_mem_cache) |
| 177 | kmem_cache_destroy(t10_alua_lu_gp_mem_cache); |
| 178 | if (t10_alua_tg_pt_gp_cache) |
| 179 | kmem_cache_destroy(t10_alua_tg_pt_gp_cache); |
| 180 | if (t10_alua_tg_pt_gp_mem_cache) |
| 181 | kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 182 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 183 | } |
| 184 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 185 | void release_se_kmem_caches(void) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 186 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 187 | kmem_cache_destroy(se_cmd_cache); |
| 188 | kmem_cache_destroy(se_tmr_req_cache); |
| 189 | kmem_cache_destroy(se_sess_cache); |
| 190 | kmem_cache_destroy(se_ua_cache); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 191 | kmem_cache_destroy(t10_pr_reg_cache); |
| 192 | kmem_cache_destroy(t10_alua_lu_gp_cache); |
| 193 | kmem_cache_destroy(t10_alua_lu_gp_mem_cache); |
| 194 | kmem_cache_destroy(t10_alua_tg_pt_gp_cache); |
| 195 | kmem_cache_destroy(t10_alua_tg_pt_gp_mem_cache); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 196 | } |
| 197 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 198 | /* This code ensures unique mib indexes are handed out. */ |
| 199 | static DEFINE_SPINLOCK(scsi_mib_index_lock); |
| 200 | static u32 scsi_mib_index[SCSI_INDEX_TYPE_MAX]; |
Nicholas Bellinger | e89d15e | 2011-02-09 15:35:03 -0800 | [diff] [blame] | 201 | |
| 202 | /* |
| 203 | * Allocate a new row index for the entry type specified |
| 204 | */ |
| 205 | u32 scsi_get_new_index(scsi_index_t type) |
| 206 | { |
| 207 | u32 new_index; |
| 208 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 209 | BUG_ON((type < 0) || (type >= SCSI_INDEX_TYPE_MAX)); |
Nicholas Bellinger | e89d15e | 2011-02-09 15:35:03 -0800 | [diff] [blame] | 210 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 211 | spin_lock(&scsi_mib_index_lock); |
| 212 | new_index = ++scsi_mib_index[type]; |
| 213 | spin_unlock(&scsi_mib_index_lock); |
Nicholas Bellinger | e89d15e | 2011-02-09 15:35:03 -0800 | [diff] [blame] | 214 | |
| 215 | return new_index; |
| 216 | } |
| 217 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 218 | void transport_init_queue_obj(struct se_queue_obj *qobj) |
| 219 | { |
| 220 | atomic_set(&qobj->queue_cnt, 0); |
| 221 | INIT_LIST_HEAD(&qobj->qobj_list); |
| 222 | init_waitqueue_head(&qobj->thread_wq); |
| 223 | spin_lock_init(&qobj->cmd_queue_lock); |
| 224 | } |
| 225 | EXPORT_SYMBOL(transport_init_queue_obj); |
| 226 | |
| 227 | static int transport_subsystem_reqmods(void) |
| 228 | { |
| 229 | int ret; |
| 230 | |
| 231 | ret = request_module("target_core_iblock"); |
| 232 | if (ret != 0) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 233 | pr_err("Unable to load target_core_iblock\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 234 | |
| 235 | ret = request_module("target_core_file"); |
| 236 | if (ret != 0) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 237 | pr_err("Unable to load target_core_file\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 238 | |
| 239 | ret = request_module("target_core_pscsi"); |
| 240 | if (ret != 0) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 241 | pr_err("Unable to load target_core_pscsi\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 242 | |
| 243 | ret = request_module("target_core_stgt"); |
| 244 | if (ret != 0) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 245 | pr_err("Unable to load target_core_stgt\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | int transport_subsystem_check_init(void) |
| 251 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 252 | int ret; |
| 253 | |
| 254 | if (sub_api_initialized) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 255 | return 0; |
| 256 | /* |
| 257 | * Request the loading of known TCM subsystem plugins.. |
| 258 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 259 | ret = transport_subsystem_reqmods(); |
| 260 | if (ret < 0) |
| 261 | return ret; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 262 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 263 | sub_api_initialized = 1; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 264 | return 0; |
| 265 | } |
| 266 | |
| 267 | struct se_session *transport_init_session(void) |
| 268 | { |
| 269 | struct se_session *se_sess; |
| 270 | |
| 271 | se_sess = kmem_cache_zalloc(se_sess_cache, GFP_KERNEL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 272 | if (!se_sess) { |
| 273 | pr_err("Unable to allocate struct se_session from" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 274 | " se_sess_cache\n"); |
| 275 | return ERR_PTR(-ENOMEM); |
| 276 | } |
| 277 | INIT_LIST_HEAD(&se_sess->sess_list); |
| 278 | INIT_LIST_HEAD(&se_sess->sess_acl_list); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 279 | |
| 280 | return se_sess; |
| 281 | } |
| 282 | EXPORT_SYMBOL(transport_init_session); |
| 283 | |
| 284 | /* |
| 285 | * Called with spin_lock_bh(&struct se_portal_group->session_lock called. |
| 286 | */ |
| 287 | void __transport_register_session( |
| 288 | struct se_portal_group *se_tpg, |
| 289 | struct se_node_acl *se_nacl, |
| 290 | struct se_session *se_sess, |
| 291 | void *fabric_sess_ptr) |
| 292 | { |
| 293 | unsigned char buf[PR_REG_ISID_LEN]; |
| 294 | |
| 295 | se_sess->se_tpg = se_tpg; |
| 296 | se_sess->fabric_sess_ptr = fabric_sess_ptr; |
| 297 | /* |
| 298 | * Used by struct se_node_acl's under ConfigFS to locate active se_session-t |
| 299 | * |
| 300 | * Only set for struct se_session's that will actually be moving I/O. |
| 301 | * eg: *NOT* discovery sessions. |
| 302 | */ |
| 303 | if (se_nacl) { |
| 304 | /* |
| 305 | * If the fabric module supports an ISID based TransportID, |
| 306 | * save this value in binary from the fabric I_T Nexus now. |
| 307 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 308 | if (se_tpg->se_tpg_tfo->sess_get_initiator_sid != NULL) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 309 | memset(&buf[0], 0, PR_REG_ISID_LEN); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 310 | se_tpg->se_tpg_tfo->sess_get_initiator_sid(se_sess, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 311 | &buf[0], PR_REG_ISID_LEN); |
| 312 | se_sess->sess_bin_isid = get_unaligned_be64(&buf[0]); |
| 313 | } |
| 314 | spin_lock_irq(&se_nacl->nacl_sess_lock); |
| 315 | /* |
| 316 | * The se_nacl->nacl_sess pointer will be set to the |
| 317 | * last active I_T Nexus for each struct se_node_acl. |
| 318 | */ |
| 319 | se_nacl->nacl_sess = se_sess; |
| 320 | |
| 321 | list_add_tail(&se_sess->sess_acl_list, |
| 322 | &se_nacl->acl_sess_list); |
| 323 | spin_unlock_irq(&se_nacl->nacl_sess_lock); |
| 324 | } |
| 325 | list_add_tail(&se_sess->sess_list, &se_tpg->tpg_sess_list); |
| 326 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 327 | pr_debug("TARGET_CORE[%s]: Registered fabric_sess_ptr: %p\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 328 | se_tpg->se_tpg_tfo->get_fabric_name(), se_sess->fabric_sess_ptr); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 329 | } |
| 330 | EXPORT_SYMBOL(__transport_register_session); |
| 331 | |
| 332 | void transport_register_session( |
| 333 | struct se_portal_group *se_tpg, |
| 334 | struct se_node_acl *se_nacl, |
| 335 | struct se_session *se_sess, |
| 336 | void *fabric_sess_ptr) |
| 337 | { |
| 338 | spin_lock_bh(&se_tpg->session_lock); |
| 339 | __transport_register_session(se_tpg, se_nacl, se_sess, fabric_sess_ptr); |
| 340 | spin_unlock_bh(&se_tpg->session_lock); |
| 341 | } |
| 342 | EXPORT_SYMBOL(transport_register_session); |
| 343 | |
| 344 | void transport_deregister_session_configfs(struct se_session *se_sess) |
| 345 | { |
| 346 | struct se_node_acl *se_nacl; |
Roland Dreier | 2338886 | 2011-06-22 01:02:21 -0700 | [diff] [blame] | 347 | unsigned long flags; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 348 | /* |
| 349 | * Used by struct se_node_acl's under ConfigFS to locate active struct se_session |
| 350 | */ |
| 351 | se_nacl = se_sess->se_node_acl; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 352 | if (se_nacl) { |
Roland Dreier | 2338886 | 2011-06-22 01:02:21 -0700 | [diff] [blame] | 353 | spin_lock_irqsave(&se_nacl->nacl_sess_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 354 | list_del(&se_sess->sess_acl_list); |
| 355 | /* |
| 356 | * If the session list is empty, then clear the pointer. |
| 357 | * Otherwise, set the struct se_session pointer from the tail |
| 358 | * element of the per struct se_node_acl active session list. |
| 359 | */ |
| 360 | if (list_empty(&se_nacl->acl_sess_list)) |
| 361 | se_nacl->nacl_sess = NULL; |
| 362 | else { |
| 363 | se_nacl->nacl_sess = container_of( |
| 364 | se_nacl->acl_sess_list.prev, |
| 365 | struct se_session, sess_acl_list); |
| 366 | } |
Roland Dreier | 2338886 | 2011-06-22 01:02:21 -0700 | [diff] [blame] | 367 | spin_unlock_irqrestore(&se_nacl->nacl_sess_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 368 | } |
| 369 | } |
| 370 | EXPORT_SYMBOL(transport_deregister_session_configfs); |
| 371 | |
| 372 | void transport_free_session(struct se_session *se_sess) |
| 373 | { |
| 374 | kmem_cache_free(se_sess_cache, se_sess); |
| 375 | } |
| 376 | EXPORT_SYMBOL(transport_free_session); |
| 377 | |
| 378 | void transport_deregister_session(struct se_session *se_sess) |
| 379 | { |
| 380 | struct se_portal_group *se_tpg = se_sess->se_tpg; |
| 381 | struct se_node_acl *se_nacl; |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 382 | unsigned long flags; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 383 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 384 | if (!se_tpg) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 385 | transport_free_session(se_sess); |
| 386 | return; |
| 387 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 388 | |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 389 | spin_lock_irqsave(&se_tpg->session_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 390 | list_del(&se_sess->sess_list); |
| 391 | se_sess->se_tpg = NULL; |
| 392 | se_sess->fabric_sess_ptr = NULL; |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 393 | spin_unlock_irqrestore(&se_tpg->session_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 394 | |
| 395 | /* |
| 396 | * Determine if we need to do extra work for this initiator node's |
| 397 | * struct se_node_acl if it had been previously dynamically generated. |
| 398 | */ |
| 399 | se_nacl = se_sess->se_node_acl; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 400 | if (se_nacl) { |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 401 | spin_lock_irqsave(&se_tpg->acl_node_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 402 | if (se_nacl->dynamic_node_acl) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 403 | if (!se_tpg->se_tpg_tfo->tpg_check_demo_mode_cache( |
| 404 | se_tpg)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 405 | list_del(&se_nacl->acl_list); |
| 406 | se_tpg->num_node_acls--; |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 407 | spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 408 | |
| 409 | core_tpg_wait_for_nacl_pr_ref(se_nacl); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 410 | core_free_device_list_for_node(se_nacl, se_tpg); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 411 | se_tpg->se_tpg_tfo->tpg_release_fabric_acl(se_tpg, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 412 | se_nacl); |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 413 | spin_lock_irqsave(&se_tpg->acl_node_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 414 | } |
| 415 | } |
Roland Dreier | e63a8e1 | 2011-08-12 16:01:02 -0700 | [diff] [blame] | 416 | spin_unlock_irqrestore(&se_tpg->acl_node_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 417 | } |
| 418 | |
| 419 | transport_free_session(se_sess); |
| 420 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 421 | pr_debug("TARGET_CORE[%s]: Deregistered fabric_sess\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 422 | se_tpg->se_tpg_tfo->get_fabric_name()); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 423 | } |
| 424 | EXPORT_SYMBOL(transport_deregister_session); |
| 425 | |
| 426 | /* |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 427 | * Called with cmd->t_state_lock held. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 428 | */ |
| 429 | static void transport_all_task_dev_remove_state(struct se_cmd *cmd) |
| 430 | { |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 431 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 432 | struct se_task *task; |
| 433 | unsigned long flags; |
| 434 | |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 435 | if (!dev) |
| 436 | return; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 437 | |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 438 | list_for_each_entry(task, &cmd->t_task_list, t_list) { |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 439 | if (task->task_flags & TF_ACTIVE) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 440 | continue; |
| 441 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 442 | if (!atomic_read(&task->task_state_active)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 443 | continue; |
| 444 | |
| 445 | spin_lock_irqsave(&dev->execute_task_lock, flags); |
| 446 | list_del(&task->t_state_list); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 447 | pr_debug("Removed ITT: 0x%08x dev: %p task[%p]\n", |
| 448 | cmd->se_tfo->get_task_tag(cmd), dev, task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 449 | spin_unlock_irqrestore(&dev->execute_task_lock, flags); |
| 450 | |
| 451 | atomic_set(&task->task_state_active, 0); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 452 | atomic_dec(&cmd->t_task_cdbs_ex_left); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 453 | } |
| 454 | } |
| 455 | |
| 456 | /* transport_cmd_check_stop(): |
| 457 | * |
| 458 | * 'transport_off = 1' determines if t_transport_active should be cleared. |
| 459 | * 'transport_off = 2' determines if task_dev_state should be removed. |
| 460 | * |
| 461 | * A non-zero u8 t_state sets cmd->t_state. |
| 462 | * Returns 1 when command is stopped, else 0. |
| 463 | */ |
| 464 | static int transport_cmd_check_stop( |
| 465 | struct se_cmd *cmd, |
| 466 | int transport_off, |
| 467 | u8 t_state) |
| 468 | { |
| 469 | unsigned long flags; |
| 470 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 471 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 472 | /* |
| 473 | * Determine if IOCTL context caller in requesting the stopping of this |
| 474 | * command for LUN shutdown purposes. |
| 475 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 476 | if (atomic_read(&cmd->transport_lun_stop)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 477 | pr_debug("%s:%d atomic_read(&cmd->transport_lun_stop)" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 478 | " == TRUE for ITT: 0x%08x\n", __func__, __LINE__, |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 479 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 480 | |
| 481 | cmd->deferred_t_state = cmd->t_state; |
| 482 | cmd->t_state = TRANSPORT_DEFERRED_CMD; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 483 | atomic_set(&cmd->t_transport_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 484 | if (transport_off == 2) |
| 485 | transport_all_task_dev_remove_state(cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 486 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 487 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 488 | complete(&cmd->transport_lun_stop_comp); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 489 | return 1; |
| 490 | } |
| 491 | /* |
| 492 | * Determine if frontend context caller is requesting the stopping of |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 493 | * this command for frontend exceptions. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 494 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 495 | if (atomic_read(&cmd->t_transport_stop)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 496 | pr_debug("%s:%d atomic_read(&cmd->t_transport_stop) ==" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 497 | " TRUE for ITT: 0x%08x\n", __func__, __LINE__, |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 498 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 499 | |
| 500 | cmd->deferred_t_state = cmd->t_state; |
| 501 | cmd->t_state = TRANSPORT_DEFERRED_CMD; |
| 502 | if (transport_off == 2) |
| 503 | transport_all_task_dev_remove_state(cmd); |
| 504 | |
| 505 | /* |
| 506 | * Clear struct se_cmd->se_lun before the transport_off == 2 handoff |
| 507 | * to FE. |
| 508 | */ |
| 509 | if (transport_off == 2) |
| 510 | cmd->se_lun = NULL; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 511 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 512 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 513 | complete(&cmd->t_transport_stop_comp); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 514 | return 1; |
| 515 | } |
| 516 | if (transport_off) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 517 | atomic_set(&cmd->t_transport_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 518 | if (transport_off == 2) { |
| 519 | transport_all_task_dev_remove_state(cmd); |
| 520 | /* |
| 521 | * Clear struct se_cmd->se_lun before the transport_off == 2 |
| 522 | * handoff to fabric module. |
| 523 | */ |
| 524 | cmd->se_lun = NULL; |
| 525 | /* |
| 526 | * Some fabric modules like tcm_loop can release |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 527 | * their internally allocated I/O reference now and |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 528 | * struct se_cmd now. |
| 529 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 530 | if (cmd->se_tfo->check_stop_free != NULL) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 531 | spin_unlock_irqrestore( |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 532 | &cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 533 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 534 | cmd->se_tfo->check_stop_free(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 535 | return 1; |
| 536 | } |
| 537 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 538 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 539 | |
| 540 | return 0; |
| 541 | } else if (t_state) |
| 542 | cmd->t_state = t_state; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 543 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 544 | |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | static int transport_cmd_check_stop_to_fabric(struct se_cmd *cmd) |
| 549 | { |
| 550 | return transport_cmd_check_stop(cmd, 2, 0); |
| 551 | } |
| 552 | |
| 553 | static void transport_lun_remove_cmd(struct se_cmd *cmd) |
| 554 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 555 | struct se_lun *lun = cmd->se_lun; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 556 | unsigned long flags; |
| 557 | |
| 558 | if (!lun) |
| 559 | return; |
| 560 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 561 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 562 | if (!atomic_read(&cmd->transport_dev_active)) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 563 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 564 | goto check_lun; |
| 565 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 566 | atomic_set(&cmd->transport_dev_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 567 | transport_all_task_dev_remove_state(cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 568 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 569 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 570 | |
| 571 | check_lun: |
| 572 | spin_lock_irqsave(&lun->lun_cmd_lock, flags); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 573 | if (atomic_read(&cmd->transport_lun_active)) { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 574 | list_del(&cmd->se_lun_node); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 575 | atomic_set(&cmd->transport_lun_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 576 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 577 | pr_debug("Removed ITT: 0x%08x from LUN LIST[%d]\n" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 578 | cmd->se_tfo->get_task_tag(cmd), lun->unpacked_lun); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 579 | #endif |
| 580 | } |
| 581 | spin_unlock_irqrestore(&lun->lun_cmd_lock, flags); |
| 582 | } |
| 583 | |
| 584 | void transport_cmd_finish_abort(struct se_cmd *cmd, int remove) |
| 585 | { |
Nicholas Bellinger | 8dc52b5 | 2011-10-09 02:02:51 -0700 | [diff] [blame] | 586 | if (!cmd->se_tmr_req) |
| 587 | transport_lun_remove_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 588 | |
| 589 | if (transport_cmd_check_stop_to_fabric(cmd)) |
| 590 | return; |
Nicholas Bellinger | 77039d1 | 2011-09-29 01:01:35 -0700 | [diff] [blame] | 591 | if (remove) { |
Christoph Hellwig | 3df8d40 | 2011-10-17 13:56:43 -0400 | [diff] [blame] | 592 | transport_remove_cmd_from_queue(cmd); |
Christoph Hellwig | e6a2573 | 2011-09-13 23:08:50 +0200 | [diff] [blame] | 593 | transport_put_cmd(cmd); |
Nicholas Bellinger | 77039d1 | 2011-09-29 01:01:35 -0700 | [diff] [blame] | 594 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 595 | } |
| 596 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 597 | static void transport_add_cmd_to_queue(struct se_cmd *cmd, int t_state, |
| 598 | bool at_head) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 599 | { |
| 600 | struct se_device *dev = cmd->se_dev; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 601 | struct se_queue_obj *qobj = &dev->dev_queue_obj; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 602 | unsigned long flags; |
| 603 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 604 | if (t_state) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 605 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 606 | cmd->t_state = t_state; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 607 | atomic_set(&cmd->t_transport_active, 1); |
| 608 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | spin_lock_irqsave(&qobj->cmd_queue_lock, flags); |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 612 | |
| 613 | /* If the cmd is already on the list, remove it before we add it */ |
| 614 | if (!list_empty(&cmd->se_queue_node)) |
| 615 | list_del(&cmd->se_queue_node); |
| 616 | else |
| 617 | atomic_inc(&qobj->queue_cnt); |
| 618 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 619 | if (at_head) |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 620 | list_add(&cmd->se_queue_node, &qobj->qobj_list); |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 621 | else |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 622 | list_add_tail(&cmd->se_queue_node, &qobj->qobj_list); |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 623 | atomic_set(&cmd->t_transport_queue_active, 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 624 | spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags); |
| 625 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 626 | wake_up_interruptible(&qobj->thread_wq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 627 | } |
| 628 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 629 | static struct se_cmd * |
| 630 | transport_get_cmd_from_queue(struct se_queue_obj *qobj) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 631 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 632 | struct se_cmd *cmd; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 633 | unsigned long flags; |
| 634 | |
| 635 | spin_lock_irqsave(&qobj->cmd_queue_lock, flags); |
| 636 | if (list_empty(&qobj->qobj_list)) { |
| 637 | spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags); |
| 638 | return NULL; |
| 639 | } |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 640 | cmd = list_first_entry(&qobj->qobj_list, struct se_cmd, se_queue_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 641 | |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 642 | atomic_set(&cmd->t_transport_queue_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 643 | |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 644 | list_del_init(&cmd->se_queue_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 645 | atomic_dec(&qobj->queue_cnt); |
| 646 | spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags); |
| 647 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 648 | return cmd; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 649 | } |
| 650 | |
Christoph Hellwig | 3df8d40 | 2011-10-17 13:56:43 -0400 | [diff] [blame] | 651 | static void transport_remove_cmd_from_queue(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 652 | { |
Christoph Hellwig | 3df8d40 | 2011-10-17 13:56:43 -0400 | [diff] [blame] | 653 | struct se_queue_obj *qobj = &cmd->se_dev->dev_queue_obj; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 654 | unsigned long flags; |
| 655 | |
| 656 | spin_lock_irqsave(&qobj->cmd_queue_lock, flags); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 657 | if (!atomic_read(&cmd->t_transport_queue_active)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 658 | spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags); |
| 659 | return; |
| 660 | } |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 661 | atomic_set(&cmd->t_transport_queue_active, 0); |
| 662 | atomic_dec(&qobj->queue_cnt); |
| 663 | list_del_init(&cmd->se_queue_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 664 | spin_unlock_irqrestore(&qobj->cmd_queue_lock, flags); |
| 665 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 666 | if (atomic_read(&cmd->t_transport_queue_active)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 667 | pr_err("ITT: 0x%08x t_transport_queue_active: %d\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 668 | cmd->se_tfo->get_task_tag(cmd), |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 669 | atomic_read(&cmd->t_transport_queue_active)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | |
| 673 | /* |
| 674 | * Completion function used by TCM subsystem plugins (such as FILEIO) |
| 675 | * for queueing up response from struct se_subsystem_api->do_task() |
| 676 | */ |
| 677 | void transport_complete_sync_cache(struct se_cmd *cmd, int good) |
| 678 | { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 679 | struct se_task *task = list_entry(cmd->t_task_list.next, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 680 | struct se_task, t_list); |
| 681 | |
| 682 | if (good) { |
| 683 | cmd->scsi_status = SAM_STAT_GOOD; |
| 684 | task->task_scsi_status = GOOD; |
| 685 | } else { |
| 686 | task->task_scsi_status = SAM_STAT_CHECK_CONDITION; |
| 687 | task->task_error_status = PYX_TRANSPORT_ILLEGAL_REQUEST; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 688 | task->task_se_cmd->transport_error_status = |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 689 | PYX_TRANSPORT_ILLEGAL_REQUEST; |
| 690 | } |
| 691 | |
| 692 | transport_complete_task(task, good); |
| 693 | } |
| 694 | EXPORT_SYMBOL(transport_complete_sync_cache); |
| 695 | |
| 696 | /* transport_complete_task(): |
| 697 | * |
| 698 | * Called from interrupt and non interrupt context depending |
| 699 | * on the transport plugin. |
| 700 | */ |
| 701 | void transport_complete_task(struct se_task *task, int success) |
| 702 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 703 | struct se_cmd *cmd = task->task_se_cmd; |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 704 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 705 | int t_state; |
| 706 | unsigned long flags; |
| 707 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 708 | pr_debug("task: %p CDB: 0x%02x obj_ptr: %p\n", task, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 709 | cmd->t_task_cdb[0], dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 710 | #endif |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 711 | if (dev) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 712 | atomic_inc(&dev->depth_left); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 713 | |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 714 | del_timer(&task->task_timer); |
| 715 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 716 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 717 | task->task_flags &= ~TF_ACTIVE; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 718 | |
| 719 | /* |
| 720 | * See if any sense data exists, if so set the TASK_SENSE flag. |
| 721 | * Also check for any other post completion work that needs to be |
| 722 | * done by the plugins. |
| 723 | */ |
| 724 | if (dev && dev->transport->transport_complete) { |
| 725 | if (dev->transport->transport_complete(task) != 0) { |
| 726 | cmd->se_cmd_flags |= SCF_TRANSPORT_TASK_SENSE; |
| 727 | task->task_sense = 1; |
| 728 | success = 1; |
| 729 | } |
| 730 | } |
| 731 | |
| 732 | /* |
| 733 | * See if we are waiting for outstanding struct se_task |
| 734 | * to complete for an exception condition |
| 735 | */ |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 736 | if (task->task_flags & TF_REQUEST_STOP) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 737 | /* |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 738 | * Decrement cmd->t_se_count if this task had |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 739 | * previously thrown its timeout exception handler. |
| 740 | */ |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 741 | if (task->task_flags & TF_TIMEOUT) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 742 | atomic_dec(&cmd->t_se_count); |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 743 | task->task_flags &= ~TF_TIMEOUT; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 744 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 745 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 746 | |
| 747 | complete(&task->task_stop_comp); |
| 748 | return; |
| 749 | } |
| 750 | /* |
| 751 | * If the task's timeout handler has fired, use the t_task_cdbs_timeout |
| 752 | * left counter to determine when the struct se_cmd is ready to be queued to |
| 753 | * the processing thread. |
| 754 | */ |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 755 | if (task->task_flags & TF_TIMEOUT) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 756 | if (!atomic_dec_and_test( |
| 757 | &cmd->t_task_cdbs_timeout_left)) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 758 | spin_unlock_irqrestore(&cmd->t_state_lock, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 759 | flags); |
| 760 | return; |
| 761 | } |
| 762 | t_state = TRANSPORT_COMPLETE_TIMEOUT; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 763 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 764 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 765 | transport_add_cmd_to_queue(cmd, t_state, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 766 | return; |
| 767 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 768 | atomic_dec(&cmd->t_task_cdbs_timeout_left); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 769 | |
| 770 | /* |
| 771 | * Decrement the outstanding t_task_cdbs_left count. The last |
| 772 | * struct se_task from struct se_cmd will complete itself into the |
| 773 | * device queue depending upon int success. |
| 774 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 775 | if (!atomic_dec_and_test(&cmd->t_task_cdbs_left)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 776 | if (!success) |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 777 | cmd->t_tasks_failed = 1; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 778 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 779 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 780 | return; |
| 781 | } |
| 782 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 783 | if (!success || cmd->t_tasks_failed) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 784 | t_state = TRANSPORT_COMPLETE_FAILURE; |
| 785 | if (!task->task_error_status) { |
| 786 | task->task_error_status = |
| 787 | PYX_TRANSPORT_UNKNOWN_SAM_OPCODE; |
| 788 | cmd->transport_error_status = |
| 789 | PYX_TRANSPORT_UNKNOWN_SAM_OPCODE; |
| 790 | } |
| 791 | } else { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 792 | atomic_set(&cmd->t_transport_complete, 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 793 | t_state = TRANSPORT_COMPLETE_OK; |
| 794 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 795 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 796 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 797 | transport_add_cmd_to_queue(cmd, t_state, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 798 | } |
| 799 | EXPORT_SYMBOL(transport_complete_task); |
| 800 | |
| 801 | /* |
| 802 | * Called by transport_add_tasks_from_cmd() once a struct se_cmd's |
| 803 | * struct se_task list are ready to be added to the active execution list |
| 804 | * struct se_device |
| 805 | |
| 806 | * Called with se_dev_t->execute_task_lock called. |
| 807 | */ |
| 808 | static inline int transport_add_task_check_sam_attr( |
| 809 | struct se_task *task, |
| 810 | struct se_task *task_prev, |
| 811 | struct se_device *dev) |
| 812 | { |
| 813 | /* |
| 814 | * No SAM Task attribute emulation enabled, add to tail of |
| 815 | * execution queue |
| 816 | */ |
| 817 | if (dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED) { |
| 818 | list_add_tail(&task->t_execute_list, &dev->execute_task_list); |
| 819 | return 0; |
| 820 | } |
| 821 | /* |
| 822 | * HEAD_OF_QUEUE attribute for received CDB, which means |
| 823 | * the first task that is associated with a struct se_cmd goes to |
| 824 | * head of the struct se_device->execute_task_list, and task_prev |
| 825 | * after that for each subsequent task |
| 826 | */ |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 827 | if (task->task_se_cmd->sam_task_attr == MSG_HEAD_TAG) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 828 | list_add(&task->t_execute_list, |
| 829 | (task_prev != NULL) ? |
| 830 | &task_prev->t_execute_list : |
| 831 | &dev->execute_task_list); |
| 832 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 833 | pr_debug("Set HEAD_OF_QUEUE for task CDB: 0x%02x" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 834 | " in execution queue\n", |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 835 | task->task_se_cmd->t_task_cdb[0]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 836 | return 1; |
| 837 | } |
| 838 | /* |
| 839 | * For ORDERED, SIMPLE or UNTAGGED attribute tasks once they have been |
| 840 | * transitioned from Dermant -> Active state, and are added to the end |
| 841 | * of the struct se_device->execute_task_list |
| 842 | */ |
| 843 | list_add_tail(&task->t_execute_list, &dev->execute_task_list); |
| 844 | return 0; |
| 845 | } |
| 846 | |
| 847 | /* __transport_add_task_to_execute_queue(): |
| 848 | * |
| 849 | * Called with se_dev_t->execute_task_lock called. |
| 850 | */ |
| 851 | static void __transport_add_task_to_execute_queue( |
| 852 | struct se_task *task, |
| 853 | struct se_task *task_prev, |
| 854 | struct se_device *dev) |
| 855 | { |
| 856 | int head_of_queue; |
| 857 | |
| 858 | head_of_queue = transport_add_task_check_sam_attr(task, task_prev, dev); |
| 859 | atomic_inc(&dev->execute_tasks); |
| 860 | |
| 861 | if (atomic_read(&task->task_state_active)) |
| 862 | return; |
| 863 | /* |
| 864 | * Determine if this task needs to go to HEAD_OF_QUEUE for the |
| 865 | * state list as well. Running with SAM Task Attribute emulation |
| 866 | * will always return head_of_queue == 0 here |
| 867 | */ |
| 868 | if (head_of_queue) |
| 869 | list_add(&task->t_state_list, (task_prev) ? |
| 870 | &task_prev->t_state_list : |
| 871 | &dev->state_task_list); |
| 872 | else |
| 873 | list_add_tail(&task->t_state_list, &dev->state_task_list); |
| 874 | |
| 875 | atomic_set(&task->task_state_active, 1); |
| 876 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 877 | pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 878 | task->task_se_cmd->se_tfo->get_task_tag(task->task_se_cmd), |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 879 | task, dev); |
| 880 | } |
| 881 | |
| 882 | static void transport_add_tasks_to_state_queue(struct se_cmd *cmd) |
| 883 | { |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 884 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 885 | struct se_task *task; |
| 886 | unsigned long flags; |
| 887 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 888 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 889 | list_for_each_entry(task, &cmd->t_task_list, t_list) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 890 | if (atomic_read(&task->task_state_active)) |
| 891 | continue; |
| 892 | |
| 893 | spin_lock(&dev->execute_task_lock); |
| 894 | list_add_tail(&task->t_state_list, &dev->state_task_list); |
| 895 | atomic_set(&task->task_state_active, 1); |
| 896 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 897 | pr_debug("Added ITT: 0x%08x task[%p] to dev: %p\n", |
| 898 | task->task_se_cmd->se_tfo->get_task_tag( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 899 | task->task_se_cmd), task, dev); |
| 900 | |
| 901 | spin_unlock(&dev->execute_task_lock); |
| 902 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 903 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 904 | } |
| 905 | |
| 906 | static void transport_add_tasks_from_cmd(struct se_cmd *cmd) |
| 907 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 908 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 909 | struct se_task *task, *task_prev = NULL; |
| 910 | unsigned long flags; |
| 911 | |
| 912 | spin_lock_irqsave(&dev->execute_task_lock, flags); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 913 | list_for_each_entry(task, &cmd->t_task_list, t_list) { |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 914 | if (!list_empty(&task->t_execute_list)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 915 | continue; |
| 916 | /* |
| 917 | * __transport_add_task_to_execute_queue() handles the |
| 918 | * SAM Task Attribute emulation if enabled |
| 919 | */ |
| 920 | __transport_add_task_to_execute_queue(task, task_prev, dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 921 | task_prev = task; |
| 922 | } |
| 923 | spin_unlock_irqrestore(&dev->execute_task_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 924 | } |
| 925 | |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 926 | void __transport_remove_task_from_execute_queue(struct se_task *task, |
| 927 | struct se_device *dev) |
| 928 | { |
| 929 | list_del_init(&task->t_execute_list); |
| 930 | atomic_dec(&dev->execute_tasks); |
| 931 | } |
| 932 | |
Nicholas Bellinger | 52208ae | 2011-02-24 16:58:20 -0800 | [diff] [blame] | 933 | void transport_remove_task_from_execute_queue( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 934 | struct se_task *task, |
| 935 | struct se_device *dev) |
| 936 | { |
| 937 | unsigned long flags; |
| 938 | |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 939 | if (WARN_ON(list_empty(&task->t_execute_list))) |
Nicholas Bellinger | af57c3a | 2011-05-19 20:19:12 -0700 | [diff] [blame] | 940 | return; |
Nicholas Bellinger | af57c3a | 2011-05-19 20:19:12 -0700 | [diff] [blame] | 941 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 942 | spin_lock_irqsave(&dev->execute_task_lock, flags); |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 943 | __transport_remove_task_from_execute_queue(task, dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 944 | spin_unlock_irqrestore(&dev->execute_task_lock, flags); |
| 945 | } |
| 946 | |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 947 | /* |
| 948 | * Handle QUEUE_FULL / -EAGAIN status |
| 949 | */ |
| 950 | |
| 951 | static void target_qf_do_work(struct work_struct *work) |
| 952 | { |
| 953 | struct se_device *dev = container_of(work, struct se_device, |
| 954 | qf_work_queue); |
Roland Dreier | bcac364 | 2011-08-27 21:33:16 -0700 | [diff] [blame] | 955 | LIST_HEAD(qf_cmd_list); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 956 | struct se_cmd *cmd, *cmd_tmp; |
| 957 | |
| 958 | spin_lock_irq(&dev->qf_cmd_lock); |
Roland Dreier | bcac364 | 2011-08-27 21:33:16 -0700 | [diff] [blame] | 959 | list_splice_init(&dev->qf_cmd_list, &qf_cmd_list); |
| 960 | spin_unlock_irq(&dev->qf_cmd_lock); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 961 | |
Roland Dreier | bcac364 | 2011-08-27 21:33:16 -0700 | [diff] [blame] | 962 | list_for_each_entry_safe(cmd, cmd_tmp, &qf_cmd_list, se_qf_node) { |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 963 | list_del(&cmd->se_qf_node); |
| 964 | atomic_dec(&dev->dev_qf_count); |
| 965 | smp_mb__after_atomic_dec(); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 966 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 967 | pr_debug("Processing %s cmd: %p QUEUE_FULL in work queue" |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 968 | " context: %s\n", cmd->se_tfo->get_fabric_name(), cmd, |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 969 | (cmd->t_state == TRANSPORT_COMPLETE_QF_OK) ? "COMPLETE_OK" : |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 970 | (cmd->t_state == TRANSPORT_COMPLETE_QF_WP) ? "WRITE_PENDING" |
| 971 | : "UNKNOWN"); |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 972 | |
| 973 | transport_add_cmd_to_queue(cmd, cmd->t_state, true); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 974 | } |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 975 | } |
| 976 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 977 | unsigned char *transport_dump_cmd_direction(struct se_cmd *cmd) |
| 978 | { |
| 979 | switch (cmd->data_direction) { |
| 980 | case DMA_NONE: |
| 981 | return "NONE"; |
| 982 | case DMA_FROM_DEVICE: |
| 983 | return "READ"; |
| 984 | case DMA_TO_DEVICE: |
| 985 | return "WRITE"; |
| 986 | case DMA_BIDIRECTIONAL: |
| 987 | return "BIDI"; |
| 988 | default: |
| 989 | break; |
| 990 | } |
| 991 | |
| 992 | return "UNKNOWN"; |
| 993 | } |
| 994 | |
| 995 | void transport_dump_dev_state( |
| 996 | struct se_device *dev, |
| 997 | char *b, |
| 998 | int *bl) |
| 999 | { |
| 1000 | *bl += sprintf(b + *bl, "Status: "); |
| 1001 | switch (dev->dev_status) { |
| 1002 | case TRANSPORT_DEVICE_ACTIVATED: |
| 1003 | *bl += sprintf(b + *bl, "ACTIVATED"); |
| 1004 | break; |
| 1005 | case TRANSPORT_DEVICE_DEACTIVATED: |
| 1006 | *bl += sprintf(b + *bl, "DEACTIVATED"); |
| 1007 | break; |
| 1008 | case TRANSPORT_DEVICE_SHUTDOWN: |
| 1009 | *bl += sprintf(b + *bl, "SHUTDOWN"); |
| 1010 | break; |
| 1011 | case TRANSPORT_DEVICE_OFFLINE_ACTIVATED: |
| 1012 | case TRANSPORT_DEVICE_OFFLINE_DEACTIVATED: |
| 1013 | *bl += sprintf(b + *bl, "OFFLINE"); |
| 1014 | break; |
| 1015 | default: |
| 1016 | *bl += sprintf(b + *bl, "UNKNOWN=%d", dev->dev_status); |
| 1017 | break; |
| 1018 | } |
| 1019 | |
| 1020 | *bl += sprintf(b + *bl, " Execute/Left/Max Queue Depth: %d/%d/%d", |
| 1021 | atomic_read(&dev->execute_tasks), atomic_read(&dev->depth_left), |
| 1022 | dev->queue_depth); |
| 1023 | *bl += sprintf(b + *bl, " SectorSize: %u MaxSectors: %u\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1024 | dev->se_sub_dev->se_dev_attrib.block_size, dev->se_sub_dev->se_dev_attrib.max_sectors); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1025 | *bl += sprintf(b + *bl, " "); |
| 1026 | } |
| 1027 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1028 | void transport_dump_vpd_proto_id( |
| 1029 | struct t10_vpd *vpd, |
| 1030 | unsigned char *p_buf, |
| 1031 | int p_buf_len) |
| 1032 | { |
| 1033 | unsigned char buf[VPD_TMP_BUF_SIZE]; |
| 1034 | int len; |
| 1035 | |
| 1036 | memset(buf, 0, VPD_TMP_BUF_SIZE); |
| 1037 | len = sprintf(buf, "T10 VPD Protocol Identifier: "); |
| 1038 | |
| 1039 | switch (vpd->protocol_identifier) { |
| 1040 | case 0x00: |
| 1041 | sprintf(buf+len, "Fibre Channel\n"); |
| 1042 | break; |
| 1043 | case 0x10: |
| 1044 | sprintf(buf+len, "Parallel SCSI\n"); |
| 1045 | break; |
| 1046 | case 0x20: |
| 1047 | sprintf(buf+len, "SSA\n"); |
| 1048 | break; |
| 1049 | case 0x30: |
| 1050 | sprintf(buf+len, "IEEE 1394\n"); |
| 1051 | break; |
| 1052 | case 0x40: |
| 1053 | sprintf(buf+len, "SCSI Remote Direct Memory Access" |
| 1054 | " Protocol\n"); |
| 1055 | break; |
| 1056 | case 0x50: |
| 1057 | sprintf(buf+len, "Internet SCSI (iSCSI)\n"); |
| 1058 | break; |
| 1059 | case 0x60: |
| 1060 | sprintf(buf+len, "SAS Serial SCSI Protocol\n"); |
| 1061 | break; |
| 1062 | case 0x70: |
| 1063 | sprintf(buf+len, "Automation/Drive Interface Transport" |
| 1064 | " Protocol\n"); |
| 1065 | break; |
| 1066 | case 0x80: |
| 1067 | sprintf(buf+len, "AT Attachment Interface ATA/ATAPI\n"); |
| 1068 | break; |
| 1069 | default: |
| 1070 | sprintf(buf+len, "Unknown 0x%02x\n", |
| 1071 | vpd->protocol_identifier); |
| 1072 | break; |
| 1073 | } |
| 1074 | |
| 1075 | if (p_buf) |
| 1076 | strncpy(p_buf, buf, p_buf_len); |
| 1077 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1078 | pr_debug("%s", buf); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | void |
| 1082 | transport_set_vpd_proto_id(struct t10_vpd *vpd, unsigned char *page_83) |
| 1083 | { |
| 1084 | /* |
| 1085 | * Check if the Protocol Identifier Valid (PIV) bit is set.. |
| 1086 | * |
| 1087 | * from spc3r23.pdf section 7.5.1 |
| 1088 | */ |
| 1089 | if (page_83[1] & 0x80) { |
| 1090 | vpd->protocol_identifier = (page_83[0] & 0xf0); |
| 1091 | vpd->protocol_identifier_set = 1; |
| 1092 | transport_dump_vpd_proto_id(vpd, NULL, 0); |
| 1093 | } |
| 1094 | } |
| 1095 | EXPORT_SYMBOL(transport_set_vpd_proto_id); |
| 1096 | |
| 1097 | int transport_dump_vpd_assoc( |
| 1098 | struct t10_vpd *vpd, |
| 1099 | unsigned char *p_buf, |
| 1100 | int p_buf_len) |
| 1101 | { |
| 1102 | unsigned char buf[VPD_TMP_BUF_SIZE]; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1103 | int ret = 0; |
| 1104 | int len; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1105 | |
| 1106 | memset(buf, 0, VPD_TMP_BUF_SIZE); |
| 1107 | len = sprintf(buf, "T10 VPD Identifier Association: "); |
| 1108 | |
| 1109 | switch (vpd->association) { |
| 1110 | case 0x00: |
| 1111 | sprintf(buf+len, "addressed logical unit\n"); |
| 1112 | break; |
| 1113 | case 0x10: |
| 1114 | sprintf(buf+len, "target port\n"); |
| 1115 | break; |
| 1116 | case 0x20: |
| 1117 | sprintf(buf+len, "SCSI target device\n"); |
| 1118 | break; |
| 1119 | default: |
| 1120 | sprintf(buf+len, "Unknown 0x%02x\n", vpd->association); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1121 | ret = -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1122 | break; |
| 1123 | } |
| 1124 | |
| 1125 | if (p_buf) |
| 1126 | strncpy(p_buf, buf, p_buf_len); |
| 1127 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1128 | pr_debug("%s", buf); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1129 | |
| 1130 | return ret; |
| 1131 | } |
| 1132 | |
| 1133 | int transport_set_vpd_assoc(struct t10_vpd *vpd, unsigned char *page_83) |
| 1134 | { |
| 1135 | /* |
| 1136 | * The VPD identification association.. |
| 1137 | * |
| 1138 | * from spc3r23.pdf Section 7.6.3.1 Table 297 |
| 1139 | */ |
| 1140 | vpd->association = (page_83[1] & 0x30); |
| 1141 | return transport_dump_vpd_assoc(vpd, NULL, 0); |
| 1142 | } |
| 1143 | EXPORT_SYMBOL(transport_set_vpd_assoc); |
| 1144 | |
| 1145 | int transport_dump_vpd_ident_type( |
| 1146 | struct t10_vpd *vpd, |
| 1147 | unsigned char *p_buf, |
| 1148 | int p_buf_len) |
| 1149 | { |
| 1150 | unsigned char buf[VPD_TMP_BUF_SIZE]; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1151 | int ret = 0; |
| 1152 | int len; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1153 | |
| 1154 | memset(buf, 0, VPD_TMP_BUF_SIZE); |
| 1155 | len = sprintf(buf, "T10 VPD Identifier Type: "); |
| 1156 | |
| 1157 | switch (vpd->device_identifier_type) { |
| 1158 | case 0x00: |
| 1159 | sprintf(buf+len, "Vendor specific\n"); |
| 1160 | break; |
| 1161 | case 0x01: |
| 1162 | sprintf(buf+len, "T10 Vendor ID based\n"); |
| 1163 | break; |
| 1164 | case 0x02: |
| 1165 | sprintf(buf+len, "EUI-64 based\n"); |
| 1166 | break; |
| 1167 | case 0x03: |
| 1168 | sprintf(buf+len, "NAA\n"); |
| 1169 | break; |
| 1170 | case 0x04: |
| 1171 | sprintf(buf+len, "Relative target port identifier\n"); |
| 1172 | break; |
| 1173 | case 0x08: |
| 1174 | sprintf(buf+len, "SCSI name string\n"); |
| 1175 | break; |
| 1176 | default: |
| 1177 | sprintf(buf+len, "Unsupported: 0x%02x\n", |
| 1178 | vpd->device_identifier_type); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1179 | ret = -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1180 | break; |
| 1181 | } |
| 1182 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1183 | if (p_buf) { |
| 1184 | if (p_buf_len < strlen(buf)+1) |
| 1185 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1186 | strncpy(p_buf, buf, p_buf_len); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1187 | } else { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1188 | pr_debug("%s", buf); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1189 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1190 | |
| 1191 | return ret; |
| 1192 | } |
| 1193 | |
| 1194 | int transport_set_vpd_ident_type(struct t10_vpd *vpd, unsigned char *page_83) |
| 1195 | { |
| 1196 | /* |
| 1197 | * The VPD identifier type.. |
| 1198 | * |
| 1199 | * from spc3r23.pdf Section 7.6.3.1 Table 298 |
| 1200 | */ |
| 1201 | vpd->device_identifier_type = (page_83[1] & 0x0f); |
| 1202 | return transport_dump_vpd_ident_type(vpd, NULL, 0); |
| 1203 | } |
| 1204 | EXPORT_SYMBOL(transport_set_vpd_ident_type); |
| 1205 | |
| 1206 | int transport_dump_vpd_ident( |
| 1207 | struct t10_vpd *vpd, |
| 1208 | unsigned char *p_buf, |
| 1209 | int p_buf_len) |
| 1210 | { |
| 1211 | unsigned char buf[VPD_TMP_BUF_SIZE]; |
| 1212 | int ret = 0; |
| 1213 | |
| 1214 | memset(buf, 0, VPD_TMP_BUF_SIZE); |
| 1215 | |
| 1216 | switch (vpd->device_identifier_code_set) { |
| 1217 | case 0x01: /* Binary */ |
| 1218 | sprintf(buf, "T10 VPD Binary Device Identifier: %s\n", |
| 1219 | &vpd->device_identifier[0]); |
| 1220 | break; |
| 1221 | case 0x02: /* ASCII */ |
| 1222 | sprintf(buf, "T10 VPD ASCII Device Identifier: %s\n", |
| 1223 | &vpd->device_identifier[0]); |
| 1224 | break; |
| 1225 | case 0x03: /* UTF-8 */ |
| 1226 | sprintf(buf, "T10 VPD UTF-8 Device Identifier: %s\n", |
| 1227 | &vpd->device_identifier[0]); |
| 1228 | break; |
| 1229 | default: |
| 1230 | sprintf(buf, "T10 VPD Device Identifier encoding unsupported:" |
| 1231 | " 0x%02x", vpd->device_identifier_code_set); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1232 | ret = -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1233 | break; |
| 1234 | } |
| 1235 | |
| 1236 | if (p_buf) |
| 1237 | strncpy(p_buf, buf, p_buf_len); |
| 1238 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1239 | pr_debug("%s", buf); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1240 | |
| 1241 | return ret; |
| 1242 | } |
| 1243 | |
| 1244 | int |
| 1245 | transport_set_vpd_ident(struct t10_vpd *vpd, unsigned char *page_83) |
| 1246 | { |
| 1247 | static const char hex_str[] = "0123456789abcdef"; |
| 1248 | int j = 0, i = 4; /* offset to start of the identifer */ |
| 1249 | |
| 1250 | /* |
| 1251 | * The VPD Code Set (encoding) |
| 1252 | * |
| 1253 | * from spc3r23.pdf Section 7.6.3.1 Table 296 |
| 1254 | */ |
| 1255 | vpd->device_identifier_code_set = (page_83[0] & 0x0f); |
| 1256 | switch (vpd->device_identifier_code_set) { |
| 1257 | case 0x01: /* Binary */ |
| 1258 | vpd->device_identifier[j++] = |
| 1259 | hex_str[vpd->device_identifier_type]; |
| 1260 | while (i < (4 + page_83[3])) { |
| 1261 | vpd->device_identifier[j++] = |
| 1262 | hex_str[(page_83[i] & 0xf0) >> 4]; |
| 1263 | vpd->device_identifier[j++] = |
| 1264 | hex_str[page_83[i] & 0x0f]; |
| 1265 | i++; |
| 1266 | } |
| 1267 | break; |
| 1268 | case 0x02: /* ASCII */ |
| 1269 | case 0x03: /* UTF-8 */ |
| 1270 | while (i < (4 + page_83[3])) |
| 1271 | vpd->device_identifier[j++] = page_83[i++]; |
| 1272 | break; |
| 1273 | default: |
| 1274 | break; |
| 1275 | } |
| 1276 | |
| 1277 | return transport_dump_vpd_ident(vpd, NULL, 0); |
| 1278 | } |
| 1279 | EXPORT_SYMBOL(transport_set_vpd_ident); |
| 1280 | |
| 1281 | static void core_setup_task_attr_emulation(struct se_device *dev) |
| 1282 | { |
| 1283 | /* |
| 1284 | * If this device is from Target_Core_Mod/pSCSI, disable the |
| 1285 | * SAM Task Attribute emulation. |
| 1286 | * |
| 1287 | * This is currently not available in upsream Linux/SCSI Target |
| 1288 | * mode code, and is assumed to be disabled while using TCM/pSCSI. |
| 1289 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1290 | if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1291 | dev->dev_task_attr_type = SAM_TASK_ATTR_PASSTHROUGH; |
| 1292 | return; |
| 1293 | } |
| 1294 | |
| 1295 | dev->dev_task_attr_type = SAM_TASK_ATTR_EMULATED; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1296 | pr_debug("%s: Using SAM_TASK_ATTR_EMULATED for SPC: 0x%02x" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1297 | " device\n", dev->transport->name, |
| 1298 | dev->transport->get_device_rev(dev)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | static void scsi_dump_inquiry(struct se_device *dev) |
| 1302 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1303 | struct t10_wwn *wwn = &dev->se_sub_dev->t10_wwn; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1304 | int i, device_type; |
| 1305 | /* |
| 1306 | * Print Linux/SCSI style INQUIRY formatting to the kernel ring buffer |
| 1307 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1308 | pr_debug(" Vendor: "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1309 | for (i = 0; i < 8; i++) |
| 1310 | if (wwn->vendor[i] >= 0x20) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1311 | pr_debug("%c", wwn->vendor[i]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1312 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1313 | pr_debug(" "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1314 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1315 | pr_debug(" Model: "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1316 | for (i = 0; i < 16; i++) |
| 1317 | if (wwn->model[i] >= 0x20) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1318 | pr_debug("%c", wwn->model[i]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1319 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1320 | pr_debug(" "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1321 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1322 | pr_debug(" Revision: "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1323 | for (i = 0; i < 4; i++) |
| 1324 | if (wwn->revision[i] >= 0x20) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1325 | pr_debug("%c", wwn->revision[i]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1326 | else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1327 | pr_debug(" "); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1328 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1329 | pr_debug("\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1330 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1331 | device_type = dev->transport->get_device_type(dev); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1332 | pr_debug(" Type: %s ", scsi_device_type(device_type)); |
| 1333 | pr_debug(" ANSI SCSI revision: %02x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1334 | dev->transport->get_device_rev(dev)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | struct se_device *transport_add_device_to_core_hba( |
| 1338 | struct se_hba *hba, |
| 1339 | struct se_subsystem_api *transport, |
| 1340 | struct se_subsystem_dev *se_dev, |
| 1341 | u32 device_flags, |
| 1342 | void *transport_dev, |
| 1343 | struct se_dev_limits *dev_limits, |
| 1344 | const char *inquiry_prod, |
| 1345 | const char *inquiry_rev) |
| 1346 | { |
Nicholas Bellinger | 12a18bd | 2011-03-14 04:06:06 -0700 | [diff] [blame] | 1347 | int force_pt; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1348 | struct se_device *dev; |
| 1349 | |
| 1350 | dev = kzalloc(sizeof(struct se_device), GFP_KERNEL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1351 | if (!dev) { |
| 1352 | pr_err("Unable to allocate memory for se_dev_t\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1353 | return NULL; |
| 1354 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1355 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1356 | transport_init_queue_obj(&dev->dev_queue_obj); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1357 | dev->dev_flags = device_flags; |
| 1358 | dev->dev_status |= TRANSPORT_DEVICE_DEACTIVATED; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1359 | dev->dev_ptr = transport_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1360 | dev->se_hba = hba; |
| 1361 | dev->se_sub_dev = se_dev; |
| 1362 | dev->transport = transport; |
| 1363 | atomic_set(&dev->active_cmds, 0); |
| 1364 | INIT_LIST_HEAD(&dev->dev_list); |
| 1365 | INIT_LIST_HEAD(&dev->dev_sep_list); |
| 1366 | INIT_LIST_HEAD(&dev->dev_tmr_list); |
| 1367 | INIT_LIST_HEAD(&dev->execute_task_list); |
| 1368 | INIT_LIST_HEAD(&dev->delayed_cmd_list); |
| 1369 | INIT_LIST_HEAD(&dev->ordered_cmd_list); |
| 1370 | INIT_LIST_HEAD(&dev->state_task_list); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1371 | INIT_LIST_HEAD(&dev->qf_cmd_list); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1372 | spin_lock_init(&dev->execute_task_lock); |
| 1373 | spin_lock_init(&dev->delayed_cmd_lock); |
| 1374 | spin_lock_init(&dev->ordered_cmd_lock); |
| 1375 | spin_lock_init(&dev->state_task_lock); |
| 1376 | spin_lock_init(&dev->dev_alua_lock); |
| 1377 | spin_lock_init(&dev->dev_reservation_lock); |
| 1378 | spin_lock_init(&dev->dev_status_lock); |
| 1379 | spin_lock_init(&dev->dev_status_thr_lock); |
| 1380 | spin_lock_init(&dev->se_port_lock); |
| 1381 | spin_lock_init(&dev->se_tmr_lock); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1382 | spin_lock_init(&dev->qf_cmd_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1383 | |
| 1384 | dev->queue_depth = dev_limits->queue_depth; |
| 1385 | atomic_set(&dev->depth_left, dev->queue_depth); |
| 1386 | atomic_set(&dev->dev_ordered_id, 0); |
| 1387 | |
| 1388 | se_dev_set_default_attribs(dev, dev_limits); |
| 1389 | |
| 1390 | dev->dev_index = scsi_get_new_index(SCSI_DEVICE_INDEX); |
| 1391 | dev->creation_time = get_jiffies_64(); |
| 1392 | spin_lock_init(&dev->stats_lock); |
| 1393 | |
| 1394 | spin_lock(&hba->device_lock); |
| 1395 | list_add_tail(&dev->dev_list, &hba->hba_dev_list); |
| 1396 | hba->dev_count++; |
| 1397 | spin_unlock(&hba->device_lock); |
| 1398 | /* |
| 1399 | * Setup the SAM Task Attribute emulation for struct se_device |
| 1400 | */ |
| 1401 | core_setup_task_attr_emulation(dev); |
| 1402 | /* |
| 1403 | * Force PR and ALUA passthrough emulation with internal object use. |
| 1404 | */ |
| 1405 | force_pt = (hba->hba_flags & HBA_FLAGS_INTERNAL_USE); |
| 1406 | /* |
| 1407 | * Setup the Reservations infrastructure for struct se_device |
| 1408 | */ |
| 1409 | core_setup_reservations(dev, force_pt); |
| 1410 | /* |
| 1411 | * Setup the Asymmetric Logical Unit Assignment for struct se_device |
| 1412 | */ |
| 1413 | if (core_setup_alua(dev, force_pt) < 0) |
| 1414 | goto out; |
| 1415 | |
| 1416 | /* |
| 1417 | * Startup the struct se_device processing thread |
| 1418 | */ |
| 1419 | dev->process_thread = kthread_run(transport_processing_thread, dev, |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1420 | "LIO_%s", dev->transport->name); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1421 | if (IS_ERR(dev->process_thread)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1422 | pr_err("Unable to create kthread: LIO_%s\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1423 | dev->transport->name); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1424 | goto out; |
| 1425 | } |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1426 | /* |
| 1427 | * Setup work_queue for QUEUE_FULL |
| 1428 | */ |
| 1429 | INIT_WORK(&dev->qf_work_queue, target_qf_do_work); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1430 | /* |
| 1431 | * Preload the initial INQUIRY const values if we are doing |
| 1432 | * anything virtual (IBLOCK, FILEIO, RAMDISK), but not for TCM/pSCSI |
| 1433 | * passthrough because this is being provided by the backend LLD. |
| 1434 | * This is required so that transport_get_inquiry() copies these |
| 1435 | * originals once back into DEV_T10_WWN(dev) for the virtual device |
| 1436 | * setup. |
| 1437 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1438 | if (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) { |
Roland Dreier | f22c119 | 2011-05-02 22:15:37 -0700 | [diff] [blame] | 1439 | if (!inquiry_prod || !inquiry_rev) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1440 | pr_err("All non TCM/pSCSI plugins require" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1441 | " INQUIRY consts\n"); |
| 1442 | goto out; |
| 1443 | } |
| 1444 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1445 | strncpy(&dev->se_sub_dev->t10_wwn.vendor[0], "LIO-ORG", 8); |
| 1446 | strncpy(&dev->se_sub_dev->t10_wwn.model[0], inquiry_prod, 16); |
| 1447 | strncpy(&dev->se_sub_dev->t10_wwn.revision[0], inquiry_rev, 4); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1448 | } |
| 1449 | scsi_dump_inquiry(dev); |
| 1450 | |
Nicholas Bellinger | 12a18bd | 2011-03-14 04:06:06 -0700 | [diff] [blame] | 1451 | return dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1452 | out: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1453 | kthread_stop(dev->process_thread); |
| 1454 | |
| 1455 | spin_lock(&hba->device_lock); |
| 1456 | list_del(&dev->dev_list); |
| 1457 | hba->dev_count--; |
| 1458 | spin_unlock(&hba->device_lock); |
| 1459 | |
| 1460 | se_release_vpd_for_dev(dev); |
| 1461 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1462 | kfree(dev); |
| 1463 | |
| 1464 | return NULL; |
| 1465 | } |
| 1466 | EXPORT_SYMBOL(transport_add_device_to_core_hba); |
| 1467 | |
| 1468 | /* transport_generic_prepare_cdb(): |
| 1469 | * |
| 1470 | * Since the Initiator sees iSCSI devices as LUNs, the SCSI CDB will |
| 1471 | * contain the iSCSI LUN in bits 7-5 of byte 1 as per SAM-2. |
| 1472 | * The point of this is since we are mapping iSCSI LUNs to |
| 1473 | * SCSI Target IDs having a non-zero LUN in the CDB will throw the |
| 1474 | * devices and HBAs for a loop. |
| 1475 | */ |
| 1476 | static inline void transport_generic_prepare_cdb( |
| 1477 | unsigned char *cdb) |
| 1478 | { |
| 1479 | switch (cdb[0]) { |
| 1480 | case READ_10: /* SBC - RDProtect */ |
| 1481 | case READ_12: /* SBC - RDProtect */ |
| 1482 | case READ_16: /* SBC - RDProtect */ |
| 1483 | case SEND_DIAGNOSTIC: /* SPC - SELF-TEST Code */ |
| 1484 | case VERIFY: /* SBC - VRProtect */ |
| 1485 | case VERIFY_16: /* SBC - VRProtect */ |
| 1486 | case WRITE_VERIFY: /* SBC - VRProtect */ |
| 1487 | case WRITE_VERIFY_12: /* SBC - VRProtect */ |
| 1488 | break; |
| 1489 | default: |
| 1490 | cdb[1] &= 0x1f; /* clear logical unit number */ |
| 1491 | break; |
| 1492 | } |
| 1493 | } |
| 1494 | |
| 1495 | static struct se_task * |
| 1496 | transport_generic_get_task(struct se_cmd *cmd, |
| 1497 | enum dma_data_direction data_direction) |
| 1498 | { |
| 1499 | struct se_task *task; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1500 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1501 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1502 | task = dev->transport->alloc_task(cmd->t_task_cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1503 | if (!task) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1504 | pr_err("Unable to allocate struct se_task\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1505 | return NULL; |
| 1506 | } |
| 1507 | |
| 1508 | INIT_LIST_HEAD(&task->t_list); |
| 1509 | INIT_LIST_HEAD(&task->t_execute_list); |
| 1510 | INIT_LIST_HEAD(&task->t_state_list); |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 1511 | init_timer(&task->task_timer); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1512 | init_completion(&task->task_stop_comp); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1513 | task->task_se_cmd = cmd; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1514 | task->task_data_direction = data_direction; |
| 1515 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1516 | return task; |
| 1517 | } |
| 1518 | |
| 1519 | static int transport_generic_cmd_sequencer(struct se_cmd *, unsigned char *); |
| 1520 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1521 | /* |
| 1522 | * Used by fabric modules containing a local struct se_cmd within their |
| 1523 | * fabric dependent per I/O descriptor. |
| 1524 | */ |
| 1525 | void transport_init_se_cmd( |
| 1526 | struct se_cmd *cmd, |
| 1527 | struct target_core_fabric_ops *tfo, |
| 1528 | struct se_session *se_sess, |
| 1529 | u32 data_length, |
| 1530 | int data_direction, |
| 1531 | int task_attr, |
| 1532 | unsigned char *sense_buffer) |
| 1533 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1534 | INIT_LIST_HEAD(&cmd->se_lun_node); |
| 1535 | INIT_LIST_HEAD(&cmd->se_delayed_node); |
| 1536 | INIT_LIST_HEAD(&cmd->se_ordered_node); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1537 | INIT_LIST_HEAD(&cmd->se_qf_node); |
Roland Dreier | 79a7fef | 2011-09-28 22:12:07 -0700 | [diff] [blame] | 1538 | INIT_LIST_HEAD(&cmd->se_queue_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1539 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1540 | INIT_LIST_HEAD(&cmd->t_task_list); |
| 1541 | init_completion(&cmd->transport_lun_fe_stop_comp); |
| 1542 | init_completion(&cmd->transport_lun_stop_comp); |
| 1543 | init_completion(&cmd->t_transport_stop_comp); |
| 1544 | spin_lock_init(&cmd->t_state_lock); |
| 1545 | atomic_set(&cmd->transport_dev_active, 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1546 | |
| 1547 | cmd->se_tfo = tfo; |
| 1548 | cmd->se_sess = se_sess; |
| 1549 | cmd->data_length = data_length; |
| 1550 | cmd->data_direction = data_direction; |
| 1551 | cmd->sam_task_attr = task_attr; |
| 1552 | cmd->sense_buffer = sense_buffer; |
| 1553 | } |
| 1554 | EXPORT_SYMBOL(transport_init_se_cmd); |
| 1555 | |
| 1556 | static int transport_check_alloc_task_attr(struct se_cmd *cmd) |
| 1557 | { |
| 1558 | /* |
| 1559 | * Check if SAM Task Attribute emulation is enabled for this |
| 1560 | * struct se_device storage object |
| 1561 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1562 | if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1563 | return 0; |
| 1564 | |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 1565 | if (cmd->sam_task_attr == MSG_ACA_TAG) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1566 | pr_debug("SAM Task Attribute ACA" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1567 | " emulation is not supported\n"); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1568 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1569 | } |
| 1570 | /* |
| 1571 | * Used to determine when ORDERED commands should go from |
| 1572 | * Dormant to Active status. |
| 1573 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1574 | cmd->se_ordered_id = atomic_inc_return(&cmd->se_dev->dev_ordered_id); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1575 | smp_mb__after_atomic_inc(); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1576 | pr_debug("Allocated se_ordered_id: %u for Task Attr: 0x%02x on %s\n", |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1577 | cmd->se_ordered_id, cmd->sam_task_attr, |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1578 | cmd->se_dev->transport->name); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1579 | return 0; |
| 1580 | } |
| 1581 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1582 | /* transport_generic_allocate_tasks(): |
| 1583 | * |
| 1584 | * Called from fabric RX Thread. |
| 1585 | */ |
| 1586 | int transport_generic_allocate_tasks( |
| 1587 | struct se_cmd *cmd, |
| 1588 | unsigned char *cdb) |
| 1589 | { |
| 1590 | int ret; |
| 1591 | |
| 1592 | transport_generic_prepare_cdb(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1593 | /* |
| 1594 | * Ensure that the received CDB is less than the max (252 + 8) bytes |
| 1595 | * for VARIABLE_LENGTH_CMD |
| 1596 | */ |
| 1597 | if (scsi_command_size(cdb) > SCSI_MAX_VARLEN_CDB_SIZE) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1598 | pr_err("Received SCSI CDB with command_size: %d that" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1599 | " exceeds SCSI_MAX_VARLEN_CDB_SIZE: %d\n", |
| 1600 | scsi_command_size(cdb), SCSI_MAX_VARLEN_CDB_SIZE); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1601 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1602 | } |
| 1603 | /* |
| 1604 | * If the received CDB is larger than TCM_MAX_COMMAND_SIZE, |
| 1605 | * allocate the additional extended CDB buffer now.. Otherwise |
| 1606 | * setup the pointer from __t_task_cdb to t_task_cdb. |
| 1607 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1608 | if (scsi_command_size(cdb) > sizeof(cmd->__t_task_cdb)) { |
| 1609 | cmd->t_task_cdb = kzalloc(scsi_command_size(cdb), |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1610 | GFP_KERNEL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1611 | if (!cmd->t_task_cdb) { |
| 1612 | pr_err("Unable to allocate cmd->t_task_cdb" |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1613 | " %u > sizeof(cmd->__t_task_cdb): %lu ops\n", |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1614 | scsi_command_size(cdb), |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1615 | (unsigned long)sizeof(cmd->__t_task_cdb)); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1616 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1617 | } |
| 1618 | } else |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1619 | cmd->t_task_cdb = &cmd->__t_task_cdb[0]; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1620 | /* |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1621 | * Copy the original CDB into cmd-> |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1622 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1623 | memcpy(cmd->t_task_cdb, cdb, scsi_command_size(cdb)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1624 | /* |
| 1625 | * Setup the received CDB based on SCSI defined opcodes and |
| 1626 | * perform unit attention, persistent reservations and ALUA |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1627 | * checks for virtual device backends. The cmd->t_task_cdb |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1628 | * pointer is expected to be setup before we reach this point. |
| 1629 | */ |
| 1630 | ret = transport_generic_cmd_sequencer(cmd, cdb); |
| 1631 | if (ret < 0) |
| 1632 | return ret; |
| 1633 | /* |
| 1634 | * Check for SAM Task Attribute Emulation |
| 1635 | */ |
| 1636 | if (transport_check_alloc_task_attr(cmd) < 0) { |
| 1637 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 1638 | cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 1639 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1640 | } |
| 1641 | spin_lock(&cmd->se_lun->lun_sep_lock); |
| 1642 | if (cmd->se_lun->lun_sep) |
| 1643 | cmd->se_lun->lun_sep->sep_stats.cmd_pdus++; |
| 1644 | spin_unlock(&cmd->se_lun->lun_sep_lock); |
| 1645 | return 0; |
| 1646 | } |
| 1647 | EXPORT_SYMBOL(transport_generic_allocate_tasks); |
| 1648 | |
Nicholas Bellinger | dd8ae59 | 2011-07-30 05:03:58 -0700 | [diff] [blame] | 1649 | static void transport_generic_request_failure(struct se_cmd *, |
| 1650 | struct se_device *, int, int); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1651 | /* |
Nicholas Bellinger | 695434e1 | 2011-06-03 20:59:19 -0700 | [diff] [blame] | 1652 | * Used by fabric module frontends to queue tasks directly. |
| 1653 | * Many only be used from process context only |
| 1654 | */ |
| 1655 | int transport_handle_cdb_direct( |
| 1656 | struct se_cmd *cmd) |
| 1657 | { |
Nicholas Bellinger | dd8ae59 | 2011-07-30 05:03:58 -0700 | [diff] [blame] | 1658 | int ret; |
| 1659 | |
Nicholas Bellinger | 695434e1 | 2011-06-03 20:59:19 -0700 | [diff] [blame] | 1660 | if (!cmd->se_lun) { |
| 1661 | dump_stack(); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1662 | pr_err("cmd->se_lun is NULL\n"); |
Nicholas Bellinger | 695434e1 | 2011-06-03 20:59:19 -0700 | [diff] [blame] | 1663 | return -EINVAL; |
| 1664 | } |
| 1665 | if (in_interrupt()) { |
| 1666 | dump_stack(); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1667 | pr_err("transport_generic_handle_cdb cannot be called" |
Nicholas Bellinger | 695434e1 | 2011-06-03 20:59:19 -0700 | [diff] [blame] | 1668 | " from interrupt context\n"); |
| 1669 | return -EINVAL; |
| 1670 | } |
Nicholas Bellinger | dd8ae59 | 2011-07-30 05:03:58 -0700 | [diff] [blame] | 1671 | /* |
| 1672 | * Set TRANSPORT_NEW_CMD state and cmd->t_transport_active=1 following |
| 1673 | * transport_generic_handle_cdb*() -> transport_add_cmd_to_queue() |
| 1674 | * in existing usage to ensure that outstanding descriptors are handled |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 1675 | * correctly during shutdown via transport_wait_for_tasks() |
Nicholas Bellinger | dd8ae59 | 2011-07-30 05:03:58 -0700 | [diff] [blame] | 1676 | * |
| 1677 | * Also, we don't take cmd->t_state_lock here as we only expect |
| 1678 | * this to be called for initial descriptor submission. |
| 1679 | */ |
| 1680 | cmd->t_state = TRANSPORT_NEW_CMD; |
| 1681 | atomic_set(&cmd->t_transport_active, 1); |
| 1682 | /* |
| 1683 | * transport_generic_new_cmd() is already handling QUEUE_FULL, |
| 1684 | * so follow TRANSPORT_NEW_CMD processing thread context usage |
| 1685 | * and call transport_generic_request_failure() if necessary.. |
| 1686 | */ |
| 1687 | ret = transport_generic_new_cmd(cmd); |
| 1688 | if (ret == -EAGAIN) |
| 1689 | return 0; |
| 1690 | else if (ret < 0) { |
| 1691 | cmd->transport_error_status = ret; |
| 1692 | transport_generic_request_failure(cmd, NULL, 0, |
| 1693 | (cmd->data_direction != DMA_TO_DEVICE)); |
| 1694 | } |
| 1695 | return 0; |
Nicholas Bellinger | 695434e1 | 2011-06-03 20:59:19 -0700 | [diff] [blame] | 1696 | } |
| 1697 | EXPORT_SYMBOL(transport_handle_cdb_direct); |
| 1698 | |
| 1699 | /* |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1700 | * Used by fabric module frontends defining a TFO->new_cmd_map() caller |
| 1701 | * to queue up a newly setup se_cmd w/ TRANSPORT_NEW_CMD_MAP in order to |
| 1702 | * complete setup in TCM process context w/ TFO->new_cmd_map(). |
| 1703 | */ |
| 1704 | int transport_generic_handle_cdb_map( |
| 1705 | struct se_cmd *cmd) |
| 1706 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1707 | if (!cmd->se_lun) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1708 | dump_stack(); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1709 | pr_err("cmd->se_lun is NULL\n"); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1710 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1711 | } |
| 1712 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 1713 | transport_add_cmd_to_queue(cmd, TRANSPORT_NEW_CMD_MAP, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1714 | return 0; |
| 1715 | } |
| 1716 | EXPORT_SYMBOL(transport_generic_handle_cdb_map); |
| 1717 | |
| 1718 | /* transport_generic_handle_data(): |
| 1719 | * |
| 1720 | * |
| 1721 | */ |
| 1722 | int transport_generic_handle_data( |
| 1723 | struct se_cmd *cmd) |
| 1724 | { |
| 1725 | /* |
| 1726 | * For the software fabric case, then we assume the nexus is being |
| 1727 | * failed/shutdown when signals are pending from the kthread context |
| 1728 | * caller, so we return a failure. For the HW target mode case running |
| 1729 | * in interrupt code, the signal_pending() check is skipped. |
| 1730 | */ |
| 1731 | if (!in_interrupt() && signal_pending(current)) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1732 | return -EPERM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1733 | /* |
| 1734 | * If the received CDB has aleady been ABORTED by the generic |
| 1735 | * target engine, we now call transport_check_aborted_status() |
| 1736 | * to queue any delated TASK_ABORTED status for the received CDB to the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1737 | * fabric module as we are expecting no further incoming DATA OUT |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1738 | * sequences at this point. |
| 1739 | */ |
| 1740 | if (transport_check_aborted_status(cmd, 1) != 0) |
| 1741 | return 0; |
| 1742 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 1743 | transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_WRITE, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1744 | return 0; |
| 1745 | } |
| 1746 | EXPORT_SYMBOL(transport_generic_handle_data); |
| 1747 | |
| 1748 | /* transport_generic_handle_tmr(): |
| 1749 | * |
| 1750 | * |
| 1751 | */ |
| 1752 | int transport_generic_handle_tmr( |
| 1753 | struct se_cmd *cmd) |
| 1754 | { |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 1755 | transport_add_cmd_to_queue(cmd, TRANSPORT_PROCESS_TMR, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1756 | return 0; |
| 1757 | } |
| 1758 | EXPORT_SYMBOL(transport_generic_handle_tmr); |
| 1759 | |
Nicholas Bellinger | f436677 | 2011-05-19 20:19:11 -0700 | [diff] [blame] | 1760 | void transport_generic_free_cmd_intr( |
| 1761 | struct se_cmd *cmd) |
| 1762 | { |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 1763 | transport_add_cmd_to_queue(cmd, TRANSPORT_FREE_CMD_INTR, false); |
Nicholas Bellinger | f436677 | 2011-05-19 20:19:11 -0700 | [diff] [blame] | 1764 | } |
| 1765 | EXPORT_SYMBOL(transport_generic_free_cmd_intr); |
| 1766 | |
Christoph Hellwig | cdbb70b | 2011-10-17 13:56:46 -0400 | [diff] [blame] | 1767 | /* |
| 1768 | * If the task is active, request it to be stopped and sleep until it |
| 1769 | * has completed. |
| 1770 | */ |
| 1771 | bool target_stop_task(struct se_task *task, unsigned long *flags) |
| 1772 | { |
| 1773 | struct se_cmd *cmd = task->task_se_cmd; |
| 1774 | bool was_active = false; |
| 1775 | |
| 1776 | if (task->task_flags & TF_ACTIVE) { |
| 1777 | task->task_flags |= TF_REQUEST_STOP; |
| 1778 | spin_unlock_irqrestore(&cmd->t_state_lock, *flags); |
| 1779 | |
| 1780 | pr_debug("Task %p waiting to complete\n", task); |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 1781 | del_timer_sync(&task->task_timer); |
Christoph Hellwig | cdbb70b | 2011-10-17 13:56:46 -0400 | [diff] [blame] | 1782 | wait_for_completion(&task->task_stop_comp); |
| 1783 | pr_debug("Task %p stopped successfully\n", task); |
| 1784 | |
| 1785 | spin_lock_irqsave(&cmd->t_state_lock, *flags); |
| 1786 | atomic_dec(&cmd->t_task_cdbs_left); |
| 1787 | task->task_flags &= ~(TF_ACTIVE | TF_REQUEST_STOP); |
| 1788 | was_active = true; |
| 1789 | } |
| 1790 | |
Christoph Hellwig | cdbb70b | 2011-10-17 13:56:46 -0400 | [diff] [blame] | 1791 | return was_active; |
| 1792 | } |
| 1793 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1794 | static int transport_stop_tasks_for_cmd(struct se_cmd *cmd) |
| 1795 | { |
| 1796 | struct se_task *task, *task_tmp; |
| 1797 | unsigned long flags; |
| 1798 | int ret = 0; |
| 1799 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1800 | pr_debug("ITT[0x%08x] - Stopping tasks\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1801 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1802 | |
| 1803 | /* |
| 1804 | * No tasks remain in the execution queue |
| 1805 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1806 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1807 | list_for_each_entry_safe(task, task_tmp, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1808 | &cmd->t_task_list, t_list) { |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 1809 | pr_debug("Processing task %p\n", task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1810 | /* |
| 1811 | * If the struct se_task has not been sent and is not active, |
| 1812 | * remove the struct se_task from the execution queue. |
| 1813 | */ |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 1814 | if (!(task->task_flags & (TF_ACTIVE | TF_SENT))) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1815 | spin_unlock_irqrestore(&cmd->t_state_lock, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1816 | flags); |
| 1817 | transport_remove_task_from_execute_queue(task, |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 1818 | cmd->se_dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1819 | |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 1820 | pr_debug("Task %p removed from execute queue\n", task); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1821 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1822 | continue; |
| 1823 | } |
| 1824 | |
Christoph Hellwig | cdbb70b | 2011-10-17 13:56:46 -0400 | [diff] [blame] | 1825 | if (!target_stop_task(task, &flags)) { |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 1826 | pr_debug("Task %p - did nothing\n", task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1827 | ret++; |
| 1828 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1829 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1830 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1831 | |
| 1832 | return ret; |
| 1833 | } |
| 1834 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1835 | /* |
| 1836 | * Handle SAM-esque emulation for generic transport request failures. |
| 1837 | */ |
| 1838 | static void transport_generic_request_failure( |
| 1839 | struct se_cmd *cmd, |
| 1840 | struct se_device *dev, |
| 1841 | int complete, |
| 1842 | int sc) |
| 1843 | { |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1844 | int ret = 0; |
| 1845 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1846 | pr_debug("-----[ Storage Engine Exception for cmd: %p ITT: 0x%08x" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1847 | " CDB: 0x%02x\n", cmd, cmd->se_tfo->get_task_tag(cmd), |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1848 | cmd->t_task_cdb[0]); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1849 | pr_debug("-----[ i_state: %d t_state/def_t_state:" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1850 | " %d/%d transport_error_status: %d\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1851 | cmd->se_tfo->get_cmd_state(cmd), |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1852 | cmd->t_state, cmd->deferred_t_state, |
| 1853 | cmd->transport_error_status); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1854 | pr_debug("-----[ t_tasks: %d t_task_cdbs_left: %d" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1855 | " t_task_cdbs_sent: %d t_task_cdbs_ex_left: %d --" |
| 1856 | " t_transport_active: %d t_transport_stop: %d" |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1857 | " t_transport_sent: %d\n", cmd->t_task_list_num, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1858 | atomic_read(&cmd->t_task_cdbs_left), |
| 1859 | atomic_read(&cmd->t_task_cdbs_sent), |
| 1860 | atomic_read(&cmd->t_task_cdbs_ex_left), |
| 1861 | atomic_read(&cmd->t_transport_active), |
| 1862 | atomic_read(&cmd->t_transport_stop), |
| 1863 | atomic_read(&cmd->t_transport_sent)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1864 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1865 | if (dev) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1866 | atomic_inc(&dev->depth_left); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1867 | /* |
| 1868 | * For SAM Task Attribute emulation for failed struct se_cmd |
| 1869 | */ |
| 1870 | if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED) |
| 1871 | transport_complete_task_attr(cmd); |
| 1872 | |
| 1873 | if (complete) { |
| 1874 | transport_direct_request_timeout(cmd); |
| 1875 | cmd->transport_error_status = PYX_TRANSPORT_LU_COMM_FAILURE; |
| 1876 | } |
| 1877 | |
| 1878 | switch (cmd->transport_error_status) { |
| 1879 | case PYX_TRANSPORT_UNKNOWN_SAM_OPCODE: |
| 1880 | cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE; |
| 1881 | break; |
| 1882 | case PYX_TRANSPORT_REQ_TOO_MANY_SECTORS: |
| 1883 | cmd->scsi_sense_reason = TCM_SECTOR_COUNT_TOO_MANY; |
| 1884 | break; |
| 1885 | case PYX_TRANSPORT_INVALID_CDB_FIELD: |
| 1886 | cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD; |
| 1887 | break; |
| 1888 | case PYX_TRANSPORT_INVALID_PARAMETER_LIST: |
| 1889 | cmd->scsi_sense_reason = TCM_INVALID_PARAMETER_LIST; |
| 1890 | break; |
| 1891 | case PYX_TRANSPORT_OUT_OF_MEMORY_RESOURCES: |
| 1892 | if (!sc) |
| 1893 | transport_new_cmd_failure(cmd); |
| 1894 | /* |
| 1895 | * Currently for PYX_TRANSPORT_OUT_OF_MEMORY_RESOURCES, |
| 1896 | * we force this session to fall back to session |
| 1897 | * recovery. |
| 1898 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1899 | cmd->se_tfo->fall_back_to_erl0(cmd->se_sess); |
| 1900 | cmd->se_tfo->stop_session(cmd->se_sess, 0, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1901 | |
| 1902 | goto check_stop; |
| 1903 | case PYX_TRANSPORT_LU_COMM_FAILURE: |
| 1904 | case PYX_TRANSPORT_ILLEGAL_REQUEST: |
| 1905 | cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; |
| 1906 | break; |
| 1907 | case PYX_TRANSPORT_UNKNOWN_MODE_PAGE: |
| 1908 | cmd->scsi_sense_reason = TCM_UNKNOWN_MODE_PAGE; |
| 1909 | break; |
| 1910 | case PYX_TRANSPORT_WRITE_PROTECTED: |
| 1911 | cmd->scsi_sense_reason = TCM_WRITE_PROTECTED; |
| 1912 | break; |
| 1913 | case PYX_TRANSPORT_RESERVATION_CONFLICT: |
| 1914 | /* |
| 1915 | * No SENSE Data payload for this case, set SCSI Status |
| 1916 | * and queue the response to $FABRIC_MOD. |
| 1917 | * |
| 1918 | * Uses linux/include/scsi/scsi.h SAM status codes defs |
| 1919 | */ |
| 1920 | cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT; |
| 1921 | /* |
| 1922 | * For UA Interlock Code 11b, a RESERVATION CONFLICT will |
| 1923 | * establish a UNIT ATTENTION with PREVIOUS RESERVATION |
| 1924 | * CONFLICT STATUS. |
| 1925 | * |
| 1926 | * See spc4r17, section 7.4.6 Control Mode Page, Table 349 |
| 1927 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 1928 | if (cmd->se_sess && |
| 1929 | cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2) |
| 1930 | core_scsi3_ua_allocate(cmd->se_sess->se_node_acl, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1931 | cmd->orig_fe_lun, 0x2C, |
| 1932 | ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS); |
| 1933 | |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1934 | ret = cmd->se_tfo->queue_status(cmd); |
| 1935 | if (ret == -EAGAIN) |
| 1936 | goto queue_full; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1937 | goto check_stop; |
| 1938 | case PYX_TRANSPORT_USE_SENSE_REASON: |
| 1939 | /* |
| 1940 | * struct se_cmd->scsi_sense_reason already set |
| 1941 | */ |
| 1942 | break; |
| 1943 | default: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1944 | pr_err("Unknown transport error for CDB 0x%02x: %d\n", |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1945 | cmd->t_task_cdb[0], |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1946 | cmd->transport_error_status); |
| 1947 | cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE; |
| 1948 | break; |
| 1949 | } |
Nicholas Bellinger | 16ab8e6 | 2011-08-08 19:03:38 -0700 | [diff] [blame] | 1950 | /* |
| 1951 | * If a fabric does not define a cmd->se_tfo->new_cmd_map caller, |
| 1952 | * make the call to transport_send_check_condition_and_sense() |
| 1953 | * directly. Otherwise expect the fabric to make the call to |
| 1954 | * transport_send_check_condition_and_sense() after handling |
| 1955 | * possible unsoliticied write data payloads. |
| 1956 | */ |
| 1957 | if (!sc && !cmd->se_tfo->new_cmd_map) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1958 | transport_new_cmd_failure(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1959 | else { |
| 1960 | ret = transport_send_check_condition_and_sense(cmd, |
| 1961 | cmd->scsi_sense_reason, 0); |
| 1962 | if (ret == -EAGAIN) |
| 1963 | goto queue_full; |
| 1964 | } |
| 1965 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1966 | check_stop: |
| 1967 | transport_lun_remove_cmd(cmd); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1968 | if (!transport_cmd_check_stop_to_fabric(cmd)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1969 | ; |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 1970 | return; |
| 1971 | |
| 1972 | queue_full: |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 1973 | cmd->t_state = TRANSPORT_COMPLETE_QF_OK; |
| 1974 | transport_handle_queue_full(cmd, cmd->se_dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1975 | } |
| 1976 | |
| 1977 | static void transport_direct_request_timeout(struct se_cmd *cmd) |
| 1978 | { |
| 1979 | unsigned long flags; |
| 1980 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1981 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 1982 | if (!atomic_read(&cmd->t_transport_timeout)) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1983 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1984 | return; |
| 1985 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1986 | if (atomic_read(&cmd->t_task_cdbs_timeout_left)) { |
| 1987 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1988 | return; |
| 1989 | } |
| 1990 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 1991 | atomic_sub(atomic_read(&cmd->t_transport_timeout), |
| 1992 | &cmd->t_se_count); |
| 1993 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 1994 | } |
| 1995 | |
| 1996 | static void transport_generic_request_timeout(struct se_cmd *cmd) |
| 1997 | { |
| 1998 | unsigned long flags; |
| 1999 | |
| 2000 | /* |
Christoph Hellwig | e6a2573 | 2011-09-13 23:08:50 +0200 | [diff] [blame] | 2001 | * Reset cmd->t_se_count to allow transport_put_cmd() |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2002 | * to allow last call to free memory resources. |
| 2003 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2004 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 2005 | if (atomic_read(&cmd->t_transport_timeout) > 1) { |
| 2006 | int tmp = (atomic_read(&cmd->t_transport_timeout) - 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2007 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2008 | atomic_sub(tmp, &cmd->t_se_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2009 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2010 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2011 | |
Christoph Hellwig | e6a2573 | 2011-09-13 23:08:50 +0200 | [diff] [blame] | 2012 | transport_put_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2013 | } |
| 2014 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2015 | static inline u32 transport_lba_21(unsigned char *cdb) |
| 2016 | { |
| 2017 | return ((cdb[1] & 0x1f) << 16) | (cdb[2] << 8) | cdb[3]; |
| 2018 | } |
| 2019 | |
| 2020 | static inline u32 transport_lba_32(unsigned char *cdb) |
| 2021 | { |
| 2022 | return (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5]; |
| 2023 | } |
| 2024 | |
| 2025 | static inline unsigned long long transport_lba_64(unsigned char *cdb) |
| 2026 | { |
| 2027 | unsigned int __v1, __v2; |
| 2028 | |
| 2029 | __v1 = (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5]; |
| 2030 | __v2 = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9]; |
| 2031 | |
| 2032 | return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32; |
| 2033 | } |
| 2034 | |
| 2035 | /* |
| 2036 | * For VARIABLE_LENGTH_CDB w/ 32 byte extended CDBs |
| 2037 | */ |
| 2038 | static inline unsigned long long transport_lba_64_ext(unsigned char *cdb) |
| 2039 | { |
| 2040 | unsigned int __v1, __v2; |
| 2041 | |
| 2042 | __v1 = (cdb[12] << 24) | (cdb[13] << 16) | (cdb[14] << 8) | cdb[15]; |
| 2043 | __v2 = (cdb[16] << 24) | (cdb[17] << 16) | (cdb[18] << 8) | cdb[19]; |
| 2044 | |
| 2045 | return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32; |
| 2046 | } |
| 2047 | |
| 2048 | static void transport_set_supported_SAM_opcode(struct se_cmd *se_cmd) |
| 2049 | { |
| 2050 | unsigned long flags; |
| 2051 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2052 | spin_lock_irqsave(&se_cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2053 | se_cmd->se_cmd_flags |= SCF_SUPPORTED_SAM_OPCODE; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2054 | spin_unlock_irqrestore(&se_cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2055 | } |
| 2056 | |
| 2057 | /* |
| 2058 | * Called from interrupt context. |
| 2059 | */ |
| 2060 | static void transport_task_timeout_handler(unsigned long data) |
| 2061 | { |
| 2062 | struct se_task *task = (struct se_task *)data; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2063 | struct se_cmd *cmd = task->task_se_cmd; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2064 | unsigned long flags; |
| 2065 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2066 | pr_debug("transport task timeout fired! task: %p cmd: %p\n", task, cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2067 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2068 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2069 | |
| 2070 | /* |
| 2071 | * Determine if transport_complete_task() has already been called. |
| 2072 | */ |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2073 | if (!(task->task_flags & TF_ACTIVE)) { |
| 2074 | pr_debug("transport task: %p cmd: %p timeout !TF_ACTIVE\n", |
| 2075 | task, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2076 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2077 | return; |
| 2078 | } |
| 2079 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2080 | atomic_inc(&cmd->t_se_count); |
| 2081 | atomic_inc(&cmd->t_transport_timeout); |
| 2082 | cmd->t_tasks_failed = 1; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2083 | |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2084 | task->task_flags |= TF_TIMEOUT; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2085 | task->task_error_status = PYX_TRANSPORT_TASK_TIMEOUT; |
| 2086 | task->task_scsi_status = 1; |
| 2087 | |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2088 | if (task->task_flags & TF_REQUEST_STOP) { |
| 2089 | pr_debug("transport task: %p cmd: %p timeout TF_REQUEST_STOP" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2090 | " == 1\n", task, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2091 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2092 | complete(&task->task_stop_comp); |
| 2093 | return; |
| 2094 | } |
| 2095 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2096 | if (!atomic_dec_and_test(&cmd->t_task_cdbs_left)) { |
| 2097 | pr_debug("transport task: %p cmd: %p timeout non zero" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2098 | " t_task_cdbs_left\n", task, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2099 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2100 | return; |
| 2101 | } |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2102 | pr_debug("transport task: %p cmd: %p timeout ZERO t_task_cdbs_left\n", |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2103 | task, cmd); |
| 2104 | |
| 2105 | cmd->t_state = TRANSPORT_COMPLETE_FAILURE; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2106 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2107 | |
Christoph Hellwig | f7a5cc0 | 2011-10-17 13:56:42 -0400 | [diff] [blame] | 2108 | transport_add_cmd_to_queue(cmd, TRANSPORT_COMPLETE_FAILURE, false); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2109 | } |
| 2110 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2111 | static void transport_start_task_timer(struct se_task *task) |
| 2112 | { |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 2113 | struct se_device *dev = task->task_se_cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2114 | int timeout; |
| 2115 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2116 | /* |
| 2117 | * If the task_timeout is disabled, exit now. |
| 2118 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2119 | timeout = dev->se_sub_dev->se_dev_attrib.task_timeout; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2120 | if (!timeout) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2121 | return; |
| 2122 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2123 | task->task_timer.expires = (get_jiffies_64() + timeout * HZ); |
| 2124 | task->task_timer.data = (unsigned long) task; |
| 2125 | task->task_timer.function = transport_task_timeout_handler; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2126 | add_timer(&task->task_timer); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2127 | } |
| 2128 | |
| 2129 | static inline int transport_tcq_window_closed(struct se_device *dev) |
| 2130 | { |
| 2131 | if (dev->dev_tcq_window_closed++ < |
| 2132 | PYX_TRANSPORT_WINDOW_CLOSED_THRESHOLD) { |
| 2133 | msleep(PYX_TRANSPORT_WINDOW_CLOSED_WAIT_SHORT); |
| 2134 | } else |
| 2135 | msleep(PYX_TRANSPORT_WINDOW_CLOSED_WAIT_LONG); |
| 2136 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2137 | wake_up_interruptible(&dev->dev_queue_obj.thread_wq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2138 | return 0; |
| 2139 | } |
| 2140 | |
| 2141 | /* |
| 2142 | * Called from Fabric Module context from transport_execute_tasks() |
| 2143 | * |
| 2144 | * The return of this function determins if the tasks from struct se_cmd |
| 2145 | * get added to the execution queue in transport_execute_tasks(), |
| 2146 | * or are added to the delayed or ordered lists here. |
| 2147 | */ |
| 2148 | static inline int transport_execute_task_attr(struct se_cmd *cmd) |
| 2149 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2150 | if (cmd->se_dev->dev_task_attr_type != SAM_TASK_ATTR_EMULATED) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2151 | return 1; |
| 2152 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2153 | * Check for the existence of HEAD_OF_QUEUE, and if true return 1 |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2154 | * to allow the passed struct se_cmd list of tasks to the front of the list. |
| 2155 | */ |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 2156 | if (cmd->sam_task_attr == MSG_HEAD_TAG) { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2157 | atomic_inc(&cmd->se_dev->dev_hoq_count); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2158 | smp_mb__after_atomic_inc(); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2159 | pr_debug("Added HEAD_OF_QUEUE for CDB:" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2160 | " 0x%02x, se_ordered_id: %u\n", |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2161 | cmd->t_task_cdb[0], |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2162 | cmd->se_ordered_id); |
| 2163 | return 1; |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 2164 | } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2165 | spin_lock(&cmd->se_dev->ordered_cmd_lock); |
| 2166 | list_add_tail(&cmd->se_ordered_node, |
| 2167 | &cmd->se_dev->ordered_cmd_list); |
| 2168 | spin_unlock(&cmd->se_dev->ordered_cmd_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2169 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2170 | atomic_inc(&cmd->se_dev->dev_ordered_sync); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2171 | smp_mb__after_atomic_inc(); |
| 2172 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2173 | pr_debug("Added ORDERED for CDB: 0x%02x to ordered" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2174 | " list, se_ordered_id: %u\n", |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2175 | cmd->t_task_cdb[0], |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2176 | cmd->se_ordered_id); |
| 2177 | /* |
| 2178 | * Add ORDERED command to tail of execution queue if |
| 2179 | * no other older commands exist that need to be |
| 2180 | * completed first. |
| 2181 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2182 | if (!atomic_read(&cmd->se_dev->simple_cmds)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2183 | return 1; |
| 2184 | } else { |
| 2185 | /* |
| 2186 | * For SIMPLE and UNTAGGED Task Attribute commands |
| 2187 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2188 | atomic_inc(&cmd->se_dev->simple_cmds); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2189 | smp_mb__after_atomic_inc(); |
| 2190 | } |
| 2191 | /* |
| 2192 | * Otherwise if one or more outstanding ORDERED task attribute exist, |
| 2193 | * add the dormant task(s) built for the passed struct se_cmd to the |
| 2194 | * execution queue and become in Active state for this struct se_device. |
| 2195 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2196 | if (atomic_read(&cmd->se_dev->dev_ordered_sync) != 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2197 | /* |
| 2198 | * Otherwise, add cmd w/ tasks to delayed cmd queue that |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2199 | * will be drained upon completion of HEAD_OF_QUEUE task. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2200 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2201 | spin_lock(&cmd->se_dev->delayed_cmd_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2202 | cmd->se_cmd_flags |= SCF_DELAYED_CMD_FROM_SAM_ATTR; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2203 | list_add_tail(&cmd->se_delayed_node, |
| 2204 | &cmd->se_dev->delayed_cmd_list); |
| 2205 | spin_unlock(&cmd->se_dev->delayed_cmd_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2206 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2207 | pr_debug("Added CDB: 0x%02x Task Attr: 0x%02x to" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2208 | " delayed CMD list, se_ordered_id: %u\n", |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2209 | cmd->t_task_cdb[0], cmd->sam_task_attr, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2210 | cmd->se_ordered_id); |
| 2211 | /* |
| 2212 | * Return zero to let transport_execute_tasks() know |
| 2213 | * not to add the delayed tasks to the execution list. |
| 2214 | */ |
| 2215 | return 0; |
| 2216 | } |
| 2217 | /* |
| 2218 | * Otherwise, no ORDERED task attributes exist.. |
| 2219 | */ |
| 2220 | return 1; |
| 2221 | } |
| 2222 | |
| 2223 | /* |
| 2224 | * Called from fabric module context in transport_generic_new_cmd() and |
| 2225 | * transport_generic_process_write() |
| 2226 | */ |
| 2227 | static int transport_execute_tasks(struct se_cmd *cmd) |
| 2228 | { |
| 2229 | int add_tasks; |
| 2230 | |
Christoph Hellwig | db1620a | 2011-05-31 17:06:43 -0400 | [diff] [blame] | 2231 | if (se_dev_check_online(cmd->se_orig_obj_ptr) != 0) { |
| 2232 | cmd->transport_error_status = PYX_TRANSPORT_LU_COMM_FAILURE; |
| 2233 | transport_generic_request_failure(cmd, NULL, 0, 1); |
| 2234 | return 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2235 | } |
Christoph Hellwig | db1620a | 2011-05-31 17:06:43 -0400 | [diff] [blame] | 2236 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2237 | /* |
| 2238 | * Call transport_cmd_check_stop() to see if a fabric exception |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2239 | * has occurred that prevents execution. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2240 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2241 | if (!transport_cmd_check_stop(cmd, 0, TRANSPORT_PROCESSING)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2242 | /* |
| 2243 | * Check for SAM Task Attribute emulation and HEAD_OF_QUEUE |
| 2244 | * attribute for the tasks of the received struct se_cmd CDB |
| 2245 | */ |
| 2246 | add_tasks = transport_execute_task_attr(cmd); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2247 | if (!add_tasks) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2248 | goto execute_tasks; |
| 2249 | /* |
| 2250 | * This calls transport_add_tasks_from_cmd() to handle |
| 2251 | * HEAD_OF_QUEUE ordering for SAM Task Attribute emulation |
| 2252 | * (if enabled) in __transport_add_task_to_execute_queue() and |
| 2253 | * transport_add_task_check_sam_attr(). |
| 2254 | */ |
| 2255 | transport_add_tasks_from_cmd(cmd); |
| 2256 | } |
| 2257 | /* |
| 2258 | * Kick the execution queue for the cmd associated struct se_device |
| 2259 | * storage object. |
| 2260 | */ |
| 2261 | execute_tasks: |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2262 | __transport_execute_tasks(cmd->se_dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2263 | return 0; |
| 2264 | } |
| 2265 | |
| 2266 | /* |
| 2267 | * Called to check struct se_device tcq depth window, and once open pull struct se_task |
| 2268 | * from struct se_device->execute_task_list and |
| 2269 | * |
| 2270 | * Called from transport_processing_thread() |
| 2271 | */ |
| 2272 | static int __transport_execute_tasks(struct se_device *dev) |
| 2273 | { |
| 2274 | int error; |
| 2275 | struct se_cmd *cmd = NULL; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2276 | struct se_task *task = NULL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2277 | unsigned long flags; |
| 2278 | |
| 2279 | /* |
| 2280 | * Check if there is enough room in the device and HBA queue to send |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2281 | * struct se_tasks to the selected transport. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2282 | */ |
| 2283 | check_depth: |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2284 | if (!atomic_read(&dev->depth_left)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2285 | return transport_tcq_window_closed(dev); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2286 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2287 | dev->dev_tcq_window_closed = 0; |
| 2288 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2289 | spin_lock_irq(&dev->execute_task_lock); |
| 2290 | if (list_empty(&dev->execute_task_list)) { |
| 2291 | spin_unlock_irq(&dev->execute_task_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2292 | return 0; |
| 2293 | } |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2294 | task = list_first_entry(&dev->execute_task_list, |
| 2295 | struct se_task, t_execute_list); |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 2296 | __transport_remove_task_from_execute_queue(task, dev); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2297 | spin_unlock_irq(&dev->execute_task_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2298 | |
| 2299 | atomic_dec(&dev->depth_left); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2300 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2301 | cmd = task->task_se_cmd; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2302 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2303 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2304 | task->task_flags |= (TF_ACTIVE | TF_SENT); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2305 | atomic_inc(&cmd->t_task_cdbs_sent); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2306 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2307 | if (atomic_read(&cmd->t_task_cdbs_sent) == |
| 2308 | cmd->t_task_list_num) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2309 | atomic_set(&cmd->transport_sent, 1); |
| 2310 | |
| 2311 | transport_start_task_timer(task); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2312 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2313 | /* |
| 2314 | * The struct se_cmd->transport_emulate_cdb() function pointer is used |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2315 | * to grab REPORT_LUNS and other CDBs we want to handle before they hit the |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2316 | * struct se_subsystem_api->do_task() caller below. |
| 2317 | */ |
| 2318 | if (cmd->transport_emulate_cdb) { |
| 2319 | error = cmd->transport_emulate_cdb(cmd); |
| 2320 | if (error != 0) { |
| 2321 | cmd->transport_error_status = error; |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2322 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 2323 | task->task_flags &= ~TF_ACTIVE; |
| 2324 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 2325 | del_timer_sync(&task->task_timer); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2326 | atomic_set(&cmd->transport_sent, 0); |
| 2327 | transport_stop_tasks_for_cmd(cmd); |
| 2328 | transport_generic_request_failure(cmd, dev, 0, 1); |
| 2329 | goto check_depth; |
| 2330 | } |
| 2331 | /* |
| 2332 | * Handle the successful completion for transport_emulate_cdb() |
| 2333 | * for synchronous operation, following SCF_EMULATE_CDB_ASYNC |
| 2334 | * Otherwise the caller is expected to complete the task with |
| 2335 | * proper status. |
| 2336 | */ |
| 2337 | if (!(cmd->se_cmd_flags & SCF_EMULATE_CDB_ASYNC)) { |
| 2338 | cmd->scsi_status = SAM_STAT_GOOD; |
| 2339 | task->task_scsi_status = GOOD; |
| 2340 | transport_complete_task(task, 1); |
| 2341 | } |
| 2342 | } else { |
| 2343 | /* |
| 2344 | * Currently for all virtual TCM plugins including IBLOCK, FILEIO and |
| 2345 | * RAMDISK we use the internal transport_emulate_control_cdb() logic |
| 2346 | * with struct se_subsystem_api callers for the primary SPC-3 TYPE_DISK |
| 2347 | * LUN emulation code. |
| 2348 | * |
| 2349 | * For TCM/pSCSI and all other SCF_SCSI_DATA_SG_IO_CDB I/O tasks we |
| 2350 | * call ->do_task() directly and let the underlying TCM subsystem plugin |
| 2351 | * code handle the CDB emulation. |
| 2352 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2353 | if ((dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV) && |
| 2354 | (!(task->task_se_cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB))) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2355 | error = transport_emulate_control_cdb(task); |
| 2356 | else |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2357 | error = dev->transport->do_task(task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2358 | |
| 2359 | if (error != 0) { |
| 2360 | cmd->transport_error_status = error; |
Christoph Hellwig | 6c76bf9 | 2011-10-12 11:07:03 -0400 | [diff] [blame] | 2361 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 2362 | task->task_flags &= ~TF_ACTIVE; |
| 2363 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 2364 | del_timer_sync(&task->task_timer); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2365 | atomic_set(&cmd->transport_sent, 0); |
| 2366 | transport_stop_tasks_for_cmd(cmd); |
| 2367 | transport_generic_request_failure(cmd, dev, 0, 1); |
| 2368 | } |
| 2369 | } |
| 2370 | |
| 2371 | goto check_depth; |
| 2372 | |
| 2373 | return 0; |
| 2374 | } |
| 2375 | |
| 2376 | void transport_new_cmd_failure(struct se_cmd *se_cmd) |
| 2377 | { |
| 2378 | unsigned long flags; |
| 2379 | /* |
| 2380 | * Any unsolicited data will get dumped for failed command inside of |
| 2381 | * the fabric plugin |
| 2382 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2383 | spin_lock_irqsave(&se_cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2384 | se_cmd->se_cmd_flags |= SCF_SE_CMD_FAILED; |
| 2385 | se_cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2386 | spin_unlock_irqrestore(&se_cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2387 | } |
| 2388 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2389 | static inline u32 transport_get_sectors_6( |
| 2390 | unsigned char *cdb, |
| 2391 | struct se_cmd *cmd, |
| 2392 | int *ret) |
| 2393 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2394 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2395 | |
| 2396 | /* |
| 2397 | * Assume TYPE_DISK for non struct se_device objects. |
| 2398 | * Use 8-bit sector value. |
| 2399 | */ |
| 2400 | if (!dev) |
| 2401 | goto type_disk; |
| 2402 | |
| 2403 | /* |
| 2404 | * Use 24-bit allocation length for TYPE_TAPE. |
| 2405 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2406 | if (dev->transport->get_device_type(dev) == TYPE_TAPE) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2407 | return (u32)(cdb[2] << 16) + (cdb[3] << 8) + cdb[4]; |
| 2408 | |
| 2409 | /* |
| 2410 | * Everything else assume TYPE_DISK Sector CDB location. |
| 2411 | * Use 8-bit sector value. |
| 2412 | */ |
| 2413 | type_disk: |
| 2414 | return (u32)cdb[4]; |
| 2415 | } |
| 2416 | |
| 2417 | static inline u32 transport_get_sectors_10( |
| 2418 | unsigned char *cdb, |
| 2419 | struct se_cmd *cmd, |
| 2420 | int *ret) |
| 2421 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2422 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2423 | |
| 2424 | /* |
| 2425 | * Assume TYPE_DISK for non struct se_device objects. |
| 2426 | * Use 16-bit sector value. |
| 2427 | */ |
| 2428 | if (!dev) |
| 2429 | goto type_disk; |
| 2430 | |
| 2431 | /* |
| 2432 | * XXX_10 is not defined in SSC, throw an exception |
| 2433 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2434 | if (dev->transport->get_device_type(dev) == TYPE_TAPE) { |
| 2435 | *ret = -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2436 | return 0; |
| 2437 | } |
| 2438 | |
| 2439 | /* |
| 2440 | * Everything else assume TYPE_DISK Sector CDB location. |
| 2441 | * Use 16-bit sector value. |
| 2442 | */ |
| 2443 | type_disk: |
| 2444 | return (u32)(cdb[7] << 8) + cdb[8]; |
| 2445 | } |
| 2446 | |
| 2447 | static inline u32 transport_get_sectors_12( |
| 2448 | unsigned char *cdb, |
| 2449 | struct se_cmd *cmd, |
| 2450 | int *ret) |
| 2451 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2452 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2453 | |
| 2454 | /* |
| 2455 | * Assume TYPE_DISK for non struct se_device objects. |
| 2456 | * Use 32-bit sector value. |
| 2457 | */ |
| 2458 | if (!dev) |
| 2459 | goto type_disk; |
| 2460 | |
| 2461 | /* |
| 2462 | * XXX_12 is not defined in SSC, throw an exception |
| 2463 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2464 | if (dev->transport->get_device_type(dev) == TYPE_TAPE) { |
| 2465 | *ret = -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2466 | return 0; |
| 2467 | } |
| 2468 | |
| 2469 | /* |
| 2470 | * Everything else assume TYPE_DISK Sector CDB location. |
| 2471 | * Use 32-bit sector value. |
| 2472 | */ |
| 2473 | type_disk: |
| 2474 | return (u32)(cdb[6] << 24) + (cdb[7] << 16) + (cdb[8] << 8) + cdb[9]; |
| 2475 | } |
| 2476 | |
| 2477 | static inline u32 transport_get_sectors_16( |
| 2478 | unsigned char *cdb, |
| 2479 | struct se_cmd *cmd, |
| 2480 | int *ret) |
| 2481 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2482 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2483 | |
| 2484 | /* |
| 2485 | * Assume TYPE_DISK for non struct se_device objects. |
| 2486 | * Use 32-bit sector value. |
| 2487 | */ |
| 2488 | if (!dev) |
| 2489 | goto type_disk; |
| 2490 | |
| 2491 | /* |
| 2492 | * Use 24-bit allocation length for TYPE_TAPE. |
| 2493 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2494 | if (dev->transport->get_device_type(dev) == TYPE_TAPE) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2495 | return (u32)(cdb[12] << 16) + (cdb[13] << 8) + cdb[14]; |
| 2496 | |
| 2497 | type_disk: |
| 2498 | return (u32)(cdb[10] << 24) + (cdb[11] << 16) + |
| 2499 | (cdb[12] << 8) + cdb[13]; |
| 2500 | } |
| 2501 | |
| 2502 | /* |
| 2503 | * Used for VARIABLE_LENGTH_CDB WRITE_32 and READ_32 variants |
| 2504 | */ |
| 2505 | static inline u32 transport_get_sectors_32( |
| 2506 | unsigned char *cdb, |
| 2507 | struct se_cmd *cmd, |
| 2508 | int *ret) |
| 2509 | { |
| 2510 | /* |
| 2511 | * Assume TYPE_DISK for non struct se_device objects. |
| 2512 | * Use 32-bit sector value. |
| 2513 | */ |
| 2514 | return (u32)(cdb[28] << 24) + (cdb[29] << 16) + |
| 2515 | (cdb[30] << 8) + cdb[31]; |
| 2516 | |
| 2517 | } |
| 2518 | |
| 2519 | static inline u32 transport_get_size( |
| 2520 | u32 sectors, |
| 2521 | unsigned char *cdb, |
| 2522 | struct se_cmd *cmd) |
| 2523 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2524 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2525 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2526 | if (dev->transport->get_device_type(dev) == TYPE_TAPE) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2527 | if (cdb[1] & 1) { /* sectors */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2528 | return dev->se_sub_dev->se_dev_attrib.block_size * sectors; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2529 | } else /* bytes */ |
| 2530 | return sectors; |
| 2531 | } |
| 2532 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2533 | pr_debug("Returning block_size: %u, sectors: %u == %u for" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2534 | " %s object\n", dev->se_sub_dev->se_dev_attrib.block_size, sectors, |
| 2535 | dev->se_sub_dev->se_dev_attrib.block_size * sectors, |
| 2536 | dev->transport->name); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2537 | #endif |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2538 | return dev->se_sub_dev->se_dev_attrib.block_size * sectors; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2539 | } |
| 2540 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2541 | static void transport_xor_callback(struct se_cmd *cmd) |
| 2542 | { |
| 2543 | unsigned char *buf, *addr; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2544 | struct scatterlist *sg; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2545 | unsigned int offset; |
| 2546 | int i; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2547 | int count; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2548 | /* |
| 2549 | * From sbc3r22.pdf section 5.48 XDWRITEREAD (10) command |
| 2550 | * |
| 2551 | * 1) read the specified logical block(s); |
| 2552 | * 2) transfer logical blocks from the data-out buffer; |
| 2553 | * 3) XOR the logical blocks transferred from the data-out buffer with |
| 2554 | * the logical blocks read, storing the resulting XOR data in a buffer; |
| 2555 | * 4) if the DISABLE WRITE bit is set to zero, then write the logical |
| 2556 | * blocks transferred from the data-out buffer; and |
| 2557 | * 5) transfer the resulting XOR data to the data-in buffer. |
| 2558 | */ |
| 2559 | buf = kmalloc(cmd->data_length, GFP_KERNEL); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2560 | if (!buf) { |
| 2561 | pr_err("Unable to allocate xor_callback buf\n"); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2562 | return; |
| 2563 | } |
| 2564 | /* |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2565 | * Copy the scatterlist WRITE buffer located at cmd->t_data_sg |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2566 | * into the locally allocated *buf |
| 2567 | */ |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2568 | sg_copy_to_buffer(cmd->t_data_sg, |
| 2569 | cmd->t_data_nents, |
| 2570 | buf, |
| 2571 | cmd->data_length); |
| 2572 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2573 | /* |
| 2574 | * Now perform the XOR against the BIDI read memory located at |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2575 | * cmd->t_mem_bidi_list |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2576 | */ |
| 2577 | |
| 2578 | offset = 0; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2579 | for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, count) { |
| 2580 | addr = kmap_atomic(sg_page(sg), KM_USER0); |
| 2581 | if (!addr) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2582 | goto out; |
| 2583 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2584 | for (i = 0; i < sg->length; i++) |
| 2585 | *(addr + sg->offset + i) ^= *(buf + offset + i); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2586 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2587 | offset += sg->length; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2588 | kunmap_atomic(addr, KM_USER0); |
| 2589 | } |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2590 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2591 | out: |
| 2592 | kfree(buf); |
| 2593 | } |
| 2594 | |
| 2595 | /* |
| 2596 | * Used to obtain Sense Data from underlying Linux/SCSI struct scsi_cmnd |
| 2597 | */ |
| 2598 | static int transport_get_sense_data(struct se_cmd *cmd) |
| 2599 | { |
| 2600 | unsigned char *buffer = cmd->sense_buffer, *sense_buffer = NULL; |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 2601 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2602 | struct se_task *task = NULL, *task_tmp; |
| 2603 | unsigned long flags; |
| 2604 | u32 offset = 0; |
| 2605 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2606 | WARN_ON(!cmd->se_lun); |
| 2607 | |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 2608 | if (!dev) |
| 2609 | return 0; |
| 2610 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2611 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2612 | if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2613 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2614 | return 0; |
| 2615 | } |
| 2616 | |
| 2617 | list_for_each_entry_safe(task, task_tmp, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2618 | &cmd->t_task_list, t_list) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2619 | if (!task->task_sense) |
| 2620 | continue; |
| 2621 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2622 | if (!dev->transport->get_sense_buffer) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2623 | pr_err("dev->transport->get_sense_buffer" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2624 | " is NULL\n"); |
| 2625 | continue; |
| 2626 | } |
| 2627 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2628 | sense_buffer = dev->transport->get_sense_buffer(task); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2629 | if (!sense_buffer) { |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 2630 | pr_err("ITT[0x%08x]_TASK[%p]: Unable to locate" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2631 | " sense buffer for task with sense\n", |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 2632 | cmd->se_tfo->get_task_tag(cmd), task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2633 | continue; |
| 2634 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2635 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2636 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2637 | offset = cmd->se_tfo->set_fabric_sense_len(cmd, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2638 | TRANSPORT_SENSE_BUFFER); |
| 2639 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2640 | memcpy(&buffer[offset], sense_buffer, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2641 | TRANSPORT_SENSE_BUFFER); |
| 2642 | cmd->scsi_status = task->task_scsi_status; |
| 2643 | /* Automatically padded */ |
| 2644 | cmd->scsi_sense_length = |
| 2645 | (TRANSPORT_SENSE_BUFFER + offset); |
| 2646 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2647 | pr_debug("HBA_[%u]_PLUG[%s]: Set SAM STATUS: 0x%02x" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2648 | " and sense\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2649 | dev->se_hba->hba_id, dev->transport->name, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2650 | cmd->scsi_status); |
| 2651 | return 0; |
| 2652 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2653 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2654 | |
| 2655 | return -1; |
| 2656 | } |
| 2657 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2658 | static int |
| 2659 | transport_handle_reservation_conflict(struct se_cmd *cmd) |
| 2660 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2661 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 2662 | cmd->se_cmd_flags |= SCF_SCSI_RESERVATION_CONFLICT; |
| 2663 | cmd->scsi_status = SAM_STAT_RESERVATION_CONFLICT; |
| 2664 | /* |
| 2665 | * For UA Interlock Code 11b, a RESERVATION CONFLICT will |
| 2666 | * establish a UNIT ATTENTION with PREVIOUS RESERVATION |
| 2667 | * CONFLICT STATUS. |
| 2668 | * |
| 2669 | * See spc4r17, section 7.4.6 Control Mode Page, Table 349 |
| 2670 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2671 | if (cmd->se_sess && |
| 2672 | cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2) |
| 2673 | core_scsi3_ua_allocate(cmd->se_sess->se_node_acl, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2674 | cmd->orig_fe_lun, 0x2C, |
| 2675 | ASCQ_2CH_PREVIOUS_RESERVATION_CONFLICT_STATUS); |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2676 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2677 | } |
| 2678 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2679 | static inline long long transport_dev_end_lba(struct se_device *dev) |
| 2680 | { |
| 2681 | return dev->transport->get_blocks(dev) + 1; |
| 2682 | } |
| 2683 | |
| 2684 | static int transport_cmd_get_valid_sectors(struct se_cmd *cmd) |
| 2685 | { |
| 2686 | struct se_device *dev = cmd->se_dev; |
| 2687 | u32 sectors; |
| 2688 | |
| 2689 | if (dev->transport->get_device_type(dev) != TYPE_DISK) |
| 2690 | return 0; |
| 2691 | |
| 2692 | sectors = (cmd->data_length / dev->se_sub_dev->se_dev_attrib.block_size); |
| 2693 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2694 | if ((cmd->t_task_lba + sectors) > transport_dev_end_lba(dev)) { |
| 2695 | pr_err("LBA: %llu Sectors: %u exceeds" |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2696 | " transport_dev_end_lba(): %llu\n", |
| 2697 | cmd->t_task_lba, sectors, |
| 2698 | transport_dev_end_lba(dev)); |
Nicholas Bellinger | 7abbe7f | 2011-08-10 18:41:14 -0700 | [diff] [blame] | 2699 | return -EINVAL; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2700 | } |
| 2701 | |
Nicholas Bellinger | 7abbe7f | 2011-08-10 18:41:14 -0700 | [diff] [blame] | 2702 | return 0; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 2703 | } |
| 2704 | |
Nicholas Bellinger | 706d586 | 2011-07-28 00:07:03 -0700 | [diff] [blame] | 2705 | static int target_check_write_same_discard(unsigned char *flags, struct se_device *dev) |
| 2706 | { |
| 2707 | /* |
| 2708 | * Determine if the received WRITE_SAME is used to for direct |
| 2709 | * passthrough into Linux/SCSI with struct request via TCM/pSCSI |
| 2710 | * or we are signaling the use of internal WRITE_SAME + UNMAP=1 |
| 2711 | * emulation for -> Linux/BLOCK disbard with TCM/IBLOCK code. |
| 2712 | */ |
| 2713 | int passthrough = (dev->transport->transport_type == |
| 2714 | TRANSPORT_PLUGIN_PHBA_PDEV); |
| 2715 | |
| 2716 | if (!passthrough) { |
| 2717 | if ((flags[0] & 0x04) || (flags[0] & 0x02)) { |
| 2718 | pr_err("WRITE_SAME PBDATA and LBDATA" |
| 2719 | " bits not supported for Block Discard" |
| 2720 | " Emulation\n"); |
| 2721 | return -ENOSYS; |
| 2722 | } |
| 2723 | /* |
| 2724 | * Currently for the emulated case we only accept |
| 2725 | * tpws with the UNMAP=1 bit set. |
| 2726 | */ |
| 2727 | if (!(flags[0] & 0x08)) { |
| 2728 | pr_err("WRITE_SAME w/o UNMAP bit not" |
| 2729 | " supported for Block Discard Emulation\n"); |
| 2730 | return -ENOSYS; |
| 2731 | } |
| 2732 | } |
| 2733 | |
| 2734 | return 0; |
| 2735 | } |
| 2736 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2737 | /* transport_generic_cmd_sequencer(): |
| 2738 | * |
| 2739 | * Generic Command Sequencer that should work for most DAS transport |
| 2740 | * drivers. |
| 2741 | * |
| 2742 | * Called from transport_generic_allocate_tasks() in the $FABRIC_MOD |
| 2743 | * RX Thread. |
| 2744 | * |
| 2745 | * FIXME: Need to support other SCSI OPCODES where as well. |
| 2746 | */ |
| 2747 | static int transport_generic_cmd_sequencer( |
| 2748 | struct se_cmd *cmd, |
| 2749 | unsigned char *cdb) |
| 2750 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2751 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2752 | struct se_subsystem_dev *su_dev = dev->se_sub_dev; |
| 2753 | int ret = 0, sector_ret = 0, passthrough; |
| 2754 | u32 sectors = 0, size = 0, pr_reg_type = 0; |
| 2755 | u16 service_action; |
| 2756 | u8 alua_ascq = 0; |
| 2757 | /* |
| 2758 | * Check for an existing UNIT ATTENTION condition |
| 2759 | */ |
| 2760 | if (core_scsi3_ua_check(cmd, cdb) < 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2761 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 2762 | cmd->scsi_sense_reason = TCM_CHECK_CONDITION_UNIT_ATTENTION; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2763 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2764 | } |
| 2765 | /* |
| 2766 | * Check status of Asymmetric Logical Unit Assignment port |
| 2767 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2768 | ret = su_dev->t10_alua.alua_state_check(cmd, cdb, &alua_ascq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2769 | if (ret != 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2770 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2771 | * Set SCSI additional sense code (ASC) to 'LUN Not Accessible'; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2772 | * The ALUA additional sense code qualifier (ASCQ) is determined |
| 2773 | * by the ALUA primary or secondary access state.. |
| 2774 | */ |
| 2775 | if (ret > 0) { |
| 2776 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2777 | pr_debug("[%s]: ALUA TG Port not available," |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2778 | " SenseKey: NOT_READY, ASC/ASCQ: 0x04/0x%02x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2779 | cmd->se_tfo->get_fabric_name(), alua_ascq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2780 | #endif |
| 2781 | transport_set_sense_codes(cmd, 0x04, alua_ascq); |
| 2782 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 2783 | cmd->scsi_sense_reason = TCM_CHECK_CONDITION_NOT_READY; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 2784 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2785 | } |
| 2786 | goto out_invalid_cdb_field; |
| 2787 | } |
| 2788 | /* |
| 2789 | * Check status for SPC-3 Persistent Reservations |
| 2790 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2791 | if (su_dev->t10_pr.pr_ops.t10_reservation_check(cmd, &pr_reg_type) != 0) { |
| 2792 | if (su_dev->t10_pr.pr_ops.t10_seq_non_holder( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2793 | cmd, cdb, pr_reg_type) != 0) |
| 2794 | return transport_handle_reservation_conflict(cmd); |
| 2795 | /* |
| 2796 | * This means the CDB is allowed for the SCSI Initiator port |
| 2797 | * when said port is *NOT* holding the legacy SPC-2 or |
| 2798 | * SPC-3 Persistent Reservation. |
| 2799 | */ |
| 2800 | } |
| 2801 | |
| 2802 | switch (cdb[0]) { |
| 2803 | case READ_6: |
| 2804 | sectors = transport_get_sectors_6(cdb, cmd, §or_ret); |
| 2805 | if (sector_ret) |
| 2806 | goto out_unsupported_cdb; |
| 2807 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2808 | cmd->t_task_lba = transport_lba_21(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2809 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2810 | break; |
| 2811 | case READ_10: |
| 2812 | sectors = transport_get_sectors_10(cdb, cmd, §or_ret); |
| 2813 | if (sector_ret) |
| 2814 | goto out_unsupported_cdb; |
| 2815 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2816 | cmd->t_task_lba = transport_lba_32(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2817 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2818 | break; |
| 2819 | case READ_12: |
| 2820 | sectors = transport_get_sectors_12(cdb, cmd, §or_ret); |
| 2821 | if (sector_ret) |
| 2822 | goto out_unsupported_cdb; |
| 2823 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2824 | cmd->t_task_lba = transport_lba_32(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2825 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2826 | break; |
| 2827 | case READ_16: |
| 2828 | sectors = transport_get_sectors_16(cdb, cmd, §or_ret); |
| 2829 | if (sector_ret) |
| 2830 | goto out_unsupported_cdb; |
| 2831 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2832 | cmd->t_task_lba = transport_lba_64(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2833 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2834 | break; |
| 2835 | case WRITE_6: |
| 2836 | sectors = transport_get_sectors_6(cdb, cmd, §or_ret); |
| 2837 | if (sector_ret) |
| 2838 | goto out_unsupported_cdb; |
| 2839 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2840 | cmd->t_task_lba = transport_lba_21(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2841 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2842 | break; |
| 2843 | case WRITE_10: |
| 2844 | sectors = transport_get_sectors_10(cdb, cmd, §or_ret); |
| 2845 | if (sector_ret) |
| 2846 | goto out_unsupported_cdb; |
| 2847 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2848 | cmd->t_task_lba = transport_lba_32(cdb); |
| 2849 | cmd->t_tasks_fua = (cdb[1] & 0x8); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2850 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2851 | break; |
| 2852 | case WRITE_12: |
| 2853 | sectors = transport_get_sectors_12(cdb, cmd, §or_ret); |
| 2854 | if (sector_ret) |
| 2855 | goto out_unsupported_cdb; |
| 2856 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2857 | cmd->t_task_lba = transport_lba_32(cdb); |
| 2858 | cmd->t_tasks_fua = (cdb[1] & 0x8); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2859 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2860 | break; |
| 2861 | case WRITE_16: |
| 2862 | sectors = transport_get_sectors_16(cdb, cmd, §or_ret); |
| 2863 | if (sector_ret) |
| 2864 | goto out_unsupported_cdb; |
| 2865 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2866 | cmd->t_task_lba = transport_lba_64(cdb); |
| 2867 | cmd->t_tasks_fua = (cdb[1] & 0x8); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2868 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2869 | break; |
| 2870 | case XDWRITEREAD_10: |
| 2871 | if ((cmd->data_direction != DMA_TO_DEVICE) || |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2872 | !(cmd->t_tasks_bidi)) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2873 | goto out_invalid_cdb_field; |
| 2874 | sectors = transport_get_sectors_10(cdb, cmd, §or_ret); |
| 2875 | if (sector_ret) |
| 2876 | goto out_unsupported_cdb; |
| 2877 | size = transport_get_size(sectors, cdb, cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2878 | cmd->t_task_lba = transport_lba_32(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2879 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2880 | passthrough = (dev->transport->transport_type == |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2881 | TRANSPORT_PLUGIN_PHBA_PDEV); |
| 2882 | /* |
| 2883 | * Skip the remaining assignments for TCM/PSCSI passthrough |
| 2884 | */ |
| 2885 | if (passthrough) |
| 2886 | break; |
| 2887 | /* |
| 2888 | * Setup BIDI XOR callback to be run during transport_generic_complete_ok() |
| 2889 | */ |
| 2890 | cmd->transport_complete_callback = &transport_xor_callback; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2891 | cmd->t_tasks_fua = (cdb[1] & 0x8); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2892 | break; |
| 2893 | case VARIABLE_LENGTH_CMD: |
| 2894 | service_action = get_unaligned_be16(&cdb[8]); |
| 2895 | /* |
| 2896 | * Determine if this is TCM/PSCSI device and we should disable |
| 2897 | * internal emulation for this CDB. |
| 2898 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2899 | passthrough = (dev->transport->transport_type == |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2900 | TRANSPORT_PLUGIN_PHBA_PDEV); |
| 2901 | |
| 2902 | switch (service_action) { |
| 2903 | case XDWRITEREAD_32: |
| 2904 | sectors = transport_get_sectors_32(cdb, cmd, §or_ret); |
| 2905 | if (sector_ret) |
| 2906 | goto out_unsupported_cdb; |
| 2907 | size = transport_get_size(sectors, cdb, cmd); |
| 2908 | /* |
| 2909 | * Use WRITE_32 and READ_32 opcodes for the emulated |
| 2910 | * XDWRITE_READ_32 logic. |
| 2911 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2912 | cmd->t_task_lba = transport_lba_64_ext(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2913 | cmd->se_cmd_flags |= SCF_SCSI_DATA_SG_IO_CDB; |
| 2914 | |
| 2915 | /* |
| 2916 | * Skip the remaining assignments for TCM/PSCSI passthrough |
| 2917 | */ |
| 2918 | if (passthrough) |
| 2919 | break; |
| 2920 | |
| 2921 | /* |
| 2922 | * Setup BIDI XOR callback to be run during |
| 2923 | * transport_generic_complete_ok() |
| 2924 | */ |
| 2925 | cmd->transport_complete_callback = &transport_xor_callback; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2926 | cmd->t_tasks_fua = (cdb[10] & 0x8); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2927 | break; |
| 2928 | case WRITE_SAME_32: |
| 2929 | sectors = transport_get_sectors_32(cdb, cmd, §or_ret); |
| 2930 | if (sector_ret) |
| 2931 | goto out_unsupported_cdb; |
Nicholas Bellinger | dd3a5ad | 2011-05-06 17:55:35 -0700 | [diff] [blame] | 2932 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2933 | if (sectors) |
Nicholas Bellinger | 1285062 | 2011-08-08 19:08:23 -0700 | [diff] [blame] | 2934 | size = transport_get_size(1, cdb, cmd); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2935 | else { |
| 2936 | pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not" |
| 2937 | " supported\n"); |
| 2938 | goto out_invalid_cdb_field; |
| 2939 | } |
Nicholas Bellinger | dd3a5ad | 2011-05-06 17:55:35 -0700 | [diff] [blame] | 2940 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 2941 | cmd->t_task_lba = get_unaligned_be64(&cdb[12]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2942 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 2943 | |
Nicholas Bellinger | 706d586 | 2011-07-28 00:07:03 -0700 | [diff] [blame] | 2944 | if (target_check_write_same_discard(&cdb[10], dev) < 0) |
| 2945 | goto out_invalid_cdb_field; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2946 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2947 | break; |
| 2948 | default: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 2949 | pr_err("VARIABLE_LENGTH_CMD service action" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2950 | " 0x%04x not supported\n", service_action); |
| 2951 | goto out_unsupported_cdb; |
| 2952 | } |
| 2953 | break; |
Nicholas Bellinger | e434f1f1 | 2011-02-21 07:49:26 +0000 | [diff] [blame] | 2954 | case MAINTENANCE_IN: |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2955 | if (dev->transport->get_device_type(dev) != TYPE_ROM) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2956 | /* MAINTENANCE_IN from SCC-2 */ |
| 2957 | /* |
| 2958 | * Check for emulated MI_REPORT_TARGET_PGS. |
| 2959 | */ |
| 2960 | if (cdb[1] == MI_REPORT_TARGET_PGS) { |
| 2961 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2962 | (su_dev->t10_alua.alua_type == |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2963 | SPC3_ALUA_EMULATED) ? |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 2964 | core_emulate_report_target_port_groups : |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2965 | NULL; |
| 2966 | } |
| 2967 | size = (cdb[6] << 24) | (cdb[7] << 16) | |
| 2968 | (cdb[8] << 8) | cdb[9]; |
| 2969 | } else { |
| 2970 | /* GPCMD_SEND_KEY from multi media commands */ |
| 2971 | size = (cdb[8] << 8) + cdb[9]; |
| 2972 | } |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 2973 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2974 | break; |
| 2975 | case MODE_SELECT: |
| 2976 | size = cdb[4]; |
| 2977 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 2978 | break; |
| 2979 | case MODE_SELECT_10: |
| 2980 | size = (cdb[7] << 8) + cdb[8]; |
| 2981 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 2982 | break; |
| 2983 | case MODE_SENSE: |
| 2984 | size = cdb[4]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 2985 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2986 | break; |
| 2987 | case MODE_SENSE_10: |
| 2988 | case GPCMD_READ_BUFFER_CAPACITY: |
| 2989 | case GPCMD_SEND_OPC: |
| 2990 | case LOG_SELECT: |
| 2991 | case LOG_SENSE: |
| 2992 | size = (cdb[7] << 8) + cdb[8]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 2993 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2994 | break; |
| 2995 | case READ_BLOCK_LIMITS: |
| 2996 | size = READ_BLOCK_LEN; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 2997 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 2998 | break; |
| 2999 | case GPCMD_GET_CONFIGURATION: |
| 3000 | case GPCMD_READ_FORMAT_CAPACITIES: |
| 3001 | case GPCMD_READ_DISC_INFO: |
| 3002 | case GPCMD_READ_TRACK_RZONE_INFO: |
| 3003 | size = (cdb[7] << 8) + cdb[8]; |
| 3004 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 3005 | break; |
| 3006 | case PERSISTENT_RESERVE_IN: |
| 3007 | case PERSISTENT_RESERVE_OUT: |
| 3008 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3009 | (su_dev->t10_pr.res_type == |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3010 | SPC3_PERSISTENT_RESERVATIONS) ? |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3011 | core_scsi3_emulate_pr : NULL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3012 | size = (cdb[7] << 8) + cdb[8]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3013 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3014 | break; |
| 3015 | case GPCMD_MECHANISM_STATUS: |
| 3016 | case GPCMD_READ_DVD_STRUCTURE: |
| 3017 | size = (cdb[8] << 8) + cdb[9]; |
| 3018 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 3019 | break; |
| 3020 | case READ_POSITION: |
| 3021 | size = READ_POSITION_LEN; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3022 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3023 | break; |
Nicholas Bellinger | e434f1f1 | 2011-02-21 07:49:26 +0000 | [diff] [blame] | 3024 | case MAINTENANCE_OUT: |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3025 | if (dev->transport->get_device_type(dev) != TYPE_ROM) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3026 | /* MAINTENANCE_OUT from SCC-2 |
| 3027 | * |
| 3028 | * Check for emulated MO_SET_TARGET_PGS. |
| 3029 | */ |
| 3030 | if (cdb[1] == MO_SET_TARGET_PGS) { |
| 3031 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3032 | (su_dev->t10_alua.alua_type == |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3033 | SPC3_ALUA_EMULATED) ? |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3034 | core_emulate_set_target_port_groups : |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3035 | NULL; |
| 3036 | } |
| 3037 | |
| 3038 | size = (cdb[6] << 24) | (cdb[7] << 16) | |
| 3039 | (cdb[8] << 8) | cdb[9]; |
| 3040 | } else { |
| 3041 | /* GPCMD_REPORT_KEY from multi media commands */ |
| 3042 | size = (cdb[8] << 8) + cdb[9]; |
| 3043 | } |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3044 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3045 | break; |
| 3046 | case INQUIRY: |
| 3047 | size = (cdb[3] << 8) + cdb[4]; |
| 3048 | /* |
| 3049 | * Do implict HEAD_OF_QUEUE processing for INQUIRY. |
| 3050 | * See spc4r17 section 5.3 |
| 3051 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3052 | if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED) |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3053 | cmd->sam_task_attr = MSG_HEAD_TAG; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3054 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3055 | break; |
| 3056 | case READ_BUFFER: |
| 3057 | size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3058 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3059 | break; |
| 3060 | case READ_CAPACITY: |
| 3061 | size = READ_CAP_LEN; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3062 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3063 | break; |
| 3064 | case READ_MEDIA_SERIAL_NUMBER: |
| 3065 | case SECURITY_PROTOCOL_IN: |
| 3066 | case SECURITY_PROTOCOL_OUT: |
| 3067 | size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3068 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3069 | break; |
| 3070 | case SERVICE_ACTION_IN: |
| 3071 | case ACCESS_CONTROL_IN: |
| 3072 | case ACCESS_CONTROL_OUT: |
| 3073 | case EXTENDED_COPY: |
| 3074 | case READ_ATTRIBUTE: |
| 3075 | case RECEIVE_COPY_RESULTS: |
| 3076 | case WRITE_ATTRIBUTE: |
| 3077 | size = (cdb[10] << 24) | (cdb[11] << 16) | |
| 3078 | (cdb[12] << 8) | cdb[13]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3079 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3080 | break; |
| 3081 | case RECEIVE_DIAGNOSTIC: |
| 3082 | case SEND_DIAGNOSTIC: |
| 3083 | size = (cdb[3] << 8) | cdb[4]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3084 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3085 | break; |
| 3086 | /* #warning FIXME: Figure out correct GPCMD_READ_CD blocksize. */ |
| 3087 | #if 0 |
| 3088 | case GPCMD_READ_CD: |
| 3089 | sectors = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8]; |
| 3090 | size = (2336 * sectors); |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3091 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3092 | break; |
| 3093 | #endif |
| 3094 | case READ_TOC: |
| 3095 | size = cdb[8]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3096 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3097 | break; |
| 3098 | case REQUEST_SENSE: |
| 3099 | size = cdb[4]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3100 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3101 | break; |
| 3102 | case READ_ELEMENT_STATUS: |
| 3103 | size = 65536 * cdb[7] + 256 * cdb[8] + cdb[9]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3104 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3105 | break; |
| 3106 | case WRITE_BUFFER: |
| 3107 | size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8]; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3108 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3109 | break; |
| 3110 | case RESERVE: |
| 3111 | case RESERVE_10: |
| 3112 | /* |
| 3113 | * The SPC-2 RESERVE does not contain a size in the SCSI CDB. |
| 3114 | * Assume the passthrough or $FABRIC_MOD will tell us about it. |
| 3115 | */ |
| 3116 | if (cdb[0] == RESERVE_10) |
| 3117 | size = (cdb[7] << 8) | cdb[8]; |
| 3118 | else |
| 3119 | size = cmd->data_length; |
| 3120 | |
| 3121 | /* |
| 3122 | * Setup the legacy emulated handler for SPC-2 and |
| 3123 | * >= SPC-3 compatible reservation handling (CRH=1) |
| 3124 | * Otherwise, we assume the underlying SCSI logic is |
| 3125 | * is running in SPC_PASSTHROUGH, and wants reservations |
| 3126 | * emulation disabled. |
| 3127 | */ |
| 3128 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3129 | (su_dev->t10_pr.res_type != |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3130 | SPC_PASSTHROUGH) ? |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3131 | core_scsi2_emulate_crh : NULL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3132 | cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB; |
| 3133 | break; |
| 3134 | case RELEASE: |
| 3135 | case RELEASE_10: |
| 3136 | /* |
| 3137 | * The SPC-2 RELEASE does not contain a size in the SCSI CDB. |
| 3138 | * Assume the passthrough or $FABRIC_MOD will tell us about it. |
| 3139 | */ |
| 3140 | if (cdb[0] == RELEASE_10) |
| 3141 | size = (cdb[7] << 8) | cdb[8]; |
| 3142 | else |
| 3143 | size = cmd->data_length; |
| 3144 | |
| 3145 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3146 | (su_dev->t10_pr.res_type != |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3147 | SPC_PASSTHROUGH) ? |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3148 | core_scsi2_emulate_crh : NULL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3149 | cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB; |
| 3150 | break; |
| 3151 | case SYNCHRONIZE_CACHE: |
| 3152 | case 0x91: /* SYNCHRONIZE_CACHE_16: */ |
| 3153 | /* |
| 3154 | * Extract LBA and range to be flushed for emulated SYNCHRONIZE_CACHE |
| 3155 | */ |
| 3156 | if (cdb[0] == SYNCHRONIZE_CACHE) { |
| 3157 | sectors = transport_get_sectors_10(cdb, cmd, §or_ret); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3158 | cmd->t_task_lba = transport_lba_32(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3159 | } else { |
| 3160 | sectors = transport_get_sectors_16(cdb, cmd, §or_ret); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3161 | cmd->t_task_lba = transport_lba_64(cdb); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3162 | } |
| 3163 | if (sector_ret) |
| 3164 | goto out_unsupported_cdb; |
| 3165 | |
| 3166 | size = transport_get_size(sectors, cdb, cmd); |
| 3167 | cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB; |
| 3168 | |
| 3169 | /* |
| 3170 | * For TCM/pSCSI passthrough, skip cmd->transport_emulate_cdb() |
| 3171 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3172 | if (dev->transport->transport_type == TRANSPORT_PLUGIN_PHBA_PDEV) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3173 | break; |
| 3174 | /* |
| 3175 | * Set SCF_EMULATE_CDB_ASYNC to ensure asynchronous operation |
| 3176 | * for SYNCHRONIZE_CACHE* Immed=1 case in __transport_execute_tasks() |
| 3177 | */ |
| 3178 | cmd->se_cmd_flags |= SCF_EMULATE_CDB_ASYNC; |
| 3179 | /* |
| 3180 | * Check to ensure that LBA + Range does not exceed past end of |
Nicholas Bellinger | 7abbe7f | 2011-08-10 18:41:14 -0700 | [diff] [blame] | 3181 | * device for IBLOCK and FILEIO ->do_sync_cache() backend calls |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3182 | */ |
Nicholas Bellinger | 7abbe7f | 2011-08-10 18:41:14 -0700 | [diff] [blame] | 3183 | if ((cmd->t_task_lba != 0) || (sectors != 0)) { |
| 3184 | if (transport_cmd_get_valid_sectors(cmd) < 0) |
| 3185 | goto out_invalid_cdb_field; |
| 3186 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3187 | break; |
| 3188 | case UNMAP: |
| 3189 | size = get_unaligned_be16(&cdb[7]); |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3190 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3191 | break; |
| 3192 | case WRITE_SAME_16: |
| 3193 | sectors = transport_get_sectors_16(cdb, cmd, §or_ret); |
| 3194 | if (sector_ret) |
| 3195 | goto out_unsupported_cdb; |
Nicholas Bellinger | dd3a5ad | 2011-05-06 17:55:35 -0700 | [diff] [blame] | 3196 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3197 | if (sectors) |
Nicholas Bellinger | 1285062 | 2011-08-08 19:08:23 -0700 | [diff] [blame] | 3198 | size = transport_get_size(1, cdb, cmd); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3199 | else { |
| 3200 | pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n"); |
| 3201 | goto out_invalid_cdb_field; |
| 3202 | } |
Nicholas Bellinger | dd3a5ad | 2011-05-06 17:55:35 -0700 | [diff] [blame] | 3203 | |
Nicholas Bellinger | 5db0753 | 2011-07-27 22:18:52 -0700 | [diff] [blame] | 3204 | cmd->t_task_lba = get_unaligned_be64(&cdb[2]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3205 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | 706d586 | 2011-07-28 00:07:03 -0700 | [diff] [blame] | 3206 | |
| 3207 | if (target_check_write_same_discard(&cdb[1], dev) < 0) |
| 3208 | goto out_invalid_cdb_field; |
| 3209 | break; |
| 3210 | case WRITE_SAME: |
| 3211 | sectors = transport_get_sectors_10(cdb, cmd, §or_ret); |
| 3212 | if (sector_ret) |
| 3213 | goto out_unsupported_cdb; |
| 3214 | |
| 3215 | if (sectors) |
Nicholas Bellinger | 1285062 | 2011-08-08 19:08:23 -0700 | [diff] [blame] | 3216 | size = transport_get_size(1, cdb, cmd); |
Nicholas Bellinger | 706d586 | 2011-07-28 00:07:03 -0700 | [diff] [blame] | 3217 | else { |
| 3218 | pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n"); |
| 3219 | goto out_invalid_cdb_field; |
| 3220 | } |
| 3221 | |
| 3222 | cmd->t_task_lba = get_unaligned_be32(&cdb[2]); |
| 3223 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
| 3224 | /* |
| 3225 | * Follow sbcr26 with WRITE_SAME (10) and check for the existence |
| 3226 | * of byte 1 bit 3 UNMAP instead of original reserved field |
| 3227 | */ |
| 3228 | if (target_check_write_same_discard(&cdb[1], dev) < 0) |
| 3229 | goto out_invalid_cdb_field; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3230 | break; |
| 3231 | case ALLOW_MEDIUM_REMOVAL: |
| 3232 | case GPCMD_CLOSE_TRACK: |
| 3233 | case ERASE: |
| 3234 | case INITIALIZE_ELEMENT_STATUS: |
| 3235 | case GPCMD_LOAD_UNLOAD: |
| 3236 | case REZERO_UNIT: |
| 3237 | case SEEK_10: |
| 3238 | case GPCMD_SET_SPEED: |
| 3239 | case SPACE: |
| 3240 | case START_STOP: |
| 3241 | case TEST_UNIT_READY: |
| 3242 | case VERIFY: |
| 3243 | case WRITE_FILEMARKS: |
| 3244 | case MOVE_MEDIUM: |
| 3245 | cmd->se_cmd_flags |= SCF_SCSI_NON_DATA_CDB; |
| 3246 | break; |
| 3247 | case REPORT_LUNS: |
| 3248 | cmd->transport_emulate_cdb = |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3249 | transport_core_report_lun_response; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3250 | size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9]; |
| 3251 | /* |
| 3252 | * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS |
| 3253 | * See spc4r17 section 5.3 |
| 3254 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3255 | if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED) |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3256 | cmd->sam_task_attr = MSG_HEAD_TAG; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3257 | cmd->se_cmd_flags |= SCF_SCSI_CONTROL_SG_IO_CDB; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3258 | break; |
| 3259 | default: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3260 | pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3261 | " 0x%02x, sending CHECK_CONDITION.\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3262 | cmd->se_tfo->get_fabric_name(), cdb[0]); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3263 | goto out_unsupported_cdb; |
| 3264 | } |
| 3265 | |
| 3266 | if (size != cmd->data_length) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3267 | pr_warn("TARGET_CORE[%s]: Expected Transfer Length:" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3268 | " %u does not match SCSI CDB Length: %u for SAM Opcode:" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3269 | " 0x%02x\n", cmd->se_tfo->get_fabric_name(), |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3270 | cmd->data_length, size, cdb[0]); |
| 3271 | |
| 3272 | cmd->cmd_spdtl = size; |
| 3273 | |
| 3274 | if (cmd->data_direction == DMA_TO_DEVICE) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3275 | pr_err("Rejecting underflow/overflow" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3276 | " WRITE data\n"); |
| 3277 | goto out_invalid_cdb_field; |
| 3278 | } |
| 3279 | /* |
| 3280 | * Reject READ_* or WRITE_* with overflow/underflow for |
| 3281 | * type SCF_SCSI_DATA_SG_IO_CDB. |
| 3282 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3283 | if (!ret && (dev->se_sub_dev->se_dev_attrib.block_size != 512)) { |
| 3284 | pr_err("Failing OVERFLOW/UNDERFLOW for LBA op" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3285 | " CDB on non 512-byte sector setup subsystem" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3286 | " plugin: %s\n", dev->transport->name); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3287 | /* Returns CHECK_CONDITION + INVALID_CDB_FIELD */ |
| 3288 | goto out_invalid_cdb_field; |
| 3289 | } |
| 3290 | |
| 3291 | if (size > cmd->data_length) { |
| 3292 | cmd->se_cmd_flags |= SCF_OVERFLOW_BIT; |
| 3293 | cmd->residual_count = (size - cmd->data_length); |
| 3294 | } else { |
| 3295 | cmd->se_cmd_flags |= SCF_UNDERFLOW_BIT; |
| 3296 | cmd->residual_count = (cmd->data_length - size); |
| 3297 | } |
| 3298 | cmd->data_length = size; |
| 3299 | } |
| 3300 | |
Andy Grover | d0229ae | 2011-07-08 17:04:53 -0700 | [diff] [blame] | 3301 | /* Let's limit control cdbs to a page, for simplicity's sake. */ |
| 3302 | if ((cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB) && |
| 3303 | size > PAGE_SIZE) |
| 3304 | goto out_invalid_cdb_field; |
| 3305 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3306 | transport_set_supported_SAM_opcode(cmd); |
| 3307 | return ret; |
| 3308 | |
| 3309 | out_unsupported_cdb: |
| 3310 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 3311 | cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3312 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3313 | out_invalid_cdb_field: |
| 3314 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 3315 | cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3316 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3317 | } |
| 3318 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3319 | /* |
| 3320 | * Called from transport_generic_complete_ok() and |
| 3321 | * transport_generic_request_failure() to determine which dormant/delayed |
| 3322 | * and ordered cmds need to have their tasks added to the execution queue. |
| 3323 | */ |
| 3324 | static void transport_complete_task_attr(struct se_cmd *cmd) |
| 3325 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3326 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3327 | struct se_cmd *cmd_p, *cmd_tmp; |
| 3328 | int new_active_tasks = 0; |
| 3329 | |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3330 | if (cmd->sam_task_attr == MSG_SIMPLE_TAG) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3331 | atomic_dec(&dev->simple_cmds); |
| 3332 | smp_mb__after_atomic_dec(); |
| 3333 | dev->dev_cur_ordered_id++; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3334 | pr_debug("Incremented dev->dev_cur_ordered_id: %u for" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3335 | " SIMPLE: %u\n", dev->dev_cur_ordered_id, |
| 3336 | cmd->se_ordered_id); |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3337 | } else if (cmd->sam_task_attr == MSG_HEAD_TAG) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3338 | atomic_dec(&dev->dev_hoq_count); |
| 3339 | smp_mb__after_atomic_dec(); |
| 3340 | dev->dev_cur_ordered_id++; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3341 | pr_debug("Incremented dev_cur_ordered_id: %u for" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3342 | " HEAD_OF_QUEUE: %u\n", dev->dev_cur_ordered_id, |
| 3343 | cmd->se_ordered_id); |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3344 | } else if (cmd->sam_task_attr == MSG_ORDERED_TAG) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3345 | spin_lock(&dev->ordered_cmd_lock); |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3346 | list_del(&cmd->se_ordered_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3347 | atomic_dec(&dev->dev_ordered_sync); |
| 3348 | smp_mb__after_atomic_dec(); |
| 3349 | spin_unlock(&dev->ordered_cmd_lock); |
| 3350 | |
| 3351 | dev->dev_cur_ordered_id++; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3352 | pr_debug("Incremented dev_cur_ordered_id: %u for ORDERED:" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3353 | " %u\n", dev->dev_cur_ordered_id, cmd->se_ordered_id); |
| 3354 | } |
| 3355 | /* |
| 3356 | * Process all commands up to the last received |
| 3357 | * ORDERED task attribute which requires another blocking |
| 3358 | * boundary |
| 3359 | */ |
| 3360 | spin_lock(&dev->delayed_cmd_lock); |
| 3361 | list_for_each_entry_safe(cmd_p, cmd_tmp, |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3362 | &dev->delayed_cmd_list, se_delayed_node) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3363 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3364 | list_del(&cmd_p->se_delayed_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3365 | spin_unlock(&dev->delayed_cmd_lock); |
| 3366 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3367 | pr_debug("Calling add_tasks() for" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3368 | " cmd_p: 0x%02x Task Attr: 0x%02x" |
| 3369 | " Dormant -> Active, se_ordered_id: %u\n", |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3370 | cmd_p->t_task_cdb[0], |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3371 | cmd_p->sam_task_attr, cmd_p->se_ordered_id); |
| 3372 | |
| 3373 | transport_add_tasks_from_cmd(cmd_p); |
| 3374 | new_active_tasks++; |
| 3375 | |
| 3376 | spin_lock(&dev->delayed_cmd_lock); |
Nicholas Bellinger | e66ecd5 | 2011-05-19 20:19:14 -0700 | [diff] [blame] | 3377 | if (cmd_p->sam_task_attr == MSG_ORDERED_TAG) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3378 | break; |
| 3379 | } |
| 3380 | spin_unlock(&dev->delayed_cmd_lock); |
| 3381 | /* |
| 3382 | * If new tasks have become active, wake up the transport thread |
| 3383 | * to do the processing of the Active tasks. |
| 3384 | */ |
| 3385 | if (new_active_tasks != 0) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3386 | wake_up_interruptible(&dev->dev_queue_obj.thread_wq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3387 | } |
| 3388 | |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3389 | static void transport_complete_qf(struct se_cmd *cmd) |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3390 | { |
| 3391 | int ret = 0; |
| 3392 | |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3393 | if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED) |
| 3394 | transport_complete_task_attr(cmd); |
| 3395 | |
| 3396 | if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) { |
| 3397 | ret = cmd->se_tfo->queue_status(cmd); |
| 3398 | if (ret) |
| 3399 | goto out; |
| 3400 | } |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3401 | |
| 3402 | switch (cmd->data_direction) { |
| 3403 | case DMA_FROM_DEVICE: |
| 3404 | ret = cmd->se_tfo->queue_data_in(cmd); |
| 3405 | break; |
| 3406 | case DMA_TO_DEVICE: |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3407 | if (cmd->t_bidi_data_sg) { |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3408 | ret = cmd->se_tfo->queue_data_in(cmd); |
| 3409 | if (ret < 0) |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3410 | break; |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3411 | } |
| 3412 | /* Fall through for DMA_TO_DEVICE */ |
| 3413 | case DMA_NONE: |
| 3414 | ret = cmd->se_tfo->queue_status(cmd); |
| 3415 | break; |
| 3416 | default: |
| 3417 | break; |
| 3418 | } |
| 3419 | |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3420 | out: |
| 3421 | if (ret < 0) { |
| 3422 | transport_handle_queue_full(cmd, cmd->se_dev); |
| 3423 | return; |
| 3424 | } |
| 3425 | transport_lun_remove_cmd(cmd); |
| 3426 | transport_cmd_check_stop_to_fabric(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3427 | } |
| 3428 | |
| 3429 | static void transport_handle_queue_full( |
| 3430 | struct se_cmd *cmd, |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3431 | struct se_device *dev) |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3432 | { |
| 3433 | spin_lock_irq(&dev->qf_cmd_lock); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3434 | list_add_tail(&cmd->se_qf_node, &cmd->se_dev->qf_cmd_list); |
| 3435 | atomic_inc(&dev->dev_qf_count); |
| 3436 | smp_mb__after_atomic_inc(); |
| 3437 | spin_unlock_irq(&cmd->se_dev->qf_cmd_lock); |
| 3438 | |
| 3439 | schedule_work(&cmd->se_dev->qf_work_queue); |
| 3440 | } |
| 3441 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3442 | static void transport_generic_complete_ok(struct se_cmd *cmd) |
| 3443 | { |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3444 | int reason = 0, ret; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3445 | /* |
| 3446 | * Check if we need to move delayed/dormant tasks from cmds on the |
| 3447 | * delayed execution list after a HEAD_OF_QUEUE or ORDERED Task |
| 3448 | * Attribute. |
| 3449 | */ |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3450 | if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3451 | transport_complete_task_attr(cmd); |
| 3452 | /* |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3453 | * Check to schedule QUEUE_FULL work, or execute an existing |
| 3454 | * cmd->transport_qf_callback() |
| 3455 | */ |
| 3456 | if (atomic_read(&cmd->se_dev->dev_qf_count) != 0) |
| 3457 | schedule_work(&cmd->se_dev->qf_work_queue); |
| 3458 | |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3459 | /* |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3460 | * Check if we need to retrieve a sense buffer from |
| 3461 | * the struct se_cmd in question. |
| 3462 | */ |
| 3463 | if (cmd->se_cmd_flags & SCF_TRANSPORT_TASK_SENSE) { |
| 3464 | if (transport_get_sense_data(cmd) < 0) |
| 3465 | reason = TCM_NON_EXISTENT_LUN; |
| 3466 | |
| 3467 | /* |
| 3468 | * Only set when an struct se_task->task_scsi_status returned |
| 3469 | * a non GOOD status. |
| 3470 | */ |
| 3471 | if (cmd->scsi_status) { |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3472 | ret = transport_send_check_condition_and_sense( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3473 | cmd, reason, 1); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3474 | if (ret == -EAGAIN) |
| 3475 | goto queue_full; |
| 3476 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3477 | transport_lun_remove_cmd(cmd); |
| 3478 | transport_cmd_check_stop_to_fabric(cmd); |
| 3479 | return; |
| 3480 | } |
| 3481 | } |
| 3482 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3483 | * Check for a callback, used by amongst other things |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3484 | * XDWRITE_READ_10 emulation. |
| 3485 | */ |
| 3486 | if (cmd->transport_complete_callback) |
| 3487 | cmd->transport_complete_callback(cmd); |
| 3488 | |
| 3489 | switch (cmd->data_direction) { |
| 3490 | case DMA_FROM_DEVICE: |
| 3491 | spin_lock(&cmd->se_lun->lun_sep_lock); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3492 | if (cmd->se_lun->lun_sep) { |
| 3493 | cmd->se_lun->lun_sep->sep_stats.tx_data_octets += |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3494 | cmd->data_length; |
| 3495 | } |
| 3496 | spin_unlock(&cmd->se_lun->lun_sep_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3497 | |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3498 | ret = cmd->se_tfo->queue_data_in(cmd); |
| 3499 | if (ret == -EAGAIN) |
| 3500 | goto queue_full; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3501 | break; |
| 3502 | case DMA_TO_DEVICE: |
| 3503 | spin_lock(&cmd->se_lun->lun_sep_lock); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3504 | if (cmd->se_lun->lun_sep) { |
| 3505 | cmd->se_lun->lun_sep->sep_stats.rx_data_octets += |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3506 | cmd->data_length; |
| 3507 | } |
| 3508 | spin_unlock(&cmd->se_lun->lun_sep_lock); |
| 3509 | /* |
| 3510 | * Check if we need to send READ payload for BIDI-COMMAND |
| 3511 | */ |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3512 | if (cmd->t_bidi_data_sg) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3513 | spin_lock(&cmd->se_lun->lun_sep_lock); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3514 | if (cmd->se_lun->lun_sep) { |
| 3515 | cmd->se_lun->lun_sep->sep_stats.tx_data_octets += |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3516 | cmd->data_length; |
| 3517 | } |
| 3518 | spin_unlock(&cmd->se_lun->lun_sep_lock); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3519 | ret = cmd->se_tfo->queue_data_in(cmd); |
| 3520 | if (ret == -EAGAIN) |
| 3521 | goto queue_full; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3522 | break; |
| 3523 | } |
| 3524 | /* Fall through for DMA_TO_DEVICE */ |
| 3525 | case DMA_NONE: |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3526 | ret = cmd->se_tfo->queue_status(cmd); |
| 3527 | if (ret == -EAGAIN) |
| 3528 | goto queue_full; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3529 | break; |
| 3530 | default: |
| 3531 | break; |
| 3532 | } |
| 3533 | |
| 3534 | transport_lun_remove_cmd(cmd); |
| 3535 | transport_cmd_check_stop_to_fabric(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3536 | return; |
| 3537 | |
| 3538 | queue_full: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3539 | pr_debug("Handling complete_ok QUEUE_FULL: se_cmd: %p," |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 3540 | " data_direction: %d\n", cmd, cmd->data_direction); |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 3541 | cmd->t_state = TRANSPORT_COMPLETE_QF_OK; |
| 3542 | transport_handle_queue_full(cmd, cmd->se_dev); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3543 | } |
| 3544 | |
| 3545 | static void transport_free_dev_tasks(struct se_cmd *cmd) |
| 3546 | { |
| 3547 | struct se_task *task, *task_tmp; |
| 3548 | unsigned long flags; |
Christoph Hellwig | 0c2cfe5 | 2011-10-17 13:56:45 -0400 | [diff] [blame] | 3549 | LIST_HEAD(dispose_list); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3550 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3551 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3552 | list_for_each_entry_safe(task, task_tmp, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3553 | &cmd->t_task_list, t_list) { |
Christoph Hellwig | 0c2cfe5 | 2011-10-17 13:56:45 -0400 | [diff] [blame] | 3554 | if (!(task->task_flags & TF_ACTIVE)) |
| 3555 | list_move_tail(&task->t_list, &dispose_list); |
| 3556 | } |
| 3557 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 3558 | |
| 3559 | while (!list_empty(&dispose_list)) { |
| 3560 | task = list_first_entry(&dispose_list, struct se_task, t_list); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3561 | |
Christoph Hellwig | cc5d0f0 | 2011-10-17 13:56:48 -0400 | [diff] [blame^] | 3562 | /* |
| 3563 | * We already cancelled all pending timers in |
| 3564 | * transport_complete_task, but that was just a pure del_timer, |
| 3565 | * so do a full del_timer_sync here to make sure any handler |
| 3566 | * that was running at that point has finished execution. |
| 3567 | */ |
| 3568 | del_timer_sync(&task->task_timer); |
| 3569 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3570 | kfree(task->task_sg_bidi); |
| 3571 | kfree(task->task_sg); |
| 3572 | |
| 3573 | list_del(&task->t_list); |
| 3574 | |
Christoph Hellwig | 42bf829 | 2011-10-12 11:07:00 -0400 | [diff] [blame] | 3575 | cmd->se_dev->transport->free_task(task); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3576 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3577 | } |
| 3578 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3579 | static inline void transport_free_sgl(struct scatterlist *sgl, int nents) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3580 | { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3581 | struct scatterlist *sg; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3582 | int count; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3583 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3584 | for_each_sg(sgl, sg, nents, count) |
| 3585 | __free_page(sg_page(sg)); |
| 3586 | |
| 3587 | kfree(sgl); |
| 3588 | } |
| 3589 | |
| 3590 | static inline void transport_free_pages(struct se_cmd *cmd) |
| 3591 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3592 | if (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3593 | return; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3594 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3595 | transport_free_sgl(cmd->t_data_sg, cmd->t_data_nents); |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3596 | cmd->t_data_sg = NULL; |
| 3597 | cmd->t_data_nents = 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3598 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3599 | transport_free_sgl(cmd->t_bidi_data_sg, cmd->t_bidi_data_nents); |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3600 | cmd->t_bidi_data_sg = NULL; |
| 3601 | cmd->t_bidi_data_nents = 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3602 | } |
| 3603 | |
Christoph Hellwig | d3df782 | 2011-09-13 23:08:32 +0200 | [diff] [blame] | 3604 | /** |
| 3605 | * transport_put_cmd - release a reference to a command |
| 3606 | * @cmd: command to release |
| 3607 | * |
| 3608 | * This routine releases our reference to the command and frees it if possible. |
| 3609 | */ |
Nicholas Bellinger | 39c05f3 | 2011-10-08 13:59:52 -0700 | [diff] [blame] | 3610 | static void transport_put_cmd(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3611 | { |
| 3612 | unsigned long flags; |
Christoph Hellwig | 4911e3c | 2011-09-13 23:08:42 +0200 | [diff] [blame] | 3613 | int free_tasks = 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3614 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3615 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Christoph Hellwig | 4911e3c | 2011-09-13 23:08:42 +0200 | [diff] [blame] | 3616 | if (atomic_read(&cmd->t_fe_count)) { |
| 3617 | if (!atomic_dec_and_test(&cmd->t_fe_count)) |
| 3618 | goto out_busy; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3619 | } |
Christoph Hellwig | 4911e3c | 2011-09-13 23:08:42 +0200 | [diff] [blame] | 3620 | |
| 3621 | if (atomic_read(&cmd->t_se_count)) { |
| 3622 | if (!atomic_dec_and_test(&cmd->t_se_count)) |
| 3623 | goto out_busy; |
| 3624 | } |
| 3625 | |
| 3626 | if (atomic_read(&cmd->transport_dev_active)) { |
| 3627 | atomic_set(&cmd->transport_dev_active, 0); |
| 3628 | transport_all_task_dev_remove_state(cmd); |
| 3629 | free_tasks = 1; |
| 3630 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3631 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3632 | |
Christoph Hellwig | 4911e3c | 2011-09-13 23:08:42 +0200 | [diff] [blame] | 3633 | if (free_tasks != 0) |
| 3634 | transport_free_dev_tasks(cmd); |
Christoph Hellwig | d3df782 | 2011-09-13 23:08:32 +0200 | [diff] [blame] | 3635 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3636 | transport_free_pages(cmd); |
Christoph Hellwig | 31afc39 | 2011-09-13 23:08:11 +0200 | [diff] [blame] | 3637 | transport_release_cmd(cmd); |
Nicholas Bellinger | 39c05f3 | 2011-10-08 13:59:52 -0700 | [diff] [blame] | 3638 | return; |
Christoph Hellwig | 4911e3c | 2011-09-13 23:08:42 +0200 | [diff] [blame] | 3639 | out_busy: |
| 3640 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3641 | } |
| 3642 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3643 | /* |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3644 | * transport_generic_map_mem_to_cmd - Use fabric-alloced pages instead of |
| 3645 | * allocating in the core. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3646 | * @cmd: Associated se_cmd descriptor |
| 3647 | * @mem: SGL style memory for TCM WRITE / READ |
| 3648 | * @sg_mem_num: Number of SGL elements |
| 3649 | * @mem_bidi_in: SGL style memory for TCM BIDI READ |
| 3650 | * @sg_mem_bidi_num: Number of BIDI READ SGL elements |
| 3651 | * |
| 3652 | * Return: nonzero return cmd was rejected for -ENOMEM or inproper usage |
| 3653 | * of parameters. |
| 3654 | */ |
| 3655 | int transport_generic_map_mem_to_cmd( |
| 3656 | struct se_cmd *cmd, |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3657 | struct scatterlist *sgl, |
| 3658 | u32 sgl_count, |
| 3659 | struct scatterlist *sgl_bidi, |
| 3660 | u32 sgl_bidi_count) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3661 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3662 | if (!sgl || !sgl_count) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3663 | return 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3664 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3665 | if ((cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) || |
| 3666 | (cmd->se_cmd_flags & SCF_SCSI_CONTROL_SG_IO_CDB)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3667 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3668 | cmd->t_data_sg = sgl; |
| 3669 | cmd->t_data_nents = sgl_count; |
| 3670 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3671 | if (sgl_bidi && sgl_bidi_count) { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3672 | cmd->t_bidi_data_sg = sgl_bidi; |
| 3673 | cmd->t_bidi_data_nents = sgl_bidi_count; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3674 | } |
| 3675 | cmd->se_cmd_flags |= SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3676 | } |
| 3677 | |
| 3678 | return 0; |
| 3679 | } |
| 3680 | EXPORT_SYMBOL(transport_generic_map_mem_to_cmd); |
| 3681 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3682 | static int transport_new_cmd_obj(struct se_cmd *cmd) |
| 3683 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3684 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | 01cde4d | 2011-08-10 00:59:58 -0700 | [diff] [blame] | 3685 | int set_counts = 1, rc, task_cdbs; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3686 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3687 | /* |
| 3688 | * Setup any BIDI READ tasks and memory from |
| 3689 | * cmd->t_mem_bidi_list so the READ struct se_tasks |
| 3690 | * are queued first for the non pSCSI passthrough case. |
| 3691 | */ |
| 3692 | if (cmd->t_bidi_data_sg && |
| 3693 | (dev->transport->transport_type != TRANSPORT_PLUGIN_PHBA_PDEV)) { |
| 3694 | rc = transport_allocate_tasks(cmd, |
| 3695 | cmd->t_task_lba, |
| 3696 | DMA_FROM_DEVICE, |
| 3697 | cmd->t_bidi_data_sg, |
| 3698 | cmd->t_bidi_data_nents); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3699 | if (rc <= 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3700 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 3701 | cmd->scsi_sense_reason = |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3702 | TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; |
Nicholas Bellinger | 01cde4d | 2011-08-10 00:59:58 -0700 | [diff] [blame] | 3703 | return -EINVAL; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3704 | } |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3705 | atomic_inc(&cmd->t_fe_count); |
| 3706 | atomic_inc(&cmd->t_se_count); |
| 3707 | set_counts = 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3708 | } |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3709 | /* |
| 3710 | * Setup the tasks and memory from cmd->t_mem_list |
| 3711 | * Note for BIDI transfers this will contain the WRITE payload |
| 3712 | */ |
| 3713 | task_cdbs = transport_allocate_tasks(cmd, |
| 3714 | cmd->t_task_lba, |
| 3715 | cmd->data_direction, |
| 3716 | cmd->t_data_sg, |
| 3717 | cmd->t_data_nents); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3718 | if (task_cdbs <= 0) { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3719 | cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION; |
| 3720 | cmd->scsi_sense_reason = |
| 3721 | TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE; |
Nicholas Bellinger | 01cde4d | 2011-08-10 00:59:58 -0700 | [diff] [blame] | 3722 | return -EINVAL; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3723 | } |
| 3724 | |
| 3725 | if (set_counts) { |
| 3726 | atomic_inc(&cmd->t_fe_count); |
| 3727 | atomic_inc(&cmd->t_se_count); |
| 3728 | } |
| 3729 | |
| 3730 | cmd->t_task_list_num = task_cdbs; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3731 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3732 | atomic_set(&cmd->t_task_cdbs_left, task_cdbs); |
| 3733 | atomic_set(&cmd->t_task_cdbs_ex_left, task_cdbs); |
| 3734 | atomic_set(&cmd->t_task_cdbs_timeout_left, task_cdbs); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3735 | return 0; |
| 3736 | } |
| 3737 | |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3738 | void *transport_kmap_first_data_page(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3739 | { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3740 | struct scatterlist *sg = cmd->t_data_sg; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3741 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3742 | BUG_ON(!sg); |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3743 | /* |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3744 | * We need to take into account a possible offset here for fabrics like |
| 3745 | * tcm_loop who may be using a contig buffer from the SCSI midlayer for |
| 3746 | * control CDBs passed as SGLs via transport_generic_map_mem_to_cmd() |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3747 | */ |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3748 | return kmap(sg_page(sg)) + sg->offset; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3749 | } |
| 3750 | EXPORT_SYMBOL(transport_kmap_first_data_page); |
| 3751 | |
| 3752 | void transport_kunmap_first_data_page(struct se_cmd *cmd) |
| 3753 | { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3754 | kunmap(sg_page(cmd->t_data_sg)); |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3755 | } |
| 3756 | EXPORT_SYMBOL(transport_kunmap_first_data_page); |
| 3757 | |
| 3758 | static int |
| 3759 | transport_generic_get_mem(struct se_cmd *cmd) |
| 3760 | { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3761 | u32 length = cmd->data_length; |
| 3762 | unsigned int nents; |
| 3763 | struct page *page; |
| 3764 | int i = 0; |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 3765 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3766 | nents = DIV_ROUND_UP(length, PAGE_SIZE); |
| 3767 | cmd->t_data_sg = kmalloc(sizeof(struct scatterlist) * nents, GFP_KERNEL); |
| 3768 | if (!cmd->t_data_sg) |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 3769 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3770 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3771 | cmd->t_data_nents = nents; |
| 3772 | sg_init_table(cmd->t_data_sg, nents); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3773 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3774 | while (length) { |
| 3775 | u32 page_len = min_t(u32, length, PAGE_SIZE); |
| 3776 | page = alloc_page(GFP_KERNEL | __GFP_ZERO); |
| 3777 | if (!page) |
| 3778 | goto out; |
| 3779 | |
| 3780 | sg_set_page(&cmd->t_data_sg[i], page, page_len, 0); |
| 3781 | length -= page_len; |
| 3782 | i++; |
| 3783 | } |
| 3784 | return 0; |
| 3785 | |
| 3786 | out: |
| 3787 | while (i >= 0) { |
| 3788 | __free_page(sg_page(&cmd->t_data_sg[i])); |
| 3789 | i--; |
| 3790 | } |
| 3791 | kfree(cmd->t_data_sg); |
| 3792 | cmd->t_data_sg = NULL; |
| 3793 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3794 | } |
| 3795 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3796 | /* Reduce sectors if they are too long for the device */ |
| 3797 | static inline sector_t transport_limit_task_sectors( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3798 | struct se_device *dev, |
| 3799 | unsigned long long lba, |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3800 | sector_t sectors) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3801 | { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3802 | sectors = min_t(sector_t, sectors, dev->se_sub_dev->se_dev_attrib.max_sectors); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3803 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3804 | if (dev->transport->get_device_type(dev) == TYPE_DISK) |
| 3805 | if ((lba + sectors) > transport_dev_end_lba(dev)) |
| 3806 | sectors = ((transport_dev_end_lba(dev) - lba) + 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3807 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3808 | return sectors; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3809 | } |
| 3810 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3811 | |
| 3812 | /* |
| 3813 | * This function can be used by HW target mode drivers to create a linked |
| 3814 | * scatterlist from all contiguously allocated struct se_task->task_sg[]. |
| 3815 | * This is intended to be called during the completion path by TCM Core |
| 3816 | * when struct target_core_fabric_ops->check_task_sg_chaining is enabled. |
| 3817 | */ |
| 3818 | void transport_do_task_sg_chain(struct se_cmd *cmd) |
| 3819 | { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3820 | struct scatterlist *sg_first = NULL; |
| 3821 | struct scatterlist *sg_prev = NULL; |
| 3822 | int sg_prev_nents = 0; |
| 3823 | struct scatterlist *sg; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3824 | struct se_task *task; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3825 | u32 chained_nents = 0; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3826 | int i; |
| 3827 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3828 | BUG_ON(!cmd->se_tfo->task_sg_chaining); |
| 3829 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3830 | /* |
| 3831 | * Walk the struct se_task list and setup scatterlist chains |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3832 | * for each contiguously allocated struct se_task->task_sg[]. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3833 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3834 | list_for_each_entry(task, &cmd->t_task_list, t_list) { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3835 | if (!task->task_sg) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3836 | continue; |
| 3837 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3838 | if (!sg_first) { |
| 3839 | sg_first = task->task_sg; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3840 | chained_nents = task->task_sg_nents; |
Nicholas Bellinger | 97868c8 | 2011-05-19 20:19:09 -0700 | [diff] [blame] | 3841 | } else { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3842 | sg_chain(sg_prev, sg_prev_nents, task->task_sg); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3843 | chained_nents += task->task_sg_nents; |
Nicholas Bellinger | 97868c8 | 2011-05-19 20:19:09 -0700 | [diff] [blame] | 3844 | } |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3845 | /* |
| 3846 | * For the padded tasks, use the extra SGL vector allocated |
| 3847 | * in transport_allocate_data_tasks() for the sg_prev_nents |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 3848 | * offset into sg_chain() above. |
| 3849 | * |
| 3850 | * We do not need the padding for the last task (or a single |
| 3851 | * task), but in that case we will never use the sg_prev_nents |
| 3852 | * value below which would be incorrect. |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3853 | */ |
Christoph Hellwig | 04629b7 | 2011-10-12 11:07:04 -0400 | [diff] [blame] | 3854 | sg_prev_nents = (task->task_sg_nents + 1); |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3855 | sg_prev = task->task_sg; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3856 | } |
| 3857 | /* |
| 3858 | * Setup the starting pointer and total t_tasks_sg_linked_no including |
| 3859 | * padding SGs for linking and to mark the end. |
| 3860 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3861 | cmd->t_tasks_sg_chained = sg_first; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3862 | cmd->t_tasks_sg_chained_no = chained_nents; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3863 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3864 | pr_debug("Setup cmd: %p cmd->t_tasks_sg_chained: %p and" |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3865 | " t_tasks_sg_chained_no: %u\n", cmd, cmd->t_tasks_sg_chained, |
| 3866 | cmd->t_tasks_sg_chained_no); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3867 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3868 | for_each_sg(cmd->t_tasks_sg_chained, sg, |
| 3869 | cmd->t_tasks_sg_chained_no, i) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3870 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3871 | pr_debug("SG[%d]: %p page: %p length: %d offset: %d\n", |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3872 | i, sg, sg_page(sg), sg->length, sg->offset); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3873 | if (sg_is_chain(sg)) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3874 | pr_debug("SG: %p sg_is_chain=1\n", sg); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3875 | if (sg_is_last(sg)) |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3876 | pr_debug("SG: %p sg_is_last=1\n", sg); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3877 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3878 | } |
| 3879 | EXPORT_SYMBOL(transport_do_task_sg_chain); |
| 3880 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3881 | /* |
| 3882 | * Break up cmd into chunks transport can handle |
| 3883 | */ |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3884 | static int transport_allocate_data_tasks( |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3885 | struct se_cmd *cmd, |
| 3886 | unsigned long long lba, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3887 | enum dma_data_direction data_direction, |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3888 | struct scatterlist *sgl, |
| 3889 | unsigned int sgl_nents) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3890 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3891 | struct se_task *task; |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 3892 | struct se_device *dev = cmd->se_dev; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3893 | unsigned long flags; |
Christoph Hellwig | a3eedc2 | 2011-09-25 14:56:43 -0400 | [diff] [blame] | 3894 | int task_count, i; |
Nicholas Bellinger | 277c5f2 | 2011-07-26 00:38:40 -0700 | [diff] [blame] | 3895 | sector_t sectors, dev_max_sectors = dev->se_sub_dev->se_dev_attrib.max_sectors; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3896 | u32 sector_size = dev->se_sub_dev->se_dev_attrib.block_size; |
| 3897 | struct scatterlist *sg; |
| 3898 | struct scatterlist *cmd_sg; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3899 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3900 | WARN_ON(cmd->data_length % sector_size); |
| 3901 | sectors = DIV_ROUND_UP(cmd->data_length, sector_size); |
Nicholas Bellinger | 277c5f2 | 2011-07-26 00:38:40 -0700 | [diff] [blame] | 3902 | task_count = DIV_ROUND_UP_SECTOR_T(sectors, dev_max_sectors); |
| 3903 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3904 | cmd_sg = sgl; |
| 3905 | for (i = 0; i < task_count; i++) { |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3906 | unsigned int task_size, task_sg_nents_padded; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3907 | int count; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3908 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3909 | task = transport_generic_get_task(cmd, data_direction); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 3910 | if (!task) |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3911 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3912 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3913 | task->task_lba = lba; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3914 | task->task_sectors = min(sectors, dev_max_sectors); |
| 3915 | task->task_size = task->task_sectors * sector_size; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3916 | |
Nicholas Bellinger | 525a48a | 2011-08-13 02:11:38 -0700 | [diff] [blame] | 3917 | /* |
| 3918 | * This now assumes that passed sg_ents are in PAGE_SIZE chunks |
| 3919 | * in order to calculate the number per task SGL entries |
| 3920 | */ |
| 3921 | task->task_sg_nents = DIV_ROUND_UP(task->task_size, PAGE_SIZE); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3922 | /* |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3923 | * Check if the fabric module driver is requesting that all |
| 3924 | * struct se_task->task_sg[] be chained together.. If so, |
| 3925 | * then allocate an extra padding SG entry for linking and |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3926 | * marking the end of the chained SGL for every task except |
| 3927 | * the last one for (task_count > 1) operation, or skipping |
| 3928 | * the extra padding for the (task_count == 1) case. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3929 | */ |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3930 | if (cmd->se_tfo->task_sg_chaining && (i < (task_count - 1))) { |
| 3931 | task_sg_nents_padded = (task->task_sg_nents + 1); |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3932 | } else |
| 3933 | task_sg_nents_padded = task->task_sg_nents; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3934 | |
Nicholas Bellinger | 1d20bb6 | 2011-07-21 04:41:48 +0000 | [diff] [blame] | 3935 | task->task_sg = kmalloc(sizeof(struct scatterlist) * |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3936 | task_sg_nents_padded, GFP_KERNEL); |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3937 | if (!task->task_sg) { |
| 3938 | cmd->se_dev->transport->free_task(task); |
| 3939 | return -ENOMEM; |
| 3940 | } |
| 3941 | |
Nicholas Bellinger | c3c74c7 | 2011-08-13 05:30:31 -0700 | [diff] [blame] | 3942 | sg_init_table(task->task_sg, task_sg_nents_padded); |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3943 | |
| 3944 | task_size = task->task_size; |
| 3945 | |
| 3946 | /* Build new sgl, only up to task_size */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3947 | for_each_sg(task->task_sg, sg, task->task_sg_nents, count) { |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3948 | if (cmd_sg->length > task_size) |
| 3949 | break; |
| 3950 | |
| 3951 | *sg = *cmd_sg; |
| 3952 | task_size -= cmd_sg->length; |
| 3953 | cmd_sg = sg_next(cmd_sg); |
| 3954 | } |
| 3955 | |
| 3956 | lba += task->task_sectors; |
| 3957 | sectors -= task->task_sectors; |
| 3958 | |
| 3959 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 3960 | list_add_tail(&task->t_list, &cmd->t_task_list); |
| 3961 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3962 | } |
| 3963 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3964 | return task_count; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3965 | } |
| 3966 | |
| 3967 | static int |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3968 | transport_allocate_control_task(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3969 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3970 | struct se_task *task; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3971 | unsigned long flags; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3972 | |
| 3973 | task = transport_generic_get_task(cmd, cmd->data_direction); |
| 3974 | if (!task) |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3975 | return -ENOMEM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3976 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3977 | task->task_sg = kmalloc(sizeof(struct scatterlist) * cmd->t_data_nents, |
| 3978 | GFP_KERNEL); |
| 3979 | if (!task->task_sg) { |
| 3980 | cmd->se_dev->transport->free_task(task); |
| 3981 | return -ENOMEM; |
| 3982 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3983 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3984 | memcpy(task->task_sg, cmd->t_data_sg, |
| 3985 | sizeof(struct scatterlist) * cmd->t_data_nents); |
| 3986 | task->task_size = cmd->data_length; |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3987 | task->task_sg_nents = cmd->t_data_nents; |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3988 | |
| 3989 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 3990 | list_add_tail(&task->t_list, &cmd->t_task_list); |
| 3991 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3992 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 3993 | /* Success! Return number of tasks allocated */ |
Christoph Hellwig | a3eedc2 | 2011-09-25 14:56:43 -0400 | [diff] [blame] | 3994 | return 1; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 3995 | } |
| 3996 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 3997 | static u32 transport_allocate_tasks( |
| 3998 | struct se_cmd *cmd, |
| 3999 | unsigned long long lba, |
| 4000 | enum dma_data_direction data_direction, |
| 4001 | struct scatterlist *sgl, |
| 4002 | unsigned int sgl_nents) |
| 4003 | { |
Nicholas Bellinger | 01cde4d | 2011-08-10 00:59:58 -0700 | [diff] [blame] | 4004 | if (cmd->se_cmd_flags & SCF_SCSI_DATA_SG_IO_CDB) { |
| 4005 | if (transport_cmd_get_valid_sectors(cmd) < 0) |
| 4006 | return -EINVAL; |
| 4007 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 4008 | return transport_allocate_data_tasks(cmd, lba, data_direction, |
| 4009 | sgl, sgl_nents); |
Nicholas Bellinger | 01cde4d | 2011-08-10 00:59:58 -0700 | [diff] [blame] | 4010 | } else |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4011 | return transport_allocate_control_task(cmd); |
| 4012 | |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 4013 | } |
| 4014 | |
| 4015 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4016 | /* transport_generic_new_cmd(): Called from transport_processing_thread() |
| 4017 | * |
| 4018 | * Allocate storage transport resources from a set of values predefined |
| 4019 | * by transport_generic_cmd_sequencer() from the iSCSI Target RX process. |
| 4020 | * Any non zero return here is treated as an "out of resource' op here. |
| 4021 | */ |
| 4022 | /* |
| 4023 | * Generate struct se_task(s) and/or their payloads for this CDB. |
| 4024 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4025 | int transport_generic_new_cmd(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4026 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4027 | int ret = 0; |
| 4028 | |
| 4029 | /* |
| 4030 | * Determine is the TCM fabric module has already allocated physical |
| 4031 | * memory, and is directly calling transport_generic_map_mem_to_cmd() |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 4032 | * beforehand. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4033 | */ |
Andy Grover | ec98f78 | 2011-07-20 19:28:46 +0000 | [diff] [blame] | 4034 | if (!(cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC) && |
| 4035 | cmd->data_length) { |
Andy Grover | 05d1c7c | 2011-07-20 19:13:28 +0000 | [diff] [blame] | 4036 | ret = transport_generic_get_mem(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4037 | if (ret < 0) |
| 4038 | return ret; |
| 4039 | } |
Nicholas Bellinger | 1d20bb6 | 2011-07-21 04:41:48 +0000 | [diff] [blame] | 4040 | /* |
| 4041 | * Call transport_new_cmd_obj() to invoke transport_allocate_tasks() for |
| 4042 | * control or data CDB types, and perform the map to backend subsystem |
| 4043 | * code from SGL memory allocated here by transport_generic_get_mem(), or |
| 4044 | * via pre-existing SGL memory setup explictly by fabric module code with |
| 4045 | * transport_generic_map_mem_to_cmd(). |
| 4046 | */ |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4047 | ret = transport_new_cmd_obj(cmd); |
| 4048 | if (ret < 0) |
| 4049 | return ret; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4050 | /* |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4051 | * For WRITEs, let the fabric know its buffer is ready.. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4052 | * This WRITE struct se_cmd (and all of its associated struct se_task's) |
| 4053 | * will be added to the struct se_device execution queue after its WRITE |
| 4054 | * data has arrived. (ie: It gets handled by the transport processing |
| 4055 | * thread a second time) |
| 4056 | */ |
| 4057 | if (cmd->data_direction == DMA_TO_DEVICE) { |
| 4058 | transport_add_tasks_to_state_queue(cmd); |
| 4059 | return transport_generic_write_pending(cmd); |
| 4060 | } |
| 4061 | /* |
| 4062 | * Everything else but a WRITE, add the struct se_cmd's struct se_task's |
| 4063 | * to the execution queue. |
| 4064 | */ |
| 4065 | transport_execute_tasks(cmd); |
| 4066 | return 0; |
| 4067 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4068 | EXPORT_SYMBOL(transport_generic_new_cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4069 | |
| 4070 | /* transport_generic_process_write(): |
| 4071 | * |
| 4072 | * |
| 4073 | */ |
| 4074 | void transport_generic_process_write(struct se_cmd *cmd) |
| 4075 | { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4076 | transport_execute_tasks(cmd); |
| 4077 | } |
| 4078 | EXPORT_SYMBOL(transport_generic_process_write); |
| 4079 | |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 4080 | static void transport_write_pending_qf(struct se_cmd *cmd) |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4081 | { |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 4082 | if (cmd->se_tfo->write_pending(cmd) == -EAGAIN) { |
| 4083 | pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", |
| 4084 | cmd); |
| 4085 | transport_handle_queue_full(cmd, cmd->se_dev); |
| 4086 | } |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4087 | } |
| 4088 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4089 | static int transport_generic_write_pending(struct se_cmd *cmd) |
| 4090 | { |
| 4091 | unsigned long flags; |
| 4092 | int ret; |
| 4093 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4094 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4095 | cmd->t_state = TRANSPORT_WRITE_PENDING; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4096 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4097 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4098 | /* |
| 4099 | * Clear the se_cmd for WRITE_PENDING status in order to set |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4100 | * cmd->t_transport_active=0 so that transport_generic_handle_data |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4101 | * can be called from HW target mode interrupt code. This is safe |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4102 | * to be called with transport_off=1 before the cmd->se_tfo->write_pending |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4103 | * because the se_cmd->se_lun pointer is not being cleared. |
| 4104 | */ |
| 4105 | transport_cmd_check_stop(cmd, 1, 0); |
| 4106 | |
| 4107 | /* |
| 4108 | * Call the fabric write_pending function here to let the |
| 4109 | * frontend know that WRITE buffers are ready. |
| 4110 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4111 | ret = cmd->se_tfo->write_pending(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4112 | if (ret == -EAGAIN) |
| 4113 | goto queue_full; |
| 4114 | else if (ret < 0) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4115 | return ret; |
| 4116 | |
| 4117 | return PYX_TRANSPORT_WRITE_PENDING; |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4118 | |
| 4119 | queue_full: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4120 | pr_debug("Handling write_pending QUEUE__FULL: se_cmd: %p\n", cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4121 | cmd->t_state = TRANSPORT_COMPLETE_QF_WP; |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 4122 | transport_handle_queue_full(cmd, cmd->se_dev); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4123 | return ret; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4124 | } |
| 4125 | |
Christoph Hellwig | 2dbc43d | 2011-09-13 23:08:19 +0200 | [diff] [blame] | 4126 | /** |
| 4127 | * transport_release_cmd - free a command |
| 4128 | * @cmd: command to free |
| 4129 | * |
| 4130 | * This routine unconditionally frees a command, and reference counting |
| 4131 | * or list removal must be done in the caller. |
| 4132 | */ |
Christoph Hellwig | 3546297 | 2011-05-31 23:56:57 -0400 | [diff] [blame] | 4133 | void transport_release_cmd(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4134 | { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4135 | BUG_ON(!cmd->se_tfo); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4136 | |
Christoph Hellwig | 2dbc43d | 2011-09-13 23:08:19 +0200 | [diff] [blame] | 4137 | if (cmd->se_tmr_req) |
| 4138 | core_tmr_release_req(cmd->se_tmr_req); |
| 4139 | if (cmd->t_task_cdb != cmd->__t_task_cdb) |
| 4140 | kfree(cmd->t_task_cdb); |
Christoph Hellwig | 3546297 | 2011-05-31 23:56:57 -0400 | [diff] [blame] | 4141 | cmd->se_tfo->release_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4142 | } |
Christoph Hellwig | 3546297 | 2011-05-31 23:56:57 -0400 | [diff] [blame] | 4143 | EXPORT_SYMBOL(transport_release_cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4144 | |
Nicholas Bellinger | 39c05f3 | 2011-10-08 13:59:52 -0700 | [diff] [blame] | 4145 | void transport_generic_free_cmd(struct se_cmd *cmd, int wait_for_tasks) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4146 | { |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4147 | if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD)) { |
| 4148 | if (wait_for_tasks && cmd->se_tmr_req) |
| 4149 | transport_wait_for_tasks(cmd); |
| 4150 | |
Christoph Hellwig | 3546297 | 2011-05-31 23:56:57 -0400 | [diff] [blame] | 4151 | transport_release_cmd(cmd); |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4152 | } else { |
| 4153 | if (wait_for_tasks) |
| 4154 | transport_wait_for_tasks(cmd); |
| 4155 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4156 | core_dec_lacl_count(cmd->se_sess->se_node_acl, cmd); |
| 4157 | |
Christoph Hellwig | 82f1c8a | 2011-09-13 23:09:01 +0200 | [diff] [blame] | 4158 | if (cmd->se_lun) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4159 | transport_lun_remove_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4160 | |
Nicholas Bellinger | f436677 | 2011-05-19 20:19:11 -0700 | [diff] [blame] | 4161 | transport_free_dev_tasks(cmd); |
| 4162 | |
Nicholas Bellinger | 39c05f3 | 2011-10-08 13:59:52 -0700 | [diff] [blame] | 4163 | transport_put_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4164 | } |
| 4165 | } |
| 4166 | EXPORT_SYMBOL(transport_generic_free_cmd); |
| 4167 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4168 | /* transport_lun_wait_for_tasks(): |
| 4169 | * |
| 4170 | * Called from ConfigFS context to stop the passed struct se_cmd to allow |
| 4171 | * an struct se_lun to be successfully shutdown. |
| 4172 | */ |
| 4173 | static int transport_lun_wait_for_tasks(struct se_cmd *cmd, struct se_lun *lun) |
| 4174 | { |
| 4175 | unsigned long flags; |
| 4176 | int ret; |
| 4177 | /* |
| 4178 | * If the frontend has already requested this struct se_cmd to |
| 4179 | * be stopped, we can safely ignore this struct se_cmd. |
| 4180 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4181 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 4182 | if (atomic_read(&cmd->t_transport_stop)) { |
| 4183 | atomic_set(&cmd->transport_lun_stop, 0); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4184 | pr_debug("ConfigFS ITT[0x%08x] - t_transport_stop ==" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4185 | " TRUE, skipping\n", cmd->se_tfo->get_task_tag(cmd)); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4186 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4187 | transport_cmd_check_stop(cmd, 1, 0); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4188 | return -EPERM; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4189 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4190 | atomic_set(&cmd->transport_lun_fe_stop, 1); |
| 4191 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4192 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4193 | wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4194 | |
| 4195 | ret = transport_stop_tasks_for_cmd(cmd); |
| 4196 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4197 | pr_debug("ConfigFS: cmd: %p t_tasks: %d stop tasks ret:" |
| 4198 | " %d\n", cmd, cmd->t_task_list_num, ret); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4199 | if (!ret) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4200 | pr_debug("ConfigFS: ITT[0x%08x] - stopping cmd....\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4201 | cmd->se_tfo->get_task_tag(cmd)); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4202 | wait_for_completion(&cmd->transport_lun_stop_comp); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4203 | pr_debug("ConfigFS: ITT[0x%08x] - stopped cmd....\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4204 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4205 | } |
Christoph Hellwig | 3df8d40 | 2011-10-17 13:56:43 -0400 | [diff] [blame] | 4206 | transport_remove_cmd_from_queue(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4207 | |
| 4208 | return 0; |
| 4209 | } |
| 4210 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4211 | static void __transport_clear_lun_from_sessions(struct se_lun *lun) |
| 4212 | { |
| 4213 | struct se_cmd *cmd = NULL; |
| 4214 | unsigned long lun_flags, cmd_flags; |
| 4215 | /* |
| 4216 | * Do exception processing and return CHECK_CONDITION status to the |
| 4217 | * Initiator Port. |
| 4218 | */ |
| 4219 | spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags); |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4220 | while (!list_empty(&lun->lun_cmd_list)) { |
| 4221 | cmd = list_first_entry(&lun->lun_cmd_list, |
| 4222 | struct se_cmd, se_lun_node); |
| 4223 | list_del(&cmd->se_lun_node); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4224 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4225 | atomic_set(&cmd->transport_lun_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4226 | /* |
| 4227 | * This will notify iscsi_target_transport.c: |
| 4228 | * transport_cmd_check_stop() that a LUN shutdown is in |
| 4229 | * progress for the iscsi_cmd_t. |
| 4230 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4231 | spin_lock(&cmd->t_state_lock); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4232 | pr_debug("SE_LUN[%d] - Setting cmd->transport" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4233 | "_lun_stop for ITT: 0x%08x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4234 | cmd->se_lun->unpacked_lun, |
| 4235 | cmd->se_tfo->get_task_tag(cmd)); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4236 | atomic_set(&cmd->transport_lun_stop, 1); |
| 4237 | spin_unlock(&cmd->t_state_lock); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4238 | |
| 4239 | spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags); |
| 4240 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4241 | if (!cmd->se_lun) { |
| 4242 | pr_err("ITT: 0x%08x, [i,t]_state: %u/%u\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4243 | cmd->se_tfo->get_task_tag(cmd), |
| 4244 | cmd->se_tfo->get_cmd_state(cmd), cmd->t_state); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4245 | BUG(); |
| 4246 | } |
| 4247 | /* |
| 4248 | * If the Storage engine still owns the iscsi_cmd_t, determine |
| 4249 | * and/or stop its context. |
| 4250 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4251 | pr_debug("SE_LUN[%d] - ITT: 0x%08x before transport" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4252 | "_lun_wait_for_tasks()\n", cmd->se_lun->unpacked_lun, |
| 4253 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4254 | |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4255 | if (transport_lun_wait_for_tasks(cmd, cmd->se_lun) < 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4256 | spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags); |
| 4257 | continue; |
| 4258 | } |
| 4259 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4260 | pr_debug("SE_LUN[%d] - ITT: 0x%08x after transport_lun" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4261 | "_wait_for_tasks(): SUCCESS\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4262 | cmd->se_lun->unpacked_lun, |
| 4263 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4264 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4265 | spin_lock_irqsave(&cmd->t_state_lock, cmd_flags); |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4266 | if (!atomic_read(&cmd->transport_dev_active)) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4267 | spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4268 | goto check_cond; |
| 4269 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4270 | atomic_set(&cmd->transport_dev_active, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4271 | transport_all_task_dev_remove_state(cmd); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4272 | spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4273 | |
| 4274 | transport_free_dev_tasks(cmd); |
| 4275 | /* |
| 4276 | * The Storage engine stopped this struct se_cmd before it was |
| 4277 | * send to the fabric frontend for delivery back to the |
| 4278 | * Initiator Node. Return this SCSI CDB back with an |
| 4279 | * CHECK_CONDITION status. |
| 4280 | */ |
| 4281 | check_cond: |
| 4282 | transport_send_check_condition_and_sense(cmd, |
| 4283 | TCM_NON_EXISTENT_LUN, 0); |
| 4284 | /* |
| 4285 | * If the fabric frontend is waiting for this iscsi_cmd_t to |
| 4286 | * be released, notify the waiting thread now that LU has |
| 4287 | * finished accessing it. |
| 4288 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4289 | spin_lock_irqsave(&cmd->t_state_lock, cmd_flags); |
| 4290 | if (atomic_read(&cmd->transport_lun_fe_stop)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4291 | pr_debug("SE_LUN[%d] - Detected FE stop for" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4292 | " struct se_cmd: %p ITT: 0x%08x\n", |
| 4293 | lun->unpacked_lun, |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4294 | cmd, cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4295 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4296 | spin_unlock_irqrestore(&cmd->t_state_lock, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4297 | cmd_flags); |
| 4298 | transport_cmd_check_stop(cmd, 1, 0); |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4299 | complete(&cmd->transport_lun_fe_stop_comp); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4300 | spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags); |
| 4301 | continue; |
| 4302 | } |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4303 | pr_debug("SE_LUN[%d] - ITT: 0x%08x finished processing\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4304 | lun->unpacked_lun, cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4305 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4306 | spin_unlock_irqrestore(&cmd->t_state_lock, cmd_flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4307 | spin_lock_irqsave(&lun->lun_cmd_lock, lun_flags); |
| 4308 | } |
| 4309 | spin_unlock_irqrestore(&lun->lun_cmd_lock, lun_flags); |
| 4310 | } |
| 4311 | |
| 4312 | static int transport_clear_lun_thread(void *p) |
| 4313 | { |
| 4314 | struct se_lun *lun = (struct se_lun *)p; |
| 4315 | |
| 4316 | __transport_clear_lun_from_sessions(lun); |
| 4317 | complete(&lun->lun_shutdown_comp); |
| 4318 | |
| 4319 | return 0; |
| 4320 | } |
| 4321 | |
| 4322 | int transport_clear_lun_from_sessions(struct se_lun *lun) |
| 4323 | { |
| 4324 | struct task_struct *kt; |
| 4325 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4326 | kt = kthread_run(transport_clear_lun_thread, lun, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4327 | "tcm_cl_%u", lun->unpacked_lun); |
| 4328 | if (IS_ERR(kt)) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4329 | pr_err("Unable to start clear_lun thread\n"); |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4330 | return PTR_ERR(kt); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4331 | } |
| 4332 | wait_for_completion(&lun->lun_shutdown_comp); |
| 4333 | |
| 4334 | return 0; |
| 4335 | } |
| 4336 | |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4337 | /** |
| 4338 | * transport_wait_for_tasks - wait for completion to occur |
| 4339 | * @cmd: command to wait |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4340 | * |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4341 | * Called from frontend fabric context to wait for storage engine |
| 4342 | * to pause and/or release frontend generated struct se_cmd. |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4343 | */ |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4344 | void transport_wait_for_tasks(struct se_cmd *cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4345 | { |
| 4346 | unsigned long flags; |
| 4347 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4348 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4349 | if (!(cmd->se_cmd_flags & SCF_SE_LUN_CMD) && !(cmd->se_tmr_req)) { |
| 4350 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4351 | return; |
| 4352 | } |
| 4353 | /* |
| 4354 | * Only perform a possible wait_for_tasks if SCF_SUPPORTED_SAM_OPCODE |
| 4355 | * has been set in transport_set_supported_SAM_opcode(). |
| 4356 | */ |
| 4357 | if (!(cmd->se_cmd_flags & SCF_SUPPORTED_SAM_OPCODE) && !cmd->se_tmr_req) { |
| 4358 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4359 | return; |
| 4360 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4361 | /* |
| 4362 | * If we are already stopped due to an external event (ie: LUN shutdown) |
| 4363 | * sleep until the connection can have the passed struct se_cmd back. |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4364 | * The cmd->transport_lun_stopped_sem will be upped by |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4365 | * transport_clear_lun_from_sessions() once the ConfigFS context caller |
| 4366 | * has completed its operation on the struct se_cmd. |
| 4367 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4368 | if (atomic_read(&cmd->transport_lun_stop)) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4369 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4370 | pr_debug("wait_for_tasks: Stopping" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4371 | " wait_for_completion(&cmd->t_tasktransport_lun_fe" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4372 | "_stop_comp); for ITT: 0x%08x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4373 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4374 | /* |
| 4375 | * There is a special case for WRITES where a FE exception + |
| 4376 | * LUN shutdown means ConfigFS context is still sleeping on |
| 4377 | * transport_lun_stop_comp in transport_lun_wait_for_tasks(). |
| 4378 | * We go ahead and up transport_lun_stop_comp just to be sure |
| 4379 | * here. |
| 4380 | */ |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4381 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4382 | complete(&cmd->transport_lun_stop_comp); |
| 4383 | wait_for_completion(&cmd->transport_lun_fe_stop_comp); |
| 4384 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4385 | |
| 4386 | transport_all_task_dev_remove_state(cmd); |
| 4387 | /* |
| 4388 | * At this point, the frontend who was the originator of this |
| 4389 | * struct se_cmd, now owns the structure and can be released through |
| 4390 | * normal means below. |
| 4391 | */ |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4392 | pr_debug("wait_for_tasks: Stopped" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4393 | " wait_for_completion(&cmd->t_tasktransport_lun_fe_" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4394 | "stop_comp); for ITT: 0x%08x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4395 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4396 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4397 | atomic_set(&cmd->transport_lun_stop, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4398 | } |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4399 | if (!atomic_read(&cmd->t_transport_active) || |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4400 | atomic_read(&cmd->t_transport_aborted)) { |
| 4401 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4402 | return; |
| 4403 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4404 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4405 | atomic_set(&cmd->t_transport_stop, 1); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4406 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4407 | pr_debug("wait_for_tasks: Stopping %p ITT: 0x%08x" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4408 | " i_state: %d, t_state/def_t_state: %d/%d, t_transport_stop" |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4409 | " = TRUE\n", cmd, cmd->se_tfo->get_task_tag(cmd), |
| 4410 | cmd->se_tfo->get_cmd_state(cmd), cmd->t_state, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4411 | cmd->deferred_t_state); |
| 4412 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4413 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4414 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4415 | wake_up_interruptible(&cmd->se_dev->dev_queue_obj.thread_wq); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4416 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4417 | wait_for_completion(&cmd->t_transport_stop_comp); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4418 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4419 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 4420 | atomic_set(&cmd->t_transport_active, 0); |
| 4421 | atomic_set(&cmd->t_transport_stop, 0); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4422 | |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4423 | pr_debug("wait_for_tasks: Stopped wait_for_compltion(" |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4424 | "&cmd->t_transport_stop_comp) for ITT: 0x%08x\n", |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4425 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4426 | |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4427 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4428 | } |
Nicholas Bellinger | d14921d | 2011-10-09 01:00:58 -0700 | [diff] [blame] | 4429 | EXPORT_SYMBOL(transport_wait_for_tasks); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4430 | |
| 4431 | static int transport_get_sense_codes( |
| 4432 | struct se_cmd *cmd, |
| 4433 | u8 *asc, |
| 4434 | u8 *ascq) |
| 4435 | { |
| 4436 | *asc = cmd->scsi_asc; |
| 4437 | *ascq = cmd->scsi_ascq; |
| 4438 | |
| 4439 | return 0; |
| 4440 | } |
| 4441 | |
| 4442 | static int transport_set_sense_codes( |
| 4443 | struct se_cmd *cmd, |
| 4444 | u8 asc, |
| 4445 | u8 ascq) |
| 4446 | { |
| 4447 | cmd->scsi_asc = asc; |
| 4448 | cmd->scsi_ascq = ascq; |
| 4449 | |
| 4450 | return 0; |
| 4451 | } |
| 4452 | |
| 4453 | int transport_send_check_condition_and_sense( |
| 4454 | struct se_cmd *cmd, |
| 4455 | u8 reason, |
| 4456 | int from_transport) |
| 4457 | { |
| 4458 | unsigned char *buffer = cmd->sense_buffer; |
| 4459 | unsigned long flags; |
| 4460 | int offset; |
| 4461 | u8 asc = 0, ascq = 0; |
| 4462 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4463 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4464 | if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4465 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4466 | return 0; |
| 4467 | } |
| 4468 | cmd->se_cmd_flags |= SCF_SENT_CHECK_CONDITION; |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4469 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4470 | |
| 4471 | if (!reason && from_transport) |
| 4472 | goto after_reason; |
| 4473 | |
| 4474 | if (!from_transport) |
| 4475 | cmd->se_cmd_flags |= SCF_EMULATED_TASK_SENSE; |
| 4476 | /* |
| 4477 | * Data Segment and SenseLength of the fabric response PDU. |
| 4478 | * |
| 4479 | * TRANSPORT_SENSE_BUFFER is now set to SCSI_SENSE_BUFFERSIZE |
| 4480 | * from include/scsi/scsi_cmnd.h |
| 4481 | */ |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4482 | offset = cmd->se_tfo->set_fabric_sense_len(cmd, |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4483 | TRANSPORT_SENSE_BUFFER); |
| 4484 | /* |
| 4485 | * Actual SENSE DATA, see SPC-3 7.23.2 SPC_SENSE_KEY_OFFSET uses |
| 4486 | * SENSE KEY values from include/scsi/scsi.h |
| 4487 | */ |
| 4488 | switch (reason) { |
| 4489 | case TCM_NON_EXISTENT_LUN: |
Nicholas Bellinger | eb39d34 | 2011-07-26 16:59:00 -0700 | [diff] [blame] | 4490 | /* CURRENT ERROR */ |
| 4491 | buffer[offset] = 0x70; |
| 4492 | /* ILLEGAL REQUEST */ |
| 4493 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; |
| 4494 | /* LOGICAL UNIT NOT SUPPORTED */ |
| 4495 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x25; |
| 4496 | break; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4497 | case TCM_UNSUPPORTED_SCSI_OPCODE: |
| 4498 | case TCM_SECTOR_COUNT_TOO_MANY: |
| 4499 | /* CURRENT ERROR */ |
| 4500 | buffer[offset] = 0x70; |
| 4501 | /* ILLEGAL REQUEST */ |
| 4502 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; |
| 4503 | /* INVALID COMMAND OPERATION CODE */ |
| 4504 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x20; |
| 4505 | break; |
| 4506 | case TCM_UNKNOWN_MODE_PAGE: |
| 4507 | /* CURRENT ERROR */ |
| 4508 | buffer[offset] = 0x70; |
| 4509 | /* ILLEGAL REQUEST */ |
| 4510 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; |
| 4511 | /* INVALID FIELD IN CDB */ |
| 4512 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24; |
| 4513 | break; |
| 4514 | case TCM_CHECK_CONDITION_ABORT_CMD: |
| 4515 | /* CURRENT ERROR */ |
| 4516 | buffer[offset] = 0x70; |
| 4517 | /* ABORTED COMMAND */ |
| 4518 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4519 | /* BUS DEVICE RESET FUNCTION OCCURRED */ |
| 4520 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x29; |
| 4521 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x03; |
| 4522 | break; |
| 4523 | case TCM_INCORRECT_AMOUNT_OF_DATA: |
| 4524 | /* CURRENT ERROR */ |
| 4525 | buffer[offset] = 0x70; |
| 4526 | /* ABORTED COMMAND */ |
| 4527 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4528 | /* WRITE ERROR */ |
| 4529 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c; |
| 4530 | /* NOT ENOUGH UNSOLICITED DATA */ |
| 4531 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0d; |
| 4532 | break; |
| 4533 | case TCM_INVALID_CDB_FIELD: |
| 4534 | /* CURRENT ERROR */ |
| 4535 | buffer[offset] = 0x70; |
| 4536 | /* ABORTED COMMAND */ |
| 4537 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4538 | /* INVALID FIELD IN CDB */ |
| 4539 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x24; |
| 4540 | break; |
| 4541 | case TCM_INVALID_PARAMETER_LIST: |
| 4542 | /* CURRENT ERROR */ |
| 4543 | buffer[offset] = 0x70; |
| 4544 | /* ABORTED COMMAND */ |
| 4545 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4546 | /* INVALID FIELD IN PARAMETER LIST */ |
| 4547 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x26; |
| 4548 | break; |
| 4549 | case TCM_UNEXPECTED_UNSOLICITED_DATA: |
| 4550 | /* CURRENT ERROR */ |
| 4551 | buffer[offset] = 0x70; |
| 4552 | /* ABORTED COMMAND */ |
| 4553 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4554 | /* WRITE ERROR */ |
| 4555 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x0c; |
| 4556 | /* UNEXPECTED_UNSOLICITED_DATA */ |
| 4557 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x0c; |
| 4558 | break; |
| 4559 | case TCM_SERVICE_CRC_ERROR: |
| 4560 | /* CURRENT ERROR */ |
| 4561 | buffer[offset] = 0x70; |
| 4562 | /* ABORTED COMMAND */ |
| 4563 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4564 | /* PROTOCOL SERVICE CRC ERROR */ |
| 4565 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x47; |
| 4566 | /* N/A */ |
| 4567 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x05; |
| 4568 | break; |
| 4569 | case TCM_SNACK_REJECTED: |
| 4570 | /* CURRENT ERROR */ |
| 4571 | buffer[offset] = 0x70; |
| 4572 | /* ABORTED COMMAND */ |
| 4573 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ABORTED_COMMAND; |
| 4574 | /* READ ERROR */ |
| 4575 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x11; |
| 4576 | /* FAILED RETRANSMISSION REQUEST */ |
| 4577 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = 0x13; |
| 4578 | break; |
| 4579 | case TCM_WRITE_PROTECTED: |
| 4580 | /* CURRENT ERROR */ |
| 4581 | buffer[offset] = 0x70; |
| 4582 | /* DATA PROTECT */ |
| 4583 | buffer[offset+SPC_SENSE_KEY_OFFSET] = DATA_PROTECT; |
| 4584 | /* WRITE PROTECTED */ |
| 4585 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x27; |
| 4586 | break; |
| 4587 | case TCM_CHECK_CONDITION_UNIT_ATTENTION: |
| 4588 | /* CURRENT ERROR */ |
| 4589 | buffer[offset] = 0x70; |
| 4590 | /* UNIT ATTENTION */ |
| 4591 | buffer[offset+SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION; |
| 4592 | core_scsi3_ua_for_check_condition(cmd, &asc, &ascq); |
| 4593 | buffer[offset+SPC_ASC_KEY_OFFSET] = asc; |
| 4594 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq; |
| 4595 | break; |
| 4596 | case TCM_CHECK_CONDITION_NOT_READY: |
| 4597 | /* CURRENT ERROR */ |
| 4598 | buffer[offset] = 0x70; |
| 4599 | /* Not Ready */ |
| 4600 | buffer[offset+SPC_SENSE_KEY_OFFSET] = NOT_READY; |
| 4601 | transport_get_sense_codes(cmd, &asc, &ascq); |
| 4602 | buffer[offset+SPC_ASC_KEY_OFFSET] = asc; |
| 4603 | buffer[offset+SPC_ASCQ_KEY_OFFSET] = ascq; |
| 4604 | break; |
| 4605 | case TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE: |
| 4606 | default: |
| 4607 | /* CURRENT ERROR */ |
| 4608 | buffer[offset] = 0x70; |
| 4609 | /* ILLEGAL REQUEST */ |
| 4610 | buffer[offset+SPC_SENSE_KEY_OFFSET] = ILLEGAL_REQUEST; |
| 4611 | /* LOGICAL UNIT COMMUNICATION FAILURE */ |
| 4612 | buffer[offset+SPC_ASC_KEY_OFFSET] = 0x80; |
| 4613 | break; |
| 4614 | } |
| 4615 | /* |
| 4616 | * This code uses linux/include/scsi/scsi.h SAM status codes! |
| 4617 | */ |
| 4618 | cmd->scsi_status = SAM_STAT_CHECK_CONDITION; |
| 4619 | /* |
| 4620 | * Automatically padded, this value is encoded in the fabric's |
| 4621 | * data_length response PDU containing the SCSI defined sense data. |
| 4622 | */ |
| 4623 | cmd->scsi_sense_length = TRANSPORT_SENSE_BUFFER + offset; |
| 4624 | |
| 4625 | after_reason: |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4626 | return cmd->se_tfo->queue_status(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4627 | } |
| 4628 | EXPORT_SYMBOL(transport_send_check_condition_and_sense); |
| 4629 | |
| 4630 | int transport_check_aborted_status(struct se_cmd *cmd, int send_status) |
| 4631 | { |
| 4632 | int ret = 0; |
| 4633 | |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4634 | if (atomic_read(&cmd->t_transport_aborted) != 0) { |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4635 | if (!send_status || |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4636 | (cmd->se_cmd_flags & SCF_SENT_DELAYED_TAS)) |
| 4637 | return 1; |
| 4638 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4639 | pr_debug("Sending delayed SAM_STAT_TASK_ABORTED" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4640 | " status for CDB: 0x%02x ITT: 0x%08x\n", |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4641 | cmd->t_task_cdb[0], |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4642 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4643 | #endif |
| 4644 | cmd->se_cmd_flags |= SCF_SENT_DELAYED_TAS; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4645 | cmd->se_tfo->queue_status(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4646 | ret = 1; |
| 4647 | } |
| 4648 | return ret; |
| 4649 | } |
| 4650 | EXPORT_SYMBOL(transport_check_aborted_status); |
| 4651 | |
| 4652 | void transport_send_task_abort(struct se_cmd *cmd) |
| 4653 | { |
Nicholas Bellinger | c252f00 | 2011-09-29 14:22:13 -0700 | [diff] [blame] | 4654 | unsigned long flags; |
| 4655 | |
| 4656 | spin_lock_irqsave(&cmd->t_state_lock, flags); |
| 4657 | if (cmd->se_cmd_flags & SCF_SENT_CHECK_CONDITION) { |
| 4658 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4659 | return; |
| 4660 | } |
| 4661 | spin_unlock_irqrestore(&cmd->t_state_lock, flags); |
| 4662 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4663 | /* |
| 4664 | * If there are still expected incoming fabric WRITEs, we wait |
| 4665 | * until until they have completed before sending a TASK_ABORTED |
| 4666 | * response. This response with TASK_ABORTED status will be |
| 4667 | * queued back to fabric module by transport_check_aborted_status(). |
| 4668 | */ |
| 4669 | if (cmd->data_direction == DMA_TO_DEVICE) { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4670 | if (cmd->se_tfo->write_pending_status(cmd) != 0) { |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4671 | atomic_inc(&cmd->t_transport_aborted); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4672 | smp_mb__after_atomic_inc(); |
| 4673 | cmd->scsi_status = SAM_STAT_TASK_ABORTED; |
| 4674 | transport_new_cmd_failure(cmd); |
| 4675 | return; |
| 4676 | } |
| 4677 | } |
| 4678 | cmd->scsi_status = SAM_STAT_TASK_ABORTED; |
| 4679 | #if 0 |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4680 | pr_debug("Setting SAM_STAT_TASK_ABORTED status for CDB: 0x%02x," |
Andy Grover | a1d8b49 | 2011-05-02 17:12:10 -0700 | [diff] [blame] | 4681 | " ITT: 0x%08x\n", cmd->t_task_cdb[0], |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4682 | cmd->se_tfo->get_task_tag(cmd)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4683 | #endif |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4684 | cmd->se_tfo->queue_status(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4685 | } |
| 4686 | |
| 4687 | /* transport_generic_do_tmr(): |
| 4688 | * |
| 4689 | * |
| 4690 | */ |
| 4691 | int transport_generic_do_tmr(struct se_cmd *cmd) |
| 4692 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4693 | struct se_device *dev = cmd->se_dev; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4694 | struct se_tmr_req *tmr = cmd->se_tmr_req; |
| 4695 | int ret; |
| 4696 | |
| 4697 | switch (tmr->function) { |
Nicholas Bellinger | 5c6cd61 | 2011-03-14 04:06:04 -0700 | [diff] [blame] | 4698 | case TMR_ABORT_TASK: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4699 | tmr->response = TMR_FUNCTION_REJECTED; |
| 4700 | break; |
Nicholas Bellinger | 5c6cd61 | 2011-03-14 04:06:04 -0700 | [diff] [blame] | 4701 | case TMR_ABORT_TASK_SET: |
| 4702 | case TMR_CLEAR_ACA: |
| 4703 | case TMR_CLEAR_TASK_SET: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4704 | tmr->response = TMR_TASK_MGMT_FUNCTION_NOT_SUPPORTED; |
| 4705 | break; |
Nicholas Bellinger | 5c6cd61 | 2011-03-14 04:06:04 -0700 | [diff] [blame] | 4706 | case TMR_LUN_RESET: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4707 | ret = core_tmr_lun_reset(dev, tmr, NULL, NULL); |
| 4708 | tmr->response = (!ret) ? TMR_FUNCTION_COMPLETE : |
| 4709 | TMR_FUNCTION_REJECTED; |
| 4710 | break; |
Nicholas Bellinger | 5c6cd61 | 2011-03-14 04:06:04 -0700 | [diff] [blame] | 4711 | case TMR_TARGET_WARM_RESET: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4712 | tmr->response = TMR_FUNCTION_REJECTED; |
| 4713 | break; |
Nicholas Bellinger | 5c6cd61 | 2011-03-14 04:06:04 -0700 | [diff] [blame] | 4714 | case TMR_TARGET_COLD_RESET: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4715 | tmr->response = TMR_FUNCTION_REJECTED; |
| 4716 | break; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4717 | default: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4718 | pr_err("Uknown TMR function: 0x%02x.\n", |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4719 | tmr->function); |
| 4720 | tmr->response = TMR_FUNCTION_REJECTED; |
| 4721 | break; |
| 4722 | } |
| 4723 | |
| 4724 | cmd->t_state = TRANSPORT_ISTATE_PROCESSING; |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4725 | cmd->se_tfo->queue_tm_rsp(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4726 | |
Christoph Hellwig | b7b8bef | 2011-10-17 13:56:44 -0400 | [diff] [blame] | 4727 | transport_cmd_check_stop_to_fabric(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4728 | return 0; |
| 4729 | } |
| 4730 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4731 | /* transport_processing_thread(): |
| 4732 | * |
| 4733 | * |
| 4734 | */ |
| 4735 | static int transport_processing_thread(void *param) |
| 4736 | { |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4737 | int ret; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4738 | struct se_cmd *cmd; |
| 4739 | struct se_device *dev = (struct se_device *) param; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4740 | |
| 4741 | set_user_nice(current, -20); |
| 4742 | |
| 4743 | while (!kthread_should_stop()) { |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4744 | ret = wait_event_interruptible(dev->dev_queue_obj.thread_wq, |
| 4745 | atomic_read(&dev->dev_queue_obj.queue_cnt) || |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4746 | kthread_should_stop()); |
| 4747 | if (ret < 0) |
| 4748 | goto out; |
| 4749 | |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4750 | get_cmd: |
| 4751 | __transport_execute_tasks(dev); |
| 4752 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4753 | cmd = transport_get_cmd_from_queue(&dev->dev_queue_obj); |
| 4754 | if (!cmd) |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4755 | continue; |
| 4756 | |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4757 | switch (cmd->t_state) { |
Christoph Hellwig | 680b73c | 2011-09-12 21:51:14 +0200 | [diff] [blame] | 4758 | case TRANSPORT_NEW_CMD: |
| 4759 | BUG(); |
| 4760 | break; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4761 | case TRANSPORT_NEW_CMD_MAP: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4762 | if (!cmd->se_tfo->new_cmd_map) { |
| 4763 | pr_err("cmd->se_tfo->new_cmd_map is" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4764 | " NULL for TRANSPORT_NEW_CMD_MAP\n"); |
| 4765 | BUG(); |
| 4766 | } |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4767 | ret = cmd->se_tfo->new_cmd_map(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4768 | if (ret < 0) { |
| 4769 | cmd->transport_error_status = ret; |
| 4770 | transport_generic_request_failure(cmd, NULL, |
| 4771 | 0, (cmd->data_direction != |
| 4772 | DMA_TO_DEVICE)); |
| 4773 | break; |
| 4774 | } |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4775 | ret = transport_generic_new_cmd(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4776 | if (ret == -EAGAIN) |
| 4777 | break; |
| 4778 | else if (ret < 0) { |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4779 | cmd->transport_error_status = ret; |
| 4780 | transport_generic_request_failure(cmd, NULL, |
| 4781 | 0, (cmd->data_direction != |
| 4782 | DMA_TO_DEVICE)); |
| 4783 | } |
| 4784 | break; |
| 4785 | case TRANSPORT_PROCESS_WRITE: |
| 4786 | transport_generic_process_write(cmd); |
| 4787 | break; |
| 4788 | case TRANSPORT_COMPLETE_OK: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4789 | transport_generic_complete_ok(cmd); |
| 4790 | break; |
| 4791 | case TRANSPORT_REMOVE: |
Christoph Hellwig | e6a2573 | 2011-09-13 23:08:50 +0200 | [diff] [blame] | 4792 | transport_put_cmd(cmd); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4793 | break; |
Nicholas Bellinger | f436677 | 2011-05-19 20:19:11 -0700 | [diff] [blame] | 4794 | case TRANSPORT_FREE_CMD_INTR: |
Christoph Hellwig | 82f1c8a | 2011-09-13 23:09:01 +0200 | [diff] [blame] | 4795 | transport_generic_free_cmd(cmd, 0); |
Nicholas Bellinger | f436677 | 2011-05-19 20:19:11 -0700 | [diff] [blame] | 4796 | break; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4797 | case TRANSPORT_PROCESS_TMR: |
| 4798 | transport_generic_do_tmr(cmd); |
| 4799 | break; |
| 4800 | case TRANSPORT_COMPLETE_FAILURE: |
| 4801 | transport_generic_request_failure(cmd, NULL, 1, 1); |
| 4802 | break; |
| 4803 | case TRANSPORT_COMPLETE_TIMEOUT: |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4804 | transport_generic_request_timeout(cmd); |
| 4805 | break; |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4806 | case TRANSPORT_COMPLETE_QF_WP: |
Christoph Hellwig | e057f53 | 2011-10-17 13:56:41 -0400 | [diff] [blame] | 4807 | transport_write_pending_qf(cmd); |
| 4808 | break; |
| 4809 | case TRANSPORT_COMPLETE_QF_OK: |
| 4810 | transport_complete_qf(cmd); |
Nicholas Bellinger | 07bde79 | 2011-06-13 14:46:09 -0700 | [diff] [blame] | 4811 | break; |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4812 | default: |
Andy Grover | 6708bb2 | 2011-06-08 10:36:43 -0700 | [diff] [blame] | 4813 | pr_err("Unknown t_state: %d deferred_t_state:" |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4814 | " %d for ITT: 0x%08x i_state: %d on SE LUN:" |
Andy Grover | 5951146d | 2011-07-19 10:26:37 +0000 | [diff] [blame] | 4815 | " %u\n", cmd->t_state, cmd->deferred_t_state, |
Andy Grover | e3d6f90 | 2011-07-19 08:55:10 +0000 | [diff] [blame] | 4816 | cmd->se_tfo->get_task_tag(cmd), |
| 4817 | cmd->se_tfo->get_cmd_state(cmd), |
| 4818 | cmd->se_lun->unpacked_lun); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4819 | BUG(); |
| 4820 | } |
| 4821 | |
| 4822 | goto get_cmd; |
| 4823 | } |
| 4824 | |
| 4825 | out: |
Nicholas Bellinger | ce8762f | 2011-10-09 02:19:01 -0700 | [diff] [blame] | 4826 | WARN_ON(!list_empty(&dev->state_task_list)); |
| 4827 | WARN_ON(!list_empty(&dev->dev_queue_obj.qobj_list)); |
Nicholas Bellinger | c66ac9d | 2010-12-17 11:11:26 -0800 | [diff] [blame] | 4828 | dev->process_thread = NULL; |
| 4829 | return 0; |
| 4830 | } |