Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1 | /******************************************************************************* |
| 2 | * This file contains the iSCSI Target specific utility functions. |
| 3 | * |
Nicholas Bellinger | 4c76251 | 2013-09-05 15:29:12 -0700 | [diff] [blame] | 4 | * (c) Copyright 2007-2013 Datera, Inc. |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 5 | * |
| 6 | * Author: Nicholas A. Bellinger <nab@linux-iscsi.org> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | ******************************************************************************/ |
| 18 | |
| 19 | #include <linux/list.h> |
Nicholas Bellinger | 988e3a8 | 2013-08-17 15:49:08 -0700 | [diff] [blame] | 20 | #include <linux/percpu_ida.h> |
Bart Van Assche | 8dcf07b | 2016-11-14 15:47:14 -0800 | [diff] [blame] | 21 | #include <net/ipv6.h> /* ipv6_addr_equal() */ |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 22 | #include <scsi/scsi_tcq.h> |
| 23 | #include <scsi/iscsi_proto.h> |
| 24 | #include <target/target_core_base.h> |
Christoph Hellwig | c4795fb | 2011-11-16 09:46:48 -0500 | [diff] [blame] | 25 | #include <target/target_core_fabric.h> |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 26 | #include <target/iscsi/iscsi_transport.h> |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 27 | |
Sagi Grimberg | 67f091f | 2015-01-07 14:57:31 +0200 | [diff] [blame] | 28 | #include <target/iscsi/iscsi_target_core.h> |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 29 | #include "iscsi_target_parameters.h" |
| 30 | #include "iscsi_target_seq_pdu_list.h" |
| 31 | #include "iscsi_target_datain_values.h" |
| 32 | #include "iscsi_target_erl0.h" |
| 33 | #include "iscsi_target_erl1.h" |
| 34 | #include "iscsi_target_erl2.h" |
| 35 | #include "iscsi_target_tpg.h" |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 36 | #include "iscsi_target_util.h" |
| 37 | #include "iscsi_target.h" |
| 38 | |
| 39 | #define PRINT_BUFF(buff, len) \ |
| 40 | { \ |
| 41 | int zzz; \ |
| 42 | \ |
| 43 | pr_debug("%d:\n", __LINE__); \ |
| 44 | for (zzz = 0; zzz < len; zzz++) { \ |
| 45 | if (zzz % 16 == 0) { \ |
| 46 | if (zzz) \ |
| 47 | pr_debug("\n"); \ |
| 48 | pr_debug("%4i: ", zzz); \ |
| 49 | } \ |
| 50 | pr_debug("%02x ", (unsigned char) (buff)[zzz]); \ |
| 51 | } \ |
| 52 | if ((len + 1) % 16) \ |
| 53 | pr_debug("\n"); \ |
| 54 | } |
| 55 | |
| 56 | extern struct list_head g_tiqn_list; |
| 57 | extern spinlock_t tiqn_lock; |
| 58 | |
| 59 | /* |
| 60 | * Called with cmd->r2t_lock held. |
| 61 | */ |
| 62 | int iscsit_add_r2t_to_list( |
| 63 | struct iscsi_cmd *cmd, |
| 64 | u32 offset, |
| 65 | u32 xfer_len, |
| 66 | int recovery, |
| 67 | u32 r2t_sn) |
| 68 | { |
| 69 | struct iscsi_r2t *r2t; |
| 70 | |
| 71 | r2t = kmem_cache_zalloc(lio_r2t_cache, GFP_ATOMIC); |
| 72 | if (!r2t) { |
| 73 | pr_err("Unable to allocate memory for struct iscsi_r2t.\n"); |
| 74 | return -1; |
| 75 | } |
| 76 | INIT_LIST_HEAD(&r2t->r2t_list); |
| 77 | |
| 78 | r2t->recovery_r2t = recovery; |
| 79 | r2t->r2t_sn = (!r2t_sn) ? cmd->r2t_sn++ : r2t_sn; |
| 80 | r2t->offset = offset; |
| 81 | r2t->xfer_len = xfer_len; |
| 82 | list_add_tail(&r2t->r2t_list, &cmd->cmd_r2t_list); |
| 83 | spin_unlock_bh(&cmd->r2t_lock); |
| 84 | |
| 85 | iscsit_add_cmd_to_immediate_queue(cmd, cmd->conn, ISTATE_SEND_R2T); |
| 86 | |
| 87 | spin_lock_bh(&cmd->r2t_lock); |
| 88 | return 0; |
| 89 | } |
| 90 | |
| 91 | struct iscsi_r2t *iscsit_get_r2t_for_eos( |
| 92 | struct iscsi_cmd *cmd, |
| 93 | u32 offset, |
| 94 | u32 length) |
| 95 | { |
| 96 | struct iscsi_r2t *r2t; |
| 97 | |
| 98 | spin_lock_bh(&cmd->r2t_lock); |
| 99 | list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) { |
| 100 | if ((r2t->offset <= offset) && |
| 101 | (r2t->offset + r2t->xfer_len) >= (offset + length)) { |
| 102 | spin_unlock_bh(&cmd->r2t_lock); |
| 103 | return r2t; |
| 104 | } |
| 105 | } |
| 106 | spin_unlock_bh(&cmd->r2t_lock); |
| 107 | |
| 108 | pr_err("Unable to locate R2T for Offset: %u, Length:" |
| 109 | " %u\n", offset, length); |
| 110 | return NULL; |
| 111 | } |
| 112 | |
| 113 | struct iscsi_r2t *iscsit_get_r2t_from_list(struct iscsi_cmd *cmd) |
| 114 | { |
| 115 | struct iscsi_r2t *r2t; |
| 116 | |
| 117 | spin_lock_bh(&cmd->r2t_lock); |
| 118 | list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) { |
| 119 | if (!r2t->sent_r2t) { |
| 120 | spin_unlock_bh(&cmd->r2t_lock); |
| 121 | return r2t; |
| 122 | } |
| 123 | } |
| 124 | spin_unlock_bh(&cmd->r2t_lock); |
| 125 | |
| 126 | pr_err("Unable to locate next R2T to send for ITT:" |
| 127 | " 0x%08x.\n", cmd->init_task_tag); |
| 128 | return NULL; |
| 129 | } |
| 130 | |
| 131 | /* |
| 132 | * Called with cmd->r2t_lock held. |
| 133 | */ |
| 134 | void iscsit_free_r2t(struct iscsi_r2t *r2t, struct iscsi_cmd *cmd) |
| 135 | { |
| 136 | list_del(&r2t->r2t_list); |
| 137 | kmem_cache_free(lio_r2t_cache, r2t); |
| 138 | } |
| 139 | |
| 140 | void iscsit_free_r2ts_from_list(struct iscsi_cmd *cmd) |
| 141 | { |
| 142 | struct iscsi_r2t *r2t, *r2t_tmp; |
| 143 | |
| 144 | spin_lock_bh(&cmd->r2t_lock); |
| 145 | list_for_each_entry_safe(r2t, r2t_tmp, &cmd->cmd_r2t_list, r2t_list) |
| 146 | iscsit_free_r2t(r2t, cmd); |
| 147 | spin_unlock_bh(&cmd->r2t_lock); |
| 148 | } |
| 149 | |
| 150 | /* |
| 151 | * May be called from software interrupt (timer) context for allocating |
| 152 | * iSCSI NopINs. |
| 153 | */ |
Nicholas Bellinger | 676687c | 2014-01-20 03:36:44 +0000 | [diff] [blame] | 154 | struct iscsi_cmd *iscsit_allocate_cmd(struct iscsi_conn *conn, int state) |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 155 | { |
| 156 | struct iscsi_cmd *cmd; |
Nicholas Bellinger | 988e3a8 | 2013-08-17 15:49:08 -0700 | [diff] [blame] | 157 | struct se_session *se_sess = conn->sess->se_sess; |
Nicholas Bellinger | 676687c | 2014-01-20 03:36:44 +0000 | [diff] [blame] | 158 | int size, tag; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 159 | |
Kent Overstreet | 6f6b5d1e | 2014-01-19 08:26:37 +0000 | [diff] [blame] | 160 | tag = percpu_ida_alloc(&se_sess->sess_tag_pool, state); |
| 161 | if (tag < 0) |
| 162 | return NULL; |
| 163 | |
Nicholas Bellinger | 988e3a8 | 2013-08-17 15:49:08 -0700 | [diff] [blame] | 164 | size = sizeof(struct iscsi_cmd) + conn->conn_transport->priv_size; |
| 165 | cmd = (struct iscsi_cmd *)(se_sess->sess_cmd_map + (tag * size)); |
| 166 | memset(cmd, 0, size); |
| 167 | |
| 168 | cmd->se_cmd.map_tag = tag; |
Nicholas Bellinger | cdb7266 | 2013-03-06 22:09:17 -0800 | [diff] [blame] | 169 | cmd->conn = conn; |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 170 | INIT_LIST_HEAD(&cmd->i_conn_node); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 171 | INIT_LIST_HEAD(&cmd->datain_list); |
| 172 | INIT_LIST_HEAD(&cmd->cmd_r2t_list); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 173 | spin_lock_init(&cmd->datain_lock); |
| 174 | spin_lock_init(&cmd->dataout_timeout_lock); |
| 175 | spin_lock_init(&cmd->istate_lock); |
| 176 | spin_lock_init(&cmd->error_lock); |
| 177 | spin_lock_init(&cmd->r2t_lock); |
| 178 | |
| 179 | return cmd; |
| 180 | } |
Nicholas Bellinger | cdb7266 | 2013-03-06 22:09:17 -0800 | [diff] [blame] | 181 | EXPORT_SYMBOL(iscsit_allocate_cmd); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 182 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 183 | struct iscsi_seq *iscsit_get_seq_holder_for_datain( |
| 184 | struct iscsi_cmd *cmd, |
| 185 | u32 seq_send_order) |
| 186 | { |
| 187 | u32 i; |
| 188 | |
| 189 | for (i = 0; i < cmd->seq_count; i++) |
| 190 | if (cmd->seq_list[i].seq_send_order == seq_send_order) |
| 191 | return &cmd->seq_list[i]; |
| 192 | |
| 193 | return NULL; |
| 194 | } |
| 195 | |
| 196 | struct iscsi_seq *iscsit_get_seq_holder_for_r2t(struct iscsi_cmd *cmd) |
| 197 | { |
| 198 | u32 i; |
| 199 | |
| 200 | if (!cmd->seq_list) { |
| 201 | pr_err("struct iscsi_cmd->seq_list is NULL!\n"); |
| 202 | return NULL; |
| 203 | } |
| 204 | |
| 205 | for (i = 0; i < cmd->seq_count; i++) { |
| 206 | if (cmd->seq_list[i].type != SEQTYPE_NORMAL) |
| 207 | continue; |
| 208 | if (cmd->seq_list[i].seq_send_order == cmd->seq_send_order) { |
| 209 | cmd->seq_send_order++; |
| 210 | return &cmd->seq_list[i]; |
| 211 | } |
| 212 | } |
| 213 | |
| 214 | return NULL; |
| 215 | } |
| 216 | |
| 217 | struct iscsi_r2t *iscsit_get_holder_for_r2tsn( |
| 218 | struct iscsi_cmd *cmd, |
| 219 | u32 r2t_sn) |
| 220 | { |
| 221 | struct iscsi_r2t *r2t; |
| 222 | |
| 223 | spin_lock_bh(&cmd->r2t_lock); |
| 224 | list_for_each_entry(r2t, &cmd->cmd_r2t_list, r2t_list) { |
| 225 | if (r2t->r2t_sn == r2t_sn) { |
| 226 | spin_unlock_bh(&cmd->r2t_lock); |
| 227 | return r2t; |
| 228 | } |
| 229 | } |
| 230 | spin_unlock_bh(&cmd->r2t_lock); |
| 231 | |
| 232 | return NULL; |
| 233 | } |
| 234 | |
| 235 | static inline int iscsit_check_received_cmdsn(struct iscsi_session *sess, u32 cmdsn) |
| 236 | { |
Roland Dreier | 109e238 | 2015-07-23 14:53:32 -0700 | [diff] [blame] | 237 | u32 max_cmdsn; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 238 | int ret; |
| 239 | |
| 240 | /* |
| 241 | * This is the proper method of checking received CmdSN against |
| 242 | * ExpCmdSN and MaxCmdSN values, as well as accounting for out |
| 243 | * or order CmdSNs due to multiple connection sessions and/or |
| 244 | * CRC failures. |
| 245 | */ |
Roland Dreier | 109e238 | 2015-07-23 14:53:32 -0700 | [diff] [blame] | 246 | max_cmdsn = atomic_read(&sess->max_cmd_sn); |
| 247 | if (iscsi_sna_gt(cmdsn, max_cmdsn)) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 248 | pr_err("Received CmdSN: 0x%08x is greater than" |
Roland Dreier | 109e238 | 2015-07-23 14:53:32 -0700 | [diff] [blame] | 249 | " MaxCmdSN: 0x%08x, ignoring.\n", cmdsn, max_cmdsn); |
Nicholas Bellinger | ea7e32b | 2013-11-18 10:55:10 -0800 | [diff] [blame] | 250 | ret = CMDSN_MAXCMDSN_OVERRUN; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 251 | |
| 252 | } else if (cmdsn == sess->exp_cmd_sn) { |
| 253 | sess->exp_cmd_sn++; |
| 254 | pr_debug("Received CmdSN matches ExpCmdSN," |
| 255 | " incremented ExpCmdSN to: 0x%08x\n", |
| 256 | sess->exp_cmd_sn); |
| 257 | ret = CMDSN_NORMAL_OPERATION; |
| 258 | |
| 259 | } else if (iscsi_sna_gt(cmdsn, sess->exp_cmd_sn)) { |
| 260 | pr_debug("Received CmdSN: 0x%08x is greater" |
| 261 | " than ExpCmdSN: 0x%08x, not acknowledging.\n", |
| 262 | cmdsn, sess->exp_cmd_sn); |
| 263 | ret = CMDSN_HIGHER_THAN_EXP; |
| 264 | |
| 265 | } else { |
| 266 | pr_err("Received CmdSN: 0x%08x is less than" |
| 267 | " ExpCmdSN: 0x%08x, ignoring.\n", cmdsn, |
| 268 | sess->exp_cmd_sn); |
| 269 | ret = CMDSN_LOWER_THAN_EXP; |
| 270 | } |
| 271 | |
| 272 | return ret; |
| 273 | } |
| 274 | |
| 275 | /* |
| 276 | * Commands may be received out of order if MC/S is in use. |
| 277 | * Ensure they are executed in CmdSN order. |
| 278 | */ |
Nicholas Bellinger | 561bf15 | 2013-07-03 03:58:58 -0700 | [diff] [blame] | 279 | int iscsit_sequence_cmd(struct iscsi_conn *conn, struct iscsi_cmd *cmd, |
| 280 | unsigned char *buf, __be32 cmdsn) |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 281 | { |
Nicholas Bellinger | 561bf15 | 2013-07-03 03:58:58 -0700 | [diff] [blame] | 282 | int ret, cmdsn_ret; |
| 283 | bool reject = false; |
| 284 | u8 reason = ISCSI_REASON_BOOKMARK_NO_RESOURCES; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 285 | |
| 286 | mutex_lock(&conn->sess->cmdsn_mutex); |
| 287 | |
Christoph Hellwig | 50e5c87 | 2012-09-26 08:00:40 -0400 | [diff] [blame] | 288 | cmdsn_ret = iscsit_check_received_cmdsn(conn->sess, be32_to_cpu(cmdsn)); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 289 | switch (cmdsn_ret) { |
| 290 | case CMDSN_NORMAL_OPERATION: |
| 291 | ret = iscsit_execute_cmd(cmd, 0); |
| 292 | if ((ret >= 0) && !list_empty(&conn->sess->sess_ooo_cmdsn_list)) |
| 293 | iscsit_execute_ooo_cmdsns(conn->sess); |
Nicholas Bellinger | 561bf15 | 2013-07-03 03:58:58 -0700 | [diff] [blame] | 294 | else if (ret < 0) { |
| 295 | reject = true; |
| 296 | ret = CMDSN_ERROR_CANNOT_RECOVER; |
| 297 | } |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 298 | break; |
| 299 | case CMDSN_HIGHER_THAN_EXP: |
Christoph Hellwig | 50e5c87 | 2012-09-26 08:00:40 -0400 | [diff] [blame] | 300 | ret = iscsit_handle_ooo_cmdsn(conn->sess, cmd, be32_to_cpu(cmdsn)); |
Nicholas Bellinger | 561bf15 | 2013-07-03 03:58:58 -0700 | [diff] [blame] | 301 | if (ret < 0) { |
| 302 | reject = true; |
| 303 | ret = CMDSN_ERROR_CANNOT_RECOVER; |
| 304 | break; |
| 305 | } |
| 306 | ret = CMDSN_HIGHER_THAN_EXP; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 307 | break; |
| 308 | case CMDSN_LOWER_THAN_EXP: |
Nicholas Bellinger | ea7e32b | 2013-11-18 10:55:10 -0800 | [diff] [blame] | 309 | case CMDSN_MAXCMDSN_OVERRUN: |
| 310 | default: |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 311 | cmd->i_state = ISTATE_REMOVE; |
| 312 | iscsit_add_cmd_to_immediate_queue(cmd, conn, cmd->i_state); |
Nicholas Bellinger | ea7e32b | 2013-11-18 10:55:10 -0800 | [diff] [blame] | 313 | /* |
| 314 | * Existing callers for iscsit_sequence_cmd() will silently |
| 315 | * ignore commands with CMDSN_LOWER_THAN_EXP, so force this |
| 316 | * return for CMDSN_MAXCMDSN_OVERRUN as well.. |
| 317 | */ |
| 318 | ret = CMDSN_LOWER_THAN_EXP; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 319 | break; |
| 320 | } |
| 321 | mutex_unlock(&conn->sess->cmdsn_mutex); |
| 322 | |
Nicholas Bellinger | 561bf15 | 2013-07-03 03:58:58 -0700 | [diff] [blame] | 323 | if (reject) |
| 324 | iscsit_reject_cmd(cmd, reason, buf); |
| 325 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 326 | return ret; |
| 327 | } |
Nicholas Bellinger | 3e1c81a | 2013-03-06 22:18:24 -0800 | [diff] [blame] | 328 | EXPORT_SYMBOL(iscsit_sequence_cmd); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 329 | |
| 330 | int iscsit_check_unsolicited_dataout(struct iscsi_cmd *cmd, unsigned char *buf) |
| 331 | { |
| 332 | struct iscsi_conn *conn = cmd->conn; |
| 333 | struct se_cmd *se_cmd = &cmd->se_cmd; |
| 334 | struct iscsi_data *hdr = (struct iscsi_data *) buf; |
| 335 | u32 payload_length = ntoh24(hdr->dlength); |
| 336 | |
| 337 | if (conn->sess->sess_ops->InitialR2T) { |
| 338 | pr_err("Received unexpected unsolicited data" |
| 339 | " while InitialR2T=Yes, protocol error.\n"); |
| 340 | transport_send_check_condition_and_sense(se_cmd, |
| 341 | TCM_UNEXPECTED_UNSOLICITED_DATA, 0); |
| 342 | return -1; |
| 343 | } |
| 344 | |
| 345 | if ((cmd->first_burst_len + payload_length) > |
| 346 | conn->sess->sess_ops->FirstBurstLength) { |
| 347 | pr_err("Total %u bytes exceeds FirstBurstLength: %u" |
| 348 | " for this Unsolicited DataOut Burst.\n", |
| 349 | (cmd->first_burst_len + payload_length), |
| 350 | conn->sess->sess_ops->FirstBurstLength); |
| 351 | transport_send_check_condition_and_sense(se_cmd, |
| 352 | TCM_INCORRECT_AMOUNT_OF_DATA, 0); |
| 353 | return -1; |
| 354 | } |
| 355 | |
| 356 | if (!(hdr->flags & ISCSI_FLAG_CMD_FINAL)) |
| 357 | return 0; |
| 358 | |
Andy Grover | ebf1d95 | 2012-04-03 15:51:24 -0700 | [diff] [blame] | 359 | if (((cmd->first_burst_len + payload_length) != cmd->se_cmd.data_length) && |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 360 | ((cmd->first_burst_len + payload_length) != |
| 361 | conn->sess->sess_ops->FirstBurstLength)) { |
| 362 | pr_err("Unsolicited non-immediate data received %u" |
| 363 | " does not equal FirstBurstLength: %u, and does" |
| 364 | " not equal ExpXferLen %u.\n", |
| 365 | (cmd->first_burst_len + payload_length), |
Andy Grover | ebf1d95 | 2012-04-03 15:51:24 -0700 | [diff] [blame] | 366 | conn->sess->sess_ops->FirstBurstLength, cmd->se_cmd.data_length); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 367 | transport_send_check_condition_and_sense(se_cmd, |
| 368 | TCM_INCORRECT_AMOUNT_OF_DATA, 0); |
| 369 | return -1; |
| 370 | } |
| 371 | return 0; |
| 372 | } |
| 373 | |
| 374 | struct iscsi_cmd *iscsit_find_cmd_from_itt( |
| 375 | struct iscsi_conn *conn, |
Christoph Hellwig | 66c7db6 | 2012-09-26 08:00:39 -0400 | [diff] [blame] | 376 | itt_t init_task_tag) |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 377 | { |
| 378 | struct iscsi_cmd *cmd; |
| 379 | |
| 380 | spin_lock_bh(&conn->cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 381 | list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 382 | if (cmd->init_task_tag == init_task_tag) { |
| 383 | spin_unlock_bh(&conn->cmd_lock); |
| 384 | return cmd; |
| 385 | } |
| 386 | } |
| 387 | spin_unlock_bh(&conn->cmd_lock); |
| 388 | |
| 389 | pr_err("Unable to locate ITT: 0x%08x on CID: %hu", |
| 390 | init_task_tag, conn->cid); |
| 391 | return NULL; |
| 392 | } |
Sagi Grimberg | e4f4e80 | 2015-02-09 18:07:25 +0200 | [diff] [blame] | 393 | EXPORT_SYMBOL(iscsit_find_cmd_from_itt); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 394 | |
| 395 | struct iscsi_cmd *iscsit_find_cmd_from_itt_or_dump( |
| 396 | struct iscsi_conn *conn, |
Christoph Hellwig | 66c7db6 | 2012-09-26 08:00:39 -0400 | [diff] [blame] | 397 | itt_t init_task_tag, |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 398 | u32 length) |
| 399 | { |
| 400 | struct iscsi_cmd *cmd; |
| 401 | |
| 402 | spin_lock_bh(&conn->cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 403 | list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) { |
Nicholas Bellinger | 3687db8 | 2014-07-07 18:25:04 -0700 | [diff] [blame] | 404 | if (cmd->cmd_flags & ICF_GOT_LAST_DATAOUT) |
| 405 | continue; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 406 | if (cmd->init_task_tag == init_task_tag) { |
| 407 | spin_unlock_bh(&conn->cmd_lock); |
| 408 | return cmd; |
| 409 | } |
| 410 | } |
| 411 | spin_unlock_bh(&conn->cmd_lock); |
| 412 | |
| 413 | pr_err("Unable to locate ITT: 0x%08x on CID: %hu," |
| 414 | " dumping payload\n", init_task_tag, conn->cid); |
| 415 | if (length) |
| 416 | iscsit_dump_data_payload(conn, length, 1); |
| 417 | |
| 418 | return NULL; |
| 419 | } |
| 420 | |
| 421 | struct iscsi_cmd *iscsit_find_cmd_from_ttt( |
| 422 | struct iscsi_conn *conn, |
| 423 | u32 targ_xfer_tag) |
| 424 | { |
| 425 | struct iscsi_cmd *cmd = NULL; |
| 426 | |
| 427 | spin_lock_bh(&conn->cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 428 | list_for_each_entry(cmd, &conn->conn_cmd_list, i_conn_node) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 429 | if (cmd->targ_xfer_tag == targ_xfer_tag) { |
| 430 | spin_unlock_bh(&conn->cmd_lock); |
| 431 | return cmd; |
| 432 | } |
| 433 | } |
| 434 | spin_unlock_bh(&conn->cmd_lock); |
| 435 | |
| 436 | pr_err("Unable to locate TTT: 0x%08x on CID: %hu\n", |
| 437 | targ_xfer_tag, conn->cid); |
| 438 | return NULL; |
| 439 | } |
| 440 | |
| 441 | int iscsit_find_cmd_for_recovery( |
| 442 | struct iscsi_session *sess, |
| 443 | struct iscsi_cmd **cmd_ptr, |
| 444 | struct iscsi_conn_recovery **cr_ptr, |
Christoph Hellwig | 66c7db6 | 2012-09-26 08:00:39 -0400 | [diff] [blame] | 445 | itt_t init_task_tag) |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 446 | { |
| 447 | struct iscsi_cmd *cmd = NULL; |
| 448 | struct iscsi_conn_recovery *cr; |
| 449 | /* |
| 450 | * Scan through the inactive connection recovery list's command list. |
| 451 | * If init_task_tag matches the command is still alligent. |
| 452 | */ |
| 453 | spin_lock(&sess->cr_i_lock); |
| 454 | list_for_each_entry(cr, &sess->cr_inactive_list, cr_list) { |
| 455 | spin_lock(&cr->conn_recovery_cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 456 | list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 457 | if (cmd->init_task_tag == init_task_tag) { |
| 458 | spin_unlock(&cr->conn_recovery_cmd_lock); |
| 459 | spin_unlock(&sess->cr_i_lock); |
| 460 | |
| 461 | *cr_ptr = cr; |
| 462 | *cmd_ptr = cmd; |
| 463 | return -2; |
| 464 | } |
| 465 | } |
| 466 | spin_unlock(&cr->conn_recovery_cmd_lock); |
| 467 | } |
| 468 | spin_unlock(&sess->cr_i_lock); |
| 469 | /* |
| 470 | * Scan through the active connection recovery list's command list. |
| 471 | * If init_task_tag matches the command is ready to be reassigned. |
| 472 | */ |
| 473 | spin_lock(&sess->cr_a_lock); |
| 474 | list_for_each_entry(cr, &sess->cr_active_list, cr_list) { |
| 475 | spin_lock(&cr->conn_recovery_cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 476 | list_for_each_entry(cmd, &cr->conn_recovery_cmd_list, i_conn_node) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 477 | if (cmd->init_task_tag == init_task_tag) { |
| 478 | spin_unlock(&cr->conn_recovery_cmd_lock); |
| 479 | spin_unlock(&sess->cr_a_lock); |
| 480 | |
| 481 | *cr_ptr = cr; |
| 482 | *cmd_ptr = cmd; |
| 483 | return 0; |
| 484 | } |
| 485 | } |
| 486 | spin_unlock(&cr->conn_recovery_cmd_lock); |
| 487 | } |
| 488 | spin_unlock(&sess->cr_a_lock); |
| 489 | |
| 490 | return -1; |
| 491 | } |
| 492 | |
| 493 | void iscsit_add_cmd_to_immediate_queue( |
| 494 | struct iscsi_cmd *cmd, |
| 495 | struct iscsi_conn *conn, |
| 496 | u8 state) |
| 497 | { |
| 498 | struct iscsi_queue_req *qr; |
| 499 | |
| 500 | qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC); |
| 501 | if (!qr) { |
| 502 | pr_err("Unable to allocate memory for" |
| 503 | " struct iscsi_queue_req\n"); |
| 504 | return; |
| 505 | } |
| 506 | INIT_LIST_HEAD(&qr->qr_list); |
| 507 | qr->cmd = cmd; |
| 508 | qr->state = state; |
| 509 | |
| 510 | spin_lock_bh(&conn->immed_queue_lock); |
| 511 | list_add_tail(&qr->qr_list, &conn->immed_queue_list); |
| 512 | atomic_inc(&cmd->immed_queue_count); |
| 513 | atomic_set(&conn->check_immediate_queue, 1); |
| 514 | spin_unlock_bh(&conn->immed_queue_lock); |
| 515 | |
Roland Dreier | d5627ac | 2012-10-31 09:16:46 -0700 | [diff] [blame] | 516 | wake_up(&conn->queues_wq); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 517 | } |
Varun Prakash | d2faaef | 2016-04-20 00:00:19 +0530 | [diff] [blame] | 518 | EXPORT_SYMBOL(iscsit_add_cmd_to_immediate_queue); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 519 | |
| 520 | struct iscsi_queue_req *iscsit_get_cmd_from_immediate_queue(struct iscsi_conn *conn) |
| 521 | { |
| 522 | struct iscsi_queue_req *qr; |
| 523 | |
| 524 | spin_lock_bh(&conn->immed_queue_lock); |
| 525 | if (list_empty(&conn->immed_queue_list)) { |
| 526 | spin_unlock_bh(&conn->immed_queue_lock); |
| 527 | return NULL; |
| 528 | } |
Roland Dreier | 1f981de | 2012-10-31 09:16:47 -0700 | [diff] [blame] | 529 | qr = list_first_entry(&conn->immed_queue_list, |
| 530 | struct iscsi_queue_req, qr_list); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 531 | |
| 532 | list_del(&qr->qr_list); |
| 533 | if (qr->cmd) |
| 534 | atomic_dec(&qr->cmd->immed_queue_count); |
| 535 | spin_unlock_bh(&conn->immed_queue_lock); |
| 536 | |
| 537 | return qr; |
| 538 | } |
| 539 | |
| 540 | static void iscsit_remove_cmd_from_immediate_queue( |
| 541 | struct iscsi_cmd *cmd, |
| 542 | struct iscsi_conn *conn) |
| 543 | { |
| 544 | struct iscsi_queue_req *qr, *qr_tmp; |
| 545 | |
| 546 | spin_lock_bh(&conn->immed_queue_lock); |
| 547 | if (!atomic_read(&cmd->immed_queue_count)) { |
| 548 | spin_unlock_bh(&conn->immed_queue_lock); |
| 549 | return; |
| 550 | } |
| 551 | |
| 552 | list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) { |
| 553 | if (qr->cmd != cmd) |
| 554 | continue; |
| 555 | |
| 556 | atomic_dec(&qr->cmd->immed_queue_count); |
| 557 | list_del(&qr->qr_list); |
| 558 | kmem_cache_free(lio_qr_cache, qr); |
| 559 | } |
| 560 | spin_unlock_bh(&conn->immed_queue_lock); |
| 561 | |
| 562 | if (atomic_read(&cmd->immed_queue_count)) { |
| 563 | pr_err("ITT: 0x%08x immed_queue_count: %d\n", |
| 564 | cmd->init_task_tag, |
| 565 | atomic_read(&cmd->immed_queue_count)); |
| 566 | } |
| 567 | } |
| 568 | |
| 569 | void iscsit_add_cmd_to_response_queue( |
| 570 | struct iscsi_cmd *cmd, |
| 571 | struct iscsi_conn *conn, |
| 572 | u8 state) |
| 573 | { |
| 574 | struct iscsi_queue_req *qr; |
| 575 | |
| 576 | qr = kmem_cache_zalloc(lio_qr_cache, GFP_ATOMIC); |
| 577 | if (!qr) { |
| 578 | pr_err("Unable to allocate memory for" |
| 579 | " struct iscsi_queue_req\n"); |
| 580 | return; |
| 581 | } |
| 582 | INIT_LIST_HEAD(&qr->qr_list); |
| 583 | qr->cmd = cmd; |
| 584 | qr->state = state; |
| 585 | |
| 586 | spin_lock_bh(&conn->response_queue_lock); |
| 587 | list_add_tail(&qr->qr_list, &conn->response_queue_list); |
| 588 | atomic_inc(&cmd->response_queue_count); |
| 589 | spin_unlock_bh(&conn->response_queue_lock); |
| 590 | |
Roland Dreier | d5627ac | 2012-10-31 09:16:46 -0700 | [diff] [blame] | 591 | wake_up(&conn->queues_wq); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | struct iscsi_queue_req *iscsit_get_cmd_from_response_queue(struct iscsi_conn *conn) |
| 595 | { |
| 596 | struct iscsi_queue_req *qr; |
| 597 | |
| 598 | spin_lock_bh(&conn->response_queue_lock); |
| 599 | if (list_empty(&conn->response_queue_list)) { |
| 600 | spin_unlock_bh(&conn->response_queue_lock); |
| 601 | return NULL; |
| 602 | } |
| 603 | |
Roland Dreier | 1f981de | 2012-10-31 09:16:47 -0700 | [diff] [blame] | 604 | qr = list_first_entry(&conn->response_queue_list, |
| 605 | struct iscsi_queue_req, qr_list); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 606 | |
| 607 | list_del(&qr->qr_list); |
| 608 | if (qr->cmd) |
| 609 | atomic_dec(&qr->cmd->response_queue_count); |
| 610 | spin_unlock_bh(&conn->response_queue_lock); |
| 611 | |
| 612 | return qr; |
| 613 | } |
| 614 | |
| 615 | static void iscsit_remove_cmd_from_response_queue( |
| 616 | struct iscsi_cmd *cmd, |
| 617 | struct iscsi_conn *conn) |
| 618 | { |
| 619 | struct iscsi_queue_req *qr, *qr_tmp; |
| 620 | |
| 621 | spin_lock_bh(&conn->response_queue_lock); |
| 622 | if (!atomic_read(&cmd->response_queue_count)) { |
| 623 | spin_unlock_bh(&conn->response_queue_lock); |
| 624 | return; |
| 625 | } |
| 626 | |
| 627 | list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list, |
| 628 | qr_list) { |
| 629 | if (qr->cmd != cmd) |
| 630 | continue; |
| 631 | |
| 632 | atomic_dec(&qr->cmd->response_queue_count); |
| 633 | list_del(&qr->qr_list); |
| 634 | kmem_cache_free(lio_qr_cache, qr); |
| 635 | } |
| 636 | spin_unlock_bh(&conn->response_queue_lock); |
| 637 | |
| 638 | if (atomic_read(&cmd->response_queue_count)) { |
| 639 | pr_err("ITT: 0x%08x response_queue_count: %d\n", |
| 640 | cmd->init_task_tag, |
| 641 | atomic_read(&cmd->response_queue_count)); |
| 642 | } |
| 643 | } |
| 644 | |
Roland Dreier | d5627ac | 2012-10-31 09:16:46 -0700 | [diff] [blame] | 645 | bool iscsit_conn_all_queues_empty(struct iscsi_conn *conn) |
| 646 | { |
| 647 | bool empty; |
| 648 | |
| 649 | spin_lock_bh(&conn->immed_queue_lock); |
| 650 | empty = list_empty(&conn->immed_queue_list); |
| 651 | spin_unlock_bh(&conn->immed_queue_lock); |
| 652 | |
| 653 | if (!empty) |
| 654 | return empty; |
| 655 | |
| 656 | spin_lock_bh(&conn->response_queue_lock); |
| 657 | empty = list_empty(&conn->response_queue_list); |
| 658 | spin_unlock_bh(&conn->response_queue_lock); |
| 659 | |
| 660 | return empty; |
| 661 | } |
| 662 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 663 | void iscsit_free_queue_reqs_for_conn(struct iscsi_conn *conn) |
| 664 | { |
| 665 | struct iscsi_queue_req *qr, *qr_tmp; |
| 666 | |
| 667 | spin_lock_bh(&conn->immed_queue_lock); |
| 668 | list_for_each_entry_safe(qr, qr_tmp, &conn->immed_queue_list, qr_list) { |
| 669 | list_del(&qr->qr_list); |
| 670 | if (qr->cmd) |
| 671 | atomic_dec(&qr->cmd->immed_queue_count); |
| 672 | |
| 673 | kmem_cache_free(lio_qr_cache, qr); |
| 674 | } |
| 675 | spin_unlock_bh(&conn->immed_queue_lock); |
| 676 | |
| 677 | spin_lock_bh(&conn->response_queue_lock); |
| 678 | list_for_each_entry_safe(qr, qr_tmp, &conn->response_queue_list, |
| 679 | qr_list) { |
| 680 | list_del(&qr->qr_list); |
| 681 | if (qr->cmd) |
| 682 | atomic_dec(&qr->cmd->response_queue_count); |
| 683 | |
| 684 | kmem_cache_free(lio_qr_cache, qr); |
| 685 | } |
| 686 | spin_unlock_bh(&conn->response_queue_lock); |
| 687 | } |
| 688 | |
| 689 | void iscsit_release_cmd(struct iscsi_cmd *cmd) |
| 690 | { |
Nicholas Bellinger | 988e3a8 | 2013-08-17 15:49:08 -0700 | [diff] [blame] | 691 | struct iscsi_session *sess; |
| 692 | struct se_cmd *se_cmd = &cmd->se_cmd; |
| 693 | |
| 694 | if (cmd->conn) |
| 695 | sess = cmd->conn->sess; |
| 696 | else |
| 697 | sess = cmd->sess; |
| 698 | |
| 699 | BUG_ON(!sess || !sess->se_sess); |
| 700 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 701 | kfree(cmd->buf_ptr); |
| 702 | kfree(cmd->pdu_list); |
| 703 | kfree(cmd->seq_list); |
| 704 | kfree(cmd->tmr_req); |
| 705 | kfree(cmd->iov_data); |
Nicholas Bellinger | 9864ca9 | 2013-06-19 22:43:11 -0700 | [diff] [blame] | 706 | kfree(cmd->text_in_ptr); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 707 | |
Nicholas Bellinger | 988e3a8 | 2013-08-17 15:49:08 -0700 | [diff] [blame] | 708 | percpu_ida_free(&sess->se_sess->sess_tag_pool, se_cmd->map_tag); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 709 | } |
Nicholas Bellinger | d703ce2 | 2013-08-17 14:27:56 -0700 | [diff] [blame] | 710 | EXPORT_SYMBOL(iscsit_release_cmd); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 711 | |
Nicholas Bellinger | 131e6ab | 2014-03-22 14:55:56 -0700 | [diff] [blame] | 712 | void __iscsit_free_cmd(struct iscsi_cmd *cmd, bool scsi_cmd, |
| 713 | bool check_queues) |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 714 | { |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 715 | struct iscsi_conn *conn = cmd->conn; |
| 716 | |
| 717 | if (scsi_cmd) { |
| 718 | if (cmd->data_direction == DMA_TO_DEVICE) { |
| 719 | iscsit_stop_dataout_timer(cmd); |
| 720 | iscsit_free_r2ts_from_list(cmd); |
| 721 | } |
| 722 | if (cmd->data_direction == DMA_FROM_DEVICE) |
| 723 | iscsit_free_all_datain_reqs(cmd); |
| 724 | } |
| 725 | |
| 726 | if (conn && check_queues) { |
| 727 | iscsit_remove_cmd_from_immediate_queue(cmd, conn); |
| 728 | iscsit_remove_cmd_from_response_queue(cmd, conn); |
| 729 | } |
Varun Prakash | 7ec811a | 2016-04-20 00:00:09 +0530 | [diff] [blame] | 730 | |
| 731 | if (conn && conn->conn_transport->iscsit_release_cmd) |
| 732 | conn->conn_transport->iscsit_release_cmd(conn, cmd); |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | void iscsit_free_cmd(struct iscsi_cmd *cmd, bool shutdown) |
| 736 | { |
| 737 | struct se_cmd *se_cmd = NULL; |
| 738 | int rc; |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 739 | /* |
Masanari Iida | 2087969 | 2012-08-27 22:46:00 +0900 | [diff] [blame] | 740 | * Determine if a struct se_cmd is associated with |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 741 | * this struct iscsi_cmd. |
| 742 | */ |
| 743 | switch (cmd->iscsi_opcode) { |
| 744 | case ISCSI_OP_SCSI_CMD: |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 745 | se_cmd = &cmd->se_cmd; |
| 746 | __iscsit_free_cmd(cmd, true, shutdown); |
Nicholas Bellinger | cdb7266 | 2013-03-06 22:09:17 -0800 | [diff] [blame] | 747 | /* |
| 748 | * Fallthrough |
| 749 | */ |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 750 | case ISCSI_OP_SCSI_TMFUNC: |
Nicholas Bellinger | e255a28 | 2013-10-03 13:37:21 -0700 | [diff] [blame] | 751 | rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown); |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 752 | if (!rc && shutdown && se_cmd && se_cmd->se_sess) { |
| 753 | __iscsit_free_cmd(cmd, true, shutdown); |
Bart Van Assche | afc1660 | 2015-04-27 13:52:36 +0200 | [diff] [blame] | 754 | target_put_sess_cmd(se_cmd); |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 755 | } |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 756 | break; |
Nicholas Bellinger | c1ce4bd | 2012-01-16 16:04:15 -0800 | [diff] [blame] | 757 | case ISCSI_OP_REJECT: |
| 758 | /* |
| 759 | * Handle special case for REJECT when iscsi_add_reject*() has |
| 760 | * overwritten the original iscsi_opcode assignment, and the |
| 761 | * associated cmd->se_cmd needs to be released. |
| 762 | */ |
| 763 | if (cmd->se_cmd.se_tfo != NULL) { |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 764 | se_cmd = &cmd->se_cmd; |
| 765 | __iscsit_free_cmd(cmd, true, shutdown); |
| 766 | |
Nicholas Bellinger | e255a28 | 2013-10-03 13:37:21 -0700 | [diff] [blame] | 767 | rc = transport_generic_free_cmd(&cmd->se_cmd, shutdown); |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 768 | if (!rc && shutdown && se_cmd->se_sess) { |
| 769 | __iscsit_free_cmd(cmd, true, shutdown); |
Bart Van Assche | afc1660 | 2015-04-27 13:52:36 +0200 | [diff] [blame] | 770 | target_put_sess_cmd(se_cmd); |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 771 | } |
Nicholas Bellinger | c1ce4bd | 2012-01-16 16:04:15 -0800 | [diff] [blame] | 772 | break; |
| 773 | } |
| 774 | /* Fall-through */ |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 775 | default: |
Nicholas Bellinger | aafc9d1 | 2013-05-31 00:49:41 -0700 | [diff] [blame] | 776 | __iscsit_free_cmd(cmd, false, shutdown); |
Nicholas Bellinger | d703ce2 | 2013-08-17 14:27:56 -0700 | [diff] [blame] | 777 | iscsit_release_cmd(cmd); |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 778 | break; |
| 779 | } |
| 780 | } |
Varun Prakash | d2faaef | 2016-04-20 00:00:19 +0530 | [diff] [blame] | 781 | EXPORT_SYMBOL(iscsit_free_cmd); |
Nicholas Bellinger | d270190 | 2011-10-09 01:48:14 -0700 | [diff] [blame] | 782 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 783 | int iscsit_check_session_usage_count(struct iscsi_session *sess) |
| 784 | { |
| 785 | spin_lock_bh(&sess->session_usage_lock); |
| 786 | if (sess->session_usage_count != 0) { |
| 787 | sess->session_waiting_on_uc = 1; |
| 788 | spin_unlock_bh(&sess->session_usage_lock); |
| 789 | if (in_interrupt()) |
| 790 | return 2; |
| 791 | |
| 792 | wait_for_completion(&sess->session_waiting_on_uc_comp); |
| 793 | return 1; |
| 794 | } |
| 795 | spin_unlock_bh(&sess->session_usage_lock); |
| 796 | |
| 797 | return 0; |
| 798 | } |
| 799 | |
| 800 | void iscsit_dec_session_usage_count(struct iscsi_session *sess) |
| 801 | { |
| 802 | spin_lock_bh(&sess->session_usage_lock); |
| 803 | sess->session_usage_count--; |
| 804 | |
| 805 | if (!sess->session_usage_count && sess->session_waiting_on_uc) |
| 806 | complete(&sess->session_waiting_on_uc_comp); |
| 807 | |
| 808 | spin_unlock_bh(&sess->session_usage_lock); |
| 809 | } |
| 810 | |
| 811 | void iscsit_inc_session_usage_count(struct iscsi_session *sess) |
| 812 | { |
| 813 | spin_lock_bh(&sess->session_usage_lock); |
| 814 | sess->session_usage_count++; |
| 815 | spin_unlock_bh(&sess->session_usage_lock); |
| 816 | } |
| 817 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 818 | struct iscsi_conn *iscsit_get_conn_from_cid(struct iscsi_session *sess, u16 cid) |
| 819 | { |
| 820 | struct iscsi_conn *conn; |
| 821 | |
| 822 | spin_lock_bh(&sess->conn_lock); |
| 823 | list_for_each_entry(conn, &sess->sess_conn_list, conn_list) { |
| 824 | if ((conn->cid == cid) && |
| 825 | (conn->conn_state == TARG_CONN_STATE_LOGGED_IN)) { |
| 826 | iscsit_inc_conn_usage_count(conn); |
| 827 | spin_unlock_bh(&sess->conn_lock); |
| 828 | return conn; |
| 829 | } |
| 830 | } |
| 831 | spin_unlock_bh(&sess->conn_lock); |
| 832 | |
| 833 | return NULL; |
| 834 | } |
| 835 | |
| 836 | struct iscsi_conn *iscsit_get_conn_from_cid_rcfr(struct iscsi_session *sess, u16 cid) |
| 837 | { |
| 838 | struct iscsi_conn *conn; |
| 839 | |
| 840 | spin_lock_bh(&sess->conn_lock); |
| 841 | list_for_each_entry(conn, &sess->sess_conn_list, conn_list) { |
| 842 | if (conn->cid == cid) { |
| 843 | iscsit_inc_conn_usage_count(conn); |
| 844 | spin_lock(&conn->state_lock); |
| 845 | atomic_set(&conn->connection_wait_rcfr, 1); |
| 846 | spin_unlock(&conn->state_lock); |
| 847 | spin_unlock_bh(&sess->conn_lock); |
| 848 | return conn; |
| 849 | } |
| 850 | } |
| 851 | spin_unlock_bh(&sess->conn_lock); |
| 852 | |
| 853 | return NULL; |
| 854 | } |
| 855 | |
| 856 | void iscsit_check_conn_usage_count(struct iscsi_conn *conn) |
| 857 | { |
| 858 | spin_lock_bh(&conn->conn_usage_lock); |
| 859 | if (conn->conn_usage_count != 0) { |
| 860 | conn->conn_waiting_on_uc = 1; |
| 861 | spin_unlock_bh(&conn->conn_usage_lock); |
| 862 | |
| 863 | wait_for_completion(&conn->conn_waiting_on_uc_comp); |
| 864 | return; |
| 865 | } |
| 866 | spin_unlock_bh(&conn->conn_usage_lock); |
| 867 | } |
| 868 | |
| 869 | void iscsit_dec_conn_usage_count(struct iscsi_conn *conn) |
| 870 | { |
| 871 | spin_lock_bh(&conn->conn_usage_lock); |
| 872 | conn->conn_usage_count--; |
| 873 | |
| 874 | if (!conn->conn_usage_count && conn->conn_waiting_on_uc) |
| 875 | complete(&conn->conn_waiting_on_uc_comp); |
| 876 | |
| 877 | spin_unlock_bh(&conn->conn_usage_lock); |
| 878 | } |
| 879 | |
| 880 | void iscsit_inc_conn_usage_count(struct iscsi_conn *conn) |
| 881 | { |
| 882 | spin_lock_bh(&conn->conn_usage_lock); |
| 883 | conn->conn_usage_count++; |
| 884 | spin_unlock_bh(&conn->conn_usage_lock); |
| 885 | } |
| 886 | |
| 887 | static int iscsit_add_nopin(struct iscsi_conn *conn, int want_response) |
| 888 | { |
| 889 | u8 state; |
| 890 | struct iscsi_cmd *cmd; |
| 891 | |
Nicholas Bellinger | 676687c | 2014-01-20 03:36:44 +0000 | [diff] [blame] | 892 | cmd = iscsit_allocate_cmd(conn, TASK_RUNNING); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 893 | if (!cmd) |
| 894 | return -1; |
| 895 | |
| 896 | cmd->iscsi_opcode = ISCSI_OP_NOOP_IN; |
| 897 | state = (want_response) ? ISTATE_SEND_NOPIN_WANT_RESPONSE : |
| 898 | ISTATE_SEND_NOPIN_NO_RESPONSE; |
Christoph Hellwig | 66c7db6 | 2012-09-26 08:00:39 -0400 | [diff] [blame] | 899 | cmd->init_task_tag = RESERVED_ITT; |
Sagi Grimberg | c1e34b6 | 2015-01-26 12:49:05 +0200 | [diff] [blame] | 900 | cmd->targ_xfer_tag = (want_response) ? |
| 901 | session_get_next_ttt(conn->sess) : 0xFFFFFFFF; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 902 | spin_lock_bh(&conn->cmd_lock); |
Andy Grover | 2fbb471 | 2012-04-03 15:51:01 -0700 | [diff] [blame] | 903 | list_add_tail(&cmd->i_conn_node, &conn->conn_cmd_list); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 904 | spin_unlock_bh(&conn->cmd_lock); |
| 905 | |
| 906 | if (want_response) |
| 907 | iscsit_start_nopin_response_timer(conn); |
| 908 | iscsit_add_cmd_to_immediate_queue(cmd, conn, state); |
| 909 | |
| 910 | return 0; |
| 911 | } |
| 912 | |
| 913 | static void iscsit_handle_nopin_response_timeout(unsigned long data) |
| 914 | { |
| 915 | struct iscsi_conn *conn = (struct iscsi_conn *) data; |
| 916 | |
| 917 | iscsit_inc_conn_usage_count(conn); |
| 918 | |
| 919 | spin_lock_bh(&conn->nopin_timer_lock); |
| 920 | if (conn->nopin_response_timer_flags & ISCSI_TF_STOP) { |
| 921 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 922 | iscsit_dec_conn_usage_count(conn); |
| 923 | return; |
| 924 | } |
| 925 | |
| 926 | pr_debug("Did not receive response to NOPIN on CID: %hu on" |
| 927 | " SID: %u, failing connection.\n", conn->cid, |
| 928 | conn->sess->sid); |
| 929 | conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING; |
| 930 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 931 | |
| 932 | { |
| 933 | struct iscsi_portal_group *tpg = conn->sess->tpg; |
| 934 | struct iscsi_tiqn *tiqn = tpg->tpg_tiqn; |
| 935 | |
| 936 | if (tiqn) { |
| 937 | spin_lock_bh(&tiqn->sess_err_stats.lock); |
| 938 | strcpy(tiqn->sess_err_stats.last_sess_fail_rem_name, |
Jörn Engel | 8359cf4 | 2011-11-24 02:05:51 +0100 | [diff] [blame] | 939 | conn->sess->sess_ops->InitiatorName); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 940 | tiqn->sess_err_stats.last_sess_failure_type = |
| 941 | ISCSI_SESS_ERR_CXN_TIMEOUT; |
| 942 | tiqn->sess_err_stats.cxn_timeout_errors++; |
Nicholas Bellinger | 04f3b31 | 2013-11-13 18:54:45 -0800 | [diff] [blame] | 943 | atomic_long_inc(&conn->sess->conn_timeout_errors); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 944 | spin_unlock_bh(&tiqn->sess_err_stats.lock); |
| 945 | } |
| 946 | } |
| 947 | |
| 948 | iscsit_cause_connection_reinstatement(conn, 0); |
| 949 | iscsit_dec_conn_usage_count(conn); |
| 950 | } |
| 951 | |
| 952 | void iscsit_mod_nopin_response_timer(struct iscsi_conn *conn) |
| 953 | { |
| 954 | struct iscsi_session *sess = conn->sess; |
| 955 | struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess); |
| 956 | |
| 957 | spin_lock_bh(&conn->nopin_timer_lock); |
| 958 | if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) { |
| 959 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 960 | return; |
| 961 | } |
| 962 | |
| 963 | mod_timer(&conn->nopin_response_timer, |
| 964 | (get_jiffies_64() + na->nopin_response_timeout * HZ)); |
| 965 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 966 | } |
| 967 | |
| 968 | /* |
| 969 | * Called with conn->nopin_timer_lock held. |
| 970 | */ |
| 971 | void iscsit_start_nopin_response_timer(struct iscsi_conn *conn) |
| 972 | { |
| 973 | struct iscsi_session *sess = conn->sess; |
| 974 | struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess); |
| 975 | |
| 976 | spin_lock_bh(&conn->nopin_timer_lock); |
| 977 | if (conn->nopin_response_timer_flags & ISCSI_TF_RUNNING) { |
| 978 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 979 | return; |
| 980 | } |
| 981 | |
| 982 | init_timer(&conn->nopin_response_timer); |
| 983 | conn->nopin_response_timer.expires = |
| 984 | (get_jiffies_64() + na->nopin_response_timeout * HZ); |
| 985 | conn->nopin_response_timer.data = (unsigned long)conn; |
| 986 | conn->nopin_response_timer.function = iscsit_handle_nopin_response_timeout; |
| 987 | conn->nopin_response_timer_flags &= ~ISCSI_TF_STOP; |
| 988 | conn->nopin_response_timer_flags |= ISCSI_TF_RUNNING; |
| 989 | add_timer(&conn->nopin_response_timer); |
| 990 | |
| 991 | pr_debug("Started NOPIN Response Timer on CID: %d to %u" |
| 992 | " seconds\n", conn->cid, na->nopin_response_timeout); |
| 993 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 994 | } |
| 995 | |
| 996 | void iscsit_stop_nopin_response_timer(struct iscsi_conn *conn) |
| 997 | { |
| 998 | spin_lock_bh(&conn->nopin_timer_lock); |
| 999 | if (!(conn->nopin_response_timer_flags & ISCSI_TF_RUNNING)) { |
| 1000 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1001 | return; |
| 1002 | } |
| 1003 | conn->nopin_response_timer_flags |= ISCSI_TF_STOP; |
| 1004 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1005 | |
| 1006 | del_timer_sync(&conn->nopin_response_timer); |
| 1007 | |
| 1008 | spin_lock_bh(&conn->nopin_timer_lock); |
| 1009 | conn->nopin_response_timer_flags &= ~ISCSI_TF_RUNNING; |
| 1010 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1011 | } |
| 1012 | |
| 1013 | static void iscsit_handle_nopin_timeout(unsigned long data) |
| 1014 | { |
| 1015 | struct iscsi_conn *conn = (struct iscsi_conn *) data; |
| 1016 | |
| 1017 | iscsit_inc_conn_usage_count(conn); |
| 1018 | |
| 1019 | spin_lock_bh(&conn->nopin_timer_lock); |
| 1020 | if (conn->nopin_timer_flags & ISCSI_TF_STOP) { |
| 1021 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1022 | iscsit_dec_conn_usage_count(conn); |
| 1023 | return; |
| 1024 | } |
| 1025 | conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING; |
| 1026 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1027 | |
| 1028 | iscsit_add_nopin(conn, 1); |
| 1029 | iscsit_dec_conn_usage_count(conn); |
| 1030 | } |
| 1031 | |
| 1032 | /* |
| 1033 | * Called with conn->nopin_timer_lock held. |
| 1034 | */ |
| 1035 | void __iscsit_start_nopin_timer(struct iscsi_conn *conn) |
| 1036 | { |
| 1037 | struct iscsi_session *sess = conn->sess; |
| 1038 | struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess); |
| 1039 | /* |
| 1040 | * NOPIN timeout is disabled. |
| 1041 | */ |
| 1042 | if (!na->nopin_timeout) |
| 1043 | return; |
| 1044 | |
| 1045 | if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) |
| 1046 | return; |
| 1047 | |
| 1048 | init_timer(&conn->nopin_timer); |
| 1049 | conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ); |
| 1050 | conn->nopin_timer.data = (unsigned long)conn; |
| 1051 | conn->nopin_timer.function = iscsit_handle_nopin_timeout; |
| 1052 | conn->nopin_timer_flags &= ~ISCSI_TF_STOP; |
| 1053 | conn->nopin_timer_flags |= ISCSI_TF_RUNNING; |
| 1054 | add_timer(&conn->nopin_timer); |
| 1055 | |
| 1056 | pr_debug("Started NOPIN Timer on CID: %d at %u second" |
| 1057 | " interval\n", conn->cid, na->nopin_timeout); |
| 1058 | } |
| 1059 | |
| 1060 | void iscsit_start_nopin_timer(struct iscsi_conn *conn) |
| 1061 | { |
| 1062 | struct iscsi_session *sess = conn->sess; |
| 1063 | struct iscsi_node_attrib *na = iscsit_tpg_get_node_attrib(sess); |
| 1064 | /* |
| 1065 | * NOPIN timeout is disabled.. |
| 1066 | */ |
| 1067 | if (!na->nopin_timeout) |
| 1068 | return; |
| 1069 | |
| 1070 | spin_lock_bh(&conn->nopin_timer_lock); |
| 1071 | if (conn->nopin_timer_flags & ISCSI_TF_RUNNING) { |
| 1072 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1073 | return; |
| 1074 | } |
| 1075 | |
| 1076 | init_timer(&conn->nopin_timer); |
| 1077 | conn->nopin_timer.expires = (get_jiffies_64() + na->nopin_timeout * HZ); |
| 1078 | conn->nopin_timer.data = (unsigned long)conn; |
| 1079 | conn->nopin_timer.function = iscsit_handle_nopin_timeout; |
| 1080 | conn->nopin_timer_flags &= ~ISCSI_TF_STOP; |
| 1081 | conn->nopin_timer_flags |= ISCSI_TF_RUNNING; |
| 1082 | add_timer(&conn->nopin_timer); |
| 1083 | |
| 1084 | pr_debug("Started NOPIN Timer on CID: %d at %u second" |
| 1085 | " interval\n", conn->cid, na->nopin_timeout); |
| 1086 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1087 | } |
| 1088 | |
| 1089 | void iscsit_stop_nopin_timer(struct iscsi_conn *conn) |
| 1090 | { |
| 1091 | spin_lock_bh(&conn->nopin_timer_lock); |
| 1092 | if (!(conn->nopin_timer_flags & ISCSI_TF_RUNNING)) { |
| 1093 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1094 | return; |
| 1095 | } |
| 1096 | conn->nopin_timer_flags |= ISCSI_TF_STOP; |
| 1097 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1098 | |
| 1099 | del_timer_sync(&conn->nopin_timer); |
| 1100 | |
| 1101 | spin_lock_bh(&conn->nopin_timer_lock); |
| 1102 | conn->nopin_timer_flags &= ~ISCSI_TF_RUNNING; |
| 1103 | spin_unlock_bh(&conn->nopin_timer_lock); |
| 1104 | } |
| 1105 | |
| 1106 | int iscsit_send_tx_data( |
| 1107 | struct iscsi_cmd *cmd, |
| 1108 | struct iscsi_conn *conn, |
| 1109 | int use_misc) |
| 1110 | { |
| 1111 | int tx_sent, tx_size; |
| 1112 | u32 iov_count; |
| 1113 | struct kvec *iov; |
| 1114 | |
| 1115 | send_data: |
| 1116 | tx_size = cmd->tx_size; |
| 1117 | |
| 1118 | if (!use_misc) { |
| 1119 | iov = &cmd->iov_data[0]; |
| 1120 | iov_count = cmd->iov_data_count; |
| 1121 | } else { |
| 1122 | iov = &cmd->iov_misc[0]; |
| 1123 | iov_count = cmd->iov_misc_count; |
| 1124 | } |
| 1125 | |
| 1126 | tx_sent = tx_data(conn, &iov[0], iov_count, tx_size); |
| 1127 | if (tx_size != tx_sent) { |
| 1128 | if (tx_sent == -EAGAIN) { |
| 1129 | pr_err("tx_data() returned -EAGAIN\n"); |
| 1130 | goto send_data; |
| 1131 | } else |
| 1132 | return -1; |
| 1133 | } |
| 1134 | cmd->tx_size = 0; |
| 1135 | |
| 1136 | return 0; |
| 1137 | } |
| 1138 | |
| 1139 | int iscsit_fe_sendpage_sg( |
| 1140 | struct iscsi_cmd *cmd, |
| 1141 | struct iscsi_conn *conn) |
| 1142 | { |
| 1143 | struct scatterlist *sg = cmd->first_data_sg; |
| 1144 | struct kvec iov; |
| 1145 | u32 tx_hdr_size, data_len; |
| 1146 | u32 offset = cmd->first_data_sg_off; |
Nicholas Bellinger | 40b0549 | 2011-09-16 16:55:47 -0700 | [diff] [blame] | 1147 | int tx_sent, iov_off; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1148 | |
| 1149 | send_hdr: |
| 1150 | tx_hdr_size = ISCSI_HDR_LEN; |
| 1151 | if (conn->conn_ops->HeaderDigest) |
| 1152 | tx_hdr_size += ISCSI_CRC_LEN; |
| 1153 | |
| 1154 | iov.iov_base = cmd->pdu; |
| 1155 | iov.iov_len = tx_hdr_size; |
| 1156 | |
| 1157 | tx_sent = tx_data(conn, &iov, 1, tx_hdr_size); |
| 1158 | if (tx_hdr_size != tx_sent) { |
| 1159 | if (tx_sent == -EAGAIN) { |
| 1160 | pr_err("tx_data() returned -EAGAIN\n"); |
| 1161 | goto send_hdr; |
| 1162 | } |
| 1163 | return -1; |
| 1164 | } |
| 1165 | |
| 1166 | data_len = cmd->tx_size - tx_hdr_size - cmd->padding; |
Nicholas Bellinger | 40b0549 | 2011-09-16 16:55:47 -0700 | [diff] [blame] | 1167 | /* |
| 1168 | * Set iov_off used by padding and data digest tx_data() calls below |
| 1169 | * in order to determine proper offset into cmd->iov_data[] |
| 1170 | */ |
| 1171 | if (conn->conn_ops->DataDigest) { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1172 | data_len -= ISCSI_CRC_LEN; |
Nicholas Bellinger | 40b0549 | 2011-09-16 16:55:47 -0700 | [diff] [blame] | 1173 | if (cmd->padding) |
| 1174 | iov_off = (cmd->iov_data_count - 2); |
| 1175 | else |
| 1176 | iov_off = (cmd->iov_data_count - 1); |
| 1177 | } else { |
| 1178 | iov_off = (cmd->iov_data_count - 1); |
| 1179 | } |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1180 | /* |
| 1181 | * Perform sendpage() for each page in the scatterlist |
| 1182 | */ |
| 1183 | while (data_len) { |
| 1184 | u32 space = (sg->length - offset); |
| 1185 | u32 sub_len = min_t(u32, data_len, space); |
| 1186 | send_pg: |
| 1187 | tx_sent = conn->sock->ops->sendpage(conn->sock, |
| 1188 | sg_page(sg), sg->offset + offset, sub_len, 0); |
| 1189 | if (tx_sent != sub_len) { |
| 1190 | if (tx_sent == -EAGAIN) { |
| 1191 | pr_err("tcp_sendpage() returned" |
| 1192 | " -EAGAIN\n"); |
| 1193 | goto send_pg; |
| 1194 | } |
| 1195 | |
| 1196 | pr_err("tcp_sendpage() failure: %d\n", |
| 1197 | tx_sent); |
| 1198 | return -1; |
| 1199 | } |
| 1200 | |
| 1201 | data_len -= sub_len; |
| 1202 | offset = 0; |
| 1203 | sg = sg_next(sg); |
| 1204 | } |
| 1205 | |
| 1206 | send_padding: |
| 1207 | if (cmd->padding) { |
Nicholas Bellinger | 40b0549 | 2011-09-16 16:55:47 -0700 | [diff] [blame] | 1208 | struct kvec *iov_p = &cmd->iov_data[iov_off++]; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1209 | |
| 1210 | tx_sent = tx_data(conn, iov_p, 1, cmd->padding); |
| 1211 | if (cmd->padding != tx_sent) { |
| 1212 | if (tx_sent == -EAGAIN) { |
| 1213 | pr_err("tx_data() returned -EAGAIN\n"); |
| 1214 | goto send_padding; |
| 1215 | } |
| 1216 | return -1; |
| 1217 | } |
| 1218 | } |
| 1219 | |
| 1220 | send_datacrc: |
| 1221 | if (conn->conn_ops->DataDigest) { |
Nicholas Bellinger | 40b0549 | 2011-09-16 16:55:47 -0700 | [diff] [blame] | 1222 | struct kvec *iov_d = &cmd->iov_data[iov_off]; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1223 | |
| 1224 | tx_sent = tx_data(conn, iov_d, 1, ISCSI_CRC_LEN); |
| 1225 | if (ISCSI_CRC_LEN != tx_sent) { |
| 1226 | if (tx_sent == -EAGAIN) { |
| 1227 | pr_err("tx_data() returned -EAGAIN\n"); |
| 1228 | goto send_datacrc; |
| 1229 | } |
| 1230 | return -1; |
| 1231 | } |
| 1232 | } |
| 1233 | |
| 1234 | return 0; |
| 1235 | } |
| 1236 | |
| 1237 | /* |
| 1238 | * This function is used for mainly sending a ISCSI_TARG_LOGIN_RSP PDU |
| 1239 | * back to the Initiator when an expection condition occurs with the |
| 1240 | * errors set in status_class and status_detail. |
| 1241 | * |
| 1242 | * Parameters: iSCSI Connection, Status Class, Status Detail. |
| 1243 | * Returns: 0 on success, -1 on error. |
| 1244 | */ |
| 1245 | int iscsit_tx_login_rsp(struct iscsi_conn *conn, u8 status_class, u8 status_detail) |
| 1246 | { |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1247 | struct iscsi_login_rsp *hdr; |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 1248 | struct iscsi_login *login = conn->conn_login; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1249 | |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 1250 | login->login_failed = 1; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1251 | iscsit_collect_login_stats(conn, status_class, status_detail); |
| 1252 | |
Nicholas Bellinger | 6834975 | 2014-06-17 21:54:38 +0000 | [diff] [blame] | 1253 | memset(&login->rsp[0], 0, ISCSI_HDR_LEN); |
| 1254 | |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 1255 | hdr = (struct iscsi_login_rsp *)&login->rsp[0]; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1256 | hdr->opcode = ISCSI_OP_LOGIN_RSP; |
| 1257 | hdr->status_class = status_class; |
| 1258 | hdr->status_detail = status_detail; |
Christoph Hellwig | 66c7db6 | 2012-09-26 08:00:39 -0400 | [diff] [blame] | 1259 | hdr->itt = conn->login_itt; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1260 | |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 1261 | return conn->conn_transport->iscsit_put_login_tx(conn, login, 0); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1262 | } |
| 1263 | |
| 1264 | void iscsit_print_session_params(struct iscsi_session *sess) |
| 1265 | { |
| 1266 | struct iscsi_conn *conn; |
| 1267 | |
| 1268 | pr_debug("-----------------------------[Session Params for" |
| 1269 | " SID: %u]-----------------------------\n", sess->sid); |
| 1270 | spin_lock_bh(&sess->conn_lock); |
| 1271 | list_for_each_entry(conn, &sess->sess_conn_list, conn_list) |
| 1272 | iscsi_dump_conn_ops(conn->conn_ops); |
| 1273 | spin_unlock_bh(&sess->conn_lock); |
| 1274 | |
| 1275 | iscsi_dump_sess_ops(sess->sess_ops); |
| 1276 | } |
| 1277 | |
| 1278 | static int iscsit_do_rx_data( |
| 1279 | struct iscsi_conn *conn, |
| 1280 | struct iscsi_data_count *count) |
| 1281 | { |
Al Viro | e5a4b0b | 2014-11-24 18:17:55 -0500 | [diff] [blame] | 1282 | int data = count->data_length, rx_loop = 0, total_rx = 0; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1283 | struct msghdr msg; |
| 1284 | |
| 1285 | if (!conn || !conn->sock || !conn->conn_ops) |
| 1286 | return -1; |
| 1287 | |
| 1288 | memset(&msg, 0, sizeof(struct msghdr)); |
Al Viro | e5a4b0b | 2014-11-24 18:17:55 -0500 | [diff] [blame] | 1289 | iov_iter_kvec(&msg.msg_iter, READ | ITER_KVEC, |
| 1290 | count->iov, count->iov_count, data); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1291 | |
Al Viro | 2da6290 | 2015-03-14 21:13:46 -0400 | [diff] [blame] | 1292 | while (msg_data_left(&msg)) { |
| 1293 | rx_loop = sock_recvmsg(conn->sock, &msg, MSG_WAITALL); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1294 | if (rx_loop <= 0) { |
| 1295 | pr_debug("rx_loop: %d total_rx: %d\n", |
| 1296 | rx_loop, total_rx); |
| 1297 | return rx_loop; |
| 1298 | } |
| 1299 | total_rx += rx_loop; |
| 1300 | pr_debug("rx_loop: %d, total_rx: %d, data: %d\n", |
| 1301 | rx_loop, total_rx, data); |
| 1302 | } |
| 1303 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1304 | return total_rx; |
| 1305 | } |
| 1306 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1307 | int rx_data( |
| 1308 | struct iscsi_conn *conn, |
| 1309 | struct kvec *iov, |
| 1310 | int iov_count, |
| 1311 | int data) |
| 1312 | { |
| 1313 | struct iscsi_data_count c; |
| 1314 | |
| 1315 | if (!conn || !conn->sock || !conn->conn_ops) |
| 1316 | return -1; |
| 1317 | |
| 1318 | memset(&c, 0, sizeof(struct iscsi_data_count)); |
| 1319 | c.iov = iov; |
| 1320 | c.iov_count = iov_count; |
| 1321 | c.data_length = data; |
| 1322 | c.type = ISCSI_RX_DATA; |
| 1323 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1324 | return iscsit_do_rx_data(conn, &c); |
| 1325 | } |
| 1326 | |
| 1327 | int tx_data( |
| 1328 | struct iscsi_conn *conn, |
| 1329 | struct kvec *iov, |
| 1330 | int iov_count, |
| 1331 | int data) |
| 1332 | { |
Al Viro | 4113e47 | 2014-12-21 02:14:47 -0500 | [diff] [blame^] | 1333 | struct msghdr msg; |
| 1334 | int total_tx = 0; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1335 | |
| 1336 | if (!conn || !conn->sock || !conn->conn_ops) |
| 1337 | return -1; |
| 1338 | |
Al Viro | 4113e47 | 2014-12-21 02:14:47 -0500 | [diff] [blame^] | 1339 | if (data <= 0) { |
| 1340 | pr_err("Data length is: %d\n", data); |
| 1341 | return -1; |
| 1342 | } |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1343 | |
Al Viro | 4113e47 | 2014-12-21 02:14:47 -0500 | [diff] [blame^] | 1344 | memset(&msg, 0, sizeof(struct msghdr)); |
| 1345 | |
| 1346 | iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, |
| 1347 | iov, iov_count, data); |
| 1348 | |
| 1349 | while (msg_data_left(&msg)) { |
| 1350 | int tx_loop = sock_sendmsg(conn->sock, &msg); |
| 1351 | if (tx_loop <= 0) { |
| 1352 | pr_debug("tx_loop: %d total_tx %d\n", |
| 1353 | tx_loop, total_tx); |
| 1354 | return tx_loop; |
| 1355 | } |
| 1356 | total_tx += tx_loop; |
| 1357 | pr_debug("tx_loop: %d, total_tx: %d, data: %d\n", |
| 1358 | tx_loop, total_tx, data); |
| 1359 | } |
| 1360 | |
| 1361 | return total_tx; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1362 | } |
| 1363 | |
Andy Grover | dc58f76 | 2015-08-24 10:26:05 -0700 | [diff] [blame] | 1364 | static bool sockaddr_equal(struct sockaddr_storage *x, struct sockaddr_storage *y) |
| 1365 | { |
| 1366 | switch (x->ss_family) { |
| 1367 | case AF_INET: { |
| 1368 | struct sockaddr_in *sinx = (struct sockaddr_in *)x; |
| 1369 | struct sockaddr_in *siny = (struct sockaddr_in *)y; |
| 1370 | if (sinx->sin_addr.s_addr != siny->sin_addr.s_addr) |
| 1371 | return false; |
| 1372 | if (sinx->sin_port != siny->sin_port) |
| 1373 | return false; |
| 1374 | break; |
| 1375 | } |
| 1376 | case AF_INET6: { |
| 1377 | struct sockaddr_in6 *sinx = (struct sockaddr_in6 *)x; |
| 1378 | struct sockaddr_in6 *siny = (struct sockaddr_in6 *)y; |
| 1379 | if (!ipv6_addr_equal(&sinx->sin6_addr, &siny->sin6_addr)) |
| 1380 | return false; |
| 1381 | if (sinx->sin6_port != siny->sin6_port) |
| 1382 | return false; |
| 1383 | break; |
| 1384 | } |
| 1385 | default: |
| 1386 | return false; |
| 1387 | } |
| 1388 | return true; |
| 1389 | } |
| 1390 | |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1391 | void iscsit_collect_login_stats( |
| 1392 | struct iscsi_conn *conn, |
| 1393 | u8 status_class, |
| 1394 | u8 status_detail) |
| 1395 | { |
| 1396 | struct iscsi_param *intrname = NULL; |
| 1397 | struct iscsi_tiqn *tiqn; |
| 1398 | struct iscsi_login_stats *ls; |
| 1399 | |
| 1400 | tiqn = iscsit_snmp_get_tiqn(conn); |
| 1401 | if (!tiqn) |
| 1402 | return; |
| 1403 | |
| 1404 | ls = &tiqn->login_stats; |
| 1405 | |
| 1406 | spin_lock(&ls->lock); |
Andy Grover | dc58f76 | 2015-08-24 10:26:05 -0700 | [diff] [blame] | 1407 | if (sockaddr_equal(&conn->login_sockaddr, &ls->last_intr_fail_sockaddr) && |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1408 | ((get_jiffies_64() - ls->last_fail_time) < 10)) { |
| 1409 | /* We already have the failure info for this login */ |
| 1410 | spin_unlock(&ls->lock); |
| 1411 | return; |
| 1412 | } |
| 1413 | |
| 1414 | if (status_class == ISCSI_STATUS_CLS_SUCCESS) |
| 1415 | ls->accepts++; |
| 1416 | else if (status_class == ISCSI_STATUS_CLS_REDIRECT) { |
| 1417 | ls->redirects++; |
| 1418 | ls->last_fail_type = ISCSI_LOGIN_FAIL_REDIRECT; |
| 1419 | } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) && |
| 1420 | (status_detail == ISCSI_LOGIN_STATUS_AUTH_FAILED)) { |
| 1421 | ls->authenticate_fails++; |
| 1422 | ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHENTICATE; |
| 1423 | } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) && |
| 1424 | (status_detail == ISCSI_LOGIN_STATUS_TGT_FORBIDDEN)) { |
| 1425 | ls->authorize_fails++; |
| 1426 | ls->last_fail_type = ISCSI_LOGIN_FAIL_AUTHORIZE; |
| 1427 | } else if ((status_class == ISCSI_STATUS_CLS_INITIATOR_ERR) && |
| 1428 | (status_detail == ISCSI_LOGIN_STATUS_INIT_ERR)) { |
| 1429 | ls->negotiate_fails++; |
| 1430 | ls->last_fail_type = ISCSI_LOGIN_FAIL_NEGOTIATE; |
| 1431 | } else { |
| 1432 | ls->other_fails++; |
| 1433 | ls->last_fail_type = ISCSI_LOGIN_FAIL_OTHER; |
| 1434 | } |
| 1435 | |
| 1436 | /* Save initiator name, ip address and time, if it is a failed login */ |
| 1437 | if (status_class != ISCSI_STATUS_CLS_SUCCESS) { |
| 1438 | if (conn->param_list) |
| 1439 | intrname = iscsi_find_param_from_key(INITIATORNAME, |
| 1440 | conn->param_list); |
Joern Engel | fdc84d1 | 2014-09-02 17:49:55 -0400 | [diff] [blame] | 1441 | strlcpy(ls->last_intr_fail_name, |
| 1442 | (intrname ? intrname->value : "Unknown"), |
| 1443 | sizeof(ls->last_intr_fail_name)); |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1444 | |
Nicholas Bellinger | baa4d64 | 2013-03-06 21:54:13 -0800 | [diff] [blame] | 1445 | ls->last_intr_fail_ip_family = conn->login_family; |
| 1446 | |
Andy Grover | dc58f76 | 2015-08-24 10:26:05 -0700 | [diff] [blame] | 1447 | ls->last_intr_fail_sockaddr = conn->login_sockaddr; |
Nicholas Bellinger | e48354c | 2011-07-23 06:43:04 +0000 | [diff] [blame] | 1448 | ls->last_fail_time = get_jiffies_64(); |
| 1449 | } |
| 1450 | |
| 1451 | spin_unlock(&ls->lock); |
| 1452 | } |
| 1453 | |
| 1454 | struct iscsi_tiqn *iscsit_snmp_get_tiqn(struct iscsi_conn *conn) |
| 1455 | { |
| 1456 | struct iscsi_portal_group *tpg; |
| 1457 | |
| 1458 | if (!conn || !conn->sess) |
| 1459 | return NULL; |
| 1460 | |
| 1461 | tpg = conn->sess->tpg; |
| 1462 | if (!tpg) |
| 1463 | return NULL; |
| 1464 | |
| 1465 | if (!tpg->tpg_tiqn) |
| 1466 | return NULL; |
| 1467 | |
| 1468 | return tpg->tpg_tiqn; |
| 1469 | } |