Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1 | /* |
| 2 | * iSCSI lib functions |
| 3 | * |
| 4 | * Copyright (C) 2006 Red Hat, Inc. All rights reserved. |
| 5 | * Copyright (C) 2004 - 2006 Mike Christie |
| 6 | * Copyright (C) 2004 - 2005 Dmitry Yusupov |
| 7 | * Copyright (C) 2004 - 2005 Alex Aizman |
| 8 | * maintained by open-iscsi@googlegroups.com |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 23 | */ |
| 24 | #include <linux/types.h> |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 25 | #include <linux/kfifo.h> |
| 26 | #include <linux/delay.h> |
vignesh babu | 1183657 | 2007-12-13 12:43:41 -0600 | [diff] [blame] | 27 | #include <linux/log2.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 28 | #include <linux/slab.h> |
Mike Christie | 8eb0053 | 2007-02-28 17:32:19 -0600 | [diff] [blame] | 29 | #include <asm/unaligned.h> |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 30 | #include <net/tcp.h> |
| 31 | #include <scsi/scsi_cmnd.h> |
| 32 | #include <scsi/scsi_device.h> |
| 33 | #include <scsi/scsi_eh.h> |
| 34 | #include <scsi/scsi_tcq.h> |
| 35 | #include <scsi/scsi_host.h> |
| 36 | #include <scsi/scsi.h> |
| 37 | #include <scsi/iscsi_proto.h> |
| 38 | #include <scsi/scsi_transport.h> |
| 39 | #include <scsi/scsi_transport_iscsi.h> |
| 40 | #include <scsi/libiscsi.h> |
| 41 | |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 42 | static int iscsi_dbg_lib_conn; |
| 43 | module_param_named(debug_libiscsi_conn, iscsi_dbg_lib_conn, int, |
| 44 | S_IRUGO | S_IWUSR); |
| 45 | MODULE_PARM_DESC(debug_libiscsi_conn, |
| 46 | "Turn on debugging for connections in libiscsi module. " |
| 47 | "Set to 1 to turn on, and zero to turn off. Default is off."); |
| 48 | |
| 49 | static int iscsi_dbg_lib_session; |
| 50 | module_param_named(debug_libiscsi_session, iscsi_dbg_lib_session, int, |
| 51 | S_IRUGO | S_IWUSR); |
| 52 | MODULE_PARM_DESC(debug_libiscsi_session, |
| 53 | "Turn on debugging for sessions in libiscsi module. " |
| 54 | "Set to 1 to turn on, and zero to turn off. Default is off."); |
| 55 | |
| 56 | static int iscsi_dbg_lib_eh; |
| 57 | module_param_named(debug_libiscsi_eh, iscsi_dbg_lib_eh, int, |
| 58 | S_IRUGO | S_IWUSR); |
| 59 | MODULE_PARM_DESC(debug_libiscsi_eh, |
| 60 | "Turn on debugging for error handling in libiscsi module. " |
| 61 | "Set to 1 to turn on, and zero to turn off. Default is off."); |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 62 | |
| 63 | #define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \ |
| 64 | do { \ |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 65 | if (iscsi_dbg_lib_conn) \ |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 66 | iscsi_conn_printk(KERN_INFO, _conn, \ |
| 67 | "%s " dbg_fmt, \ |
| 68 | __func__, ##arg); \ |
| 69 | } while (0); |
| 70 | |
| 71 | #define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \ |
| 72 | do { \ |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 73 | if (iscsi_dbg_lib_session) \ |
| 74 | iscsi_session_printk(KERN_INFO, _session, \ |
| 75 | "%s " dbg_fmt, \ |
| 76 | __func__, ##arg); \ |
| 77 | } while (0); |
| 78 | |
| 79 | #define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \ |
| 80 | do { \ |
| 81 | if (iscsi_dbg_lib_eh) \ |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 82 | iscsi_session_printk(KERN_INFO, _session, \ |
| 83 | "%s " dbg_fmt, \ |
| 84 | __func__, ##arg); \ |
| 85 | } while (0); |
| 86 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 87 | /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */ |
| 88 | #define SNA32_CHECK 2147483648UL |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 89 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 90 | static int iscsi_sna_lt(u32 n1, u32 n2) |
| 91 | { |
| 92 | return n1 != n2 && ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) || |
| 93 | (n1 > n2 && (n2 - n1 < SNA32_CHECK))); |
| 94 | } |
| 95 | |
| 96 | /* Serial Number Arithmetic, 32 bits, less than, RFC1982 */ |
| 97 | static int iscsi_sna_lte(u32 n1, u32 n2) |
| 98 | { |
| 99 | return n1 == n2 || ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) || |
| 100 | (n1 > n2 && (n2 - n1 < SNA32_CHECK))); |
| 101 | } |
| 102 | |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 103 | inline void iscsi_conn_queue_work(struct iscsi_conn *conn) |
| 104 | { |
| 105 | struct Scsi_Host *shost = conn->session->host; |
| 106 | struct iscsi_host *ihost = shost_priv(shost); |
| 107 | |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 108 | if (ihost->workq) |
| 109 | queue_work(ihost->workq, &conn->xmitwork); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 110 | } |
| 111 | EXPORT_SYMBOL_GPL(iscsi_conn_queue_work); |
| 112 | |
Mike Christie | 4c0ba5d | 2009-09-05 07:34:23 +0530 | [diff] [blame] | 113 | static void __iscsi_update_cmdsn(struct iscsi_session *session, |
| 114 | uint32_t exp_cmdsn, uint32_t max_cmdsn) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 115 | { |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 116 | /* |
| 117 | * standard specifies this check for when to update expected and |
| 118 | * max sequence numbers |
| 119 | */ |
| 120 | if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1)) |
| 121 | return; |
| 122 | |
| 123 | if (exp_cmdsn != session->exp_cmdsn && |
| 124 | !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn)) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 125 | session->exp_cmdsn = exp_cmdsn; |
| 126 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 127 | if (max_cmdsn != session->max_cmdsn && |
| 128 | !iscsi_sna_lt(max_cmdsn, session->max_cmdsn)) { |
| 129 | session->max_cmdsn = max_cmdsn; |
| 130 | /* |
| 131 | * if the window closed with IO queued, then kick the |
| 132 | * xmit thread |
| 133 | */ |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 134 | if (!list_empty(&session->leadconn->cmdqueue) || |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 135 | !list_empty(&session->leadconn->mgmtqueue)) |
| 136 | iscsi_conn_queue_work(session->leadconn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 137 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 138 | } |
Mike Christie | 4c0ba5d | 2009-09-05 07:34:23 +0530 | [diff] [blame] | 139 | |
| 140 | void iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr) |
| 141 | { |
| 142 | __iscsi_update_cmdsn(session, be32_to_cpu(hdr->exp_cmdsn), |
| 143 | be32_to_cpu(hdr->max_cmdsn)); |
| 144 | } |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 145 | EXPORT_SYMBOL_GPL(iscsi_update_cmdsn); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 146 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 147 | /** |
| 148 | * iscsi_prep_data_out_pdu - initialize Data-Out |
| 149 | * @task: scsi command task |
| 150 | * @r2t: R2T info |
| 151 | * @hdr: iscsi data in pdu |
| 152 | * |
| 153 | * Notes: |
| 154 | * Initialize Data-Out within this R2T sequence and finds |
| 155 | * proper data_offset within this SCSI command. |
| 156 | * |
| 157 | * This function is called with connection lock taken. |
| 158 | **/ |
| 159 | void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t, |
| 160 | struct iscsi_data *hdr) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 161 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 162 | struct iscsi_conn *conn = task->conn; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 163 | unsigned int left = r2t->data_length - r2t->sent; |
| 164 | |
| 165 | task->hdr_len = sizeof(struct iscsi_data); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 166 | |
| 167 | memset(hdr, 0, sizeof(struct iscsi_data)); |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 168 | hdr->ttt = r2t->ttt; |
| 169 | hdr->datasn = cpu_to_be32(r2t->datasn); |
| 170 | r2t->datasn++; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 171 | hdr->opcode = ISCSI_OP_SCSI_DATA_OUT; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 172 | memcpy(hdr->lun, task->lun, sizeof(hdr->lun)); |
| 173 | hdr->itt = task->hdr_itt; |
| 174 | hdr->exp_statsn = r2t->exp_statsn; |
| 175 | hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent); |
| 176 | if (left > conn->max_xmit_dlength) { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 177 | hton24(hdr->dlength, conn->max_xmit_dlength); |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 178 | r2t->data_count = conn->max_xmit_dlength; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 179 | hdr->flags = 0; |
| 180 | } else { |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 181 | hton24(hdr->dlength, left); |
| 182 | r2t->data_count = left; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 183 | hdr->flags = ISCSI_FLAG_CMD_FINAL; |
| 184 | } |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 185 | conn->dataout_pdus_cnt++; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 186 | } |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 187 | EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 188 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 189 | static int iscsi_add_hdr(struct iscsi_task *task, unsigned len) |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 190 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 191 | unsigned exp_len = task->hdr_len + len; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 192 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 193 | if (exp_len > task->hdr_max) { |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 194 | WARN_ON(1); |
| 195 | return -EINVAL; |
| 196 | } |
| 197 | |
| 198 | WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 199 | task->hdr_len = exp_len; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 200 | return 0; |
| 201 | } |
| 202 | |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 203 | /* |
| 204 | * make an extended cdb AHS |
| 205 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 206 | static int iscsi_prep_ecdb_ahs(struct iscsi_task *task) |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 207 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 208 | struct scsi_cmnd *cmd = task->sc; |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 209 | unsigned rlen, pad_len; |
| 210 | unsigned short ahslength; |
| 211 | struct iscsi_ecdb_ahdr *ecdb_ahdr; |
| 212 | int rc; |
| 213 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 214 | ecdb_ahdr = iscsi_next_hdr(task); |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 215 | rlen = cmd->cmd_len - ISCSI_CDB_SIZE; |
| 216 | |
| 217 | BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb)); |
| 218 | ahslength = rlen + sizeof(ecdb_ahdr->reserved); |
| 219 | |
| 220 | pad_len = iscsi_padding(rlen); |
| 221 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 222 | rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) + |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 223 | sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len); |
| 224 | if (rc) |
| 225 | return rc; |
| 226 | |
| 227 | if (pad_len) |
| 228 | memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len); |
| 229 | |
| 230 | ecdb_ahdr->ahslength = cpu_to_be16(ahslength); |
| 231 | ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB; |
| 232 | ecdb_ahdr->reserved = 0; |
| 233 | memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen); |
| 234 | |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 235 | ISCSI_DBG_SESSION(task->conn->session, |
| 236 | "iscsi_prep_ecdb_ahs: varlen_cdb_len %d " |
| 237 | "rlen %d pad_len %d ahs_length %d iscsi_headers_size " |
| 238 | "%u\n", cmd->cmd_len, rlen, pad_len, ahslength, |
| 239 | task->hdr_len); |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 240 | return 0; |
| 241 | } |
| 242 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 243 | static int iscsi_prep_bidi_ahs(struct iscsi_task *task) |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 244 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 245 | struct scsi_cmnd *sc = task->sc; |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 246 | struct iscsi_rlength_ahdr *rlen_ahdr; |
| 247 | int rc; |
| 248 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 249 | rlen_ahdr = iscsi_next_hdr(task); |
| 250 | rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr)); |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 251 | if (rc) |
| 252 | return rc; |
| 253 | |
| 254 | rlen_ahdr->ahslength = |
| 255 | cpu_to_be16(sizeof(rlen_ahdr->read_length) + |
| 256 | sizeof(rlen_ahdr->reserved)); |
| 257 | rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH; |
| 258 | rlen_ahdr->reserved = 0; |
| 259 | rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length); |
| 260 | |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 261 | ISCSI_DBG_SESSION(task->conn->session, |
| 262 | "bidi-in rlen_ahdr->read_length(%d) " |
| 263 | "rlen_ahdr->ahslength(%d)\n", |
| 264 | be32_to_cpu(rlen_ahdr->read_length), |
| 265 | be16_to_cpu(rlen_ahdr->ahslength)); |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 266 | return 0; |
| 267 | } |
| 268 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 269 | /** |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 270 | * iscsi_check_tmf_restrictions - check if a task is affected by TMF |
| 271 | * @task: iscsi task |
| 272 | * @opcode: opcode to check for |
| 273 | * |
| 274 | * During TMF a task has to be checked if it's affected. |
| 275 | * All unrelated I/O can be passed through, but I/O to the |
| 276 | * affected LUN should be restricted. |
| 277 | * If 'fast_abort' is set we won't be sending any I/O to the |
| 278 | * affected LUN. |
| 279 | * Otherwise the target is waiting for all TTTs to be completed, |
| 280 | * so we have to send all outstanding Data-Out PDUs to the target. |
| 281 | */ |
| 282 | static int iscsi_check_tmf_restrictions(struct iscsi_task *task, int opcode) |
| 283 | { |
| 284 | struct iscsi_conn *conn = task->conn; |
| 285 | struct iscsi_tm *tmf = &conn->tmhdr; |
| 286 | unsigned int hdr_lun; |
| 287 | |
| 288 | if (conn->tmf_state == TMF_INITIAL) |
| 289 | return 0; |
| 290 | |
| 291 | if ((tmf->opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_SCSI_TMFUNC) |
| 292 | return 0; |
| 293 | |
| 294 | switch (ISCSI_TM_FUNC_VALUE(tmf)) { |
| 295 | case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET: |
| 296 | /* |
| 297 | * Allow PDUs for unrelated LUNs |
| 298 | */ |
| 299 | hdr_lun = scsilun_to_int((struct scsi_lun *)tmf->lun); |
| 300 | if (hdr_lun != task->sc->device->lun) |
| 301 | return 0; |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 302 | /* fall through */ |
| 303 | case ISCSI_TM_FUNC_TARGET_WARM_RESET: |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 304 | /* |
| 305 | * Fail all SCSI cmd PDUs |
| 306 | */ |
| 307 | if (opcode != ISCSI_OP_SCSI_DATA_OUT) { |
| 308 | iscsi_conn_printk(KERN_INFO, conn, |
| 309 | "task [op %x/%x itt " |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 310 | "0x%x/0x%x] " |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 311 | "rejected.\n", |
| 312 | task->hdr->opcode, opcode, |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 313 | task->itt, task->hdr_itt); |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 314 | return -EACCES; |
| 315 | } |
| 316 | /* |
| 317 | * And also all data-out PDUs in response to R2T |
| 318 | * if fast_abort is set. |
| 319 | */ |
| 320 | if (conn->session->fast_abort) { |
| 321 | iscsi_conn_printk(KERN_INFO, conn, |
| 322 | "task [op %x/%x itt " |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 323 | "0x%x/0x%x] fast abort.\n", |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 324 | task->hdr->opcode, opcode, |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 325 | task->itt, task->hdr_itt); |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 326 | return -EACCES; |
| 327 | } |
| 328 | break; |
| 329 | case ISCSI_TM_FUNC_ABORT_TASK: |
| 330 | /* |
| 331 | * the caller has already checked if the task |
| 332 | * they want to abort was in the pending queue so if |
| 333 | * we are here the cmd pdu has gone out already, and |
| 334 | * we will only hit this for data-outs |
| 335 | */ |
| 336 | if (opcode == ISCSI_OP_SCSI_DATA_OUT && |
| 337 | task->hdr_itt == tmf->rtt) { |
| 338 | ISCSI_DBG_SESSION(conn->session, |
| 339 | "Preventing task %x/%x from sending " |
| 340 | "data-out due to abort task in " |
| 341 | "progress\n", task->itt, |
| 342 | task->hdr_itt); |
| 343 | return -EACCES; |
| 344 | } |
| 345 | break; |
| 346 | } |
| 347 | |
| 348 | return 0; |
| 349 | } |
| 350 | |
| 351 | /** |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 352 | * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 353 | * @task: iscsi task |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 354 | * |
| 355 | * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set |
| 356 | * fields like dlength or final based on how much data it sends |
| 357 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 358 | static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 359 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 360 | struct iscsi_conn *conn = task->conn; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 361 | struct iscsi_session *session = conn->session; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 362 | struct scsi_cmnd *sc = task->sc; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 363 | struct iscsi_cmd *hdr; |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 364 | unsigned hdrlength, cmd_len; |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 365 | itt_t itt; |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 366 | int rc; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 367 | |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 368 | rc = iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_CMD); |
| 369 | if (rc) |
| 370 | return rc; |
| 371 | |
Mike Christie | 184b57c | 2009-05-13 17:57:39 -0500 | [diff] [blame] | 372 | if (conn->session->tt->alloc_pdu) { |
| 373 | rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD); |
| 374 | if (rc) |
| 375 | return rc; |
| 376 | } |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 377 | hdr = (struct iscsi_cmd *) task->hdr; |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 378 | itt = hdr->itt; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 379 | memset(hdr, 0, sizeof(*hdr)); |
| 380 | |
Mike Christie | 2ff79d5 | 2008-12-02 00:32:14 -0600 | [diff] [blame] | 381 | if (session->tt->parse_pdu_itt) |
| 382 | hdr->itt = task->hdr_itt = itt; |
| 383 | else |
| 384 | hdr->itt = task->hdr_itt = build_itt(task->itt, |
| 385 | task->conn->session->age); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 386 | task->hdr_len = 0; |
| 387 | rc = iscsi_add_hdr(task, sizeof(*hdr)); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 388 | if (rc) |
| 389 | return rc; |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 390 | hdr->opcode = ISCSI_OP_SCSI_CMD; |
| 391 | hdr->flags = ISCSI_ATTR_SIMPLE; |
| 392 | int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun); |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 393 | memcpy(task->lun, hdr->lun, sizeof(task->lun)); |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 394 | hdr->exp_statsn = cpu_to_be32(conn->exp_statsn); |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 395 | cmd_len = sc->cmd_len; |
| 396 | if (cmd_len < ISCSI_CDB_SIZE) |
| 397 | memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len); |
| 398 | else if (cmd_len > ISCSI_CDB_SIZE) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 399 | rc = iscsi_prep_ecdb_ahs(task); |
Boaz Harrosh | 38d1c06 | 2008-04-18 10:11:51 -0500 | [diff] [blame] | 400 | if (rc) |
| 401 | return rc; |
| 402 | cmd_len = ISCSI_CDB_SIZE; |
| 403 | } |
| 404 | memcpy(hdr->cdb, sc->cmnd, cmd_len); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 405 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 406 | task->imm_count = 0; |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 407 | if (scsi_bidi_cmnd(sc)) { |
| 408 | hdr->flags |= ISCSI_FLAG_CMD_READ; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 409 | rc = iscsi_prep_bidi_ahs(task); |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 410 | if (rc) |
| 411 | return rc; |
| 412 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 413 | if (sc->sc_data_direction == DMA_TO_DEVICE) { |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 414 | unsigned out_len = scsi_out(sc)->length; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 415 | struct iscsi_r2t_info *r2t = &task->unsol_r2t; |
| 416 | |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 417 | hdr->data_length = cpu_to_be32(out_len); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 418 | hdr->flags |= ISCSI_FLAG_CMD_WRITE; |
| 419 | /* |
| 420 | * Write counters: |
| 421 | * |
| 422 | * imm_count bytes to be sent right after |
| 423 | * SCSI PDU Header |
| 424 | * |
| 425 | * unsol_count bytes(as Data-Out) to be sent |
| 426 | * without R2T ack right after |
| 427 | * immediate data |
| 428 | * |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 429 | * r2t data_length bytes to be sent via R2T ack's |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 430 | * |
| 431 | * pad_count bytes to be sent as zero-padding |
| 432 | */ |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 433 | memset(r2t, 0, sizeof(*r2t)); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 434 | |
| 435 | if (session->imm_data_en) { |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 436 | if (out_len >= session->first_burst) |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 437 | task->imm_count = min(session->first_burst, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 438 | conn->max_xmit_dlength); |
| 439 | else |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 440 | task->imm_count = min(out_len, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 441 | conn->max_xmit_dlength); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 442 | hton24(hdr->dlength, task->imm_count); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 443 | } else |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 444 | zero_data(hdr->dlength); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 445 | |
Mike Christie | ffd0436 | 2006-08-31 18:09:24 -0400 | [diff] [blame] | 446 | if (!session->initial_r2t_en) { |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 447 | r2t->data_length = min(session->first_burst, out_len) - |
| 448 | task->imm_count; |
| 449 | r2t->data_offset = task->imm_count; |
| 450 | r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG); |
| 451 | r2t->exp_statsn = cpu_to_be32(conn->exp_statsn); |
Mike Christie | ffd0436 | 2006-08-31 18:09:24 -0400 | [diff] [blame] | 452 | } |
| 453 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 454 | if (!task->unsol_r2t.data_length) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 455 | /* No unsolicit Data-Out's */ |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 456 | hdr->flags |= ISCSI_FLAG_CMD_FINAL; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 457 | } else { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 458 | hdr->flags |= ISCSI_FLAG_CMD_FINAL; |
| 459 | zero_data(hdr->dlength); |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 460 | hdr->data_length = cpu_to_be32(scsi_in(sc)->length); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 461 | |
| 462 | if (sc->sc_data_direction == DMA_FROM_DEVICE) |
| 463 | hdr->flags |= ISCSI_FLAG_CMD_READ; |
| 464 | } |
| 465 | |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 466 | /* calculate size of additional header segments (AHSs) */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 467 | hdrlength = task->hdr_len - sizeof(*hdr); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 468 | |
| 469 | WARN_ON(hdrlength & (ISCSI_PAD_LEN-1)); |
| 470 | hdrlength /= ISCSI_PAD_LEN; |
| 471 | |
| 472 | WARN_ON(hdrlength >= 256); |
| 473 | hdr->hlength = hdrlength & 0xFF; |
Mike Christie | 96b1f96 | 2010-04-24 16:21:19 -0500 | [diff] [blame] | 474 | hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 475 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 476 | if (session->tt->init_task && session->tt->init_task(task)) |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 477 | return -EIO; |
| 478 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 479 | task->state = ISCSI_TASK_RUNNING; |
Mike Christie | d3305f3 | 2009-08-20 15:10:58 -0500 | [diff] [blame] | 480 | session->cmdsn++; |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 481 | |
Olaf Kirch | a8ac631 | 2007-12-13 12:43:35 -0600 | [diff] [blame] | 482 | conn->scsicmd_pdus_cnt++; |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 483 | ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x " |
| 484 | "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n", |
| 485 | scsi_bidi_cmnd(sc) ? "bidirectional" : |
| 486 | sc->sc_data_direction == DMA_TO_DEVICE ? |
| 487 | "write" : "read", conn->id, sc, sc->cmnd[0], |
| 488 | task->itt, scsi_bufflen(sc), |
| 489 | scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0, |
| 490 | session->cmdsn, |
| 491 | session->max_cmdsn - session->exp_cmdsn + 1); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 492 | return 0; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 493 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 494 | |
| 495 | /** |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 496 | * iscsi_free_task - free a task |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 497 | * @task: iscsi cmd task |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 498 | * |
| 499 | * Must be called with session lock. |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 500 | * This function returns the scsi command to scsi-ml or cleans |
| 501 | * up mgmt tasks then returns the task to the pool. |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 502 | */ |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 503 | static void iscsi_free_task(struct iscsi_task *task) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 504 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 505 | struct iscsi_conn *conn = task->conn; |
Mike Christie | c1635cb | 2007-12-13 12:43:33 -0600 | [diff] [blame] | 506 | struct iscsi_session *session = conn->session; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 507 | struct scsi_cmnd *sc = task->sc; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 508 | |
Mike Christie | 4421c9e | 2009-05-13 17:57:50 -0500 | [diff] [blame] | 509 | ISCSI_DBG_SESSION(session, "freeing task itt 0x%x state %d sc %p\n", |
| 510 | task->itt, task->state, task->sc); |
| 511 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 512 | session->tt->cleanup_task(task); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 513 | task->state = ISCSI_TASK_FREE; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 514 | task->sc = NULL; |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 515 | /* |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 516 | * login task is preallocated so do not free |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 517 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 518 | if (conn->login_task == task) |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 519 | return; |
| 520 | |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 521 | kfifo_in(&session->cmdpool.queue, (void*)&task, sizeof(void*)); |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 522 | |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 523 | if (sc) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 524 | task->sc = NULL; |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 525 | /* SCSI eh reuses commands to verify us */ |
| 526 | sc->SCp.ptr = NULL; |
| 527 | /* |
| 528 | * queue command may call this to free the task, but |
| 529 | * not have setup the sc callback |
| 530 | */ |
| 531 | if (sc->scsi_done) |
| 532 | sc->scsi_done(sc); |
| 533 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 534 | } |
| 535 | |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 536 | void __iscsi_get_task(struct iscsi_task *task) |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 537 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 538 | atomic_inc(&task->refcount); |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 539 | } |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 540 | EXPORT_SYMBOL_GPL(__iscsi_get_task); |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 541 | |
Eddie Wai | 8eea2f5 | 2010-11-23 15:29:21 -0800 | [diff] [blame^] | 542 | void __iscsi_put_task(struct iscsi_task *task) |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 543 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 544 | if (atomic_dec_and_test(&task->refcount)) |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 545 | iscsi_free_task(task); |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 546 | } |
Eddie Wai | 8eea2f5 | 2010-11-23 15:29:21 -0800 | [diff] [blame^] | 547 | EXPORT_SYMBOL_GPL(__iscsi_put_task); |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 548 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 549 | void iscsi_put_task(struct iscsi_task *task) |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 550 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 551 | struct iscsi_session *session = task->conn->session; |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 552 | |
| 553 | spin_lock_bh(&session->lock); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 554 | __iscsi_put_task(task); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 555 | spin_unlock_bh(&session->lock); |
| 556 | } |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 557 | EXPORT_SYMBOL_GPL(iscsi_put_task); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 558 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 559 | /** |
| 560 | * iscsi_complete_task - finish a task |
| 561 | * @task: iscsi cmd task |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 562 | * @state: state to complete task with |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 563 | * |
| 564 | * Must be called with session lock. |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 565 | */ |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 566 | static void iscsi_complete_task(struct iscsi_task *task, int state) |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 567 | { |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 568 | struct iscsi_conn *conn = task->conn; |
| 569 | |
Mike Christie | 4421c9e | 2009-05-13 17:57:50 -0500 | [diff] [blame] | 570 | ISCSI_DBG_SESSION(conn->session, |
| 571 | "complete task itt 0x%x state %d sc %p\n", |
| 572 | task->itt, task->state, task->sc); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 573 | if (task->state == ISCSI_TASK_COMPLETED || |
| 574 | task->state == ISCSI_TASK_ABRT_TMF || |
| 575 | task->state == ISCSI_TASK_ABRT_SESS_RECOV) |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 576 | return; |
| 577 | WARN_ON_ONCE(task->state == ISCSI_TASK_FREE); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 578 | task->state = state; |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 579 | |
| 580 | if (!list_empty(&task->running)) |
| 581 | list_del_init(&task->running); |
| 582 | |
| 583 | if (conn->task == task) |
| 584 | conn->task = NULL; |
| 585 | |
| 586 | if (conn->ping_task == task) |
| 587 | conn->ping_task = NULL; |
| 588 | |
| 589 | /* release get from queueing */ |
| 590 | __iscsi_put_task(task); |
| 591 | } |
| 592 | |
Mike Christie | 4c0ba5d | 2009-09-05 07:34:23 +0530 | [diff] [blame] | 593 | /** |
| 594 | * iscsi_complete_scsi_task - finish scsi task normally |
| 595 | * @task: iscsi task for scsi cmd |
| 596 | * @exp_cmdsn: expected cmd sn in cpu format |
| 597 | * @max_cmdsn: max cmd sn in cpu format |
| 598 | * |
| 599 | * This is used when drivers do not need or cannot perform |
| 600 | * lower level pdu processing. |
| 601 | * |
| 602 | * Called with session lock |
| 603 | */ |
| 604 | void iscsi_complete_scsi_task(struct iscsi_task *task, |
| 605 | uint32_t exp_cmdsn, uint32_t max_cmdsn) |
| 606 | { |
| 607 | struct iscsi_conn *conn = task->conn; |
| 608 | |
| 609 | ISCSI_DBG_SESSION(conn->session, "[itt 0x%x]\n", task->itt); |
| 610 | |
| 611 | conn->last_recv = jiffies; |
| 612 | __iscsi_update_cmdsn(conn->session, exp_cmdsn, max_cmdsn); |
| 613 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
| 614 | } |
| 615 | EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task); |
| 616 | |
| 617 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 618 | /* |
| 619 | * session lock must be held and if not called for a task that is |
| 620 | * still pending or from the xmit thread, then xmit thread must |
| 621 | * be suspended. |
| 622 | */ |
| 623 | static void fail_scsi_task(struct iscsi_task *task, int err) |
| 624 | { |
| 625 | struct iscsi_conn *conn = task->conn; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 626 | struct scsi_cmnd *sc; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 627 | int state; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 628 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 629 | /* |
| 630 | * if a command completes and we get a successful tmf response |
| 631 | * we will hit this because the scsi eh abort code does not take |
| 632 | * a ref to the task. |
| 633 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 634 | sc = task->sc; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 635 | if (!sc) |
| 636 | return; |
| 637 | |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 638 | if (task->state == ISCSI_TASK_PENDING) { |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 639 | /* |
| 640 | * cmd never made it to the xmit thread, so we should not count |
| 641 | * the cmd in the sequencing |
| 642 | */ |
| 643 | conn->session->queued_cmdsn--; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 644 | /* it was never sent so just complete like normal */ |
| 645 | state = ISCSI_TASK_COMPLETED; |
| 646 | } else if (err == DID_TRANSPORT_DISRUPTED) |
| 647 | state = ISCSI_TASK_ABRT_SESS_RECOV; |
| 648 | else |
| 649 | state = ISCSI_TASK_ABRT_TMF; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 650 | |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 651 | sc->result = err << 16; |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 652 | if (!scsi_bidi_cmnd(sc)) |
| 653 | scsi_set_resid(sc, scsi_bufflen(sc)); |
| 654 | else { |
| 655 | scsi_out(sc)->resid = scsi_out(sc)->length; |
| 656 | scsi_in(sc)->resid = scsi_in(sc)->length; |
| 657 | } |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 658 | |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 659 | iscsi_complete_task(task, state); |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 660 | } |
| 661 | |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 662 | static int iscsi_prep_mgmt_task(struct iscsi_conn *conn, |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 663 | struct iscsi_task *task) |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 664 | { |
| 665 | struct iscsi_session *session = conn->session; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 666 | struct iscsi_hdr *hdr = task->hdr; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 667 | struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr; |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 668 | uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 669 | |
| 670 | if (conn->session->state == ISCSI_STATE_LOGGING_OUT) |
| 671 | return -ENOTCONN; |
| 672 | |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 673 | if (opcode != ISCSI_OP_LOGIN && opcode != ISCSI_OP_TEXT) |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 674 | nop->exp_statsn = cpu_to_be32(conn->exp_statsn); |
| 675 | /* |
| 676 | * pre-format CmdSN for outgoing PDU. |
| 677 | */ |
| 678 | nop->cmdsn = cpu_to_be32(session->cmdsn); |
| 679 | if (hdr->itt != RESERVED_ITT) { |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 680 | /* |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 681 | * TODO: We always use immediate for normal session pdus. |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 682 | * If we start to send tmfs or nops as non-immediate then |
| 683 | * we should start checking the cmdsn numbers for mgmt tasks. |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 684 | * |
| 685 | * During discovery sessions iscsid sends TEXT as non immediate, |
| 686 | * but we always only send one PDU at a time. |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 687 | */ |
| 688 | if (conn->c_stage == ISCSI_CONN_STARTED && |
| 689 | !(hdr->opcode & ISCSI_OP_IMMEDIATE)) { |
| 690 | session->queued_cmdsn++; |
| 691 | session->cmdsn++; |
| 692 | } |
| 693 | } |
| 694 | |
Mike Christie | ae15f80 | 2008-12-02 00:32:15 -0600 | [diff] [blame] | 695 | if (session->tt->init_task && session->tt->init_task(task)) |
| 696 | return -EIO; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 697 | |
| 698 | if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT) |
| 699 | session->state = ISCSI_STATE_LOGGING_OUT; |
| 700 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 701 | task->state = ISCSI_TASK_RUNNING; |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 702 | ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x " |
| 703 | "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK, |
| 704 | hdr->itt, task->data_count); |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 705 | return 0; |
| 706 | } |
| 707 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 708 | static struct iscsi_task * |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 709 | __iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 710 | char *data, uint32_t data_size) |
| 711 | { |
| 712 | struct iscsi_session *session = conn->session; |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 713 | struct iscsi_host *ihost = shost_priv(session->host); |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 714 | uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 715 | struct iscsi_task *task; |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 716 | itt_t itt; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 717 | |
| 718 | if (session->state == ISCSI_STATE_TERMINATE) |
| 719 | return NULL; |
| 720 | |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 721 | if (opcode == ISCSI_OP_LOGIN || opcode == ISCSI_OP_TEXT) { |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 722 | /* |
| 723 | * Login and Text are sent serially, in |
| 724 | * request-followed-by-response sequence. |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 725 | * Same task can be used. Same ITT must be used. |
| 726 | * Note that login_task is preallocated at conn_create(). |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 727 | */ |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 728 | if (conn->login_task->state != ISCSI_TASK_FREE) { |
| 729 | iscsi_conn_printk(KERN_ERR, conn, "Login/Text in " |
| 730 | "progress. Cannot start new task.\n"); |
| 731 | return NULL; |
| 732 | } |
| 733 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 734 | task = conn->login_task; |
Mike Christie | 4f704dc | 2009-11-11 16:34:31 -0600 | [diff] [blame] | 735 | } else { |
Mike Christie | 26013ad | 2009-05-13 17:57:43 -0500 | [diff] [blame] | 736 | if (session->state != ISCSI_STATE_LOGGED_IN) |
| 737 | return NULL; |
| 738 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 739 | BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE); |
| 740 | BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED); |
| 741 | |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 742 | if (!kfifo_out(&session->cmdpool.queue, |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 743 | (void*)&task, sizeof(void*))) |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 744 | return NULL; |
| 745 | } |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 746 | /* |
| 747 | * released in complete pdu for task we expect a response for, and |
| 748 | * released by the lld when it has transmitted the task for |
| 749 | * pdus we do not expect a response for. |
| 750 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 751 | atomic_set(&task->refcount, 1); |
| 752 | task->conn = conn; |
| 753 | task->sc = NULL; |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 754 | INIT_LIST_HEAD(&task->running); |
| 755 | task->state = ISCSI_TASK_PENDING; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 756 | |
| 757 | if (data_size) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 758 | memcpy(task->data, data, data_size); |
| 759 | task->data_count = data_size; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 760 | } else |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 761 | task->data_count = 0; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 762 | |
Mike Christie | 184b57c | 2009-05-13 17:57:39 -0500 | [diff] [blame] | 763 | if (conn->session->tt->alloc_pdu) { |
| 764 | if (conn->session->tt->alloc_pdu(task, hdr->opcode)) { |
| 765 | iscsi_conn_printk(KERN_ERR, conn, "Could not allocate " |
| 766 | "pdu for mgmt task.\n"); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 767 | goto free_task; |
Mike Christie | 184b57c | 2009-05-13 17:57:39 -0500 | [diff] [blame] | 768 | } |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 769 | } |
Mike Christie | 184b57c | 2009-05-13 17:57:39 -0500 | [diff] [blame] | 770 | |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 771 | itt = task->hdr->itt; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 772 | task->hdr_len = sizeof(struct iscsi_hdr); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 773 | memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr)); |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 774 | |
| 775 | if (hdr->itt != RESERVED_ITT) { |
| 776 | if (session->tt->parse_pdu_itt) |
| 777 | task->hdr->itt = itt; |
| 778 | else |
| 779 | task->hdr->itt = build_itt(task->itt, |
| 780 | task->conn->session->age); |
| 781 | } |
| 782 | |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 783 | if (!ihost->workq) { |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 784 | if (iscsi_prep_mgmt_task(conn, task)) |
| 785 | goto free_task; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 786 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 787 | if (session->tt->xmit_task(task)) |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 788 | goto free_task; |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 789 | } else { |
| 790 | list_add_tail(&task->running, &conn->mgmtqueue); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 791 | iscsi_conn_queue_work(conn); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 792 | } |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 793 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 794 | return task; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 795 | |
| 796 | free_task: |
| 797 | __iscsi_put_task(task); |
| 798 | return NULL; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 799 | } |
| 800 | |
| 801 | int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr, |
| 802 | char *data, uint32_t data_size) |
| 803 | { |
| 804 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 805 | struct iscsi_session *session = conn->session; |
| 806 | int err = 0; |
| 807 | |
| 808 | spin_lock_bh(&session->lock); |
| 809 | if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size)) |
| 810 | err = -EPERM; |
| 811 | spin_unlock_bh(&session->lock); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 812 | return err; |
| 813 | } |
| 814 | EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu); |
| 815 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 816 | /** |
| 817 | * iscsi_cmd_rsp - SCSI Command Response processing |
| 818 | * @conn: iscsi connection |
| 819 | * @hdr: iscsi header |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 820 | * @task: scsi command task |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 821 | * @data: cmd data buffer |
| 822 | * @datalen: len of buffer |
| 823 | * |
| 824 | * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 825 | * then completes the command and task. |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 826 | **/ |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 827 | static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 828 | struct iscsi_task *task, char *data, |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 829 | int datalen) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 830 | { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 831 | struct iscsi_cmd_rsp *rhdr = (struct iscsi_cmd_rsp *)hdr; |
| 832 | struct iscsi_session *session = conn->session; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 833 | struct scsi_cmnd *sc = task->sc; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 834 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 835 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 836 | conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1; |
| 837 | |
| 838 | sc->result = (DID_OK << 16) | rhdr->cmd_status; |
| 839 | |
| 840 | if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) { |
| 841 | sc->result = DID_ERROR << 16; |
| 842 | goto out; |
| 843 | } |
| 844 | |
| 845 | if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) { |
Mike Christie | 9b80cb4 | 2006-12-17 12:10:28 -0600 | [diff] [blame] | 846 | uint16_t senselen; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 847 | |
| 848 | if (datalen < 2) { |
| 849 | invalid_datalen: |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 850 | iscsi_conn_printk(KERN_ERR, conn, |
| 851 | "Got CHECK_CONDITION but invalid data " |
| 852 | "buffer size of %d\n", datalen); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 853 | sc->result = DID_BAD_TARGET << 16; |
| 854 | goto out; |
| 855 | } |
| 856 | |
Harvey Harrison | 8f33399 | 2008-05-21 15:54:20 -0500 | [diff] [blame] | 857 | senselen = get_unaligned_be16(data); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 858 | if (datalen < senselen) |
| 859 | goto invalid_datalen; |
| 860 | |
| 861 | memcpy(sc->sense_buffer, data + 2, |
Mike Christie | 9b80cb4 | 2006-12-17 12:10:28 -0600 | [diff] [blame] | 862 | min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE)); |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 863 | ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n", |
| 864 | min_t(uint16_t, senselen, |
| 865 | SCSI_SENSE_BUFFERSIZE)); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 866 | } |
| 867 | |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 868 | if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW | |
| 869 | ISCSI_FLAG_CMD_BIDI_OVERFLOW)) { |
| 870 | int res_count = be32_to_cpu(rhdr->bi_residual_count); |
| 871 | |
| 872 | if (scsi_bidi_cmnd(sc) && res_count > 0 && |
| 873 | (rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW || |
| 874 | res_count <= scsi_in(sc)->length)) |
| 875 | scsi_in(sc)->resid = res_count; |
| 876 | else |
| 877 | sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status; |
| 878 | } |
| 879 | |
Boaz Harrosh | 7207fea | 2007-12-13 12:43:22 -0600 | [diff] [blame] | 880 | if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW | |
| 881 | ISCSI_FLAG_CMD_OVERFLOW)) { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 882 | int res_count = be32_to_cpu(rhdr->residual_count); |
| 883 | |
Boaz Harrosh | 7207fea | 2007-12-13 12:43:22 -0600 | [diff] [blame] | 884 | if (res_count > 0 && |
| 885 | (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW || |
| 886 | res_count <= scsi_bufflen(sc))) |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 887 | /* write side for bidi or uni-io set_resid */ |
FUJITA Tomonori | 1c13899 | 2007-06-14 22:13:17 +0900 | [diff] [blame] | 888 | scsi_set_resid(sc, res_count); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 889 | else |
| 890 | sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status; |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 891 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 892 | out: |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 893 | ISCSI_DBG_SESSION(session, "cmd rsp done [sc %p res %d itt 0x%x]\n", |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 894 | sc, sc->result, task->itt); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 895 | conn->scsirsp_pdus_cnt++; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 896 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 897 | } |
| 898 | |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 899 | /** |
| 900 | * iscsi_data_in_rsp - SCSI Data-In Response processing |
| 901 | * @conn: iscsi connection |
| 902 | * @hdr: iscsi pdu |
| 903 | * @task: scsi command task |
| 904 | **/ |
| 905 | static void |
| 906 | iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 907 | struct iscsi_task *task) |
| 908 | { |
| 909 | struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr; |
| 910 | struct scsi_cmnd *sc = task->sc; |
| 911 | |
| 912 | if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS)) |
| 913 | return; |
| 914 | |
Mike Christie | edbc9aa05 | 2009-05-13 17:57:42 -0500 | [diff] [blame] | 915 | iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr); |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 916 | sc->result = (DID_OK << 16) | rhdr->cmd_status; |
| 917 | conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1; |
| 918 | if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW | |
| 919 | ISCSI_FLAG_DATA_OVERFLOW)) { |
| 920 | int res_count = be32_to_cpu(rhdr->residual_count); |
| 921 | |
| 922 | if (res_count > 0 && |
| 923 | (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW || |
| 924 | res_count <= scsi_in(sc)->length)) |
| 925 | scsi_in(sc)->resid = res_count; |
| 926 | else |
| 927 | sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status; |
| 928 | } |
| 929 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 930 | ISCSI_DBG_SESSION(conn->session, "data in with status done " |
| 931 | "[sc %p res %d itt 0x%x]\n", |
| 932 | sc, sc->result, task->itt); |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 933 | conn->scsirsp_pdus_cnt++; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 934 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 935 | } |
| 936 | |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 937 | static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr) |
| 938 | { |
| 939 | struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr; |
| 940 | |
| 941 | conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; |
| 942 | conn->tmfrsp_pdus_cnt++; |
| 943 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 944 | if (conn->tmf_state != TMF_QUEUED) |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 945 | return; |
| 946 | |
| 947 | if (tmf->response == ISCSI_TMF_RSP_COMPLETE) |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 948 | conn->tmf_state = TMF_SUCCESS; |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 949 | else if (tmf->response == ISCSI_TMF_RSP_NO_TASK) |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 950 | conn->tmf_state = TMF_NOT_FOUND; |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 951 | else |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 952 | conn->tmf_state = TMF_FAILED; |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 953 | wake_up(&conn->ehwait); |
| 954 | } |
| 955 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 956 | static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr) |
| 957 | { |
| 958 | struct iscsi_nopout hdr; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 959 | struct iscsi_task *task; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 960 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 961 | if (!rhdr && conn->ping_task) |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 962 | return; |
| 963 | |
| 964 | memset(&hdr, 0, sizeof(struct iscsi_nopout)); |
| 965 | hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE; |
| 966 | hdr.flags = ISCSI_FLAG_CMD_FINAL; |
| 967 | |
| 968 | if (rhdr) { |
| 969 | memcpy(hdr.lun, rhdr->lun, 8); |
| 970 | hdr.ttt = rhdr->ttt; |
| 971 | hdr.itt = RESERVED_ITT; |
| 972 | } else |
| 973 | hdr.ttt = RESERVED_ITT; |
| 974 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 975 | task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0); |
| 976 | if (!task) |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 977 | iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n"); |
Mike Christie | d3acf02 | 2008-12-01 12:13:00 -0600 | [diff] [blame] | 978 | else if (!rhdr) { |
| 979 | /* only track our nops */ |
| 980 | conn->ping_task = task; |
| 981 | conn->last_ping = jiffies; |
| 982 | } |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 983 | } |
| 984 | |
Mike Christie | 8afa143 | 2009-08-20 15:10:59 -0500 | [diff] [blame] | 985 | static int iscsi_nop_out_rsp(struct iscsi_task *task, |
| 986 | struct iscsi_nopin *nop, char *data, int datalen) |
| 987 | { |
| 988 | struct iscsi_conn *conn = task->conn; |
| 989 | int rc = 0; |
| 990 | |
| 991 | if (conn->ping_task != task) { |
| 992 | /* |
| 993 | * If this is not in response to one of our |
| 994 | * nops then it must be from userspace. |
| 995 | */ |
| 996 | if (iscsi_recv_pdu(conn->cls_conn, (struct iscsi_hdr *)nop, |
| 997 | data, datalen)) |
| 998 | rc = ISCSI_ERR_CONN_FAILED; |
| 999 | } else |
| 1000 | mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout); |
| 1001 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
| 1002 | return rc; |
| 1003 | } |
| 1004 | |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1005 | static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 1006 | char *data, int datalen) |
| 1007 | { |
| 1008 | struct iscsi_reject *reject = (struct iscsi_reject *)hdr; |
| 1009 | struct iscsi_hdr rejected_pdu; |
Mike Christie | 8afa143 | 2009-08-20 15:10:59 -0500 | [diff] [blame] | 1010 | int opcode, rc = 0; |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1011 | |
| 1012 | conn->exp_statsn = be32_to_cpu(reject->statsn) + 1; |
| 1013 | |
Mike Christie | 8afa143 | 2009-08-20 15:10:59 -0500 | [diff] [blame] | 1014 | if (ntoh24(reject->dlength) > datalen || |
| 1015 | ntoh24(reject->dlength) < sizeof(struct iscsi_hdr)) { |
| 1016 | iscsi_conn_printk(KERN_ERR, conn, "Cannot handle rejected " |
| 1017 | "pdu. Invalid data length (pdu dlength " |
| 1018 | "%u, datalen %d\n", ntoh24(reject->dlength), |
| 1019 | datalen); |
| 1020 | return ISCSI_ERR_PROTO; |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1021 | } |
Mike Christie | 8afa143 | 2009-08-20 15:10:59 -0500 | [diff] [blame] | 1022 | memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr)); |
| 1023 | opcode = rejected_pdu.opcode & ISCSI_OPCODE_MASK; |
| 1024 | |
| 1025 | switch (reject->reason) { |
| 1026 | case ISCSI_REASON_DATA_DIGEST_ERROR: |
| 1027 | iscsi_conn_printk(KERN_ERR, conn, |
| 1028 | "pdu (op 0x%x itt 0x%x) rejected " |
| 1029 | "due to DataDigest error.\n", |
| 1030 | rejected_pdu.itt, opcode); |
| 1031 | break; |
| 1032 | case ISCSI_REASON_IMM_CMD_REJECT: |
| 1033 | iscsi_conn_printk(KERN_ERR, conn, |
| 1034 | "pdu (op 0x%x itt 0x%x) rejected. Too many " |
| 1035 | "immediate commands.\n", |
| 1036 | rejected_pdu.itt, opcode); |
| 1037 | /* |
| 1038 | * We only send one TMF at a time so if the target could not |
| 1039 | * handle it, then it should get fixed (RFC mandates that |
| 1040 | * a target can handle one immediate TMF per conn). |
| 1041 | * |
| 1042 | * For nops-outs, we could have sent more than one if |
| 1043 | * the target is sending us lots of nop-ins |
| 1044 | */ |
| 1045 | if (opcode != ISCSI_OP_NOOP_OUT) |
| 1046 | return 0; |
| 1047 | |
| 1048 | if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) |
| 1049 | /* |
| 1050 | * nop-out in response to target's nop-out rejected. |
| 1051 | * Just resend. |
| 1052 | */ |
| 1053 | iscsi_send_nopout(conn, |
| 1054 | (struct iscsi_nopin*)&rejected_pdu); |
| 1055 | else { |
| 1056 | struct iscsi_task *task; |
| 1057 | /* |
| 1058 | * Our nop as ping got dropped. We know the target |
| 1059 | * and transport are ok so just clean up |
| 1060 | */ |
| 1061 | task = iscsi_itt_to_task(conn, rejected_pdu.itt); |
| 1062 | if (!task) { |
| 1063 | iscsi_conn_printk(KERN_ERR, conn, |
| 1064 | "Invalid pdu reject. Could " |
| 1065 | "not lookup rejected task.\n"); |
| 1066 | rc = ISCSI_ERR_BAD_ITT; |
| 1067 | } else |
| 1068 | rc = iscsi_nop_out_rsp(task, |
| 1069 | (struct iscsi_nopin*)&rejected_pdu, |
| 1070 | NULL, 0); |
| 1071 | } |
| 1072 | break; |
| 1073 | default: |
| 1074 | iscsi_conn_printk(KERN_ERR, conn, |
| 1075 | "pdu (op 0x%x itt 0x%x) rejected. Reason " |
| 1076 | "code 0x%x\n", rejected_pdu.itt, |
| 1077 | rejected_pdu.opcode, reject->reason); |
| 1078 | break; |
| 1079 | } |
| 1080 | return rc; |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1081 | } |
| 1082 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1083 | /** |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1084 | * iscsi_itt_to_task - look up task by itt |
| 1085 | * @conn: iscsi connection |
| 1086 | * @itt: itt |
| 1087 | * |
| 1088 | * This should be used for mgmt tasks like login and nops, or if |
| 1089 | * the LDD's itt space does not include the session age. |
| 1090 | * |
| 1091 | * The session lock must be held. |
| 1092 | */ |
Mike Christie | 8f9256c | 2009-05-13 17:57:41 -0500 | [diff] [blame] | 1093 | struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt) |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1094 | { |
| 1095 | struct iscsi_session *session = conn->session; |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 1096 | int i; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1097 | |
| 1098 | if (itt == RESERVED_ITT) |
| 1099 | return NULL; |
| 1100 | |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 1101 | if (session->tt->parse_pdu_itt) |
| 1102 | session->tt->parse_pdu_itt(conn, itt, &i, NULL); |
| 1103 | else |
| 1104 | i = get_itt(itt); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1105 | if (i >= session->cmds_max) |
| 1106 | return NULL; |
| 1107 | |
| 1108 | return session->cmds[i]; |
| 1109 | } |
Mike Christie | 8f9256c | 2009-05-13 17:57:41 -0500 | [diff] [blame] | 1110 | EXPORT_SYMBOL_GPL(iscsi_itt_to_task); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1111 | |
| 1112 | /** |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1113 | * __iscsi_complete_pdu - complete pdu |
| 1114 | * @conn: iscsi conn |
| 1115 | * @hdr: iscsi header |
| 1116 | * @data: data buffer |
| 1117 | * @datalen: len of data buffer |
| 1118 | * |
| 1119 | * Completes pdu processing by freeing any resources allocated at |
| 1120 | * queuecommand or send generic. session lock must be held and verify |
| 1121 | * itt must have been called. |
| 1122 | */ |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1123 | int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 1124 | char *data, int datalen) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1125 | { |
| 1126 | struct iscsi_session *session = conn->session; |
| 1127 | int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1128 | struct iscsi_task *task; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1129 | uint32_t itt; |
| 1130 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1131 | conn->last_recv = jiffies; |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1132 | rc = iscsi_verify_itt(conn, hdr->itt); |
| 1133 | if (rc) |
| 1134 | return rc; |
| 1135 | |
Al Viro | b437735 | 2007-02-09 16:39:40 +0000 | [diff] [blame] | 1136 | if (hdr->itt != RESERVED_ITT) |
| 1137 | itt = get_itt(hdr->itt); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1138 | else |
Al Viro | b437735 | 2007-02-09 16:39:40 +0000 | [diff] [blame] | 1139 | itt = ~0U; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1140 | |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 1141 | ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n", |
| 1142 | opcode, conn->id, itt, datalen); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1143 | |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1144 | if (itt == ~0U) { |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1145 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr); |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1146 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1147 | switch(opcode) { |
| 1148 | case ISCSI_OP_NOOP_IN: |
Mike Christie | 40527af | 2006-07-24 15:47:45 -0500 | [diff] [blame] | 1149 | if (datalen) { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1150 | rc = ISCSI_ERR_PROTO; |
Mike Christie | 40527af | 2006-07-24 15:47:45 -0500 | [diff] [blame] | 1151 | break; |
| 1152 | } |
| 1153 | |
Al Viro | b437735 | 2007-02-09 16:39:40 +0000 | [diff] [blame] | 1154 | if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG)) |
Mike Christie | 40527af | 2006-07-24 15:47:45 -0500 | [diff] [blame] | 1155 | break; |
| 1156 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1157 | iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1158 | break; |
| 1159 | case ISCSI_OP_REJECT: |
Mike Christie | 62f3830 | 2006-08-31 18:09:27 -0400 | [diff] [blame] | 1160 | rc = iscsi_handle_reject(conn, hdr, data, datalen); |
| 1161 | break; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1162 | case ISCSI_OP_ASYNC_EVENT: |
Mike Christie | 8d2860b | 2006-05-02 19:46:47 -0500 | [diff] [blame] | 1163 | conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; |
Mike Christie | 5831c73 | 2006-10-16 18:09:41 -0400 | [diff] [blame] | 1164 | if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen)) |
| 1165 | rc = ISCSI_ERR_CONN_FAILED; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1166 | break; |
| 1167 | default: |
| 1168 | rc = ISCSI_ERR_BAD_OPCODE; |
| 1169 | break; |
| 1170 | } |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1171 | goto out; |
| 1172 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1173 | |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1174 | switch(opcode) { |
| 1175 | case ISCSI_OP_SCSI_CMD_RSP: |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1176 | case ISCSI_OP_SCSI_DATA_IN: |
| 1177 | task = iscsi_itt_to_ctask(conn, hdr->itt); |
| 1178 | if (!task) |
| 1179 | return ISCSI_ERR_BAD_ITT; |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1180 | task->last_xfer = jiffies; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1181 | break; |
| 1182 | case ISCSI_OP_R2T: |
| 1183 | /* |
| 1184 | * LLD handles R2Ts if they need to. |
| 1185 | */ |
| 1186 | return 0; |
| 1187 | case ISCSI_OP_LOGOUT_RSP: |
| 1188 | case ISCSI_OP_LOGIN_RSP: |
| 1189 | case ISCSI_OP_TEXT_RSP: |
| 1190 | case ISCSI_OP_SCSI_TMFUNC_RSP: |
| 1191 | case ISCSI_OP_NOOP_IN: |
| 1192 | task = iscsi_itt_to_task(conn, hdr->itt); |
| 1193 | if (!task) |
| 1194 | return ISCSI_ERR_BAD_ITT; |
| 1195 | break; |
| 1196 | default: |
| 1197 | return ISCSI_ERR_BAD_OPCODE; |
| 1198 | } |
| 1199 | |
| 1200 | switch(opcode) { |
| 1201 | case ISCSI_OP_SCSI_CMD_RSP: |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1202 | iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1203 | break; |
| 1204 | case ISCSI_OP_SCSI_DATA_IN: |
Mike Christie | 1d9edf0 | 2008-09-24 11:46:09 -0500 | [diff] [blame] | 1205 | iscsi_data_in_rsp(conn, hdr, task); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1206 | break; |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1207 | case ISCSI_OP_LOGOUT_RSP: |
| 1208 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr); |
| 1209 | if (datalen) { |
| 1210 | rc = ISCSI_ERR_PROTO; |
| 1211 | break; |
| 1212 | } |
| 1213 | conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; |
| 1214 | goto recv_pdu; |
| 1215 | case ISCSI_OP_LOGIN_RSP: |
| 1216 | case ISCSI_OP_TEXT_RSP: |
| 1217 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr); |
| 1218 | /* |
| 1219 | * login related PDU's exp_statsn is handled in |
| 1220 | * userspace |
| 1221 | */ |
| 1222 | goto recv_pdu; |
| 1223 | case ISCSI_OP_SCSI_TMFUNC_RSP: |
| 1224 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr); |
| 1225 | if (datalen) { |
| 1226 | rc = ISCSI_ERR_PROTO; |
| 1227 | break; |
| 1228 | } |
| 1229 | |
| 1230 | iscsi_tmf_rsp(conn, hdr); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1231 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1232 | break; |
| 1233 | case ISCSI_OP_NOOP_IN: |
| 1234 | iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr); |
| 1235 | if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) { |
| 1236 | rc = ISCSI_ERR_PROTO; |
| 1237 | break; |
| 1238 | } |
| 1239 | conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1; |
| 1240 | |
Mike Christie | 8afa143 | 2009-08-20 15:10:59 -0500 | [diff] [blame] | 1241 | rc = iscsi_nop_out_rsp(task, (struct iscsi_nopin*)hdr, |
| 1242 | data, datalen); |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1243 | break; |
| 1244 | default: |
| 1245 | rc = ISCSI_ERR_BAD_OPCODE; |
| 1246 | break; |
| 1247 | } |
| 1248 | |
| 1249 | out: |
| 1250 | return rc; |
| 1251 | recv_pdu: |
| 1252 | if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen)) |
| 1253 | rc = ISCSI_ERR_CONN_FAILED; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1254 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1255 | return rc; |
| 1256 | } |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1257 | EXPORT_SYMBOL_GPL(__iscsi_complete_pdu); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1258 | |
| 1259 | int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr, |
| 1260 | char *data, int datalen) |
| 1261 | { |
| 1262 | int rc; |
| 1263 | |
| 1264 | spin_lock(&conn->session->lock); |
| 1265 | rc = __iscsi_complete_pdu(conn, hdr, data, datalen); |
| 1266 | spin_unlock(&conn->session->lock); |
| 1267 | return rc; |
| 1268 | } |
| 1269 | EXPORT_SYMBOL_GPL(iscsi_complete_pdu); |
| 1270 | |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1271 | int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1272 | { |
| 1273 | struct iscsi_session *session = conn->session; |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 1274 | int age = 0, i = 0; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1275 | |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1276 | if (itt == RESERVED_ITT) |
| 1277 | return 0; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1278 | |
Mike Christie | 262ef63 | 2008-12-02 00:32:13 -0600 | [diff] [blame] | 1279 | if (session->tt->parse_pdu_itt) |
| 1280 | session->tt->parse_pdu_itt(conn, itt, &i, &age); |
| 1281 | else { |
| 1282 | i = get_itt(itt); |
| 1283 | age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK; |
| 1284 | } |
| 1285 | |
| 1286 | if (age != session->age) { |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1287 | iscsi_conn_printk(KERN_ERR, conn, |
| 1288 | "received itt %x expected session age (%x)\n", |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1289 | (__force u32)itt, session->age); |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1290 | return ISCSI_ERR_BAD_ITT; |
| 1291 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1292 | |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 1293 | if (i >= session->cmds_max) { |
| 1294 | iscsi_conn_printk(KERN_ERR, conn, |
| 1295 | "received invalid itt index %u (max cmds " |
| 1296 | "%u.\n", i, session->cmds_max); |
| 1297 | return ISCSI_ERR_BAD_ITT; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1298 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1299 | return 0; |
| 1300 | } |
| 1301 | EXPORT_SYMBOL_GPL(iscsi_verify_itt); |
| 1302 | |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1303 | /** |
| 1304 | * iscsi_itt_to_ctask - look up ctask by itt |
| 1305 | * @conn: iscsi connection |
| 1306 | * @itt: itt |
| 1307 | * |
| 1308 | * This should be used for cmd tasks. |
| 1309 | * |
| 1310 | * The session lock must be held. |
| 1311 | */ |
| 1312 | struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt) |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1313 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1314 | struct iscsi_task *task; |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1315 | |
| 1316 | if (iscsi_verify_itt(conn, itt)) |
| 1317 | return NULL; |
| 1318 | |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1319 | task = iscsi_itt_to_task(conn, itt); |
| 1320 | if (!task || !task->sc) |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1321 | return NULL; |
| 1322 | |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1323 | if (task->sc->SCp.phase != conn->session->age) { |
| 1324 | iscsi_session_printk(KERN_ERR, conn->session, |
| 1325 | "task's session age %d, expected %d\n", |
| 1326 | task->sc->SCp.phase, conn->session->age); |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1327 | return NULL; |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 1328 | } |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1329 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1330 | return task; |
Mike Christie | 0af967f | 2008-05-21 15:54:04 -0500 | [diff] [blame] | 1331 | } |
| 1332 | EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask); |
| 1333 | |
Mike Christie | 40a06e7 | 2009-03-05 14:46:05 -0600 | [diff] [blame] | 1334 | void iscsi_session_failure(struct iscsi_session *session, |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 1335 | enum iscsi_err err) |
| 1336 | { |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 1337 | struct iscsi_conn *conn; |
| 1338 | struct device *dev; |
| 1339 | unsigned long flags; |
| 1340 | |
| 1341 | spin_lock_irqsave(&session->lock, flags); |
| 1342 | conn = session->leadconn; |
| 1343 | if (session->state == ISCSI_STATE_TERMINATE || !conn) { |
| 1344 | spin_unlock_irqrestore(&session->lock, flags); |
| 1345 | return; |
| 1346 | } |
| 1347 | |
| 1348 | dev = get_device(&conn->cls_conn->dev); |
| 1349 | spin_unlock_irqrestore(&session->lock, flags); |
| 1350 | if (!dev) |
| 1351 | return; |
| 1352 | /* |
| 1353 | * if the host is being removed bypass the connection |
| 1354 | * recovery initialization because we are going to kill |
| 1355 | * the session. |
| 1356 | */ |
| 1357 | if (err == ISCSI_ERR_INVALID_HOST) |
| 1358 | iscsi_conn_error_event(conn->cls_conn, err); |
| 1359 | else |
| 1360 | iscsi_conn_failure(conn, err); |
| 1361 | put_device(dev); |
| 1362 | } |
| 1363 | EXPORT_SYMBOL_GPL(iscsi_session_failure); |
| 1364 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1365 | void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err) |
| 1366 | { |
| 1367 | struct iscsi_session *session = conn->session; |
| 1368 | unsigned long flags; |
| 1369 | |
| 1370 | spin_lock_irqsave(&session->lock, flags); |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1371 | if (session->state == ISCSI_STATE_FAILED) { |
| 1372 | spin_unlock_irqrestore(&session->lock, flags); |
| 1373 | return; |
| 1374 | } |
| 1375 | |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 1376 | if (conn->stop_stage == 0) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1377 | session->state = ISCSI_STATE_FAILED; |
| 1378 | spin_unlock_irqrestore(&session->lock, flags); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 1379 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1380 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); |
| 1381 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 1382 | iscsi_conn_error_event(conn->cls_conn, err); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1383 | } |
| 1384 | EXPORT_SYMBOL_GPL(iscsi_conn_failure); |
| 1385 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1386 | static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn) |
| 1387 | { |
| 1388 | struct iscsi_session *session = conn->session; |
| 1389 | |
| 1390 | /* |
| 1391 | * Check for iSCSI window and take care of CmdSN wrap-around |
| 1392 | */ |
Mike Christie | e072640 | 2007-07-26 12:46:48 -0500 | [diff] [blame] | 1393 | if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) { |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 1394 | ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn " |
| 1395 | "%u MaxCmdSN %u CmdSN %u/%u\n", |
| 1396 | session->exp_cmdsn, session->max_cmdsn, |
| 1397 | session->cmdsn, session->queued_cmdsn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1398 | return -ENOSPC; |
| 1399 | } |
| 1400 | return 0; |
| 1401 | } |
| 1402 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1403 | static int iscsi_xmit_task(struct iscsi_conn *conn) |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1404 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1405 | struct iscsi_task *task = conn->task; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1406 | int rc; |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1407 | |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1408 | if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) |
| 1409 | return -ENODATA; |
| 1410 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1411 | __iscsi_get_task(task); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1412 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1413 | rc = conn->session->tt->xmit_task(task); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1414 | spin_lock_bh(&conn->session->lock); |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1415 | if (!rc) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1416 | /* done with this task */ |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1417 | task->last_xfer = jiffies; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1418 | conn->task = NULL; |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1419 | } |
| 1420 | __iscsi_put_task(task); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1421 | return rc; |
| 1422 | } |
| 1423 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1424 | /** |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1425 | * iscsi_requeue_task - requeue task to run from session workqueue |
| 1426 | * @task: task to requeue |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1427 | * |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1428 | * LLDs that need to run a task from the session workqueue should call |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1429 | * this. The session lock must be held. This should only be called |
| 1430 | * by software drivers. |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1431 | */ |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1432 | void iscsi_requeue_task(struct iscsi_task *task) |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1433 | { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1434 | struct iscsi_conn *conn = task->conn; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1435 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1436 | /* |
| 1437 | * this may be on the requeue list already if the xmit_task callout |
| 1438 | * is handling the r2ts while we are adding new ones |
| 1439 | */ |
| 1440 | if (list_empty(&task->running)) |
| 1441 | list_add_tail(&task->running, &conn->requeue); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 1442 | iscsi_conn_queue_work(conn); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1443 | } |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1444 | EXPORT_SYMBOL_GPL(iscsi_requeue_task); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1445 | |
| 1446 | /** |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1447 | * iscsi_data_xmit - xmit any command into the scheduled connection |
| 1448 | * @conn: iscsi connection |
| 1449 | * |
| 1450 | * Notes: |
| 1451 | * The function can return -EAGAIN in which case the caller must |
| 1452 | * re-schedule it again later or recover. '0' return code means |
| 1453 | * successful xmit. |
| 1454 | **/ |
| 1455 | static int iscsi_data_xmit(struct iscsi_conn *conn) |
| 1456 | { |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 1457 | struct iscsi_task *task; |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1458 | int rc = 0; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1459 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1460 | spin_lock_bh(&conn->session->lock); |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1461 | if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 1462 | ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n"); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1463 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1464 | return -ENODATA; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1465 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1466 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1467 | if (conn->task) { |
| 1468 | rc = iscsi_xmit_task(conn); |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1469 | if (rc) |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1470 | goto done; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1471 | } |
| 1472 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1473 | /* |
| 1474 | * process mgmt pdus like nops before commands since we should |
| 1475 | * only have one nop-out as a ping from us and targets should not |
| 1476 | * overflow us with nop-ins |
| 1477 | */ |
| 1478 | check_mgmt: |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1479 | while (!list_empty(&conn->mgmtqueue)) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1480 | conn->task = list_entry(conn->mgmtqueue.next, |
| 1481 | struct iscsi_task, running); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1482 | list_del_init(&conn->task->running); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1483 | if (iscsi_prep_mgmt_task(conn, conn->task)) { |
| 1484 | __iscsi_put_task(conn->task); |
| 1485 | conn->task = NULL; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1486 | continue; |
| 1487 | } |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1488 | rc = iscsi_xmit_task(conn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1489 | if (rc) |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1490 | goto done; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1491 | } |
| 1492 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1493 | /* process pending command queue */ |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1494 | while (!list_empty(&conn->cmdqueue)) { |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 1495 | conn->task = list_entry(conn->cmdqueue.next, struct iscsi_task, |
| 1496 | running); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1497 | list_del_init(&conn->task->running); |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1498 | if (conn->session->state == ISCSI_STATE_LOGGING_OUT) { |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1499 | fail_scsi_task(conn->task, DID_IMM_RETRY); |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1500 | continue; |
| 1501 | } |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1502 | rc = iscsi_prep_scsi_cmd_pdu(conn->task); |
| 1503 | if (rc) { |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 1504 | if (rc == -ENOMEM || rc == -EACCES) { |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1505 | list_add_tail(&conn->task->running, |
| 1506 | &conn->cmdqueue); |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1507 | conn->task = NULL; |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1508 | goto done; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1509 | } else |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1510 | fail_scsi_task(conn->task, DID_ABORT); |
Boaz Harrosh | 004d653 | 2007-12-13 12:43:23 -0600 | [diff] [blame] | 1511 | continue; |
| 1512 | } |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1513 | rc = iscsi_xmit_task(conn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1514 | if (rc) |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1515 | goto done; |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1516 | /* |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1517 | * we could continuously get new task requests so |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1518 | * we need to check the mgmt queue for nops that need to |
| 1519 | * be sent to aviod starvation |
| 1520 | */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1521 | if (!list_empty(&conn->mgmtqueue)) |
| 1522 | goto check_mgmt; |
| 1523 | } |
| 1524 | |
| 1525 | while (!list_empty(&conn->requeue)) { |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1526 | /* |
| 1527 | * we always do fastlogout - conn stop code will clean up. |
| 1528 | */ |
| 1529 | if (conn->session->state == ISCSI_STATE_LOGGING_OUT) |
| 1530 | break; |
| 1531 | |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 1532 | task = list_entry(conn->requeue.next, struct iscsi_task, |
| 1533 | running); |
| 1534 | if (iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_DATA_OUT)) |
| 1535 | break; |
| 1536 | |
| 1537 | conn->task = task; |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1538 | list_del_init(&conn->task->running); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1539 | conn->task->state = ISCSI_TASK_RUNNING; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1540 | rc = iscsi_xmit_task(conn); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1541 | if (rc) |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1542 | goto done; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1543 | if (!list_empty(&conn->mgmtqueue)) |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1544 | goto check_mgmt; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1545 | } |
Mike Christie | b6c395e | 2006-07-24 15:47:15 -0500 | [diff] [blame] | 1546 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1547 | return -ENODATA; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1548 | |
Mike Christie | 70b31c1 | 2009-08-20 15:11:03 -0500 | [diff] [blame] | 1549 | done: |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1550 | spin_unlock_bh(&conn->session->lock); |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1551 | return rc; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1552 | } |
| 1553 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1554 | static void iscsi_xmitworker(struct work_struct *work) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1555 | { |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 1556 | struct iscsi_conn *conn = |
| 1557 | container_of(work, struct iscsi_conn, xmitwork); |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1558 | int rc; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1559 | /* |
| 1560 | * serialize Xmit worker on a per-connection basis. |
| 1561 | */ |
Mike Christie | 3219e52 | 2006-05-30 00:37:28 -0500 | [diff] [blame] | 1562 | do { |
| 1563 | rc = iscsi_data_xmit(conn); |
| 1564 | } while (rc >= 0 || rc == -EAGAIN); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1565 | } |
| 1566 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1567 | static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn, |
| 1568 | struct scsi_cmnd *sc) |
| 1569 | { |
| 1570 | struct iscsi_task *task; |
| 1571 | |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 1572 | if (!kfifo_out(&conn->session->cmdpool.queue, |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1573 | (void *) &task, sizeof(void *))) |
| 1574 | return NULL; |
| 1575 | |
| 1576 | sc->SCp.phase = conn->session->age; |
| 1577 | sc->SCp.ptr = (char *) task; |
| 1578 | |
| 1579 | atomic_set(&task->refcount, 1); |
| 1580 | task->state = ISCSI_TASK_PENDING; |
| 1581 | task->conn = conn; |
| 1582 | task->sc = sc; |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1583 | task->have_checked_conn = false; |
| 1584 | task->last_timeout = jiffies; |
| 1585 | task->last_xfer = jiffies; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1586 | INIT_LIST_HEAD(&task->running); |
| 1587 | return task; |
| 1588 | } |
| 1589 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1590 | enum { |
| 1591 | FAILURE_BAD_HOST = 1, |
| 1592 | FAILURE_SESSION_FAILED, |
| 1593 | FAILURE_SESSION_FREED, |
| 1594 | FAILURE_WINDOW_CLOSED, |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 1595 | FAILURE_OOM, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1596 | FAILURE_SESSION_TERMINATE, |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1597 | FAILURE_SESSION_IN_RECOVERY, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1598 | FAILURE_SESSION_RECOVERY_TIMEOUT, |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1599 | FAILURE_SESSION_LOGGING_OUT, |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 1600 | FAILURE_SESSION_NOT_READY, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1601 | }; |
| 1602 | |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 1603 | static int iscsi_queuecommand_lck(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *)) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1604 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1605 | struct iscsi_cls_session *cls_session; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1606 | struct Scsi_Host *host; |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 1607 | struct iscsi_host *ihost; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1608 | int reason = 0; |
| 1609 | struct iscsi_session *session; |
| 1610 | struct iscsi_conn *conn; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1611 | struct iscsi_task *task = NULL; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1612 | |
| 1613 | sc->scsi_done = done; |
| 1614 | sc->result = 0; |
Mike Christie | f47f2cf | 2006-08-31 18:09:33 -0400 | [diff] [blame] | 1615 | sc->SCp.ptr = NULL; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1616 | |
| 1617 | host = sc->device->host; |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 1618 | ihost = shost_priv(host); |
Mike Christie | 1040c99 | 2007-12-13 12:43:34 -0600 | [diff] [blame] | 1619 | spin_unlock(host->host_lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1620 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1621 | cls_session = starget_to_session(scsi_target(sc->device)); |
| 1622 | session = cls_session->dd_data; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1623 | spin_lock(&session->lock); |
| 1624 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1625 | reason = iscsi_session_chkready(cls_session); |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 1626 | if (reason) { |
| 1627 | sc->result = reason; |
| 1628 | goto fault; |
| 1629 | } |
| 1630 | |
Mike Christie | 301e0f7 | 2009-05-13 17:57:47 -0500 | [diff] [blame] | 1631 | if (session->state != ISCSI_STATE_LOGGED_IN) { |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1632 | /* |
| 1633 | * to handle the race between when we set the recovery state |
| 1634 | * and block the session we requeue here (commands could |
| 1635 | * be entering our queuecommand while a block is starting |
| 1636 | * up because the block code is not locked) |
| 1637 | */ |
Mike Christie | 9000bcd | 2007-12-13 12:43:32 -0600 | [diff] [blame] | 1638 | switch (session->state) { |
Mike Christie | 301e0f7 | 2009-05-13 17:57:47 -0500 | [diff] [blame] | 1639 | case ISCSI_STATE_FAILED: |
Mike Christie | 9000bcd | 2007-12-13 12:43:32 -0600 | [diff] [blame] | 1640 | case ISCSI_STATE_IN_RECOVERY: |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1641 | reason = FAILURE_SESSION_IN_RECOVERY; |
Mike Christie | 301e0f7 | 2009-05-13 17:57:47 -0500 | [diff] [blame] | 1642 | sc->result = DID_IMM_RETRY << 16; |
| 1643 | break; |
Mike Christie | 9000bcd | 2007-12-13 12:43:32 -0600 | [diff] [blame] | 1644 | case ISCSI_STATE_LOGGING_OUT: |
| 1645 | reason = FAILURE_SESSION_LOGGING_OUT; |
Mike Christie | 301e0f7 | 2009-05-13 17:57:47 -0500 | [diff] [blame] | 1646 | sc->result = DID_IMM_RETRY << 16; |
| 1647 | break; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1648 | case ISCSI_STATE_RECOVERY_FAILED: |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1649 | reason = FAILURE_SESSION_RECOVERY_TIMEOUT; |
Mike Christie | 56d7fcf | 2008-08-19 18:45:26 -0500 | [diff] [blame] | 1650 | sc->result = DID_TRANSPORT_FAILFAST << 16; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1651 | break; |
| 1652 | case ISCSI_STATE_TERMINATE: |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1653 | reason = FAILURE_SESSION_TERMINATE; |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 1654 | sc->result = DID_NO_CONNECT << 16; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1655 | break; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1656 | default: |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 1657 | reason = FAILURE_SESSION_FREED; |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 1658 | sc->result = DID_NO_CONNECT << 16; |
Mike Christie | b3a7ea8 | 2007-12-13 12:43:26 -0600 | [diff] [blame] | 1659 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1660 | goto fault; |
| 1661 | } |
| 1662 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1663 | conn = session->leadconn; |
Mike Christie | 9864404 | 2006-10-16 18:09:39 -0400 | [diff] [blame] | 1664 | if (!conn) { |
| 1665 | reason = FAILURE_SESSION_FREED; |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 1666 | sc->result = DID_NO_CONNECT << 16; |
Mike Christie | 9864404 | 2006-10-16 18:09:39 -0400 | [diff] [blame] | 1667 | goto fault; |
| 1668 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1669 | |
Mike Christie | 661134a | 2009-09-05 07:35:33 +0530 | [diff] [blame] | 1670 | if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) { |
| 1671 | reason = FAILURE_SESSION_IN_RECOVERY; |
| 1672 | sc->result = DID_REQUEUE; |
| 1673 | goto fault; |
| 1674 | } |
| 1675 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1676 | if (iscsi_check_cmdsn_window_closed(conn)) { |
| 1677 | reason = FAILURE_WINDOW_CLOSED; |
| 1678 | goto reject; |
| 1679 | } |
| 1680 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1681 | task = iscsi_alloc_task(conn, sc); |
| 1682 | if (!task) { |
Mike Christie | 60ecebf | 2006-08-31 18:09:25 -0400 | [diff] [blame] | 1683 | reason = FAILURE_OOM; |
| 1684 | goto reject; |
| 1685 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1686 | |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 1687 | if (!ihost->workq) { |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1688 | reason = iscsi_prep_scsi_cmd_pdu(task); |
| 1689 | if (reason) { |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 1690 | if (reason == -ENOMEM || reason == -EACCES) { |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1691 | reason = FAILURE_OOM; |
| 1692 | goto prepd_reject; |
| 1693 | } else { |
| 1694 | sc->result = DID_ABORT << 16; |
| 1695 | goto prepd_fault; |
| 1696 | } |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1697 | } |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1698 | if (session->tt->xmit_task(task)) { |
Mike Christie | d3305f3 | 2009-08-20 15:10:58 -0500 | [diff] [blame] | 1699 | session->cmdsn--; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1700 | reason = FAILURE_SESSION_NOT_READY; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1701 | goto prepd_reject; |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1702 | } |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1703 | } else { |
| 1704 | list_add_tail(&task->running, &conn->cmdqueue); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 1705 | iscsi_conn_queue_work(conn); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1706 | } |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1707 | |
| 1708 | session->queued_cmdsn++; |
| 1709 | spin_unlock(&session->lock); |
Mike Christie | 1040c99 | 2007-12-13 12:43:34 -0600 | [diff] [blame] | 1710 | spin_lock(host->host_lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1711 | return 0; |
| 1712 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1713 | prepd_reject: |
| 1714 | sc->scsi_done = NULL; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1715 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1716 | reject: |
| 1717 | spin_unlock(&session->lock); |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 1718 | ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n", |
| 1719 | sc->cmnd[0], reason); |
Mike Christie | 1040c99 | 2007-12-13 12:43:34 -0600 | [diff] [blame] | 1720 | spin_lock(host->host_lock); |
Mike Christie | d6d13ee | 2008-08-17 15:24:43 -0500 | [diff] [blame] | 1721 | return SCSI_MLQUEUE_TARGET_BUSY; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1722 | |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 1723 | prepd_fault: |
| 1724 | sc->scsi_done = NULL; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1725 | iscsi_complete_task(task, ISCSI_TASK_COMPLETED); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1726 | fault: |
| 1727 | spin_unlock(&session->lock); |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 1728 | ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n", |
| 1729 | sc->cmnd[0], reason); |
Boaz Harrosh | c07d444 | 2008-04-18 10:11:52 -0500 | [diff] [blame] | 1730 | if (!scsi_bidi_cmnd(sc)) |
| 1731 | scsi_set_resid(sc, scsi_bufflen(sc)); |
| 1732 | else { |
| 1733 | scsi_out(sc)->resid = scsi_out(sc)->length; |
| 1734 | scsi_in(sc)->resid = scsi_in(sc)->length; |
| 1735 | } |
Mike Christie | 052d014 | 2008-05-21 15:54:05 -0500 | [diff] [blame] | 1736 | done(sc); |
Mike Christie | 1040c99 | 2007-12-13 12:43:34 -0600 | [diff] [blame] | 1737 | spin_lock(host->host_lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1738 | return 0; |
| 1739 | } |
Jeff Garzik | f281233 | 2010-11-16 02:10:29 -0500 | [diff] [blame] | 1740 | |
| 1741 | DEF_SCSI_QCMD(iscsi_queuecommand) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1742 | EXPORT_SYMBOL_GPL(iscsi_queuecommand); |
| 1743 | |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1744 | int iscsi_change_queue_depth(struct scsi_device *sdev, int depth, int reason) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1745 | { |
Mike Christie | 1796e72 | 2009-11-11 16:34:36 -0600 | [diff] [blame] | 1746 | switch (reason) { |
| 1747 | case SCSI_QDEPTH_DEFAULT: |
| 1748 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth); |
| 1749 | break; |
| 1750 | case SCSI_QDEPTH_QFULL: |
| 1751 | scsi_track_queue_full(sdev, depth); |
| 1752 | break; |
| 1753 | case SCSI_QDEPTH_RAMP_UP: |
| 1754 | scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth); |
| 1755 | break; |
| 1756 | default: |
Mike Christie | e881a17 | 2009-10-15 17:46:39 -0700 | [diff] [blame] | 1757 | return -EOPNOTSUPP; |
Mike Christie | 1796e72 | 2009-11-11 16:34:36 -0600 | [diff] [blame] | 1758 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1759 | return sdev->queue_depth; |
| 1760 | } |
| 1761 | EXPORT_SYMBOL_GPL(iscsi_change_queue_depth); |
| 1762 | |
Mike Christie | 6b5d6c4 | 2009-04-21 15:32:32 -0500 | [diff] [blame] | 1763 | int iscsi_target_alloc(struct scsi_target *starget) |
| 1764 | { |
| 1765 | struct iscsi_cls_session *cls_session = starget_to_session(starget); |
| 1766 | struct iscsi_session *session = cls_session->dd_data; |
| 1767 | |
| 1768 | starget->can_queue = session->scsi_cmds_max; |
| 1769 | return 0; |
| 1770 | } |
| 1771 | EXPORT_SYMBOL_GPL(iscsi_target_alloc); |
| 1772 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1773 | static void iscsi_tmf_timedout(unsigned long data) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1774 | { |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1775 | struct iscsi_conn *conn = (struct iscsi_conn *)data; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1776 | struct iscsi_session *session = conn->session; |
| 1777 | |
| 1778 | spin_lock(&session->lock); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1779 | if (conn->tmf_state == TMF_QUEUED) { |
| 1780 | conn->tmf_state = TMF_TIMEDOUT; |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1781 | ISCSI_DBG_EH(session, "tmf timedout\n"); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1782 | /* unblock eh_abort() */ |
| 1783 | wake_up(&conn->ehwait); |
| 1784 | } |
| 1785 | spin_unlock(&session->lock); |
| 1786 | } |
| 1787 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1788 | static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn, |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1789 | struct iscsi_tm *hdr, int age, |
| 1790 | int timeout) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1791 | { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1792 | struct iscsi_session *session = conn->session; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1793 | struct iscsi_task *task; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1794 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1795 | task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr, |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1796 | NULL, 0); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1797 | if (!task) { |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1798 | spin_unlock_bh(&session->lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1799 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1800 | spin_lock_bh(&session->lock); |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1801 | ISCSI_DBG_EH(session, "tmf exec failure\n"); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1802 | return -EPERM; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1803 | } |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1804 | conn->tmfcmd_pdus_cnt++; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1805 | conn->tmf_timer.expires = timeout * HZ + jiffies; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1806 | conn->tmf_timer.function = iscsi_tmf_timedout; |
| 1807 | conn->tmf_timer.data = (unsigned long)conn; |
| 1808 | add_timer(&conn->tmf_timer); |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1809 | ISCSI_DBG_EH(session, "tmf set timeout\n"); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1810 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1811 | spin_unlock_bh(&session->lock); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1812 | mutex_unlock(&session->eh_mutex); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1813 | |
| 1814 | /* |
| 1815 | * block eh thread until: |
| 1816 | * |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1817 | * 1) tmf response |
| 1818 | * 2) tmf timeout |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1819 | * 3) session is terminated or restarted or userspace has |
| 1820 | * given up on recovery |
| 1821 | */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1822 | wait_event_interruptible(conn->ehwait, age != session->age || |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1823 | session->state != ISCSI_STATE_LOGGED_IN || |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1824 | conn->tmf_state != TMF_QUEUED); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1825 | if (signal_pending(current)) |
| 1826 | flush_signals(current); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1827 | del_timer_sync(&conn->tmf_timer); |
| 1828 | |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1829 | mutex_lock(&session->eh_mutex); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 1830 | spin_lock_bh(&session->lock); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 1831 | /* if the session drops it will clean up the task */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1832 | if (age != session->age || |
| 1833 | session->state != ISCSI_STATE_LOGGED_IN) |
| 1834 | return -ENOTCONN; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 1835 | return 0; |
| 1836 | } |
| 1837 | |
| 1838 | /* |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1839 | * Fail commands. session lock held and recv side suspended and xmit |
| 1840 | * thread flushed |
| 1841 | */ |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1842 | static void fail_scsi_tasks(struct iscsi_conn *conn, unsigned lun, |
| 1843 | int error) |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1844 | { |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1845 | struct iscsi_task *task; |
| 1846 | int i; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1847 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1848 | for (i = 0; i < conn->session->cmds_max; i++) { |
| 1849 | task = conn->session->cmds[i]; |
| 1850 | if (!task->sc || task->state == ISCSI_TASK_FREE) |
| 1851 | continue; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1852 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1853 | if (lun != -1 && lun != task->sc->device->lun) |
| 1854 | continue; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1855 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 1856 | ISCSI_DBG_SESSION(conn->session, |
| 1857 | "failing sc %p itt 0x%x state %d\n", |
| 1858 | task->sc, task->itt, task->state); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 1859 | fail_scsi_task(task, error); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 1860 | } |
| 1861 | } |
| 1862 | |
Mike Christie | 661134a | 2009-09-05 07:35:33 +0530 | [diff] [blame] | 1863 | /** |
| 1864 | * iscsi_suspend_queue - suspend iscsi_queuecommand |
| 1865 | * @conn: iscsi conn to stop queueing IO on |
| 1866 | * |
| 1867 | * This grabs the session lock to make sure no one is in |
| 1868 | * xmit_task/queuecommand, and then sets suspend to prevent |
| 1869 | * new commands from being queued. This only needs to be called |
| 1870 | * by offload drivers that need to sync a path like ep disconnect |
| 1871 | * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi |
| 1872 | * will call iscsi_start_tx and iscsi_unblock_session when in FFP. |
| 1873 | */ |
| 1874 | void iscsi_suspend_queue(struct iscsi_conn *conn) |
| 1875 | { |
| 1876 | spin_lock_bh(&conn->session->lock); |
| 1877 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); |
| 1878 | spin_unlock_bh(&conn->session->lock); |
| 1879 | } |
| 1880 | EXPORT_SYMBOL_GPL(iscsi_suspend_queue); |
| 1881 | |
| 1882 | /** |
| 1883 | * iscsi_suspend_tx - suspend iscsi_data_xmit |
| 1884 | * @conn: iscsi conn tp stop processing IO on. |
| 1885 | * |
| 1886 | * This function sets the suspend bit to prevent iscsi_data_xmit |
| 1887 | * from sending new IO, and if work is queued on the xmit thread |
| 1888 | * it will wait for it to be completed. |
| 1889 | */ |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 1890 | void iscsi_suspend_tx(struct iscsi_conn *conn) |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1891 | { |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 1892 | struct Scsi_Host *shost = conn->session->host; |
| 1893 | struct iscsi_host *ihost = shost_priv(shost); |
| 1894 | |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1895 | set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 1896 | if (ihost->workq) |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 1897 | flush_workqueue(ihost->workq); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1898 | } |
Mike Christie | b40977d | 2008-05-21 15:54:03 -0500 | [diff] [blame] | 1899 | EXPORT_SYMBOL_GPL(iscsi_suspend_tx); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1900 | |
| 1901 | static void iscsi_start_tx(struct iscsi_conn *conn) |
| 1902 | { |
| 1903 | clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); |
Mike Christie | 1336aed | 2009-05-13 17:57:48 -0500 | [diff] [blame] | 1904 | iscsi_conn_queue_work(conn); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 1905 | } |
| 1906 | |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 1907 | /* |
| 1908 | * We want to make sure a ping is in flight. It has timed out. |
| 1909 | * And we are not busy processing a pdu that is making |
| 1910 | * progress but got started before the ping and is taking a while |
| 1911 | * to complete so the ping is just stuck behind it in a queue. |
| 1912 | */ |
| 1913 | static int iscsi_has_ping_timed_out(struct iscsi_conn *conn) |
| 1914 | { |
| 1915 | if (conn->ping_task && |
| 1916 | time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) + |
| 1917 | (conn->ping_timeout * HZ), jiffies)) |
| 1918 | return 1; |
| 1919 | else |
| 1920 | return 0; |
| 1921 | } |
| 1922 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1923 | static enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *sc) |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1924 | { |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1925 | enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED; |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1926 | struct iscsi_task *task = NULL, *running_task; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1927 | struct iscsi_cls_session *cls_session; |
| 1928 | struct iscsi_session *session; |
| 1929 | struct iscsi_conn *conn; |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1930 | int i; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1931 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1932 | cls_session = starget_to_session(scsi_target(sc->device)); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 1933 | session = cls_session->dd_data; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1934 | |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1935 | ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1936 | |
| 1937 | spin_lock(&session->lock); |
| 1938 | if (session->state != ISCSI_STATE_LOGGED_IN) { |
| 1939 | /* |
| 1940 | * We are probably in the middle of iscsi recovery so let |
| 1941 | * that complete and handle the error. |
| 1942 | */ |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 1943 | rc = BLK_EH_RESET_TIMER; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1944 | goto done; |
| 1945 | } |
| 1946 | |
| 1947 | conn = session->leadconn; |
| 1948 | if (!conn) { |
| 1949 | /* In the middle of shuting down */ |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 1950 | rc = BLK_EH_RESET_TIMER; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1951 | goto done; |
| 1952 | } |
| 1953 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1954 | task = (struct iscsi_task *)sc->SCp.ptr; |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1955 | if (!task) { |
| 1956 | /* |
| 1957 | * Raced with completion. Just reset timer, and let it |
| 1958 | * complete normally |
| 1959 | */ |
| 1960 | rc = BLK_EH_RESET_TIMER; |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1961 | goto done; |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1962 | } |
| 1963 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1964 | /* |
| 1965 | * If we have sent (at least queued to the network layer) a pdu or |
| 1966 | * recvd one for the task since the last timeout ask for |
| 1967 | * more time. If on the next timeout we have not made progress |
| 1968 | * we can check if it is the task or connection when we send the |
| 1969 | * nop as a ping. |
| 1970 | */ |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1971 | if (time_after(task->last_xfer, task->last_timeout)) { |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1972 | ISCSI_DBG_EH(session, "Command making progress. Asking " |
| 1973 | "scsi-ml for more time to complete. " |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1974 | "Last data xfer at %lu. Last timeout was at " |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 1975 | "%lu\n.", task->last_xfer, task->last_timeout); |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1976 | task->have_checked_conn = false; |
| 1977 | rc = BLK_EH_RESET_TIMER; |
| 1978 | goto done; |
| 1979 | } |
| 1980 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 1981 | if (!conn->recv_timeout && !conn->ping_timeout) |
| 1982 | goto done; |
| 1983 | /* |
| 1984 | * if the ping timedout then we are in the middle of cleaning up |
| 1985 | * and can let the iscsi eh handle it |
| 1986 | */ |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 1987 | if (iscsi_has_ping_timed_out(conn)) { |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 1988 | rc = BLK_EH_RESET_TIMER; |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 1989 | goto done; |
| 1990 | } |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 1991 | |
Mike Christie | 92ed4d6 | 2010-02-10 16:51:45 -0600 | [diff] [blame] | 1992 | for (i = 0; i < conn->session->cmds_max; i++) { |
| 1993 | running_task = conn->session->cmds[i]; |
| 1994 | if (!running_task->sc || running_task == task || |
| 1995 | running_task->state != ISCSI_TASK_RUNNING) |
| 1996 | continue; |
| 1997 | |
| 1998 | /* |
| 1999 | * Only check if cmds started before this one have made |
| 2000 | * progress, or this could never fail |
| 2001 | */ |
| 2002 | if (time_after(running_task->sc->jiffies_at_alloc, |
| 2003 | task->sc->jiffies_at_alloc)) |
| 2004 | continue; |
| 2005 | |
| 2006 | if (time_after(running_task->last_xfer, task->last_timeout)) { |
| 2007 | /* |
| 2008 | * This task has not made progress, but a task |
| 2009 | * started before us has transferred data since |
| 2010 | * we started/last-checked. We could be queueing |
| 2011 | * too many tasks or the LU is bad. |
| 2012 | * |
| 2013 | * If the device is bad the cmds ahead of us on |
| 2014 | * other devs will complete, and this loop will |
| 2015 | * eventually fail starting the scsi eh. |
| 2016 | */ |
| 2017 | ISCSI_DBG_EH(session, "Command has not made progress " |
| 2018 | "but commands ahead of it have. " |
| 2019 | "Asking scsi-ml for more time to " |
| 2020 | "complete. Our last xfer vs running task " |
| 2021 | "last xfer %lu/%lu. Last check %lu.\n", |
| 2022 | task->last_xfer, running_task->last_xfer, |
| 2023 | task->last_timeout); |
| 2024 | rc = BLK_EH_RESET_TIMER; |
| 2025 | goto done; |
| 2026 | } |
| 2027 | } |
| 2028 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 2029 | /* Assumes nop timeout is shorter than scsi cmd timeout */ |
| 2030 | if (task->have_checked_conn) |
| 2031 | goto done; |
| 2032 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2033 | /* |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 2034 | * Checking the transport already or nop from a cmd timeout still |
| 2035 | * running |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2036 | */ |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 2037 | if (conn->ping_task) { |
| 2038 | task->have_checked_conn = true; |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 2039 | rc = BLK_EH_RESET_TIMER; |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 2040 | goto done; |
| 2041 | } |
| 2042 | |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 2043 | /* Make sure there is a transport check done */ |
| 2044 | iscsi_send_nopout(conn, NULL); |
| 2045 | task->have_checked_conn = true; |
| 2046 | rc = BLK_EH_RESET_TIMER; |
| 2047 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2048 | done: |
Mike Christie | d355e57 | 2009-06-15 22:11:08 -0500 | [diff] [blame] | 2049 | if (task) |
| 2050 | task->last_timeout = jiffies; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2051 | spin_unlock(&session->lock); |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2052 | ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ? |
| 2053 | "timer reset" : "nh"); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2054 | return rc; |
| 2055 | } |
| 2056 | |
| 2057 | static void iscsi_check_transport_timeouts(unsigned long data) |
| 2058 | { |
| 2059 | struct iscsi_conn *conn = (struct iscsi_conn *)data; |
| 2060 | struct iscsi_session *session = conn->session; |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2061 | unsigned long recv_timeout, next_timeout = 0, last_recv; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2062 | |
| 2063 | spin_lock(&session->lock); |
| 2064 | if (session->state != ISCSI_STATE_LOGGED_IN) |
| 2065 | goto done; |
| 2066 | |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2067 | recv_timeout = conn->recv_timeout; |
| 2068 | if (!recv_timeout) |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2069 | goto done; |
| 2070 | |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2071 | recv_timeout *= HZ; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2072 | last_recv = conn->last_recv; |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 2073 | |
| 2074 | if (iscsi_has_ping_timed_out(conn)) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 2075 | iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs " |
Mike Christie | 4c48a82 | 2009-05-13 17:57:45 -0500 | [diff] [blame] | 2076 | "expired, recv timeout %d, last rx %lu, " |
| 2077 | "last ping %lu, now %lu\n", |
| 2078 | conn->ping_timeout, conn->recv_timeout, |
| 2079 | last_recv, conn->last_ping, jiffies); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2080 | spin_unlock(&session->lock); |
| 2081 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 2082 | return; |
| 2083 | } |
| 2084 | |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2085 | if (time_before_eq(last_recv + recv_timeout, jiffies)) { |
Mike Christie | c8611f9 | 2008-05-08 20:15:34 -0500 | [diff] [blame] | 2086 | /* send a ping to try to provoke some traffic */ |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 2087 | ISCSI_DBG_CONN(conn, "Sending nopout as ping\n"); |
Mike Christie | c8611f9 | 2008-05-08 20:15:34 -0500 | [diff] [blame] | 2088 | iscsi_send_nopout(conn, NULL); |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2089 | next_timeout = conn->last_ping + (conn->ping_timeout * HZ); |
Mike Christie | ad294e9 | 2008-01-31 13:36:50 -0600 | [diff] [blame] | 2090 | } else |
Mike Christie | 4cf1043 | 2008-05-07 20:43:52 -0500 | [diff] [blame] | 2091 | next_timeout = last_recv + recv_timeout; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2092 | |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 2093 | ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout); |
Mike Christie | ad294e9 | 2008-01-31 13:36:50 -0600 | [diff] [blame] | 2094 | mod_timer(&conn->transport_timer, next_timeout); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2095 | done: |
| 2096 | spin_unlock(&session->lock); |
| 2097 | } |
| 2098 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2099 | static void iscsi_prep_abort_task_pdu(struct iscsi_task *task, |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2100 | struct iscsi_tm *hdr) |
| 2101 | { |
| 2102 | memset(hdr, 0, sizeof(*hdr)); |
| 2103 | hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE; |
| 2104 | hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK; |
| 2105 | hdr->flags |= ISCSI_FLAG_CMD_FINAL; |
Mike Christie | 577577d | 2008-12-02 00:32:05 -0600 | [diff] [blame] | 2106 | memcpy(hdr->lun, task->lun, sizeof(hdr->lun)); |
| 2107 | hdr->rtt = task->hdr_itt; |
| 2108 | hdr->refcmdsn = task->cmdsn; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2109 | } |
| 2110 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2111 | int iscsi_eh_abort(struct scsi_cmnd *sc) |
| 2112 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2113 | struct iscsi_cls_session *cls_session; |
| 2114 | struct iscsi_session *session; |
Mike Christie | f47f2cf | 2006-08-31 18:09:33 -0400 | [diff] [blame] | 2115 | struct iscsi_conn *conn; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2116 | struct iscsi_task *task; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2117 | struct iscsi_tm *hdr; |
| 2118 | int rc, age; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2119 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2120 | cls_session = starget_to_session(scsi_target(sc->device)); |
| 2121 | session = cls_session->dd_data; |
| 2122 | |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2123 | ISCSI_DBG_EH(session, "aborting sc %p\n", sc); |
Mike Christie | 4421c9e | 2009-05-13 17:57:50 -0500 | [diff] [blame] | 2124 | |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2125 | mutex_lock(&session->eh_mutex); |
| 2126 | spin_lock_bh(&session->lock); |
Mike Christie | f47f2cf | 2006-08-31 18:09:33 -0400 | [diff] [blame] | 2127 | /* |
| 2128 | * if session was ISCSI_STATE_IN_RECOVERY then we may not have |
| 2129 | * got the command. |
| 2130 | */ |
| 2131 | if (!sc->SCp.ptr) { |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2132 | ISCSI_DBG_EH(session, "sc never reached iscsi layer or " |
| 2133 | "it completed.\n"); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2134 | spin_unlock_bh(&session->lock); |
| 2135 | mutex_unlock(&session->eh_mutex); |
Mike Christie | f47f2cf | 2006-08-31 18:09:33 -0400 | [diff] [blame] | 2136 | return SUCCESS; |
| 2137 | } |
| 2138 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2139 | /* |
| 2140 | * If we are not logged in or we have started a new session |
| 2141 | * then let the host reset code handle this |
| 2142 | */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2143 | if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN || |
| 2144 | sc->SCp.phase != session->age) { |
| 2145 | spin_unlock_bh(&session->lock); |
| 2146 | mutex_unlock(&session->eh_mutex); |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2147 | ISCSI_DBG_EH(session, "failing abort due to dropped " |
Mike Christie | 4421c9e | 2009-05-13 17:57:50 -0500 | [diff] [blame] | 2148 | "session.\n"); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2149 | return FAILED; |
| 2150 | } |
| 2151 | |
| 2152 | conn = session->leadconn; |
| 2153 | conn->eh_abort_cnt++; |
| 2154 | age = session->age; |
| 2155 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2156 | task = (struct iscsi_task *)sc->SCp.ptr; |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2157 | ISCSI_DBG_EH(session, "aborting [sc %p itt 0x%x]\n", |
| 2158 | sc, task->itt); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2159 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2160 | /* task completed before time out */ |
| 2161 | if (!task->sc) { |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2162 | ISCSI_DBG_EH(session, "sc completed while abort in progress\n"); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2163 | goto success; |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 2164 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2165 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2166 | if (task->state == ISCSI_TASK_PENDING) { |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 2167 | fail_scsi_task(task, DID_ABORT); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2168 | goto success; |
| 2169 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2170 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2171 | /* only have one tmf outstanding at a time */ |
| 2172 | if (conn->tmf_state != TMF_INITIAL) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2173 | goto failed; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2174 | conn->tmf_state = TMF_QUEUED; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2175 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2176 | hdr = &conn->tmhdr; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2177 | iscsi_prep_abort_task_pdu(task, hdr); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2178 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2179 | if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) { |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2180 | rc = FAILED; |
| 2181 | goto failed; |
| 2182 | } |
| 2183 | |
| 2184 | switch (conn->tmf_state) { |
| 2185 | case TMF_SUCCESS: |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2186 | spin_unlock_bh(&session->lock); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 2187 | /* |
| 2188 | * stop tx side incase the target had sent a abort rsp but |
| 2189 | * the initiator was still writing out data. |
| 2190 | */ |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2191 | iscsi_suspend_tx(conn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2192 | /* |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 2193 | * we do not stop the recv side because targets have been |
| 2194 | * good and have never sent us a successful tmf response |
| 2195 | * then sent more data for the cmd. |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2196 | */ |
Mike Christie | 6187c24 | 2009-07-15 15:02:57 -0500 | [diff] [blame] | 2197 | spin_lock_bh(&session->lock); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 2198 | fail_scsi_task(task, DID_ABORT); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2199 | conn->tmf_state = TMF_INITIAL; |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 2200 | memset(hdr, 0, sizeof(*hdr)); |
Mike Christie | 6187c24 | 2009-07-15 15:02:57 -0500 | [diff] [blame] | 2201 | spin_unlock_bh(&session->lock); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2202 | iscsi_start_tx(conn); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2203 | goto success_unlocked; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2204 | case TMF_TIMEDOUT: |
| 2205 | spin_unlock_bh(&session->lock); |
| 2206 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 2207 | goto failed_unlocked; |
| 2208 | case TMF_NOT_FOUND: |
| 2209 | if (!sc->SCp.ptr) { |
| 2210 | conn->tmf_state = TMF_INITIAL; |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 2211 | memset(hdr, 0, sizeof(*hdr)); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2212 | /* task completed before tmf abort response */ |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2213 | ISCSI_DBG_EH(session, "sc completed while abort in " |
| 2214 | "progress\n"); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2215 | goto success; |
Mike Christie | 7ea8b82 | 2006-07-24 15:47:22 -0500 | [diff] [blame] | 2216 | } |
| 2217 | /* fall through */ |
| 2218 | default: |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2219 | conn->tmf_state = TMF_INITIAL; |
| 2220 | goto failed; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2221 | } |
| 2222 | |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2223 | success: |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2224 | spin_unlock_bh(&session->lock); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2225 | success_unlocked: |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2226 | ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n", |
| 2227 | sc, task->itt); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2228 | mutex_unlock(&session->eh_mutex); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2229 | return SUCCESS; |
| 2230 | |
| 2231 | failed: |
| 2232 | spin_unlock_bh(&session->lock); |
Mike Christie | 77a23c2 | 2007-05-30 12:57:18 -0500 | [diff] [blame] | 2233 | failed_unlocked: |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2234 | ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc, |
| 2235 | task ? task->itt : 0); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2236 | mutex_unlock(&session->eh_mutex); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2237 | return FAILED; |
| 2238 | } |
| 2239 | EXPORT_SYMBOL_GPL(iscsi_eh_abort); |
| 2240 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2241 | static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr) |
| 2242 | { |
| 2243 | memset(hdr, 0, sizeof(*hdr)); |
| 2244 | hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE; |
| 2245 | hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK; |
| 2246 | hdr->flags |= ISCSI_FLAG_CMD_FINAL; |
| 2247 | int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2248 | hdr->rtt = RESERVED_ITT; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2249 | } |
| 2250 | |
| 2251 | int iscsi_eh_device_reset(struct scsi_cmnd *sc) |
| 2252 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2253 | struct iscsi_cls_session *cls_session; |
| 2254 | struct iscsi_session *session; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2255 | struct iscsi_conn *conn; |
| 2256 | struct iscsi_tm *hdr; |
| 2257 | int rc = FAILED; |
| 2258 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2259 | cls_session = starget_to_session(scsi_target(sc->device)); |
| 2260 | session = cls_session->dd_data; |
| 2261 | |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2262 | ISCSI_DBG_EH(session, "LU Reset [sc %p lun %u]\n", sc, sc->device->lun); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2263 | |
| 2264 | mutex_lock(&session->eh_mutex); |
| 2265 | spin_lock_bh(&session->lock); |
| 2266 | /* |
| 2267 | * Just check if we are not logged in. We cannot check for |
| 2268 | * the phase because the reset could come from a ioctl. |
| 2269 | */ |
| 2270 | if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) |
| 2271 | goto unlock; |
| 2272 | conn = session->leadconn; |
| 2273 | |
| 2274 | /* only have one tmf outstanding at a time */ |
| 2275 | if (conn->tmf_state != TMF_INITIAL) |
| 2276 | goto unlock; |
| 2277 | conn->tmf_state = TMF_QUEUED; |
| 2278 | |
| 2279 | hdr = &conn->tmhdr; |
| 2280 | iscsi_prep_lun_reset_pdu(sc, hdr); |
| 2281 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2282 | if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age, |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2283 | session->lu_reset_timeout)) { |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2284 | rc = FAILED; |
| 2285 | goto unlock; |
| 2286 | } |
| 2287 | |
| 2288 | switch (conn->tmf_state) { |
| 2289 | case TMF_SUCCESS: |
| 2290 | break; |
| 2291 | case TMF_TIMEDOUT: |
| 2292 | spin_unlock_bh(&session->lock); |
| 2293 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 2294 | goto done; |
| 2295 | default: |
| 2296 | conn->tmf_state = TMF_INITIAL; |
| 2297 | goto unlock; |
| 2298 | } |
| 2299 | |
| 2300 | rc = SUCCESS; |
| 2301 | spin_unlock_bh(&session->lock); |
| 2302 | |
| 2303 | iscsi_suspend_tx(conn); |
Mike Christie | 913e5bf | 2008-05-21 15:54:18 -0500 | [diff] [blame] | 2304 | |
Mike Christie | a343914 | 2008-09-24 11:46:15 -0500 | [diff] [blame] | 2305 | spin_lock_bh(&session->lock); |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 2306 | memset(hdr, 0, sizeof(*hdr)); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 2307 | fail_scsi_tasks(conn, sc->device->lun, DID_ERROR); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2308 | conn->tmf_state = TMF_INITIAL; |
Mike Christie | a343914 | 2008-09-24 11:46:15 -0500 | [diff] [blame] | 2309 | spin_unlock_bh(&session->lock); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2310 | |
| 2311 | iscsi_start_tx(conn); |
| 2312 | goto done; |
| 2313 | |
| 2314 | unlock: |
| 2315 | spin_unlock_bh(&session->lock); |
| 2316 | done: |
Erez Zilber | bd2199d | 2009-06-15 22:11:10 -0500 | [diff] [blame] | 2317 | ISCSI_DBG_EH(session, "dev reset result = %s\n", |
| 2318 | rc == SUCCESS ? "SUCCESS" : "FAILED"); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2319 | mutex_unlock(&session->eh_mutex); |
| 2320 | return rc; |
| 2321 | } |
| 2322 | EXPORT_SYMBOL_GPL(iscsi_eh_device_reset); |
| 2323 | |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2324 | void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session) |
| 2325 | { |
| 2326 | struct iscsi_session *session = cls_session->dd_data; |
| 2327 | |
| 2328 | spin_lock_bh(&session->lock); |
| 2329 | if (session->state != ISCSI_STATE_LOGGED_IN) { |
| 2330 | session->state = ISCSI_STATE_RECOVERY_FAILED; |
| 2331 | if (session->leadconn) |
| 2332 | wake_up(&session->leadconn->ehwait); |
| 2333 | } |
| 2334 | spin_unlock_bh(&session->lock); |
| 2335 | } |
| 2336 | EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout); |
| 2337 | |
| 2338 | /** |
| 2339 | * iscsi_eh_session_reset - drop session and attempt relogin |
| 2340 | * @sc: scsi command |
| 2341 | * |
| 2342 | * This function will wait for a relogin, session termination from |
| 2343 | * userspace, or a recovery/replacement timeout. |
| 2344 | */ |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2345 | int iscsi_eh_session_reset(struct scsi_cmnd *sc) |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2346 | { |
| 2347 | struct iscsi_cls_session *cls_session; |
| 2348 | struct iscsi_session *session; |
| 2349 | struct iscsi_conn *conn; |
| 2350 | |
| 2351 | cls_session = starget_to_session(scsi_target(sc->device)); |
| 2352 | session = cls_session->dd_data; |
| 2353 | conn = session->leadconn; |
| 2354 | |
| 2355 | mutex_lock(&session->eh_mutex); |
| 2356 | spin_lock_bh(&session->lock); |
| 2357 | if (session->state == ISCSI_STATE_TERMINATE) { |
| 2358 | failed: |
| 2359 | ISCSI_DBG_EH(session, |
| 2360 | "failing session reset: Could not log back into " |
| 2361 | "%s, %s [age %d]\n", session->targetname, |
| 2362 | conn->persistent_address, session->age); |
| 2363 | spin_unlock_bh(&session->lock); |
| 2364 | mutex_unlock(&session->eh_mutex); |
| 2365 | return FAILED; |
| 2366 | } |
| 2367 | |
| 2368 | spin_unlock_bh(&session->lock); |
| 2369 | mutex_unlock(&session->eh_mutex); |
| 2370 | /* |
| 2371 | * we drop the lock here but the leadconn cannot be destoyed while |
| 2372 | * we are in the scsi eh |
| 2373 | */ |
| 2374 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 2375 | |
| 2376 | ISCSI_DBG_EH(session, "wait for relogin\n"); |
| 2377 | wait_event_interruptible(conn->ehwait, |
| 2378 | session->state == ISCSI_STATE_TERMINATE || |
| 2379 | session->state == ISCSI_STATE_LOGGED_IN || |
| 2380 | session->state == ISCSI_STATE_RECOVERY_FAILED); |
| 2381 | if (signal_pending(current)) |
| 2382 | flush_signals(current); |
| 2383 | |
| 2384 | mutex_lock(&session->eh_mutex); |
| 2385 | spin_lock_bh(&session->lock); |
| 2386 | if (session->state == ISCSI_STATE_LOGGED_IN) { |
| 2387 | ISCSI_DBG_EH(session, |
| 2388 | "session reset succeeded for %s,%s\n", |
| 2389 | session->targetname, conn->persistent_address); |
| 2390 | } else |
| 2391 | goto failed; |
| 2392 | spin_unlock_bh(&session->lock); |
| 2393 | mutex_unlock(&session->eh_mutex); |
| 2394 | return SUCCESS; |
| 2395 | } |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2396 | EXPORT_SYMBOL_GPL(iscsi_eh_session_reset); |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2397 | |
| 2398 | static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr) |
| 2399 | { |
| 2400 | memset(hdr, 0, sizeof(*hdr)); |
| 2401 | hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE; |
| 2402 | hdr->flags = ISCSI_TM_FUNC_TARGET_WARM_RESET & ISCSI_FLAG_TM_FUNC_MASK; |
| 2403 | hdr->flags |= ISCSI_FLAG_CMD_FINAL; |
| 2404 | hdr->rtt = RESERVED_ITT; |
| 2405 | } |
| 2406 | |
| 2407 | /** |
| 2408 | * iscsi_eh_target_reset - reset target |
| 2409 | * @sc: scsi command |
| 2410 | * |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2411 | * This will attempt to send a warm target reset. |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2412 | */ |
| 2413 | int iscsi_eh_target_reset(struct scsi_cmnd *sc) |
| 2414 | { |
| 2415 | struct iscsi_cls_session *cls_session; |
| 2416 | struct iscsi_session *session; |
| 2417 | struct iscsi_conn *conn; |
| 2418 | struct iscsi_tm *hdr; |
| 2419 | int rc = FAILED; |
| 2420 | |
| 2421 | cls_session = starget_to_session(scsi_target(sc->device)); |
| 2422 | session = cls_session->dd_data; |
| 2423 | |
| 2424 | ISCSI_DBG_EH(session, "tgt Reset [sc %p tgt %s]\n", sc, |
| 2425 | session->targetname); |
| 2426 | |
| 2427 | mutex_lock(&session->eh_mutex); |
| 2428 | spin_lock_bh(&session->lock); |
| 2429 | /* |
| 2430 | * Just check if we are not logged in. We cannot check for |
| 2431 | * the phase because the reset could come from a ioctl. |
| 2432 | */ |
| 2433 | if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN) |
| 2434 | goto unlock; |
| 2435 | conn = session->leadconn; |
| 2436 | |
| 2437 | /* only have one tmf outstanding at a time */ |
| 2438 | if (conn->tmf_state != TMF_INITIAL) |
| 2439 | goto unlock; |
| 2440 | conn->tmf_state = TMF_QUEUED; |
| 2441 | |
| 2442 | hdr = &conn->tmhdr; |
| 2443 | iscsi_prep_tgt_reset_pdu(sc, hdr); |
| 2444 | |
| 2445 | if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age, |
| 2446 | session->tgt_reset_timeout)) { |
| 2447 | rc = FAILED; |
| 2448 | goto unlock; |
| 2449 | } |
| 2450 | |
| 2451 | switch (conn->tmf_state) { |
| 2452 | case TMF_SUCCESS: |
| 2453 | break; |
| 2454 | case TMF_TIMEDOUT: |
| 2455 | spin_unlock_bh(&session->lock); |
| 2456 | iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED); |
| 2457 | goto done; |
| 2458 | default: |
| 2459 | conn->tmf_state = TMF_INITIAL; |
| 2460 | goto unlock; |
| 2461 | } |
| 2462 | |
| 2463 | rc = SUCCESS; |
| 2464 | spin_unlock_bh(&session->lock); |
| 2465 | |
| 2466 | iscsi_suspend_tx(conn); |
| 2467 | |
| 2468 | spin_lock_bh(&session->lock); |
| 2469 | memset(hdr, 0, sizeof(*hdr)); |
| 2470 | fail_scsi_tasks(conn, -1, DID_ERROR); |
| 2471 | conn->tmf_state = TMF_INITIAL; |
| 2472 | spin_unlock_bh(&session->lock); |
| 2473 | |
| 2474 | iscsi_start_tx(conn); |
| 2475 | goto done; |
| 2476 | |
| 2477 | unlock: |
| 2478 | spin_unlock_bh(&session->lock); |
| 2479 | done: |
| 2480 | ISCSI_DBG_EH(session, "tgt %s reset result = %s\n", session->targetname, |
| 2481 | rc == SUCCESS ? "SUCCESS" : "FAILED"); |
| 2482 | mutex_unlock(&session->eh_mutex); |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2483 | return rc; |
| 2484 | } |
| 2485 | EXPORT_SYMBOL_GPL(iscsi_eh_target_reset); |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2486 | |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2487 | /** |
| 2488 | * iscsi_eh_recover_target - reset target and possibly the session |
| 2489 | * @sc: scsi command |
| 2490 | * |
| 2491 | * This will attempt to send a warm target reset. If that fails, |
| 2492 | * we will escalate to ERL0 session recovery. |
| 2493 | */ |
| 2494 | int iscsi_eh_recover_target(struct scsi_cmnd *sc) |
| 2495 | { |
| 2496 | int rc; |
| 2497 | |
| 2498 | rc = iscsi_eh_target_reset(sc); |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2499 | if (rc == FAILED) |
| 2500 | rc = iscsi_eh_session_reset(sc); |
| 2501 | return rc; |
| 2502 | } |
Jayamohan Kallickal | 309ce15 | 2010-02-20 08:02:10 +0530 | [diff] [blame] | 2503 | EXPORT_SYMBOL_GPL(iscsi_eh_recover_target); |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2504 | |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2505 | /* |
| 2506 | * Pre-allocate a pool of @max items of @item_size. By default, the pool |
| 2507 | * should be accessed via kfifo_{get,put} on q->queue. |
| 2508 | * Optionally, the caller can obtain the array of object pointers |
| 2509 | * by passing in a non-NULL @items pointer |
| 2510 | */ |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2511 | int |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2512 | iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2513 | { |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2514 | int i, num_arrays = 1; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2515 | |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2516 | memset(q, 0, sizeof(*q)); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2517 | |
| 2518 | q->max = max; |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2519 | |
| 2520 | /* If the user passed an items pointer, he wants a copy of |
| 2521 | * the array. */ |
| 2522 | if (items) |
| 2523 | num_arrays++; |
| 2524 | q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL); |
| 2525 | if (q->pool == NULL) |
Jean Delvare | f474a37 | 2009-03-05 14:45:55 -0600 | [diff] [blame] | 2526 | return -ENOMEM; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2527 | |
Stefani Seibold | c1e13f2 | 2009-12-21 14:37:27 -0800 | [diff] [blame] | 2528 | kfifo_init(&q->queue, (void*)q->pool, max * sizeof(void*)); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2529 | |
| 2530 | for (i = 0; i < max; i++) { |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2531 | q->pool[i] = kzalloc(item_size, GFP_KERNEL); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2532 | if (q->pool[i] == NULL) { |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2533 | q->max = i; |
| 2534 | goto enomem; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2535 | } |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 2536 | kfifo_in(&q->queue, (void*)&q->pool[i], sizeof(void*)); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2537 | } |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2538 | |
| 2539 | if (items) { |
| 2540 | *items = q->pool + max; |
| 2541 | memcpy(*items, q->pool, max * sizeof(void *)); |
| 2542 | } |
| 2543 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2544 | return 0; |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2545 | |
| 2546 | enomem: |
| 2547 | iscsi_pool_free(q); |
| 2548 | return -ENOMEM; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2549 | } |
| 2550 | EXPORT_SYMBOL_GPL(iscsi_pool_init); |
| 2551 | |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2552 | void iscsi_pool_free(struct iscsi_pool *q) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2553 | { |
| 2554 | int i; |
| 2555 | |
| 2556 | for (i = 0; i < q->max; i++) |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2557 | kfree(q->pool[i]); |
Jean Delvare | f474a37 | 2009-03-05 14:45:55 -0600 | [diff] [blame] | 2558 | kfree(q->pool); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2559 | } |
| 2560 | EXPORT_SYMBOL_GPL(iscsi_pool_free); |
| 2561 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2562 | /** |
| 2563 | * iscsi_host_add - add host to system |
| 2564 | * @shost: scsi host |
| 2565 | * @pdev: parent device |
| 2566 | * |
| 2567 | * This should be called by partial offload and software iscsi drivers |
| 2568 | * to add a host to the system. |
| 2569 | */ |
| 2570 | int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2571 | { |
Mike Christie | 8e9a20c | 2008-06-16 10:11:33 -0500 | [diff] [blame] | 2572 | if (!shost->can_queue) |
| 2573 | shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX; |
| 2574 | |
Mike Christie | 4d10835 | 2009-03-05 14:46:04 -0600 | [diff] [blame] | 2575 | if (!shost->cmd_per_lun) |
| 2576 | shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN; |
| 2577 | |
Mike Christie | 308cec1 | 2009-02-06 12:06:20 -0600 | [diff] [blame] | 2578 | if (!shost->transportt->eh_timed_out) |
| 2579 | shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out; |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2580 | return scsi_add_host(shost, pdev); |
| 2581 | } |
| 2582 | EXPORT_SYMBOL_GPL(iscsi_host_add); |
| 2583 | |
| 2584 | /** |
| 2585 | * iscsi_host_alloc - allocate a host and driver data |
| 2586 | * @sht: scsi host template |
| 2587 | * @dd_data_size: driver host data size |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 2588 | * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2589 | * |
| 2590 | * This should be called by partial offload and software iscsi drivers. |
| 2591 | * To access the driver specific memory use the iscsi_host_priv() macro. |
| 2592 | */ |
| 2593 | struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht, |
Mike Christie | 4d10835 | 2009-03-05 14:46:04 -0600 | [diff] [blame] | 2594 | int dd_data_size, bool xmit_can_sleep) |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2595 | { |
| 2596 | struct Scsi_Host *shost; |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2597 | struct iscsi_host *ihost; |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2598 | |
| 2599 | shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size); |
| 2600 | if (!shost) |
| 2601 | return NULL; |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2602 | ihost = shost_priv(shost); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 2603 | |
| 2604 | if (xmit_can_sleep) { |
| 2605 | snprintf(ihost->workq_name, sizeof(ihost->workq_name), |
| 2606 | "iscsi_q_%d", shost->host_no); |
| 2607 | ihost->workq = create_singlethread_workqueue(ihost->workq_name); |
| 2608 | if (!ihost->workq) |
| 2609 | goto free_host; |
| 2610 | } |
| 2611 | |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2612 | spin_lock_init(&ihost->lock); |
| 2613 | ihost->state = ISCSI_HOST_SETUP; |
| 2614 | ihost->num_sessions = 0; |
| 2615 | init_waitqueue_head(&ihost->session_removal_wq); |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2616 | return shost; |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 2617 | |
| 2618 | free_host: |
| 2619 | scsi_host_put(shost); |
| 2620 | return NULL; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2621 | } |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2622 | EXPORT_SYMBOL_GPL(iscsi_host_alloc); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2623 | |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2624 | static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session) |
| 2625 | { |
Mike Christie | 40a06e7 | 2009-03-05 14:46:05 -0600 | [diff] [blame] | 2626 | iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2627 | } |
| 2628 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2629 | /** |
| 2630 | * iscsi_host_remove - remove host and sessions |
| 2631 | * @shost: scsi host |
| 2632 | * |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2633 | * If there are any sessions left, this will initiate the removal and wait |
| 2634 | * for the completion. |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2635 | */ |
| 2636 | void iscsi_host_remove(struct Scsi_Host *shost) |
| 2637 | { |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2638 | struct iscsi_host *ihost = shost_priv(shost); |
| 2639 | unsigned long flags; |
| 2640 | |
| 2641 | spin_lock_irqsave(&ihost->lock, flags); |
| 2642 | ihost->state = ISCSI_HOST_REMOVED; |
| 2643 | spin_unlock_irqrestore(&ihost->lock, flags); |
| 2644 | |
| 2645 | iscsi_host_for_each_session(shost, iscsi_notify_host_removed); |
| 2646 | wait_event_interruptible(ihost->session_removal_wq, |
| 2647 | ihost->num_sessions == 0); |
| 2648 | if (signal_pending(current)) |
| 2649 | flush_signals(current); |
| 2650 | |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2651 | scsi_remove_host(shost); |
Mike Christie | 32ae763 | 2009-03-05 14:46:03 -0600 | [diff] [blame] | 2652 | if (ihost->workq) |
| 2653 | destroy_workqueue(ihost->workq); |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2654 | } |
| 2655 | EXPORT_SYMBOL_GPL(iscsi_host_remove); |
| 2656 | |
| 2657 | void iscsi_host_free(struct Scsi_Host *shost) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2658 | { |
| 2659 | struct iscsi_host *ihost = shost_priv(shost); |
| 2660 | |
| 2661 | kfree(ihost->netdev); |
| 2662 | kfree(ihost->hwaddress); |
| 2663 | kfree(ihost->initiatorname); |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2664 | scsi_host_put(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2665 | } |
Mike Christie | a4804cd | 2008-05-21 15:54:00 -0500 | [diff] [blame] | 2666 | EXPORT_SYMBOL_GPL(iscsi_host_free); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2667 | |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2668 | static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost) |
| 2669 | { |
| 2670 | struct iscsi_host *ihost = shost_priv(shost); |
| 2671 | unsigned long flags; |
| 2672 | |
| 2673 | shost = scsi_host_get(shost); |
| 2674 | if (!shost) { |
| 2675 | printk(KERN_ERR "Invalid state. Cannot notify host removal " |
| 2676 | "of session teardown event because host already " |
| 2677 | "removed.\n"); |
| 2678 | return; |
| 2679 | } |
| 2680 | |
| 2681 | spin_lock_irqsave(&ihost->lock, flags); |
| 2682 | ihost->num_sessions--; |
| 2683 | if (ihost->num_sessions == 0) |
| 2684 | wake_up(&ihost->session_removal_wq); |
| 2685 | spin_unlock_irqrestore(&ihost->lock, flags); |
| 2686 | scsi_host_put(shost); |
| 2687 | } |
| 2688 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2689 | /** |
| 2690 | * iscsi_session_setup - create iscsi cls session and host and session |
| 2691 | * @iscsit: iscsi transport template |
| 2692 | * @shost: scsi host |
| 2693 | * @cmds_max: session can queue |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2694 | * @cmd_task_size: LLD task private data size |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2695 | * @initial_cmdsn: initial CmdSN |
| 2696 | * |
| 2697 | * This can be used by software iscsi_transports that allocate |
| 2698 | * a session per scsi host. |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2699 | * |
| 2700 | * Callers should set cmds_max to the largest total numer (mgmt + scsi) of |
| 2701 | * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks |
| 2702 | * for nop handling and login/logout requests. |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2703 | */ |
| 2704 | struct iscsi_cls_session * |
| 2705 | iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost, |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 2706 | uint16_t cmds_max, int dd_size, int cmd_task_size, |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 2707 | uint32_t initial_cmdsn, unsigned int id) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2708 | { |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2709 | struct iscsi_host *ihost = shost_priv(shost); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2710 | struct iscsi_session *session; |
| 2711 | struct iscsi_cls_session *cls_session; |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2712 | int cmd_i, scsi_cmds, total_cmds = cmds_max; |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2713 | unsigned long flags; |
| 2714 | |
| 2715 | spin_lock_irqsave(&ihost->lock, flags); |
| 2716 | if (ihost->state == ISCSI_HOST_REMOVED) { |
| 2717 | spin_unlock_irqrestore(&ihost->lock, flags); |
| 2718 | return NULL; |
| 2719 | } |
| 2720 | ihost->num_sessions++; |
| 2721 | spin_unlock_irqrestore(&ihost->lock, flags); |
Mike Christie | 8e9a20c | 2008-06-16 10:11:33 -0500 | [diff] [blame] | 2722 | |
| 2723 | if (!total_cmds) |
| 2724 | total_cmds = ISCSI_DEF_XMIT_CMDS_MAX; |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 2725 | /* |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2726 | * The iscsi layer needs some tasks for nop handling and tmfs, |
| 2727 | * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX |
| 2728 | * + 1 command for scsi IO. |
Mike Christie | 3e5c28a | 2008-05-21 15:54:06 -0500 | [diff] [blame] | 2729 | */ |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2730 | if (total_cmds < ISCSI_TOTAL_CMDS_MIN) { |
| 2731 | printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue " |
| 2732 | "must be a power of two that is at least %d.\n", |
| 2733 | total_cmds, ISCSI_TOTAL_CMDS_MIN); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2734 | goto dec_session_count; |
Mike Christie | 1548271 | 2007-05-30 12:57:19 -0500 | [diff] [blame] | 2735 | } |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2736 | |
| 2737 | if (total_cmds > ISCSI_TOTAL_CMDS_MAX) { |
| 2738 | printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue " |
| 2739 | "must be a power of 2 less than or equal to %d.\n", |
| 2740 | cmds_max, ISCSI_TOTAL_CMDS_MAX); |
| 2741 | total_cmds = ISCSI_TOTAL_CMDS_MAX; |
| 2742 | } |
| 2743 | |
| 2744 | if (!is_power_of_2(total_cmds)) { |
| 2745 | printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue " |
| 2746 | "must be a power of 2.\n", total_cmds); |
| 2747 | total_cmds = rounddown_pow_of_two(total_cmds); |
| 2748 | if (total_cmds < ISCSI_TOTAL_CMDS_MIN) |
| 2749 | return NULL; |
| 2750 | printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n", |
| 2751 | total_cmds); |
| 2752 | } |
| 2753 | scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX; |
Mike Christie | 1548271 | 2007-05-30 12:57:19 -0500 | [diff] [blame] | 2754 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2755 | cls_session = iscsi_alloc_session(shost, iscsit, |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 2756 | sizeof(struct iscsi_session) + |
| 2757 | dd_size); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2758 | if (!cls_session) |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2759 | goto dec_session_count; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2760 | session = cls_session->dd_data; |
| 2761 | session->cls_session = cls_session; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2762 | session->host = shost; |
| 2763 | session->state = ISCSI_STATE_FREE; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2764 | session->fast_abort = 1; |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 2765 | session->tgt_reset_timeout = 30; |
Mike Christie | 4cd49ea | 2007-12-13 12:43:38 -0600 | [diff] [blame] | 2766 | session->lu_reset_timeout = 15; |
| 2767 | session->abort_timeout = 10; |
Mike Christie | 3cf7b23 | 2008-05-21 15:54:17 -0500 | [diff] [blame] | 2768 | session->scsi_cmds_max = scsi_cmds; |
| 2769 | session->cmds_max = total_cmds; |
Mike Christie | e072640 | 2007-07-26 12:46:48 -0500 | [diff] [blame] | 2770 | session->queued_cmdsn = session->cmdsn = initial_cmdsn; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2771 | session->exp_cmdsn = initial_cmdsn + 1; |
| 2772 | session->max_cmdsn = initial_cmdsn + 1; |
| 2773 | session->max_r2t = 1; |
| 2774 | session->tt = iscsit; |
Jayamohan Kallickal | b8b9e1b8 | 2009-09-22 08:21:22 +0530 | [diff] [blame] | 2775 | session->dd_data = cls_session->dd_data + sizeof(*session); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 2776 | mutex_init(&session->eh_mutex); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2777 | spin_lock_init(&session->lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2778 | |
| 2779 | /* initialize SCSI PDU commands pool */ |
| 2780 | if (iscsi_pool_init(&session->cmdpool, session->cmds_max, |
| 2781 | (void***)&session->cmds, |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2782 | cmd_task_size + sizeof(struct iscsi_task))) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2783 | goto cmdpool_alloc_fail; |
| 2784 | |
| 2785 | /* pre-format cmds pool with ITT */ |
| 2786 | for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) { |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2787 | struct iscsi_task *task = session->cmds[cmd_i]; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2788 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2789 | if (cmd_task_size) |
| 2790 | task->dd_data = &task[1]; |
| 2791 | task->itt = cmd_i; |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 2792 | task->state = ISCSI_TASK_FREE; |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2793 | INIT_LIST_HEAD(&task->running); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2794 | } |
| 2795 | |
Mike Christie | f53a88d | 2006-06-28 12:00:27 -0500 | [diff] [blame] | 2796 | if (!try_module_get(iscsit->owner)) |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2797 | goto module_get_fail; |
| 2798 | |
Mike Christie | 7970634 | 2008-05-21 15:54:12 -0500 | [diff] [blame] | 2799 | if (iscsi_add_session(cls_session, id)) |
Mike Christie | f53a88d | 2006-06-28 12:00:27 -0500 | [diff] [blame] | 2800 | goto cls_session_fail; |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2801 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2802 | return cls_session; |
| 2803 | |
| 2804 | cls_session_fail: |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2805 | module_put(iscsit->owner); |
| 2806 | module_get_fail: |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2807 | iscsi_pool_free(&session->cmdpool); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2808 | cmdpool_alloc_fail: |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2809 | iscsi_free_session(cls_session); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2810 | dec_session_count: |
| 2811 | iscsi_host_dec_session_cnt(shost); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2812 | return NULL; |
| 2813 | } |
| 2814 | EXPORT_SYMBOL_GPL(iscsi_session_setup); |
| 2815 | |
| 2816 | /** |
| 2817 | * iscsi_session_teardown - destroy session, host, and cls_session |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2818 | * @cls_session: iscsi session |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2819 | * |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2820 | * The driver must have called iscsi_remove_session before |
| 2821 | * calling this. |
| 2822 | */ |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2823 | void iscsi_session_teardown(struct iscsi_cls_session *cls_session) |
| 2824 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2825 | struct iscsi_session *session = cls_session->dd_data; |
Mike Christie | 63f75cc | 2006-07-24 15:47:29 -0500 | [diff] [blame] | 2826 | struct module *owner = cls_session->transport->owner; |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2827 | struct Scsi_Host *shost = session->host; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2828 | |
Olaf Kirch | 6320377 | 2007-12-13 12:43:25 -0600 | [diff] [blame] | 2829 | iscsi_pool_free(&session->cmdpool); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2830 | |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 2831 | kfree(session->password); |
| 2832 | kfree(session->password_in); |
| 2833 | kfree(session->username); |
| 2834 | kfree(session->username_in); |
Mike Christie | f3ff0c3 | 2006-07-24 15:47:50 -0500 | [diff] [blame] | 2835 | kfree(session->targetname); |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 2836 | kfree(session->initiatorname); |
| 2837 | kfree(session->ifacename); |
Mike Christie | f3ff0c3 | 2006-07-24 15:47:50 -0500 | [diff] [blame] | 2838 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2839 | iscsi_destroy_session(cls_session); |
Mike Christie | e5bd7b5 | 2008-09-24 11:46:10 -0500 | [diff] [blame] | 2840 | iscsi_host_dec_session_cnt(shost); |
Mike Christie | 63f75cc | 2006-07-24 15:47:29 -0500 | [diff] [blame] | 2841 | module_put(owner); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2842 | } |
| 2843 | EXPORT_SYMBOL_GPL(iscsi_session_teardown); |
| 2844 | |
| 2845 | /** |
| 2846 | * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn |
| 2847 | * @cls_session: iscsi_cls_session |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2848 | * @dd_size: private driver data size |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2849 | * @conn_idx: cid |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2850 | */ |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2851 | struct iscsi_cls_conn * |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2852 | iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size, |
| 2853 | uint32_t conn_idx) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2854 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 2855 | struct iscsi_session *session = cls_session->dd_data; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2856 | struct iscsi_conn *conn; |
| 2857 | struct iscsi_cls_conn *cls_conn; |
Mike Christie | d36ab6f | 2006-05-18 20:31:34 -0500 | [diff] [blame] | 2858 | char *data; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2859 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2860 | cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size, |
| 2861 | conn_idx); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2862 | if (!cls_conn) |
| 2863 | return NULL; |
| 2864 | conn = cls_conn->dd_data; |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2865 | memset(conn, 0, sizeof(*conn) + dd_size); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2866 | |
Mike Christie | 5d91e20 | 2008-05-21 15:54:01 -0500 | [diff] [blame] | 2867 | conn->dd_data = cls_conn->dd_data + sizeof(*conn); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2868 | conn->session = session; |
| 2869 | conn->cls_conn = cls_conn; |
| 2870 | conn->c_stage = ISCSI_CONN_INITIAL_STAGE; |
| 2871 | conn->id = conn_idx; |
| 2872 | conn->exp_statsn = 0; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2873 | conn->tmf_state = TMF_INITIAL; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2874 | |
| 2875 | init_timer(&conn->transport_timer); |
| 2876 | conn->transport_timer.data = (unsigned long)conn; |
| 2877 | conn->transport_timer.function = iscsi_check_transport_timeouts; |
| 2878 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2879 | INIT_LIST_HEAD(&conn->mgmtqueue); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 2880 | INIT_LIST_HEAD(&conn->cmdqueue); |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2881 | INIT_LIST_HEAD(&conn->requeue); |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 2882 | INIT_WORK(&conn->xmitwork, iscsi_xmitworker); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2883 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2884 | /* allocate login_task used for the login/text sequences */ |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2885 | spin_lock_bh(&session->lock); |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 2886 | if (!kfifo_out(&session->cmdpool.queue, |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2887 | (void*)&conn->login_task, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2888 | sizeof(void*))) { |
| 2889 | spin_unlock_bh(&session->lock); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2890 | goto login_task_alloc_fail; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2891 | } |
| 2892 | spin_unlock_bh(&session->lock); |
| 2893 | |
Mike Christie | cfeb2cf | 2008-12-02 00:32:09 -0600 | [diff] [blame] | 2894 | data = (char *) __get_free_pages(GFP_KERNEL, |
| 2895 | get_order(ISCSI_DEF_MAX_RECV_SEG_LEN)); |
Mike Christie | d36ab6f | 2006-05-18 20:31:34 -0500 | [diff] [blame] | 2896 | if (!data) |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2897 | goto login_task_data_alloc_fail; |
| 2898 | conn->login_task->data = conn->data = data; |
Mike Christie | d36ab6f | 2006-05-18 20:31:34 -0500 | [diff] [blame] | 2899 | |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2900 | init_timer(&conn->tmf_timer); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2901 | init_waitqueue_head(&conn->ehwait); |
| 2902 | |
| 2903 | return cls_conn; |
| 2904 | |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2905 | login_task_data_alloc_fail: |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 2906 | kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task, |
Mike Christie | d36ab6f | 2006-05-18 20:31:34 -0500 | [diff] [blame] | 2907 | sizeof(void*)); |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 2908 | login_task_alloc_fail: |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2909 | iscsi_destroy_conn(cls_conn); |
| 2910 | return NULL; |
| 2911 | } |
| 2912 | EXPORT_SYMBOL_GPL(iscsi_conn_setup); |
| 2913 | |
| 2914 | /** |
| 2915 | * iscsi_conn_teardown - teardown iscsi connection |
| 2916 | * cls_conn: iscsi class connection |
| 2917 | * |
| 2918 | * TODO: we may need to make this into a two step process |
| 2919 | * like scsi-mls remove + put host |
| 2920 | */ |
| 2921 | void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn) |
| 2922 | { |
| 2923 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 2924 | struct iscsi_session *session = conn->session; |
| 2925 | unsigned long flags; |
| 2926 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2927 | del_timer_sync(&conn->transport_timer); |
| 2928 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2929 | spin_lock_bh(&session->lock); |
| 2930 | conn->c_stage = ISCSI_CONN_CLEANUP_WAIT; |
| 2931 | if (session->leadconn == conn) { |
| 2932 | /* |
| 2933 | * leading connection? then give up on recovery. |
| 2934 | */ |
| 2935 | session->state = ISCSI_STATE_TERMINATE; |
| 2936 | wake_up(&conn->ehwait); |
| 2937 | } |
| 2938 | spin_unlock_bh(&session->lock); |
| 2939 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2940 | /* |
| 2941 | * Block until all in-progress commands for this connection |
| 2942 | * time out or fail. |
| 2943 | */ |
| 2944 | for (;;) { |
| 2945 | spin_lock_irqsave(session->host->host_lock, flags); |
| 2946 | if (!session->host->host_busy) { /* OK for ERL == 0 */ |
| 2947 | spin_unlock_irqrestore(session->host->host_lock, flags); |
| 2948 | break; |
| 2949 | } |
| 2950 | spin_unlock_irqrestore(session->host->host_lock, flags); |
| 2951 | msleep_interruptible(500); |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 2952 | iscsi_conn_printk(KERN_INFO, conn, "iscsi conn_destroy(): " |
| 2953 | "host_busy %d host_failed %d\n", |
| 2954 | session->host->host_busy, |
| 2955 | session->host->host_failed); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2956 | /* |
| 2957 | * force eh_abort() to unblock |
| 2958 | */ |
| 2959 | wake_up(&conn->ehwait); |
| 2960 | } |
| 2961 | |
Mike Christie | 779ea12 | 2007-02-28 17:32:15 -0600 | [diff] [blame] | 2962 | /* flush queued up work because we free the connection below */ |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 2963 | iscsi_suspend_tx(conn); |
Mike Christie | 779ea12 | 2007-02-28 17:32:15 -0600 | [diff] [blame] | 2964 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2965 | spin_lock_bh(&session->lock); |
Mike Christie | cfeb2cf | 2008-12-02 00:32:09 -0600 | [diff] [blame] | 2966 | free_pages((unsigned long) conn->data, |
| 2967 | get_order(ISCSI_DEF_MAX_RECV_SEG_LEN)); |
Mike Christie | f3ff0c3 | 2006-07-24 15:47:50 -0500 | [diff] [blame] | 2968 | kfree(conn->persistent_address); |
Stefani Seibold | 7acd72e | 2009-12-21 14:37:28 -0800 | [diff] [blame] | 2969 | kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task, |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2970 | sizeof(void*)); |
Mike Christie | e072640 | 2007-07-26 12:46:48 -0500 | [diff] [blame] | 2971 | if (session->leadconn == conn) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2972 | session->leadconn = NULL; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2973 | spin_unlock_bh(&session->lock); |
| 2974 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2975 | iscsi_destroy_conn(cls_conn); |
| 2976 | } |
| 2977 | EXPORT_SYMBOL_GPL(iscsi_conn_teardown); |
| 2978 | |
| 2979 | int iscsi_conn_start(struct iscsi_cls_conn *cls_conn) |
| 2980 | { |
| 2981 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 2982 | struct iscsi_session *session = conn->session; |
| 2983 | |
Mike Christie | ffd0436 | 2006-08-31 18:09:24 -0400 | [diff] [blame] | 2984 | if (!session) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 2985 | iscsi_conn_printk(KERN_ERR, conn, |
| 2986 | "can't start unbound connection\n"); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 2987 | return -EPERM; |
| 2988 | } |
| 2989 | |
Mike Christie | db98ccd | 2006-08-31 18:09:31 -0400 | [diff] [blame] | 2990 | if ((session->imm_data_en || !session->initial_r2t_en) && |
| 2991 | session->first_burst > session->max_burst) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 2992 | iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: " |
| 2993 | "first_burst %d max_burst %d\n", |
| 2994 | session->first_burst, session->max_burst); |
Mike Christie | ffd0436 | 2006-08-31 18:09:24 -0400 | [diff] [blame] | 2995 | return -EINVAL; |
| 2996 | } |
| 2997 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 2998 | if (conn->ping_timeout && !conn->recv_timeout) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 2999 | iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of " |
| 3000 | "zero. Using 5 seconds\n."); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3001 | conn->recv_timeout = 5; |
| 3002 | } |
| 3003 | |
| 3004 | if (conn->recv_timeout && !conn->ping_timeout) { |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 3005 | iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of " |
| 3006 | "zero. Using 5 seconds.\n"); |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3007 | conn->ping_timeout = 5; |
| 3008 | } |
| 3009 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3010 | spin_lock_bh(&session->lock); |
| 3011 | conn->c_stage = ISCSI_CONN_STARTED; |
| 3012 | session->state = ISCSI_STATE_LOGGED_IN; |
Mike Christie | e072640 | 2007-07-26 12:46:48 -0500 | [diff] [blame] | 3013 | session->queued_cmdsn = session->cmdsn; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3014 | |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3015 | conn->last_recv = jiffies; |
| 3016 | conn->last_ping = jiffies; |
| 3017 | if (conn->recv_timeout && conn->ping_timeout) |
| 3018 | mod_timer(&conn->transport_timer, |
| 3019 | jiffies + (conn->recv_timeout * HZ)); |
| 3020 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3021 | switch(conn->stop_stage) { |
| 3022 | case STOP_CONN_RECOVER: |
| 3023 | /* |
| 3024 | * unblock eh_abort() if it is blocked. re-try all |
| 3025 | * commands after successful recovery |
| 3026 | */ |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3027 | conn->stop_stage = 0; |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 3028 | conn->tmf_state = TMF_INITIAL; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3029 | session->age++; |
Mike Christie | 8b1d034 | 2008-01-31 13:36:53 -0600 | [diff] [blame] | 3030 | if (session->age == 16) |
| 3031 | session->age = 0; |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 3032 | break; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3033 | case STOP_CONN_TERM: |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3034 | conn->stop_stage = 0; |
| 3035 | break; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3036 | default: |
| 3037 | break; |
| 3038 | } |
| 3039 | spin_unlock_bh(&session->lock); |
| 3040 | |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3041 | iscsi_unblock_session(session->cls_session); |
Mike Christie | 6eabafb | 2008-01-31 13:36:43 -0600 | [diff] [blame] | 3042 | wake_up(&conn->ehwait); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3043 | return 0; |
| 3044 | } |
| 3045 | EXPORT_SYMBOL_GPL(iscsi_conn_start); |
| 3046 | |
| 3047 | static void |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 3048 | fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3049 | { |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 3050 | struct iscsi_task *task; |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 3051 | int i, state; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3052 | |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 3053 | for (i = 0; i < conn->session->cmds_max; i++) { |
| 3054 | task = conn->session->cmds[i]; |
| 3055 | if (task->sc) |
| 3056 | continue; |
| 3057 | |
| 3058 | if (task->state == ISCSI_TASK_FREE) |
| 3059 | continue; |
| 3060 | |
| 3061 | ISCSI_DBG_SESSION(conn->session, |
| 3062 | "failing mgmt itt 0x%x state %d\n", |
| 3063 | task->itt, task->state); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 3064 | state = ISCSI_TASK_ABRT_SESS_RECOV; |
| 3065 | if (task->state == ISCSI_TASK_PENDING) |
| 3066 | state = ISCSI_TASK_COMPLETED; |
| 3067 | iscsi_complete_task(task, state); |
| 3068 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3069 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3070 | } |
| 3071 | |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 3072 | static void iscsi_start_session_recovery(struct iscsi_session *session, |
| 3073 | struct iscsi_conn *conn, int flag) |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3074 | { |
Mike Christie | ed2abc7 | 2006-05-02 19:46:40 -0500 | [diff] [blame] | 3075 | int old_stop_stage; |
| 3076 | |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 3077 | mutex_lock(&session->eh_mutex); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3078 | spin_lock_bh(&session->lock); |
Mike Christie | ed2abc7 | 2006-05-02 19:46:40 -0500 | [diff] [blame] | 3079 | if (conn->stop_stage == STOP_CONN_TERM) { |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3080 | spin_unlock_bh(&session->lock); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 3081 | mutex_unlock(&session->eh_mutex); |
| 3082 | return; |
| 3083 | } |
| 3084 | |
| 3085 | /* |
Mike Christie | ed2abc7 | 2006-05-02 19:46:40 -0500 | [diff] [blame] | 3086 | * When this is called for the in_login state, we only want to clean |
Mike Christie | 9c19a7d | 2008-05-21 15:54:09 -0500 | [diff] [blame] | 3087 | * up the login task and connection. We do not need to block and set |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 3088 | * the recovery state again |
Mike Christie | ed2abc7 | 2006-05-02 19:46:40 -0500 | [diff] [blame] | 3089 | */ |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 3090 | if (flag == STOP_CONN_TERM) |
| 3091 | session->state = ISCSI_STATE_TERMINATE; |
| 3092 | else if (conn->stop_stage != STOP_CONN_RECOVER) |
| 3093 | session->state = ISCSI_STATE_IN_RECOVERY; |
Mike Christie | 4ae0a6c | 2010-03-09 14:14:51 -0600 | [diff] [blame] | 3094 | |
| 3095 | old_stop_stage = conn->stop_stage; |
| 3096 | conn->stop_stage = flag; |
Mike Christie | 26013ad | 2009-05-13 17:57:43 -0500 | [diff] [blame] | 3097 | spin_unlock_bh(&session->lock); |
Mike Christie | ed2abc7 | 2006-05-02 19:46:40 -0500 | [diff] [blame] | 3098 | |
Mike Christie | 26013ad | 2009-05-13 17:57:43 -0500 | [diff] [blame] | 3099 | del_timer_sync(&conn->transport_timer); |
| 3100 | iscsi_suspend_tx(conn); |
| 3101 | |
| 3102 | spin_lock_bh(&session->lock); |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 3103 | conn->c_stage = ISCSI_CONN_STOPPED; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3104 | spin_unlock_bh(&session->lock); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 3105 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3106 | /* |
| 3107 | * for connection level recovery we should not calculate |
| 3108 | * header digest. conn->hdr_size used for optimization |
| 3109 | * in hdr_extract() and will be re-negotiated at |
| 3110 | * set_param() time. |
| 3111 | */ |
| 3112 | if (flag == STOP_CONN_RECOVER) { |
| 3113 | conn->hdrdgst_en = 0; |
| 3114 | conn->datadgst_en = 0; |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 3115 | if (session->state == ISCSI_STATE_IN_RECOVERY && |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 3116 | old_stop_stage != STOP_CONN_RECOVER) { |
Mike Christie | 1b2c7af | 2009-03-05 14:45:58 -0600 | [diff] [blame] | 3117 | ISCSI_DBG_SESSION(session, "blocking session\n"); |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3118 | iscsi_block_session(session->cls_session); |
Mike Christie | 67a6111 | 2006-05-30 00:37:20 -0500 | [diff] [blame] | 3119 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3120 | } |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 3121 | |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 3122 | /* |
| 3123 | * flush queues. |
| 3124 | */ |
| 3125 | spin_lock_bh(&session->lock); |
Mike Christie | b3cd505 | 2009-05-13 17:57:49 -0500 | [diff] [blame] | 3126 | fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED); |
Mike Christie | 3bbaaad | 2009-05-13 17:57:46 -0500 | [diff] [blame] | 3127 | fail_mgmt_tasks(session, conn); |
Mike Christie | 5d12c05 | 2009-11-11 16:34:32 -0600 | [diff] [blame] | 3128 | memset(&conn->tmhdr, 0, sizeof(conn->tmhdr)); |
Mike Christie | 656cffc | 2006-05-18 20:31:42 -0500 | [diff] [blame] | 3129 | spin_unlock_bh(&session->lock); |
Mike Christie | 6724add | 2007-08-15 01:38:30 -0500 | [diff] [blame] | 3130 | mutex_unlock(&session->eh_mutex); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3131 | } |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3132 | |
| 3133 | void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag) |
| 3134 | { |
| 3135 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 3136 | struct iscsi_session *session = conn->session; |
| 3137 | |
| 3138 | switch (flag) { |
| 3139 | case STOP_CONN_RECOVER: |
| 3140 | case STOP_CONN_TERM: |
| 3141 | iscsi_start_session_recovery(session, conn, flag); |
Mike Christie | 8d2860b | 2006-05-02 19:46:47 -0500 | [diff] [blame] | 3142 | break; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3143 | default: |
Mike Christie | 322d739 | 2008-01-31 13:36:52 -0600 | [diff] [blame] | 3144 | iscsi_conn_printk(KERN_ERR, conn, |
| 3145 | "invalid stop flag %d\n", flag); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3146 | } |
| 3147 | } |
| 3148 | EXPORT_SYMBOL_GPL(iscsi_conn_stop); |
| 3149 | |
| 3150 | int iscsi_conn_bind(struct iscsi_cls_session *cls_session, |
| 3151 | struct iscsi_cls_conn *cls_conn, int is_leading) |
| 3152 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3153 | struct iscsi_session *session = cls_session->dd_data; |
Mike Christie | 9864404 | 2006-10-16 18:09:39 -0400 | [diff] [blame] | 3154 | struct iscsi_conn *conn = cls_conn->dd_data; |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3155 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3156 | spin_lock_bh(&session->lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3157 | if (is_leading) |
| 3158 | session->leadconn = conn; |
Mike Christie | 9864404 | 2006-10-16 18:09:39 -0400 | [diff] [blame] | 3159 | spin_unlock_bh(&session->lock); |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3160 | |
| 3161 | /* |
| 3162 | * Unblock xmitworker(), Login Phase will pass through. |
| 3163 | */ |
| 3164 | clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx); |
| 3165 | clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx); |
| 3166 | return 0; |
| 3167 | } |
| 3168 | EXPORT_SYMBOL_GPL(iscsi_conn_bind); |
| 3169 | |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3170 | static int iscsi_switch_str_param(char **param, char *new_val_buf) |
| 3171 | { |
| 3172 | char *new_val; |
| 3173 | |
| 3174 | if (*param) { |
| 3175 | if (!strcmp(*param, new_val_buf)) |
| 3176 | return 0; |
| 3177 | } |
| 3178 | |
| 3179 | new_val = kstrdup(new_val_buf, GFP_NOIO); |
| 3180 | if (!new_val) |
| 3181 | return -ENOMEM; |
| 3182 | |
| 3183 | kfree(*param); |
| 3184 | *param = new_val; |
| 3185 | return 0; |
| 3186 | } |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3187 | |
| 3188 | int iscsi_set_param(struct iscsi_cls_conn *cls_conn, |
| 3189 | enum iscsi_param param, char *buf, int buflen) |
| 3190 | { |
| 3191 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 3192 | struct iscsi_session *session = conn->session; |
| 3193 | uint32_t value; |
| 3194 | |
| 3195 | switch(param) { |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 3196 | case ISCSI_PARAM_FAST_ABORT: |
| 3197 | sscanf(buf, "%d", &session->fast_abort); |
| 3198 | break; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3199 | case ISCSI_PARAM_ABORT_TMO: |
| 3200 | sscanf(buf, "%d", &session->abort_timeout); |
| 3201 | break; |
| 3202 | case ISCSI_PARAM_LU_RESET_TMO: |
| 3203 | sscanf(buf, "%d", &session->lu_reset_timeout); |
| 3204 | break; |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 3205 | case ISCSI_PARAM_TGT_RESET_TMO: |
| 3206 | sscanf(buf, "%d", &session->tgt_reset_timeout); |
| 3207 | break; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3208 | case ISCSI_PARAM_PING_TMO: |
| 3209 | sscanf(buf, "%d", &conn->ping_timeout); |
| 3210 | break; |
| 3211 | case ISCSI_PARAM_RECV_TMO: |
| 3212 | sscanf(buf, "%d", &conn->recv_timeout); |
| 3213 | break; |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3214 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 3215 | sscanf(buf, "%d", &conn->max_recv_dlength); |
| 3216 | break; |
| 3217 | case ISCSI_PARAM_MAX_XMIT_DLENGTH: |
| 3218 | sscanf(buf, "%d", &conn->max_xmit_dlength); |
| 3219 | break; |
| 3220 | case ISCSI_PARAM_HDRDGST_EN: |
| 3221 | sscanf(buf, "%d", &conn->hdrdgst_en); |
| 3222 | break; |
| 3223 | case ISCSI_PARAM_DATADGST_EN: |
| 3224 | sscanf(buf, "%d", &conn->datadgst_en); |
| 3225 | break; |
| 3226 | case ISCSI_PARAM_INITIAL_R2T_EN: |
| 3227 | sscanf(buf, "%d", &session->initial_r2t_en); |
| 3228 | break; |
| 3229 | case ISCSI_PARAM_MAX_R2T: |
| 3230 | sscanf(buf, "%d", &session->max_r2t); |
| 3231 | break; |
| 3232 | case ISCSI_PARAM_IMM_DATA_EN: |
| 3233 | sscanf(buf, "%d", &session->imm_data_en); |
| 3234 | break; |
| 3235 | case ISCSI_PARAM_FIRST_BURST: |
| 3236 | sscanf(buf, "%d", &session->first_burst); |
| 3237 | break; |
| 3238 | case ISCSI_PARAM_MAX_BURST: |
| 3239 | sscanf(buf, "%d", &session->max_burst); |
| 3240 | break; |
| 3241 | case ISCSI_PARAM_PDU_INORDER_EN: |
| 3242 | sscanf(buf, "%d", &session->pdu_inorder_en); |
| 3243 | break; |
| 3244 | case ISCSI_PARAM_DATASEQ_INORDER_EN: |
| 3245 | sscanf(buf, "%d", &session->dataseq_inorder_en); |
| 3246 | break; |
| 3247 | case ISCSI_PARAM_ERL: |
| 3248 | sscanf(buf, "%d", &session->erl); |
| 3249 | break; |
| 3250 | case ISCSI_PARAM_IFMARKER_EN: |
| 3251 | sscanf(buf, "%d", &value); |
| 3252 | BUG_ON(value); |
| 3253 | break; |
| 3254 | case ISCSI_PARAM_OFMARKER_EN: |
| 3255 | sscanf(buf, "%d", &value); |
| 3256 | BUG_ON(value); |
| 3257 | break; |
| 3258 | case ISCSI_PARAM_EXP_STATSN: |
| 3259 | sscanf(buf, "%u", &conn->exp_statsn); |
| 3260 | break; |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 3261 | case ISCSI_PARAM_USERNAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3262 | return iscsi_switch_str_param(&session->username, buf); |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 3263 | case ISCSI_PARAM_USERNAME_IN: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3264 | return iscsi_switch_str_param(&session->username_in, buf); |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 3265 | case ISCSI_PARAM_PASSWORD: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3266 | return iscsi_switch_str_param(&session->password, buf); |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 3267 | case ISCSI_PARAM_PASSWORD_IN: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3268 | return iscsi_switch_str_param(&session->password_in, buf); |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3269 | case ISCSI_PARAM_TARGET_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3270 | return iscsi_switch_str_param(&session->targetname, buf); |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3271 | case ISCSI_PARAM_TPGT: |
| 3272 | sscanf(buf, "%d", &session->tpgt); |
| 3273 | break; |
| 3274 | case ISCSI_PARAM_PERSISTENT_PORT: |
| 3275 | sscanf(buf, "%d", &conn->persistent_port); |
| 3276 | break; |
| 3277 | case ISCSI_PARAM_PERSISTENT_ADDRESS: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3278 | return iscsi_switch_str_param(&conn->persistent_address, buf); |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 3279 | case ISCSI_PARAM_IFACE_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3280 | return iscsi_switch_str_param(&session->ifacename, buf); |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 3281 | case ISCSI_PARAM_INITIATOR_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3282 | return iscsi_switch_str_param(&session->initiatorname, buf); |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3283 | default: |
| 3284 | return -ENOSYS; |
| 3285 | } |
| 3286 | |
| 3287 | return 0; |
| 3288 | } |
| 3289 | EXPORT_SYMBOL_GPL(iscsi_set_param); |
| 3290 | |
| 3291 | int iscsi_session_get_param(struct iscsi_cls_session *cls_session, |
| 3292 | enum iscsi_param param, char *buf) |
| 3293 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3294 | struct iscsi_session *session = cls_session->dd_data; |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3295 | int len; |
| 3296 | |
| 3297 | switch(param) { |
Mike Christie | 843c0a8 | 2007-12-13 12:43:20 -0600 | [diff] [blame] | 3298 | case ISCSI_PARAM_FAST_ABORT: |
| 3299 | len = sprintf(buf, "%d\n", session->fast_abort); |
| 3300 | break; |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3301 | case ISCSI_PARAM_ABORT_TMO: |
| 3302 | len = sprintf(buf, "%d\n", session->abort_timeout); |
| 3303 | break; |
| 3304 | case ISCSI_PARAM_LU_RESET_TMO: |
| 3305 | len = sprintf(buf, "%d\n", session->lu_reset_timeout); |
| 3306 | break; |
Mike Christie | 3fe5ae8 | 2009-11-11 16:34:33 -0600 | [diff] [blame] | 3307 | case ISCSI_PARAM_TGT_RESET_TMO: |
| 3308 | len = sprintf(buf, "%d\n", session->tgt_reset_timeout); |
| 3309 | break; |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3310 | case ISCSI_PARAM_INITIAL_R2T_EN: |
| 3311 | len = sprintf(buf, "%d\n", session->initial_r2t_en); |
| 3312 | break; |
| 3313 | case ISCSI_PARAM_MAX_R2T: |
| 3314 | len = sprintf(buf, "%hu\n", session->max_r2t); |
| 3315 | break; |
| 3316 | case ISCSI_PARAM_IMM_DATA_EN: |
| 3317 | len = sprintf(buf, "%d\n", session->imm_data_en); |
| 3318 | break; |
| 3319 | case ISCSI_PARAM_FIRST_BURST: |
| 3320 | len = sprintf(buf, "%u\n", session->first_burst); |
| 3321 | break; |
| 3322 | case ISCSI_PARAM_MAX_BURST: |
| 3323 | len = sprintf(buf, "%u\n", session->max_burst); |
| 3324 | break; |
| 3325 | case ISCSI_PARAM_PDU_INORDER_EN: |
| 3326 | len = sprintf(buf, "%d\n", session->pdu_inorder_en); |
| 3327 | break; |
| 3328 | case ISCSI_PARAM_DATASEQ_INORDER_EN: |
| 3329 | len = sprintf(buf, "%d\n", session->dataseq_inorder_en); |
| 3330 | break; |
| 3331 | case ISCSI_PARAM_ERL: |
| 3332 | len = sprintf(buf, "%d\n", session->erl); |
| 3333 | break; |
| 3334 | case ISCSI_PARAM_TARGET_NAME: |
| 3335 | len = sprintf(buf, "%s\n", session->targetname); |
| 3336 | break; |
| 3337 | case ISCSI_PARAM_TPGT: |
| 3338 | len = sprintf(buf, "%d\n", session->tpgt); |
| 3339 | break; |
Mike Christie | b2c6416 | 2007-05-30 12:57:16 -0500 | [diff] [blame] | 3340 | case ISCSI_PARAM_USERNAME: |
| 3341 | len = sprintf(buf, "%s\n", session->username); |
| 3342 | break; |
| 3343 | case ISCSI_PARAM_USERNAME_IN: |
| 3344 | len = sprintf(buf, "%s\n", session->username_in); |
| 3345 | break; |
| 3346 | case ISCSI_PARAM_PASSWORD: |
| 3347 | len = sprintf(buf, "%s\n", session->password); |
| 3348 | break; |
| 3349 | case ISCSI_PARAM_PASSWORD_IN: |
| 3350 | len = sprintf(buf, "%s\n", session->password_in); |
| 3351 | break; |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 3352 | case ISCSI_PARAM_IFACE_NAME: |
| 3353 | len = sprintf(buf, "%s\n", session->ifacename); |
| 3354 | break; |
| 3355 | case ISCSI_PARAM_INITIATOR_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3356 | len = sprintf(buf, "%s\n", session->initiatorname); |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 3357 | break; |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3358 | default: |
| 3359 | return -ENOSYS; |
| 3360 | } |
| 3361 | |
| 3362 | return len; |
| 3363 | } |
| 3364 | EXPORT_SYMBOL_GPL(iscsi_session_get_param); |
| 3365 | |
| 3366 | int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn, |
| 3367 | enum iscsi_param param, char *buf) |
| 3368 | { |
| 3369 | struct iscsi_conn *conn = cls_conn->dd_data; |
| 3370 | int len; |
| 3371 | |
| 3372 | switch(param) { |
Mike Christie | f6d5180 | 2007-12-13 12:43:30 -0600 | [diff] [blame] | 3373 | case ISCSI_PARAM_PING_TMO: |
| 3374 | len = sprintf(buf, "%u\n", conn->ping_timeout); |
| 3375 | break; |
| 3376 | case ISCSI_PARAM_RECV_TMO: |
| 3377 | len = sprintf(buf, "%u\n", conn->recv_timeout); |
| 3378 | break; |
Mike Christie | a54a52c | 2006-06-28 12:00:23 -0500 | [diff] [blame] | 3379 | case ISCSI_PARAM_MAX_RECV_DLENGTH: |
| 3380 | len = sprintf(buf, "%u\n", conn->max_recv_dlength); |
| 3381 | break; |
| 3382 | case ISCSI_PARAM_MAX_XMIT_DLENGTH: |
| 3383 | len = sprintf(buf, "%u\n", conn->max_xmit_dlength); |
| 3384 | break; |
| 3385 | case ISCSI_PARAM_HDRDGST_EN: |
| 3386 | len = sprintf(buf, "%d\n", conn->hdrdgst_en); |
| 3387 | break; |
| 3388 | case ISCSI_PARAM_DATADGST_EN: |
| 3389 | len = sprintf(buf, "%d\n", conn->datadgst_en); |
| 3390 | break; |
| 3391 | case ISCSI_PARAM_IFMARKER_EN: |
| 3392 | len = sprintf(buf, "%d\n", conn->ifmarker_en); |
| 3393 | break; |
| 3394 | case ISCSI_PARAM_OFMARKER_EN: |
| 3395 | len = sprintf(buf, "%d\n", conn->ofmarker_en); |
| 3396 | break; |
| 3397 | case ISCSI_PARAM_EXP_STATSN: |
| 3398 | len = sprintf(buf, "%u\n", conn->exp_statsn); |
| 3399 | break; |
| 3400 | case ISCSI_PARAM_PERSISTENT_PORT: |
| 3401 | len = sprintf(buf, "%d\n", conn->persistent_port); |
| 3402 | break; |
| 3403 | case ISCSI_PARAM_PERSISTENT_ADDRESS: |
| 3404 | len = sprintf(buf, "%s\n", conn->persistent_address); |
| 3405 | break; |
| 3406 | default: |
| 3407 | return -ENOSYS; |
| 3408 | } |
| 3409 | |
| 3410 | return len; |
| 3411 | } |
| 3412 | EXPORT_SYMBOL_GPL(iscsi_conn_get_param); |
| 3413 | |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3414 | int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param, |
| 3415 | char *buf) |
| 3416 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3417 | struct iscsi_host *ihost = shost_priv(shost); |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3418 | int len; |
| 3419 | |
| 3420 | switch (param) { |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 3421 | case ISCSI_HOST_PARAM_NETDEV_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3422 | len = sprintf(buf, "%s\n", ihost->netdev); |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 3423 | break; |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3424 | case ISCSI_HOST_PARAM_HWADDRESS: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3425 | len = sprintf(buf, "%s\n", ihost->hwaddress); |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3426 | break; |
Mike Christie | 8ad5781 | 2007-05-30 12:57:13 -0500 | [diff] [blame] | 3427 | case ISCSI_HOST_PARAM_INITIATOR_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3428 | len = sprintf(buf, "%s\n", ihost->initiatorname); |
Mike Christie | 8ad5781 | 2007-05-30 12:57:13 -0500 | [diff] [blame] | 3429 | break; |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3430 | case ISCSI_HOST_PARAM_IPADDRESS: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3431 | len = sprintf(buf, "%s\n", ihost->local_address); |
Mike Christie | 88dfd34 | 2008-05-21 15:54:16 -0500 | [diff] [blame] | 3432 | break; |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3433 | default: |
| 3434 | return -ENOSYS; |
| 3435 | } |
| 3436 | |
| 3437 | return len; |
| 3438 | } |
| 3439 | EXPORT_SYMBOL_GPL(iscsi_host_get_param); |
| 3440 | |
| 3441 | int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param, |
| 3442 | char *buf, int buflen) |
| 3443 | { |
Mike Christie | 7561352 | 2008-05-21 15:53:59 -0500 | [diff] [blame] | 3444 | struct iscsi_host *ihost = shost_priv(shost); |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3445 | |
| 3446 | switch (param) { |
Mike Christie | d8196ed | 2007-05-30 12:57:25 -0500 | [diff] [blame] | 3447 | case ISCSI_HOST_PARAM_NETDEV_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3448 | return iscsi_switch_str_param(&ihost->netdev, buf); |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3449 | case ISCSI_HOST_PARAM_HWADDRESS: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3450 | return iscsi_switch_str_param(&ihost->hwaddress, buf); |
Mike Christie | 8ad5781 | 2007-05-30 12:57:13 -0500 | [diff] [blame] | 3451 | case ISCSI_HOST_PARAM_INITIATOR_NAME: |
Mike Christie | 5700b1a | 2009-05-13 17:57:40 -0500 | [diff] [blame] | 3452 | return iscsi_switch_str_param(&ihost->initiatorname, buf); |
Mike Christie | 0801c24 | 2007-05-30 12:57:12 -0500 | [diff] [blame] | 3453 | default: |
| 3454 | return -ENOSYS; |
| 3455 | } |
| 3456 | |
| 3457 | return 0; |
| 3458 | } |
| 3459 | EXPORT_SYMBOL_GPL(iscsi_host_set_param); |
| 3460 | |
Mike Christie | 7996a77 | 2006-04-06 21:13:41 -0500 | [diff] [blame] | 3461 | MODULE_AUTHOR("Mike Christie"); |
| 3462 | MODULE_DESCRIPTION("iSCSI library functions"); |
| 3463 | MODULE_LICENSE("GPL"); |