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