blob: 047543cd3fc1221dc68d19b1d050816dce92a241 [file] [log] [blame]
Mike Christie7996a772006-04-06 21:13:41 -05001/*
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 Christie7996a772006-04-06 21:13:41 -050025#include <linux/kfifo.h>
26#include <linux/delay.h>
vignesh babu11836572007-12-13 12:43:41 -060027#include <linux/log2.h>
Mike Christie8eb00532007-02-28 17:32:19 -060028#include <asm/unaligned.h>
Mike Christie7996a772006-04-06 21:13:41 -050029#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 Christie1b2c7af2009-03-05 14:45:58 -060041static int iscsi_dbg_lib;
42module_param_named(debug_libiscsi, iscsi_dbg_lib, int, S_IRUGO | S_IWUSR);
43MODULE_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 Christie77a23c22007-05-30 12:57:18 -050063/* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
64#define SNA32_CHECK 2147483648UL
Mike Christie7996a772006-04-06 21:13:41 -050065
Mike Christie77a23c22007-05-30 12:57:18 -050066static 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 */
73static 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 Christie32ae7632009-03-05 14:46:03 -060079inline 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
84 queue_work(ihost->workq, &conn->xmitwork);
85}
86EXPORT_SYMBOL_GPL(iscsi_conn_queue_work);
87
Mike Christie77a23c22007-05-30 12:57:18 -050088void
89iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
Mike Christie7996a772006-04-06 21:13:41 -050090{
91 uint32_t max_cmdsn = be32_to_cpu(hdr->max_cmdsn);
92 uint32_t exp_cmdsn = be32_to_cpu(hdr->exp_cmdsn);
93
Mike Christie77a23c22007-05-30 12:57:18 -050094 /*
95 * standard specifies this check for when to update expected and
96 * max sequence numbers
97 */
98 if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
99 return;
100
101 if (exp_cmdsn != session->exp_cmdsn &&
102 !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
Mike Christie7996a772006-04-06 21:13:41 -0500103 session->exp_cmdsn = exp_cmdsn;
104
Mike Christie77a23c22007-05-30 12:57:18 -0500105 if (max_cmdsn != session->max_cmdsn &&
106 !iscsi_sna_lt(max_cmdsn, session->max_cmdsn)) {
107 session->max_cmdsn = max_cmdsn;
108 /*
109 * if the window closed with IO queued, then kick the
110 * xmit thread
111 */
112 if (!list_empty(&session->leadconn->xmitqueue) ||
Mike Christie052d0142008-05-21 15:54:05 -0500113 !list_empty(&session->leadconn->mgmtqueue)) {
114 if (!(session->tt->caps & CAP_DATA_PATH_OFFLOAD))
Mike Christie32ae7632009-03-05 14:46:03 -0600115 iscsi_conn_queue_work(session->leadconn);
Mike Christie052d0142008-05-21 15:54:05 -0500116 }
Mike Christie77a23c22007-05-30 12:57:18 -0500117 }
Mike Christie7996a772006-04-06 21:13:41 -0500118}
Mike Christie77a23c22007-05-30 12:57:18 -0500119EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
Mike Christie7996a772006-04-06 21:13:41 -0500120
Mike Christie577577d2008-12-02 00:32:05 -0600121/**
122 * iscsi_prep_data_out_pdu - initialize Data-Out
123 * @task: scsi command task
124 * @r2t: R2T info
125 * @hdr: iscsi data in pdu
126 *
127 * Notes:
128 * Initialize Data-Out within this R2T sequence and finds
129 * proper data_offset within this SCSI command.
130 *
131 * This function is called with connection lock taken.
132 **/
133void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t,
134 struct iscsi_data *hdr)
Mike Christie7996a772006-04-06 21:13:41 -0500135{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500136 struct iscsi_conn *conn = task->conn;
Mike Christie577577d2008-12-02 00:32:05 -0600137 unsigned int left = r2t->data_length - r2t->sent;
138
139 task->hdr_len = sizeof(struct iscsi_data);
Mike Christie7996a772006-04-06 21:13:41 -0500140
141 memset(hdr, 0, sizeof(struct iscsi_data));
Mike Christie577577d2008-12-02 00:32:05 -0600142 hdr->ttt = r2t->ttt;
143 hdr->datasn = cpu_to_be32(r2t->datasn);
144 r2t->datasn++;
Mike Christie7996a772006-04-06 21:13:41 -0500145 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie577577d2008-12-02 00:32:05 -0600146 memcpy(hdr->lun, task->lun, sizeof(hdr->lun));
147 hdr->itt = task->hdr_itt;
148 hdr->exp_statsn = r2t->exp_statsn;
149 hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent);
150 if (left > conn->max_xmit_dlength) {
Mike Christie7996a772006-04-06 21:13:41 -0500151 hton24(hdr->dlength, conn->max_xmit_dlength);
Mike Christie577577d2008-12-02 00:32:05 -0600152 r2t->data_count = conn->max_xmit_dlength;
Mike Christie7996a772006-04-06 21:13:41 -0500153 hdr->flags = 0;
154 } else {
Mike Christie577577d2008-12-02 00:32:05 -0600155 hton24(hdr->dlength, left);
156 r2t->data_count = left;
Mike Christie7996a772006-04-06 21:13:41 -0500157 hdr->flags = ISCSI_FLAG_CMD_FINAL;
158 }
Mike Christie577577d2008-12-02 00:32:05 -0600159 conn->dataout_pdus_cnt++;
Mike Christie7996a772006-04-06 21:13:41 -0500160}
Mike Christie577577d2008-12-02 00:32:05 -0600161EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu);
Mike Christie7996a772006-04-06 21:13:41 -0500162
Mike Christie9c19a7d2008-05-21 15:54:09 -0500163static int iscsi_add_hdr(struct iscsi_task *task, unsigned len)
Boaz Harrosh004d6532007-12-13 12:43:23 -0600164{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500165 unsigned exp_len = task->hdr_len + len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600166
Mike Christie9c19a7d2008-05-21 15:54:09 -0500167 if (exp_len > task->hdr_max) {
Boaz Harrosh004d6532007-12-13 12:43:23 -0600168 WARN_ON(1);
169 return -EINVAL;
170 }
171
172 WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500173 task->hdr_len = exp_len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600174 return 0;
175}
176
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500177/*
178 * make an extended cdb AHS
179 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500180static int iscsi_prep_ecdb_ahs(struct iscsi_task *task)
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500181{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500182 struct scsi_cmnd *cmd = task->sc;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500183 unsigned rlen, pad_len;
184 unsigned short ahslength;
185 struct iscsi_ecdb_ahdr *ecdb_ahdr;
186 int rc;
187
Mike Christie9c19a7d2008-05-21 15:54:09 -0500188 ecdb_ahdr = iscsi_next_hdr(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500189 rlen = cmd->cmd_len - ISCSI_CDB_SIZE;
190
191 BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb));
192 ahslength = rlen + sizeof(ecdb_ahdr->reserved);
193
194 pad_len = iscsi_padding(rlen);
195
Mike Christie9c19a7d2008-05-21 15:54:09 -0500196 rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) +
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500197 sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len);
198 if (rc)
199 return rc;
200
201 if (pad_len)
202 memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len);
203
204 ecdb_ahdr->ahslength = cpu_to_be16(ahslength);
205 ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB;
206 ecdb_ahdr->reserved = 0;
207 memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen);
208
Mike Christie1b2c7af2009-03-05 14:45:58 -0600209 ISCSI_DBG_SESSION(task->conn->session,
210 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
211 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
212 "%u\n", cmd->cmd_len, rlen, pad_len, ahslength,
213 task->hdr_len);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500214 return 0;
215}
216
Mike Christie9c19a7d2008-05-21 15:54:09 -0500217static int iscsi_prep_bidi_ahs(struct iscsi_task *task)
Boaz Harroshc07d4442008-04-18 10:11:52 -0500218{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500219 struct scsi_cmnd *sc = task->sc;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500220 struct iscsi_rlength_ahdr *rlen_ahdr;
221 int rc;
222
Mike Christie9c19a7d2008-05-21 15:54:09 -0500223 rlen_ahdr = iscsi_next_hdr(task);
224 rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500225 if (rc)
226 return rc;
227
228 rlen_ahdr->ahslength =
229 cpu_to_be16(sizeof(rlen_ahdr->read_length) +
230 sizeof(rlen_ahdr->reserved));
231 rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH;
232 rlen_ahdr->reserved = 0;
233 rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length);
234
Mike Christie1b2c7af2009-03-05 14:45:58 -0600235 ISCSI_DBG_SESSION(task->conn->session,
236 "bidi-in rlen_ahdr->read_length(%d) "
237 "rlen_ahdr->ahslength(%d)\n",
238 be32_to_cpu(rlen_ahdr->read_length),
239 be16_to_cpu(rlen_ahdr->ahslength));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500240 return 0;
241}
242
Mike Christie7996a772006-04-06 21:13:41 -0500243/**
244 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
Mike Christie9c19a7d2008-05-21 15:54:09 -0500245 * @task: iscsi task
Mike Christie7996a772006-04-06 21:13:41 -0500246 *
247 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
248 * fields like dlength or final based on how much data it sends
249 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500250static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500251{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500252 struct iscsi_conn *conn = task->conn;
Mike Christie7996a772006-04-06 21:13:41 -0500253 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500254 struct scsi_cmnd *sc = task->sc;
Mike Christie577577d2008-12-02 00:32:05 -0600255 struct iscsi_cmd *hdr;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500256 unsigned hdrlength, cmd_len;
Mike Christie262ef632008-12-02 00:32:13 -0600257 itt_t itt;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600258 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500259
Mike Christie184b57c2009-05-13 17:57:39 -0500260 if (conn->session->tt->alloc_pdu) {
261 rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
262 if (rc)
263 return rc;
264 }
Mike Christie577577d2008-12-02 00:32:05 -0600265 hdr = (struct iscsi_cmd *) task->hdr;
Mike Christie262ef632008-12-02 00:32:13 -0600266 itt = hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600267 memset(hdr, 0, sizeof(*hdr));
268
Mike Christie2ff79d52008-12-02 00:32:14 -0600269 if (session->tt->parse_pdu_itt)
270 hdr->itt = task->hdr_itt = itt;
271 else
272 hdr->itt = task->hdr_itt = build_itt(task->itt,
273 task->conn->session->age);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500274 task->hdr_len = 0;
275 rc = iscsi_add_hdr(task, sizeof(*hdr));
Boaz Harrosh004d6532007-12-13 12:43:23 -0600276 if (rc)
277 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600278 hdr->opcode = ISCSI_OP_SCSI_CMD;
279 hdr->flags = ISCSI_ATTR_SIMPLE;
280 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
Mike Christie577577d2008-12-02 00:32:05 -0600281 memcpy(task->lun, hdr->lun, sizeof(task->lun));
Mike Christie577577d2008-12-02 00:32:05 -0600282 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
Olaf Kircha8ac6312007-12-13 12:43:35 -0600283 session->cmdsn++;
284 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500285 cmd_len = sc->cmd_len;
286 if (cmd_len < ISCSI_CDB_SIZE)
287 memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len);
288 else if (cmd_len > ISCSI_CDB_SIZE) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500289 rc = iscsi_prep_ecdb_ahs(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500290 if (rc)
291 return rc;
292 cmd_len = ISCSI_CDB_SIZE;
293 }
294 memcpy(hdr->cdb, sc->cmnd, cmd_len);
Mike Christie7996a772006-04-06 21:13:41 -0500295
Mike Christie9c19a7d2008-05-21 15:54:09 -0500296 task->imm_count = 0;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500297 if (scsi_bidi_cmnd(sc)) {
298 hdr->flags |= ISCSI_FLAG_CMD_READ;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500299 rc = iscsi_prep_bidi_ahs(task);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500300 if (rc)
301 return rc;
302 }
Mike Christie7996a772006-04-06 21:13:41 -0500303 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Boaz Harroshc07d4442008-04-18 10:11:52 -0500304 unsigned out_len = scsi_out(sc)->length;
Mike Christie577577d2008-12-02 00:32:05 -0600305 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
306
Boaz Harroshc07d4442008-04-18 10:11:52 -0500307 hdr->data_length = cpu_to_be32(out_len);
Mike Christie7996a772006-04-06 21:13:41 -0500308 hdr->flags |= ISCSI_FLAG_CMD_WRITE;
309 /*
310 * Write counters:
311 *
312 * imm_count bytes to be sent right after
313 * SCSI PDU Header
314 *
315 * unsol_count bytes(as Data-Out) to be sent
316 * without R2T ack right after
317 * immediate data
318 *
Mike Christie577577d2008-12-02 00:32:05 -0600319 * r2t data_length bytes to be sent via R2T ack's
Mike Christie7996a772006-04-06 21:13:41 -0500320 *
321 * pad_count bytes to be sent as zero-padding
322 */
Mike Christie577577d2008-12-02 00:32:05 -0600323 memset(r2t, 0, sizeof(*r2t));
Mike Christie7996a772006-04-06 21:13:41 -0500324
325 if (session->imm_data_en) {
Boaz Harroshc07d4442008-04-18 10:11:52 -0500326 if (out_len >= session->first_burst)
Mike Christie9c19a7d2008-05-21 15:54:09 -0500327 task->imm_count = min(session->first_burst,
Mike Christie7996a772006-04-06 21:13:41 -0500328 conn->max_xmit_dlength);
329 else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500330 task->imm_count = min(out_len,
Mike Christie7996a772006-04-06 21:13:41 -0500331 conn->max_xmit_dlength);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500332 hton24(hdr->dlength, task->imm_count);
Mike Christie7996a772006-04-06 21:13:41 -0500333 } else
Olaf Kircha8ac6312007-12-13 12:43:35 -0600334 zero_data(hdr->dlength);
Mike Christie7996a772006-04-06 21:13:41 -0500335
Mike Christieffd04362006-08-31 18:09:24 -0400336 if (!session->initial_r2t_en) {
Mike Christie577577d2008-12-02 00:32:05 -0600337 r2t->data_length = min(session->first_burst, out_len) -
338 task->imm_count;
339 r2t->data_offset = task->imm_count;
340 r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
341 r2t->exp_statsn = cpu_to_be32(conn->exp_statsn);
Mike Christieffd04362006-08-31 18:09:24 -0400342 }
343
Mike Christie577577d2008-12-02 00:32:05 -0600344 if (!task->unsol_r2t.data_length)
Mike Christie7996a772006-04-06 21:13:41 -0500345 /* No unsolicit Data-Out's */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600346 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie7996a772006-04-06 21:13:41 -0500347 } else {
Mike Christie7996a772006-04-06 21:13:41 -0500348 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
349 zero_data(hdr->dlength);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500350 hdr->data_length = cpu_to_be32(scsi_in(sc)->length);
Mike Christie7996a772006-04-06 21:13:41 -0500351
352 if (sc->sc_data_direction == DMA_FROM_DEVICE)
353 hdr->flags |= ISCSI_FLAG_CMD_READ;
354 }
355
Boaz Harrosh004d6532007-12-13 12:43:23 -0600356 /* calculate size of additional header segments (AHSs) */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500357 hdrlength = task->hdr_len - sizeof(*hdr);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600358
359 WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
360 hdrlength /= ISCSI_PAD_LEN;
361
362 WARN_ON(hdrlength >= 256);
363 hdr->hlength = hdrlength & 0xFF;
364
Mike Christie577577d2008-12-02 00:32:05 -0600365 if (session->tt->init_task && session->tt->init_task(task))
Mike Christie052d0142008-05-21 15:54:05 -0500366 return -EIO;
367
Mike Christie9c19a7d2008-05-21 15:54:09 -0500368 task->state = ISCSI_TASK_RUNNING;
369 list_move_tail(&task->running, &conn->run_list);
Mike Christie77a23c22007-05-30 12:57:18 -0500370
Olaf Kircha8ac6312007-12-13 12:43:35 -0600371 conn->scsicmd_pdus_cnt++;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600372 ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x "
373 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
374 scsi_bidi_cmnd(sc) ? "bidirectional" :
375 sc->sc_data_direction == DMA_TO_DEVICE ?
376 "write" : "read", conn->id, sc, sc->cmnd[0],
377 task->itt, scsi_bufflen(sc),
378 scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
379 session->cmdsn,
380 session->max_cmdsn - session->exp_cmdsn + 1);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600381 return 0;
Mike Christie7996a772006-04-06 21:13:41 -0500382}
Mike Christie7996a772006-04-06 21:13:41 -0500383
384/**
Mike Christie3e5c28a2008-05-21 15:54:06 -0500385 * iscsi_complete_command - finish a task
Mike Christie9c19a7d2008-05-21 15:54:09 -0500386 * @task: iscsi cmd task
Mike Christie7996a772006-04-06 21:13:41 -0500387 *
388 * Must be called with session lock.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500389 * This function returns the scsi command to scsi-ml or cleans
390 * up mgmt tasks then returns the task to the pool.
Mike Christie7996a772006-04-06 21:13:41 -0500391 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500392static void iscsi_complete_command(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500393{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500394 struct iscsi_conn *conn = task->conn;
Mike Christiec1635cb2007-12-13 12:43:33 -0600395 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500396 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500397
Mike Christie577577d2008-12-02 00:32:05 -0600398 session->tt->cleanup_task(task);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500399 list_del_init(&task->running);
400 task->state = ISCSI_TASK_COMPLETED;
401 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500402
Mike Christie9c19a7d2008-05-21 15:54:09 -0500403 if (conn->task == task)
404 conn->task = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500405 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -0500406 * login task is preallocated so do not free
Mike Christie3e5c28a2008-05-21 15:54:06 -0500407 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500408 if (conn->login_task == task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500409 return;
410
Mike Christie9c19a7d2008-05-21 15:54:09 -0500411 __kfifo_put(session->cmdpool.queue, (void*)&task, sizeof(void*));
Mike Christie052d0142008-05-21 15:54:05 -0500412
Mike Christie9c19a7d2008-05-21 15:54:09 -0500413 if (conn->ping_task == task)
414 conn->ping_task = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500415
416 if (sc) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500417 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500418 /* SCSI eh reuses commands to verify us */
419 sc->SCp.ptr = NULL;
420 /*
421 * queue command may call this to free the task, but
422 * not have setup the sc callback
423 */
424 if (sc->scsi_done)
425 sc->scsi_done(sc);
426 }
Mike Christie7996a772006-04-06 21:13:41 -0500427}
428
Mike Christie913e5bf2008-05-21 15:54:18 -0500429void __iscsi_get_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400430{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500431 atomic_inc(&task->refcount);
Mike Christie60ecebf2006-08-31 18:09:25 -0400432}
Mike Christie913e5bf2008-05-21 15:54:18 -0500433EXPORT_SYMBOL_GPL(__iscsi_get_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400434
Mike Christie9c19a7d2008-05-21 15:54:09 -0500435static void __iscsi_put_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400436{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500437 if (atomic_dec_and_test(&task->refcount))
438 iscsi_complete_command(task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400439}
440
Mike Christie9c19a7d2008-05-21 15:54:09 -0500441void iscsi_put_task(struct iscsi_task *task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500442{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500443 struct iscsi_session *session = task->conn->session;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500444
445 spin_lock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500446 __iscsi_put_task(task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500447 spin_unlock_bh(&session->lock);
448}
Mike Christie9c19a7d2008-05-21 15:54:09 -0500449EXPORT_SYMBOL_GPL(iscsi_put_task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500450
Mike Christieb3a7ea82007-12-13 12:43:26 -0600451/*
452 * session lock must be held
453 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500454static void fail_command(struct iscsi_conn *conn, struct iscsi_task *task,
Mike Christieb3a7ea82007-12-13 12:43:26 -0600455 int err)
456{
457 struct scsi_cmnd *sc;
458
Mike Christie9c19a7d2008-05-21 15:54:09 -0500459 sc = task->sc;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600460 if (!sc)
461 return;
462
Mike Christie9c19a7d2008-05-21 15:54:09 -0500463 if (task->state == ISCSI_TASK_PENDING)
Mike Christieb3a7ea82007-12-13 12:43:26 -0600464 /*
465 * cmd never made it to the xmit thread, so we should not count
466 * the cmd in the sequencing
467 */
468 conn->session->queued_cmdsn--;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600469
470 sc->result = err;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500471 if (!scsi_bidi_cmnd(sc))
472 scsi_set_resid(sc, scsi_bufflen(sc));
473 else {
474 scsi_out(sc)->resid = scsi_out(sc)->length;
475 scsi_in(sc)->resid = scsi_in(sc)->length;
476 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500477
Mike Christie9c19a7d2008-05-21 15:54:09 -0500478 if (conn->task == task)
479 conn->task = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600480 /* release ref from queuecommand */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500481 __iscsi_put_task(task);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600482}
483
Mike Christie3e5c28a2008-05-21 15:54:06 -0500484static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500485 struct iscsi_task *task)
Mike Christie052d0142008-05-21 15:54:05 -0500486{
487 struct iscsi_session *session = conn->session;
Mike Christie577577d2008-12-02 00:32:05 -0600488 struct iscsi_hdr *hdr = task->hdr;
Mike Christie052d0142008-05-21 15:54:05 -0500489 struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
490
491 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
492 return -ENOTCONN;
493
494 if (hdr->opcode != (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) &&
495 hdr->opcode != (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
496 nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
497 /*
498 * pre-format CmdSN for outgoing PDU.
499 */
500 nop->cmdsn = cpu_to_be32(session->cmdsn);
501 if (hdr->itt != RESERVED_ITT) {
Mike Christie052d0142008-05-21 15:54:05 -0500502 /*
503 * TODO: We always use immediate, so we never hit this.
504 * If we start to send tmfs or nops as non-immediate then
505 * we should start checking the cmdsn numbers for mgmt tasks.
506 */
507 if (conn->c_stage == ISCSI_CONN_STARTED &&
508 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
509 session->queued_cmdsn++;
510 session->cmdsn++;
511 }
512 }
513
Mike Christieae15f802008-12-02 00:32:15 -0600514 if (session->tt->init_task && session->tt->init_task(task))
515 return -EIO;
Mike Christie052d0142008-05-21 15:54:05 -0500516
517 if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
518 session->state = ISCSI_STATE_LOGGING_OUT;
519
Mike Christie577577d2008-12-02 00:32:05 -0600520 task->state = ISCSI_TASK_RUNNING;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500521 list_move_tail(&task->running, &conn->mgmt_run_list);
Mike Christie1b2c7af2009-03-05 14:45:58 -0600522 ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x "
523 "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK,
524 hdr->itt, task->data_count);
Mike Christie052d0142008-05-21 15:54:05 -0500525 return 0;
526}
527
Mike Christie9c19a7d2008-05-21 15:54:09 -0500528static struct iscsi_task *
Mike Christief6d51802007-12-13 12:43:30 -0600529__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
530 char *data, uint32_t data_size)
531{
532 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500533 struct iscsi_task *task;
Mike Christie262ef632008-12-02 00:32:13 -0600534 itt_t itt;
Mike Christief6d51802007-12-13 12:43:30 -0600535
536 if (session->state == ISCSI_STATE_TERMINATE)
537 return NULL;
538
539 if (hdr->opcode == (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) ||
540 hdr->opcode == (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
541 /*
542 * Login and Text are sent serially, in
543 * request-followed-by-response sequence.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500544 * Same task can be used. Same ITT must be used.
545 * Note that login_task is preallocated at conn_create().
Mike Christief6d51802007-12-13 12:43:30 -0600546 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500547 task = conn->login_task;
Mike Christief6d51802007-12-13 12:43:30 -0600548 else {
549 BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
550 BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
551
Mike Christie3e5c28a2008-05-21 15:54:06 -0500552 if (!__kfifo_get(session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500553 (void*)&task, sizeof(void*)))
Mike Christief6d51802007-12-13 12:43:30 -0600554 return NULL;
555 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500556 /*
557 * released in complete pdu for task we expect a response for, and
558 * released by the lld when it has transmitted the task for
559 * pdus we do not expect a response for.
560 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500561 atomic_set(&task->refcount, 1);
562 task->conn = conn;
563 task->sc = NULL;
Mike Christief6d51802007-12-13 12:43:30 -0600564
565 if (data_size) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500566 memcpy(task->data, data, data_size);
567 task->data_count = data_size;
Mike Christief6d51802007-12-13 12:43:30 -0600568 } else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500569 task->data_count = 0;
Mike Christief6d51802007-12-13 12:43:30 -0600570
Mike Christie184b57c2009-05-13 17:57:39 -0500571 if (conn->session->tt->alloc_pdu) {
572 if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
573 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
574 "pdu for mgmt task.\n");
575 goto requeue_task;
576 }
Mike Christie577577d2008-12-02 00:32:05 -0600577 }
Mike Christie184b57c2009-05-13 17:57:39 -0500578
Mike Christie262ef632008-12-02 00:32:13 -0600579 itt = task->hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600580 task->hdr_len = sizeof(struct iscsi_hdr);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500581 memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr));
Mike Christie262ef632008-12-02 00:32:13 -0600582
583 if (hdr->itt != RESERVED_ITT) {
584 if (session->tt->parse_pdu_itt)
585 task->hdr->itt = itt;
586 else
587 task->hdr->itt = build_itt(task->itt,
588 task->conn->session->age);
589 }
590
Mike Christie9c19a7d2008-05-21 15:54:09 -0500591 INIT_LIST_HEAD(&task->running);
592 list_add_tail(&task->running, &conn->mgmtqueue);
Mike Christie052d0142008-05-21 15:54:05 -0500593
594 if (session->tt->caps & CAP_DATA_PATH_OFFLOAD) {
Mike Christie577577d2008-12-02 00:32:05 -0600595 if (iscsi_prep_mgmt_task(conn, task))
596 goto free_task;
Mike Christie052d0142008-05-21 15:54:05 -0500597
Mike Christie9c19a7d2008-05-21 15:54:09 -0500598 if (session->tt->xmit_task(task))
Mike Christie577577d2008-12-02 00:32:05 -0600599 goto free_task;
Mike Christie052d0142008-05-21 15:54:05 -0500600
601 } else
Mike Christie32ae7632009-03-05 14:46:03 -0600602 iscsi_conn_queue_work(conn);
Mike Christie052d0142008-05-21 15:54:05 -0500603
Mike Christie9c19a7d2008-05-21 15:54:09 -0500604 return task;
Mike Christie577577d2008-12-02 00:32:05 -0600605
606free_task:
607 __iscsi_put_task(task);
608 return NULL;
609
610requeue_task:
611 if (task != conn->login_task)
612 __kfifo_put(session->cmdpool.queue, (void*)&task,
613 sizeof(void*));
614 return NULL;
Mike Christief6d51802007-12-13 12:43:30 -0600615}
616
617int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
618 char *data, uint32_t data_size)
619{
620 struct iscsi_conn *conn = cls_conn->dd_data;
621 struct iscsi_session *session = conn->session;
622 int err = 0;
623
624 spin_lock_bh(&session->lock);
625 if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
626 err = -EPERM;
627 spin_unlock_bh(&session->lock);
Mike Christief6d51802007-12-13 12:43:30 -0600628 return err;
629}
630EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
631
Mike Christie7996a772006-04-06 21:13:41 -0500632/**
633 * iscsi_cmd_rsp - SCSI Command Response processing
634 * @conn: iscsi connection
635 * @hdr: iscsi header
Mike Christie9c19a7d2008-05-21 15:54:09 -0500636 * @task: scsi command task
Mike Christie7996a772006-04-06 21:13:41 -0500637 * @data: cmd data buffer
638 * @datalen: len of buffer
639 *
640 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
Mike Christie9c19a7d2008-05-21 15:54:09 -0500641 * then completes the command and task.
Mike Christie7996a772006-04-06 21:13:41 -0500642 **/
Mike Christie77a23c22007-05-30 12:57:18 -0500643static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500644 struct iscsi_task *task, char *data,
Mike Christie77a23c22007-05-30 12:57:18 -0500645 int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500646{
Mike Christie7996a772006-04-06 21:13:41 -0500647 struct iscsi_cmd_rsp *rhdr = (struct iscsi_cmd_rsp *)hdr;
648 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500649 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500650
Mike Christie77a23c22007-05-30 12:57:18 -0500651 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie7996a772006-04-06 21:13:41 -0500652 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
653
654 sc->result = (DID_OK << 16) | rhdr->cmd_status;
655
656 if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
657 sc->result = DID_ERROR << 16;
658 goto out;
659 }
660
661 if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
Mike Christie9b80cb42006-12-17 12:10:28 -0600662 uint16_t senselen;
Mike Christie7996a772006-04-06 21:13:41 -0500663
664 if (datalen < 2) {
665invalid_datalen:
Mike Christie322d7392008-01-31 13:36:52 -0600666 iscsi_conn_printk(KERN_ERR, conn,
667 "Got CHECK_CONDITION but invalid data "
668 "buffer size of %d\n", datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500669 sc->result = DID_BAD_TARGET << 16;
670 goto out;
671 }
672
Harvey Harrison8f3339912008-05-21 15:54:20 -0500673 senselen = get_unaligned_be16(data);
Mike Christie7996a772006-04-06 21:13:41 -0500674 if (datalen < senselen)
675 goto invalid_datalen;
676
677 memcpy(sc->sense_buffer, data + 2,
Mike Christie9b80cb42006-12-17 12:10:28 -0600678 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie1b2c7af2009-03-05 14:45:58 -0600679 ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n",
680 min_t(uint16_t, senselen,
681 SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500682 }
683
Boaz Harroshc07d4442008-04-18 10:11:52 -0500684 if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
685 ISCSI_FLAG_CMD_BIDI_OVERFLOW)) {
686 int res_count = be32_to_cpu(rhdr->bi_residual_count);
687
688 if (scsi_bidi_cmnd(sc) && res_count > 0 &&
689 (rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW ||
690 res_count <= scsi_in(sc)->length))
691 scsi_in(sc)->resid = res_count;
692 else
693 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
694 }
695
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600696 if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
697 ISCSI_FLAG_CMD_OVERFLOW)) {
Mike Christie7996a772006-04-06 21:13:41 -0500698 int res_count = be32_to_cpu(rhdr->residual_count);
699
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600700 if (res_count > 0 &&
701 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
702 res_count <= scsi_bufflen(sc)))
Boaz Harroshc07d4442008-04-18 10:11:52 -0500703 /* write side for bidi or uni-io set_resid */
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900704 scsi_set_resid(sc, res_count);
Mike Christie7996a772006-04-06 21:13:41 -0500705 else
706 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500707 }
Mike Christie7996a772006-04-06 21:13:41 -0500708out:
Mike Christie1b2c7af2009-03-05 14:45:58 -0600709 ISCSI_DBG_SESSION(session, "done [sc %p res %d itt 0x%x]\n",
710 sc, sc->result, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500711 conn->scsirsp_pdus_cnt++;
712
Mike Christie9c19a7d2008-05-21 15:54:09 -0500713 __iscsi_put_task(task);
Mike Christie7996a772006-04-06 21:13:41 -0500714}
715
Mike Christie1d9edf02008-09-24 11:46:09 -0500716/**
717 * iscsi_data_in_rsp - SCSI Data-In Response processing
718 * @conn: iscsi connection
719 * @hdr: iscsi pdu
720 * @task: scsi command task
721 **/
722static void
723iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
724 struct iscsi_task *task)
725{
726 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr;
727 struct scsi_cmnd *sc = task->sc;
728
729 if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
730 return;
731
Mike Christieedbc9aa052009-05-13 17:57:42 -0500732 iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr);
Mike Christie1d9edf02008-09-24 11:46:09 -0500733 sc->result = (DID_OK << 16) | rhdr->cmd_status;
734 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
735 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
736 ISCSI_FLAG_DATA_OVERFLOW)) {
737 int res_count = be32_to_cpu(rhdr->residual_count);
738
739 if (res_count > 0 &&
740 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
741 res_count <= scsi_in(sc)->length))
742 scsi_in(sc)->resid = res_count;
743 else
744 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
745 }
746
747 conn->scsirsp_pdus_cnt++;
748 __iscsi_put_task(task);
749}
750
Mike Christie7ea8b822006-07-24 15:47:22 -0500751static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
752{
753 struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
754
755 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
756 conn->tmfrsp_pdus_cnt++;
757
Mike Christie843c0a82007-12-13 12:43:20 -0600758 if (conn->tmf_state != TMF_QUEUED)
Mike Christie7ea8b822006-07-24 15:47:22 -0500759 return;
760
761 if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
Mike Christie843c0a82007-12-13 12:43:20 -0600762 conn->tmf_state = TMF_SUCCESS;
Mike Christie7ea8b822006-07-24 15:47:22 -0500763 else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
Mike Christie843c0a82007-12-13 12:43:20 -0600764 conn->tmf_state = TMF_NOT_FOUND;
Mike Christie7ea8b822006-07-24 15:47:22 -0500765 else
Mike Christie843c0a82007-12-13 12:43:20 -0600766 conn->tmf_state = TMF_FAILED;
Mike Christie7ea8b822006-07-24 15:47:22 -0500767 wake_up(&conn->ehwait);
768}
769
Mike Christief6d51802007-12-13 12:43:30 -0600770static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
771{
772 struct iscsi_nopout hdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500773 struct iscsi_task *task;
Mike Christief6d51802007-12-13 12:43:30 -0600774
Mike Christie9c19a7d2008-05-21 15:54:09 -0500775 if (!rhdr && conn->ping_task)
Mike Christief6d51802007-12-13 12:43:30 -0600776 return;
777
778 memset(&hdr, 0, sizeof(struct iscsi_nopout));
779 hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
780 hdr.flags = ISCSI_FLAG_CMD_FINAL;
781
782 if (rhdr) {
783 memcpy(hdr.lun, rhdr->lun, 8);
784 hdr.ttt = rhdr->ttt;
785 hdr.itt = RESERVED_ITT;
786 } else
787 hdr.ttt = RESERVED_ITT;
788
Mike Christie9c19a7d2008-05-21 15:54:09 -0500789 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
790 if (!task)
Mike Christie322d7392008-01-31 13:36:52 -0600791 iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
Mike Christied3acf022008-12-01 12:13:00 -0600792 else if (!rhdr) {
793 /* only track our nops */
794 conn->ping_task = task;
795 conn->last_ping = jiffies;
796 }
Mike Christief6d51802007-12-13 12:43:30 -0600797}
798
Mike Christie62f38302006-08-31 18:09:27 -0400799static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
800 char *data, int datalen)
801{
802 struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
803 struct iscsi_hdr rejected_pdu;
Mike Christie62f38302006-08-31 18:09:27 -0400804
805 conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
806
807 if (reject->reason == ISCSI_REASON_DATA_DIGEST_ERROR) {
808 if (ntoh24(reject->dlength) > datalen)
809 return ISCSI_ERR_PROTO;
810
811 if (ntoh24(reject->dlength) >= sizeof(struct iscsi_hdr)) {
812 memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
Mike Christie322d7392008-01-31 13:36:52 -0600813 iscsi_conn_printk(KERN_ERR, conn,
Mike Christie262ef632008-12-02 00:32:13 -0600814 "pdu (op 0x%x) rejected "
815 "due to DataDigest error.\n",
Mike Christie322d7392008-01-31 13:36:52 -0600816 rejected_pdu.opcode);
Mike Christie62f38302006-08-31 18:09:27 -0400817 }
818 }
819 return 0;
820}
821
Mike Christie7996a772006-04-06 21:13:41 -0500822/**
Mike Christie913e5bf2008-05-21 15:54:18 -0500823 * iscsi_itt_to_task - look up task by itt
824 * @conn: iscsi connection
825 * @itt: itt
826 *
827 * This should be used for mgmt tasks like login and nops, or if
828 * the LDD's itt space does not include the session age.
829 *
830 * The session lock must be held.
831 */
Mike Christie8f9256c2009-05-13 17:57:41 -0500832struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
Mike Christie913e5bf2008-05-21 15:54:18 -0500833{
834 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -0600835 int i;
Mike Christie913e5bf2008-05-21 15:54:18 -0500836
837 if (itt == RESERVED_ITT)
838 return NULL;
839
Mike Christie262ef632008-12-02 00:32:13 -0600840 if (session->tt->parse_pdu_itt)
841 session->tt->parse_pdu_itt(conn, itt, &i, NULL);
842 else
843 i = get_itt(itt);
Mike Christie913e5bf2008-05-21 15:54:18 -0500844 if (i >= session->cmds_max)
845 return NULL;
846
847 return session->cmds[i];
848}
Mike Christie8f9256c2009-05-13 17:57:41 -0500849EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
Mike Christie913e5bf2008-05-21 15:54:18 -0500850
851/**
Mike Christie7996a772006-04-06 21:13:41 -0500852 * __iscsi_complete_pdu - complete pdu
853 * @conn: iscsi conn
854 * @hdr: iscsi header
855 * @data: data buffer
856 * @datalen: len of data buffer
857 *
858 * Completes pdu processing by freeing any resources allocated at
859 * queuecommand or send generic. session lock must be held and verify
860 * itt must have been called.
861 */
Mike Christie913e5bf2008-05-21 15:54:18 -0500862int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
863 char *data, int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500864{
865 struct iscsi_session *session = conn->session;
866 int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500867 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -0500868 uint32_t itt;
869
Mike Christief6d51802007-12-13 12:43:30 -0600870 conn->last_recv = jiffies;
Mike Christie0af967f2008-05-21 15:54:04 -0500871 rc = iscsi_verify_itt(conn, hdr->itt);
872 if (rc)
873 return rc;
874
Al Virob4377352007-02-09 16:39:40 +0000875 if (hdr->itt != RESERVED_ITT)
876 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500877 else
Al Virob4377352007-02-09 16:39:40 +0000878 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -0500879
Mike Christie1b2c7af2009-03-05 14:45:58 -0600880 ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n",
881 opcode, conn->id, itt, datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500882
Mike Christie3e5c28a2008-05-21 15:54:06 -0500883 if (itt == ~0U) {
Mike Christie77a23c22007-05-30 12:57:18 -0500884 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie62f38302006-08-31 18:09:27 -0400885
Mike Christie7996a772006-04-06 21:13:41 -0500886 switch(opcode) {
887 case ISCSI_OP_NOOP_IN:
Mike Christie40527af2006-07-24 15:47:45 -0500888 if (datalen) {
Mike Christie7996a772006-04-06 21:13:41 -0500889 rc = ISCSI_ERR_PROTO;
Mike Christie40527af2006-07-24 15:47:45 -0500890 break;
891 }
892
Al Virob4377352007-02-09 16:39:40 +0000893 if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
Mike Christie40527af2006-07-24 15:47:45 -0500894 break;
895
Mike Christief6d51802007-12-13 12:43:30 -0600896 iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
Mike Christie7996a772006-04-06 21:13:41 -0500897 break;
898 case ISCSI_OP_REJECT:
Mike Christie62f38302006-08-31 18:09:27 -0400899 rc = iscsi_handle_reject(conn, hdr, data, datalen);
900 break;
Mike Christie7996a772006-04-06 21:13:41 -0500901 case ISCSI_OP_ASYNC_EVENT:
Mike Christie8d2860b2006-05-02 19:46:47 -0500902 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
Mike Christie5831c732006-10-16 18:09:41 -0400903 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
904 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie7996a772006-04-06 21:13:41 -0500905 break;
906 default:
907 rc = ISCSI_ERR_BAD_OPCODE;
908 break;
909 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500910 goto out;
911 }
Mike Christie7996a772006-04-06 21:13:41 -0500912
Mike Christie3e5c28a2008-05-21 15:54:06 -0500913 switch(opcode) {
914 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie913e5bf2008-05-21 15:54:18 -0500915 case ISCSI_OP_SCSI_DATA_IN:
916 task = iscsi_itt_to_ctask(conn, hdr->itt);
917 if (!task)
918 return ISCSI_ERR_BAD_ITT;
919 break;
920 case ISCSI_OP_R2T:
921 /*
922 * LLD handles R2Ts if they need to.
923 */
924 return 0;
925 case ISCSI_OP_LOGOUT_RSP:
926 case ISCSI_OP_LOGIN_RSP:
927 case ISCSI_OP_TEXT_RSP:
928 case ISCSI_OP_SCSI_TMFUNC_RSP:
929 case ISCSI_OP_NOOP_IN:
930 task = iscsi_itt_to_task(conn, hdr->itt);
931 if (!task)
932 return ISCSI_ERR_BAD_ITT;
933 break;
934 default:
935 return ISCSI_ERR_BAD_OPCODE;
936 }
937
938 switch(opcode) {
939 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie9c19a7d2008-05-21 15:54:09 -0500940 iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500941 break;
942 case ISCSI_OP_SCSI_DATA_IN:
Mike Christie1d9edf02008-09-24 11:46:09 -0500943 iscsi_data_in_rsp(conn, hdr, task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500944 break;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500945 case ISCSI_OP_LOGOUT_RSP:
946 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
947 if (datalen) {
948 rc = ISCSI_ERR_PROTO;
949 break;
950 }
951 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
952 goto recv_pdu;
953 case ISCSI_OP_LOGIN_RSP:
954 case ISCSI_OP_TEXT_RSP:
955 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
956 /*
957 * login related PDU's exp_statsn is handled in
958 * userspace
959 */
960 goto recv_pdu;
961 case ISCSI_OP_SCSI_TMFUNC_RSP:
962 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
963 if (datalen) {
964 rc = ISCSI_ERR_PROTO;
965 break;
966 }
967
968 iscsi_tmf_rsp(conn, hdr);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500969 __iscsi_put_task(task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500970 break;
971 case ISCSI_OP_NOOP_IN:
972 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
973 if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
974 rc = ISCSI_ERR_PROTO;
975 break;
976 }
977 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
978
Mike Christie9c19a7d2008-05-21 15:54:09 -0500979 if (conn->ping_task != task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500980 /*
981 * If this is not in response to one of our
982 * nops then it must be from userspace.
983 */
984 goto recv_pdu;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500985
986 mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout);
987 __iscsi_put_task(task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500988 break;
989 default:
990 rc = ISCSI_ERR_BAD_OPCODE;
991 break;
992 }
993
994out:
995 return rc;
996recv_pdu:
997 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
998 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500999 __iscsi_put_task(task);
Mike Christie7996a772006-04-06 21:13:41 -05001000 return rc;
1001}
Mike Christie913e5bf2008-05-21 15:54:18 -05001002EXPORT_SYMBOL_GPL(__iscsi_complete_pdu);
Mike Christie7996a772006-04-06 21:13:41 -05001003
1004int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1005 char *data, int datalen)
1006{
1007 int rc;
1008
1009 spin_lock(&conn->session->lock);
1010 rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
1011 spin_unlock(&conn->session->lock);
1012 return rc;
1013}
1014EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
1015
Mike Christie0af967f2008-05-21 15:54:04 -05001016int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
Mike Christie7996a772006-04-06 21:13:41 -05001017{
1018 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001019 int age = 0, i = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001020
Mike Christie0af967f2008-05-21 15:54:04 -05001021 if (itt == RESERVED_ITT)
1022 return 0;
Mike Christie7996a772006-04-06 21:13:41 -05001023
Mike Christie262ef632008-12-02 00:32:13 -06001024 if (session->tt->parse_pdu_itt)
1025 session->tt->parse_pdu_itt(conn, itt, &i, &age);
1026 else {
1027 i = get_itt(itt);
1028 age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK;
1029 }
1030
1031 if (age != session->age) {
Mike Christie0af967f2008-05-21 15:54:04 -05001032 iscsi_conn_printk(KERN_ERR, conn,
1033 "received itt %x expected session age (%x)\n",
Mike Christie913e5bf2008-05-21 15:54:18 -05001034 (__force u32)itt, session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001035 return ISCSI_ERR_BAD_ITT;
1036 }
Mike Christie7996a772006-04-06 21:13:41 -05001037
Mike Christie3e5c28a2008-05-21 15:54:06 -05001038 if (i >= session->cmds_max) {
1039 iscsi_conn_printk(KERN_ERR, conn,
1040 "received invalid itt index %u (max cmds "
1041 "%u.\n", i, session->cmds_max);
1042 return ISCSI_ERR_BAD_ITT;
Mike Christie7996a772006-04-06 21:13:41 -05001043 }
Mike Christie7996a772006-04-06 21:13:41 -05001044 return 0;
1045}
1046EXPORT_SYMBOL_GPL(iscsi_verify_itt);
1047
Mike Christie913e5bf2008-05-21 15:54:18 -05001048/**
1049 * iscsi_itt_to_ctask - look up ctask by itt
1050 * @conn: iscsi connection
1051 * @itt: itt
1052 *
1053 * This should be used for cmd tasks.
1054 *
1055 * The session lock must be held.
1056 */
1057struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt)
Mike Christie0af967f2008-05-21 15:54:04 -05001058{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001059 struct iscsi_task *task;
Mike Christie0af967f2008-05-21 15:54:04 -05001060
1061 if (iscsi_verify_itt(conn, itt))
1062 return NULL;
1063
Mike Christie913e5bf2008-05-21 15:54:18 -05001064 task = iscsi_itt_to_task(conn, itt);
1065 if (!task || !task->sc)
Mike Christie0af967f2008-05-21 15:54:04 -05001066 return NULL;
1067
Mike Christie913e5bf2008-05-21 15:54:18 -05001068 if (task->sc->SCp.phase != conn->session->age) {
1069 iscsi_session_printk(KERN_ERR, conn->session,
1070 "task's session age %d, expected %d\n",
1071 task->sc->SCp.phase, conn->session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001072 return NULL;
Mike Christie913e5bf2008-05-21 15:54:18 -05001073 }
Mike Christie0af967f2008-05-21 15:54:04 -05001074
Mike Christie9c19a7d2008-05-21 15:54:09 -05001075 return task;
Mike Christie0af967f2008-05-21 15:54:04 -05001076}
1077EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask);
1078
Mike Christie40a06e72009-03-05 14:46:05 -06001079void iscsi_session_failure(struct iscsi_session *session,
Mike Christiee5bd7b52008-09-24 11:46:10 -05001080 enum iscsi_err err)
1081{
Mike Christiee5bd7b52008-09-24 11:46:10 -05001082 struct iscsi_conn *conn;
1083 struct device *dev;
1084 unsigned long flags;
1085
1086 spin_lock_irqsave(&session->lock, flags);
1087 conn = session->leadconn;
1088 if (session->state == ISCSI_STATE_TERMINATE || !conn) {
1089 spin_unlock_irqrestore(&session->lock, flags);
1090 return;
1091 }
1092
1093 dev = get_device(&conn->cls_conn->dev);
1094 spin_unlock_irqrestore(&session->lock, flags);
1095 if (!dev)
1096 return;
1097 /*
1098 * if the host is being removed bypass the connection
1099 * recovery initialization because we are going to kill
1100 * the session.
1101 */
1102 if (err == ISCSI_ERR_INVALID_HOST)
1103 iscsi_conn_error_event(conn->cls_conn, err);
1104 else
1105 iscsi_conn_failure(conn, err);
1106 put_device(dev);
1107}
1108EXPORT_SYMBOL_GPL(iscsi_session_failure);
1109
Mike Christie7996a772006-04-06 21:13:41 -05001110void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
1111{
1112 struct iscsi_session *session = conn->session;
1113 unsigned long flags;
1114
1115 spin_lock_irqsave(&session->lock, flags);
Mike Christie656cffc2006-05-18 20:31:42 -05001116 if (session->state == ISCSI_STATE_FAILED) {
1117 spin_unlock_irqrestore(&session->lock, flags);
1118 return;
1119 }
1120
Mike Christie67a61112006-05-30 00:37:20 -05001121 if (conn->stop_stage == 0)
Mike Christie7996a772006-04-06 21:13:41 -05001122 session->state = ISCSI_STATE_FAILED;
1123 spin_unlock_irqrestore(&session->lock, flags);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001124
Mike Christie7996a772006-04-06 21:13:41 -05001125 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1126 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001127 iscsi_conn_error_event(conn->cls_conn, err);
Mike Christie7996a772006-04-06 21:13:41 -05001128}
1129EXPORT_SYMBOL_GPL(iscsi_conn_failure);
1130
Mike Christie77a23c22007-05-30 12:57:18 -05001131static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
1132{
1133 struct iscsi_session *session = conn->session;
1134
1135 /*
1136 * Check for iSCSI window and take care of CmdSN wrap-around
1137 */
Mike Christiee0726402007-07-26 12:46:48 -05001138 if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001139 ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn "
1140 "%u MaxCmdSN %u CmdSN %u/%u\n",
1141 session->exp_cmdsn, session->max_cmdsn,
1142 session->cmdsn, session->queued_cmdsn);
Mike Christie77a23c22007-05-30 12:57:18 -05001143 return -ENOSPC;
1144 }
1145 return 0;
1146}
1147
Mike Christie9c19a7d2008-05-21 15:54:09 -05001148static int iscsi_xmit_task(struct iscsi_conn *conn)
Mike Christie77a23c22007-05-30 12:57:18 -05001149{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001150 struct iscsi_task *task = conn->task;
Mike Christie843c0a82007-12-13 12:43:20 -06001151 int rc;
Mike Christie77a23c22007-05-30 12:57:18 -05001152
Mike Christie9c19a7d2008-05-21 15:54:09 -05001153 __iscsi_get_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001154 spin_unlock_bh(&conn->session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001155 rc = conn->session->tt->xmit_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001156 spin_lock_bh(&conn->session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001157 __iscsi_put_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001158 if (!rc)
Mike Christie9c19a7d2008-05-21 15:54:09 -05001159 /* done with this task */
1160 conn->task = NULL;
Mike Christie77a23c22007-05-30 12:57:18 -05001161 return rc;
1162}
1163
Mike Christie7996a772006-04-06 21:13:41 -05001164/**
Mike Christie9c19a7d2008-05-21 15:54:09 -05001165 * iscsi_requeue_task - requeue task to run from session workqueue
1166 * @task: task to requeue
Mike Christie843c0a82007-12-13 12:43:20 -06001167 *
Mike Christie9c19a7d2008-05-21 15:54:09 -05001168 * LLDs that need to run a task from the session workqueue should call
Mike Christie052d0142008-05-21 15:54:05 -05001169 * this. The session lock must be held. This should only be called
1170 * by software drivers.
Mike Christie843c0a82007-12-13 12:43:20 -06001171 */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001172void iscsi_requeue_task(struct iscsi_task *task)
Mike Christie843c0a82007-12-13 12:43:20 -06001173{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001174 struct iscsi_conn *conn = task->conn;
Mike Christie843c0a82007-12-13 12:43:20 -06001175
Mike Christie9c19a7d2008-05-21 15:54:09 -05001176 list_move_tail(&task->running, &conn->requeue);
Mike Christie32ae7632009-03-05 14:46:03 -06001177 iscsi_conn_queue_work(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001178}
Mike Christie9c19a7d2008-05-21 15:54:09 -05001179EXPORT_SYMBOL_GPL(iscsi_requeue_task);
Mike Christie843c0a82007-12-13 12:43:20 -06001180
1181/**
Mike Christie7996a772006-04-06 21:13:41 -05001182 * iscsi_data_xmit - xmit any command into the scheduled connection
1183 * @conn: iscsi connection
1184 *
1185 * Notes:
1186 * The function can return -EAGAIN in which case the caller must
1187 * re-schedule it again later or recover. '0' return code means
1188 * successful xmit.
1189 **/
1190static int iscsi_data_xmit(struct iscsi_conn *conn)
1191{
Mike Christie3219e522006-05-30 00:37:28 -05001192 int rc = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001193
Mike Christie77a23c22007-05-30 12:57:18 -05001194 spin_lock_bh(&conn->session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05001195 if (unlikely(conn->suspend_tx)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001196 ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001197 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001198 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001199 }
Mike Christie7996a772006-04-06 21:13:41 -05001200
Mike Christie9c19a7d2008-05-21 15:54:09 -05001201 if (conn->task) {
1202 rc = iscsi_xmit_task(conn);
Mike Christie3219e522006-05-30 00:37:28 -05001203 if (rc)
Mike Christie7996a772006-04-06 21:13:41 -05001204 goto again;
Mike Christie7996a772006-04-06 21:13:41 -05001205 }
1206
Mike Christie77a23c22007-05-30 12:57:18 -05001207 /*
1208 * process mgmt pdus like nops before commands since we should
1209 * only have one nop-out as a ping from us and targets should not
1210 * overflow us with nop-ins
1211 */
1212check_mgmt:
Mike Christie843c0a82007-12-13 12:43:20 -06001213 while (!list_empty(&conn->mgmtqueue)) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001214 conn->task = list_entry(conn->mgmtqueue.next,
1215 struct iscsi_task, running);
1216 if (iscsi_prep_mgmt_task(conn, conn->task)) {
1217 __iscsi_put_task(conn->task);
1218 conn->task = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001219 continue;
1220 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001221 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001222 if (rc)
1223 goto again;
Mike Christie7996a772006-04-06 21:13:41 -05001224 }
1225
Mike Christie843c0a82007-12-13 12:43:20 -06001226 /* process pending command queue */
Mike Christieb6c395e2006-07-24 15:47:15 -05001227 while (!list_empty(&conn->xmitqueue)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001228 if (conn->tmf_state == TMF_QUEUED)
1229 break;
1230
Mike Christie9c19a7d2008-05-21 15:54:09 -05001231 conn->task = list_entry(conn->xmitqueue.next,
1232 struct iscsi_task, running);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001233 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001234 fail_command(conn, conn->task, DID_IMM_RETRY << 16);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001235 continue;
1236 }
Mike Christie577577d2008-12-02 00:32:05 -06001237 rc = iscsi_prep_scsi_cmd_pdu(conn->task);
1238 if (rc) {
1239 if (rc == -ENOMEM) {
1240 conn->task = NULL;
1241 goto again;
1242 } else
1243 fail_command(conn, conn->task, DID_ABORT << 16);
Boaz Harrosh004d6532007-12-13 12:43:23 -06001244 continue;
1245 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001246 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001247 if (rc)
Mike Christie60ecebf2006-08-31 18:09:25 -04001248 goto again;
Mike Christie77a23c22007-05-30 12:57:18 -05001249 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -05001250 * we could continuously get new task requests so
Mike Christie77a23c22007-05-30 12:57:18 -05001251 * we need to check the mgmt queue for nops that need to
1252 * be sent to aviod starvation
1253 */
Mike Christie843c0a82007-12-13 12:43:20 -06001254 if (!list_empty(&conn->mgmtqueue))
1255 goto check_mgmt;
1256 }
1257
1258 while (!list_empty(&conn->requeue)) {
1259 if (conn->session->fast_abort && conn->tmf_state != TMF_INITIAL)
1260 break;
1261
Mike Christieb3a7ea82007-12-13 12:43:26 -06001262 /*
1263 * we always do fastlogout - conn stop code will clean up.
1264 */
1265 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
1266 break;
1267
Mike Christie9c19a7d2008-05-21 15:54:09 -05001268 conn->task = list_entry(conn->requeue.next,
1269 struct iscsi_task, running);
1270 conn->task->state = ISCSI_TASK_RUNNING;
Mike Christie843c0a82007-12-13 12:43:20 -06001271 list_move_tail(conn->requeue.next, &conn->run_list);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001272 rc = iscsi_xmit_task(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001273 if (rc)
1274 goto again;
1275 if (!list_empty(&conn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -05001276 goto check_mgmt;
Mike Christie7996a772006-04-06 21:13:41 -05001277 }
Mike Christieb6c395e2006-07-24 15:47:15 -05001278 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001279 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001280
1281again:
1282 if (unlikely(conn->suspend_tx))
Mike Christie77a23c22007-05-30 12:57:18 -05001283 rc = -ENODATA;
1284 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001285 return rc;
Mike Christie7996a772006-04-06 21:13:41 -05001286}
1287
David Howellsc4028952006-11-22 14:57:56 +00001288static void iscsi_xmitworker(struct work_struct *work)
Mike Christie7996a772006-04-06 21:13:41 -05001289{
David Howellsc4028952006-11-22 14:57:56 +00001290 struct iscsi_conn *conn =
1291 container_of(work, struct iscsi_conn, xmitwork);
Mike Christie3219e522006-05-30 00:37:28 -05001292 int rc;
Mike Christie7996a772006-04-06 21:13:41 -05001293 /*
1294 * serialize Xmit worker on a per-connection basis.
1295 */
Mike Christie3219e522006-05-30 00:37:28 -05001296 do {
1297 rc = iscsi_data_xmit(conn);
1298 } while (rc >= 0 || rc == -EAGAIN);
Mike Christie7996a772006-04-06 21:13:41 -05001299}
1300
Mike Christie577577d2008-12-02 00:32:05 -06001301static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn,
1302 struct scsi_cmnd *sc)
1303{
1304 struct iscsi_task *task;
1305
1306 if (!__kfifo_get(conn->session->cmdpool.queue,
1307 (void *) &task, sizeof(void *)))
1308 return NULL;
1309
1310 sc->SCp.phase = conn->session->age;
1311 sc->SCp.ptr = (char *) task;
1312
1313 atomic_set(&task->refcount, 1);
1314 task->state = ISCSI_TASK_PENDING;
1315 task->conn = conn;
1316 task->sc = sc;
1317 INIT_LIST_HEAD(&task->running);
1318 return task;
1319}
1320
Mike Christie7996a772006-04-06 21:13:41 -05001321enum {
1322 FAILURE_BAD_HOST = 1,
1323 FAILURE_SESSION_FAILED,
1324 FAILURE_SESSION_FREED,
1325 FAILURE_WINDOW_CLOSED,
Mike Christie60ecebf2006-08-31 18:09:25 -04001326 FAILURE_OOM,
Mike Christie7996a772006-04-06 21:13:41 -05001327 FAILURE_SESSION_TERMINATE,
Mike Christie656cffc2006-05-18 20:31:42 -05001328 FAILURE_SESSION_IN_RECOVERY,
Mike Christie7996a772006-04-06 21:13:41 -05001329 FAILURE_SESSION_RECOVERY_TIMEOUT,
Mike Christieb3a7ea82007-12-13 12:43:26 -06001330 FAILURE_SESSION_LOGGING_OUT,
Mike Christie6eabafb2008-01-31 13:36:43 -06001331 FAILURE_SESSION_NOT_READY,
Mike Christie7996a772006-04-06 21:13:41 -05001332};
1333
1334int iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
1335{
Mike Christie75613522008-05-21 15:53:59 -05001336 struct iscsi_cls_session *cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05001337 struct Scsi_Host *host;
1338 int reason = 0;
1339 struct iscsi_session *session;
1340 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001341 struct iscsi_task *task = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001342
1343 sc->scsi_done = done;
1344 sc->result = 0;
Mike Christief47f2cf2006-08-31 18:09:33 -04001345 sc->SCp.ptr = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001346
1347 host = sc->device->host;
Mike Christie1040c992007-12-13 12:43:34 -06001348 spin_unlock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001349
Mike Christie75613522008-05-21 15:53:59 -05001350 cls_session = starget_to_session(scsi_target(sc->device));
1351 session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05001352 spin_lock(&session->lock);
1353
Mike Christie75613522008-05-21 15:53:59 -05001354 reason = iscsi_session_chkready(cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06001355 if (reason) {
1356 sc->result = reason;
1357 goto fault;
1358 }
1359
Mike Christie656cffc2006-05-18 20:31:42 -05001360 /*
1361 * ISCSI_STATE_FAILED is a temp. state. The recovery
1362 * code will decide what is best to do with command queued
1363 * during this time
1364 */
1365 if (session->state != ISCSI_STATE_LOGGED_IN &&
1366 session->state != ISCSI_STATE_FAILED) {
1367 /*
1368 * to handle the race between when we set the recovery state
1369 * and block the session we requeue here (commands could
1370 * be entering our queuecommand while a block is starting
1371 * up because the block code is not locked)
1372 */
Mike Christie9000bcd2007-12-13 12:43:32 -06001373 switch (session->state) {
1374 case ISCSI_STATE_IN_RECOVERY:
Mike Christie656cffc2006-05-18 20:31:42 -05001375 reason = FAILURE_SESSION_IN_RECOVERY;
Mike Christied6d13ee2008-08-17 15:24:43 -05001376 goto reject;
Mike Christie9000bcd2007-12-13 12:43:32 -06001377 case ISCSI_STATE_LOGGING_OUT:
1378 reason = FAILURE_SESSION_LOGGING_OUT;
Mike Christied6d13ee2008-08-17 15:24:43 -05001379 goto reject;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001380 case ISCSI_STATE_RECOVERY_FAILED:
Mike Christie656cffc2006-05-18 20:31:42 -05001381 reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
Mike Christie56d7fcf2008-08-19 18:45:26 -05001382 sc->result = DID_TRANSPORT_FAILFAST << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001383 break;
1384 case ISCSI_STATE_TERMINATE:
Mike Christie656cffc2006-05-18 20:31:42 -05001385 reason = FAILURE_SESSION_TERMINATE;
Mike Christie6eabafb2008-01-31 13:36:43 -06001386 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001387 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001388 default:
Mike Christie656cffc2006-05-18 20:31:42 -05001389 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001390 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001391 }
Mike Christie7996a772006-04-06 21:13:41 -05001392 goto fault;
1393 }
1394
Mike Christie7996a772006-04-06 21:13:41 -05001395 conn = session->leadconn;
Mike Christie98644042006-10-16 18:09:39 -04001396 if (!conn) {
1397 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001398 sc->result = DID_NO_CONNECT << 16;
Mike Christie98644042006-10-16 18:09:39 -04001399 goto fault;
1400 }
Mike Christie7996a772006-04-06 21:13:41 -05001401
Mike Christie77a23c22007-05-30 12:57:18 -05001402 if (iscsi_check_cmdsn_window_closed(conn)) {
1403 reason = FAILURE_WINDOW_CLOSED;
1404 goto reject;
1405 }
1406
Mike Christie577577d2008-12-02 00:32:05 -06001407 task = iscsi_alloc_task(conn, sc);
1408 if (!task) {
Mike Christie60ecebf2006-08-31 18:09:25 -04001409 reason = FAILURE_OOM;
1410 goto reject;
1411 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001412 list_add_tail(&task->running, &conn->xmitqueue);
Mike Christie7996a772006-04-06 21:13:41 -05001413
Mike Christie052d0142008-05-21 15:54:05 -05001414 if (session->tt->caps & CAP_DATA_PATH_OFFLOAD) {
Mike Christie577577d2008-12-02 00:32:05 -06001415 reason = iscsi_prep_scsi_cmd_pdu(task);
1416 if (reason) {
1417 if (reason == -ENOMEM) {
1418 reason = FAILURE_OOM;
1419 goto prepd_reject;
1420 } else {
1421 sc->result = DID_ABORT << 16;
1422 goto prepd_fault;
1423 }
Mike Christie052d0142008-05-21 15:54:05 -05001424 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001425 if (session->tt->xmit_task(task)) {
Mike Christie052d0142008-05-21 15:54:05 -05001426 reason = FAILURE_SESSION_NOT_READY;
Mike Christie577577d2008-12-02 00:32:05 -06001427 goto prepd_reject;
Mike Christie052d0142008-05-21 15:54:05 -05001428 }
1429 } else
Mike Christie32ae7632009-03-05 14:46:03 -06001430 iscsi_conn_queue_work(conn);
Mike Christie052d0142008-05-21 15:54:05 -05001431
1432 session->queued_cmdsn++;
1433 spin_unlock(&session->lock);
Mike Christie1040c992007-12-13 12:43:34 -06001434 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001435 return 0;
1436
Mike Christie577577d2008-12-02 00:32:05 -06001437prepd_reject:
1438 sc->scsi_done = NULL;
1439 iscsi_complete_command(task);
Mike Christie7996a772006-04-06 21:13:41 -05001440reject:
1441 spin_unlock(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001442 ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n",
1443 sc->cmnd[0], reason);
Mike Christie1040c992007-12-13 12:43:34 -06001444 spin_lock(host->host_lock);
Mike Christied6d13ee2008-08-17 15:24:43 -05001445 return SCSI_MLQUEUE_TARGET_BUSY;
Mike Christie7996a772006-04-06 21:13:41 -05001446
Mike Christie577577d2008-12-02 00:32:05 -06001447prepd_fault:
1448 sc->scsi_done = NULL;
1449 iscsi_complete_command(task);
Mike Christie7996a772006-04-06 21:13:41 -05001450fault:
1451 spin_unlock(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001452 ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n",
1453 sc->cmnd[0], reason);
Boaz Harroshc07d4442008-04-18 10:11:52 -05001454 if (!scsi_bidi_cmnd(sc))
1455 scsi_set_resid(sc, scsi_bufflen(sc));
1456 else {
1457 scsi_out(sc)->resid = scsi_out(sc)->length;
1458 scsi_in(sc)->resid = scsi_in(sc)->length;
1459 }
Mike Christie052d0142008-05-21 15:54:05 -05001460 done(sc);
Mike Christie1040c992007-12-13 12:43:34 -06001461 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001462 return 0;
1463}
1464EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1465
1466int iscsi_change_queue_depth(struct scsi_device *sdev, int depth)
1467{
Mike Christie7996a772006-04-06 21:13:41 -05001468 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1469 return sdev->queue_depth;
1470}
1471EXPORT_SYMBOL_GPL(iscsi_change_queue_depth);
1472
Mike Christie6b5d6c42009-04-21 15:32:32 -05001473int iscsi_target_alloc(struct scsi_target *starget)
1474{
1475 struct iscsi_cls_session *cls_session = starget_to_session(starget);
1476 struct iscsi_session *session = cls_session->dd_data;
1477
1478 starget->can_queue = session->scsi_cmds_max;
1479 return 0;
1480}
1481EXPORT_SYMBOL_GPL(iscsi_target_alloc);
1482
Mike Christie7996a772006-04-06 21:13:41 -05001483void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
1484{
Mike Christie75613522008-05-21 15:53:59 -05001485 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05001486
1487 spin_lock_bh(&session->lock);
1488 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001489 session->state = ISCSI_STATE_RECOVERY_FAILED;
Mike Christie843c0a82007-12-13 12:43:20 -06001490 if (session->leadconn)
1491 wake_up(&session->leadconn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05001492 }
1493 spin_unlock_bh(&session->lock);
1494}
1495EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
1496
Mike Christie8e124522008-09-24 11:46:12 -05001497int iscsi_eh_target_reset(struct scsi_cmnd *sc)
Mike Christie7996a772006-04-06 21:13:41 -05001498{
Mike Christie75613522008-05-21 15:53:59 -05001499 struct iscsi_cls_session *cls_session;
1500 struct iscsi_session *session;
1501 struct iscsi_conn *conn;
1502
1503 cls_session = starget_to_session(scsi_target(sc->device));
1504 session = cls_session->dd_data;
1505 conn = session->leadconn;
Mike Christie7996a772006-04-06 21:13:41 -05001506
Mike Christiebc436b22007-12-13 12:43:28 -06001507 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001508 spin_lock_bh(&session->lock);
1509 if (session->state == ISCSI_STATE_TERMINATE) {
1510failed:
Mike Christie1b2c7af2009-03-05 14:45:58 -06001511 iscsi_session_printk(KERN_INFO, session,
1512 "failing target reset: Could not log "
1513 "back into target [age %d]\n",
1514 session->age);
Mike Christie7996a772006-04-06 21:13:41 -05001515 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001516 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001517 return FAILED;
1518 }
1519
Mike Christie7996a772006-04-06 21:13:41 -05001520 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001521 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001522 /*
1523 * we drop the lock here but the leadconn cannot be destoyed while
1524 * we are in the scsi eh
1525 */
Mike Christie843c0a82007-12-13 12:43:20 -06001526 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001527
Mike Christie1b2c7af2009-03-05 14:45:58 -06001528 ISCSI_DBG_SESSION(session, "wait for relogin\n");
Mike Christie7996a772006-04-06 21:13:41 -05001529 wait_event_interruptible(conn->ehwait,
1530 session->state == ISCSI_STATE_TERMINATE ||
1531 session->state == ISCSI_STATE_LOGGED_IN ||
Mike Christie656cffc2006-05-18 20:31:42 -05001532 session->state == ISCSI_STATE_RECOVERY_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001533 if (signal_pending(current))
1534 flush_signals(current);
1535
Mike Christiebc436b22007-12-13 12:43:28 -06001536 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001537 spin_lock_bh(&session->lock);
1538 if (session->state == ISCSI_STATE_LOGGED_IN)
Mike Christie322d7392008-01-31 13:36:52 -06001539 iscsi_session_printk(KERN_INFO, session,
Mike Christie8e124522008-09-24 11:46:12 -05001540 "target reset succeeded\n");
Mike Christie7996a772006-04-06 21:13:41 -05001541 else
1542 goto failed;
1543 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001544 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001545 return SUCCESS;
1546}
Mike Christie8e124522008-09-24 11:46:12 -05001547EXPORT_SYMBOL_GPL(iscsi_eh_target_reset);
Mike Christie7996a772006-04-06 21:13:41 -05001548
Mike Christie843c0a82007-12-13 12:43:20 -06001549static void iscsi_tmf_timedout(unsigned long data)
Mike Christie7996a772006-04-06 21:13:41 -05001550{
Mike Christie843c0a82007-12-13 12:43:20 -06001551 struct iscsi_conn *conn = (struct iscsi_conn *)data;
Mike Christie7996a772006-04-06 21:13:41 -05001552 struct iscsi_session *session = conn->session;
1553
1554 spin_lock(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001555 if (conn->tmf_state == TMF_QUEUED) {
1556 conn->tmf_state = TMF_TIMEDOUT;
Mike Christie1b2c7af2009-03-05 14:45:58 -06001557 ISCSI_DBG_SESSION(session, "tmf timedout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001558 /* unblock eh_abort() */
1559 wake_up(&conn->ehwait);
1560 }
1561 spin_unlock(&session->lock);
1562}
1563
Mike Christie9c19a7d2008-05-21 15:54:09 -05001564static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
Mike Christief6d51802007-12-13 12:43:30 -06001565 struct iscsi_tm *hdr, int age,
1566 int timeout)
Mike Christie7996a772006-04-06 21:13:41 -05001567{
Mike Christie7996a772006-04-06 21:13:41 -05001568 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001569 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001570
Mike Christie9c19a7d2008-05-21 15:54:09 -05001571 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
Mike Christie843c0a82007-12-13 12:43:20 -06001572 NULL, 0);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001573 if (!task) {
Mike Christie6724add2007-08-15 01:38:30 -05001574 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05001575 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie843c0a82007-12-13 12:43:20 -06001576 spin_lock_bh(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001577 ISCSI_DBG_SESSION(session, "tmf exec failure\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001578 return -EPERM;
Mike Christie7996a772006-04-06 21:13:41 -05001579 }
Mike Christie843c0a82007-12-13 12:43:20 -06001580 conn->tmfcmd_pdus_cnt++;
Mike Christief6d51802007-12-13 12:43:30 -06001581 conn->tmf_timer.expires = timeout * HZ + jiffies;
Mike Christie843c0a82007-12-13 12:43:20 -06001582 conn->tmf_timer.function = iscsi_tmf_timedout;
1583 conn->tmf_timer.data = (unsigned long)conn;
1584 add_timer(&conn->tmf_timer);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001585 ISCSI_DBG_SESSION(session, "tmf set timeout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001586
Mike Christie7996a772006-04-06 21:13:41 -05001587 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05001588 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001589
1590 /*
1591 * block eh thread until:
1592 *
Mike Christie843c0a82007-12-13 12:43:20 -06001593 * 1) tmf response
1594 * 2) tmf timeout
Mike Christie7996a772006-04-06 21:13:41 -05001595 * 3) session is terminated or restarted or userspace has
1596 * given up on recovery
1597 */
Mike Christie843c0a82007-12-13 12:43:20 -06001598 wait_event_interruptible(conn->ehwait, age != session->age ||
Mike Christie7996a772006-04-06 21:13:41 -05001599 session->state != ISCSI_STATE_LOGGED_IN ||
Mike Christie843c0a82007-12-13 12:43:20 -06001600 conn->tmf_state != TMF_QUEUED);
Mike Christie7996a772006-04-06 21:13:41 -05001601 if (signal_pending(current))
1602 flush_signals(current);
Mike Christie843c0a82007-12-13 12:43:20 -06001603 del_timer_sync(&conn->tmf_timer);
1604
Mike Christie6724add2007-08-15 01:38:30 -05001605 mutex_lock(&session->eh_mutex);
Mike Christie77a23c22007-05-30 12:57:18 -05001606 spin_lock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001607 /* if the session drops it will clean up the task */
Mike Christie843c0a82007-12-13 12:43:20 -06001608 if (age != session->age ||
1609 session->state != ISCSI_STATE_LOGGED_IN)
1610 return -ENOTCONN;
Mike Christie7996a772006-04-06 21:13:41 -05001611 return 0;
1612}
1613
1614/*
Mike Christie843c0a82007-12-13 12:43:20 -06001615 * Fail commands. session lock held and recv side suspended and xmit
1616 * thread flushed
1617 */
Mike Christie6eabafb2008-01-31 13:36:43 -06001618static void fail_all_commands(struct iscsi_conn *conn, unsigned lun,
1619 int error)
Mike Christie843c0a82007-12-13 12:43:20 -06001620{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001621 struct iscsi_task *task, *tmp;
Mike Christie843c0a82007-12-13 12:43:20 -06001622
Mike Christie72899682009-03-05 14:46:07 -06001623 if (conn->task) {
1624 if (lun == -1 ||
1625 (conn->task->sc && conn->task->sc->device->lun == lun))
1626 conn->task = NULL;
1627 }
Mike Christie843c0a82007-12-13 12:43:20 -06001628
1629 /* flush pending */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001630 list_for_each_entry_safe(task, tmp, &conn->xmitqueue, running) {
1631 if (lun == task->sc->device->lun || lun == -1) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001632 ISCSI_DBG_SESSION(conn->session,
1633 "failing pending sc %p itt 0x%x\n",
1634 task->sc, task->itt);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001635 fail_command(conn, task, error << 16);
Mike Christie843c0a82007-12-13 12:43:20 -06001636 }
1637 }
1638
Mike Christie9c19a7d2008-05-21 15:54:09 -05001639 list_for_each_entry_safe(task, tmp, &conn->requeue, running) {
1640 if (lun == task->sc->device->lun || lun == -1) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001641 ISCSI_DBG_SESSION(conn->session,
1642 "failing requeued sc %p itt 0x%x\n",
1643 task->sc, task->itt);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001644 fail_command(conn, task, error << 16);
Mike Christie843c0a82007-12-13 12:43:20 -06001645 }
1646 }
1647
1648 /* fail all other running */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001649 list_for_each_entry_safe(task, tmp, &conn->run_list, running) {
1650 if (lun == task->sc->device->lun || lun == -1) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001651 ISCSI_DBG_SESSION(conn->session,
1652 "failing in progress sc %p itt 0x%x\n",
1653 task->sc, task->itt);
Mike Christieac26d412008-09-06 08:39:15 -05001654 fail_command(conn, task, error << 16);
Mike Christie843c0a82007-12-13 12:43:20 -06001655 }
1656 }
1657}
1658
Mike Christieb40977d2008-05-21 15:54:03 -05001659void iscsi_suspend_tx(struct iscsi_conn *conn)
Mike Christie6724add2007-08-15 01:38:30 -05001660{
Mike Christie32ae7632009-03-05 14:46:03 -06001661 struct Scsi_Host *shost = conn->session->host;
1662 struct iscsi_host *ihost = shost_priv(shost);
1663
Mike Christie6724add2007-08-15 01:38:30 -05001664 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie052d0142008-05-21 15:54:05 -05001665 if (!(conn->session->tt->caps & CAP_DATA_PATH_OFFLOAD))
Mike Christie32ae7632009-03-05 14:46:03 -06001666 flush_workqueue(ihost->workq);
Mike Christie6724add2007-08-15 01:38:30 -05001667}
Mike Christieb40977d2008-05-21 15:54:03 -05001668EXPORT_SYMBOL_GPL(iscsi_suspend_tx);
Mike Christie6724add2007-08-15 01:38:30 -05001669
1670static void iscsi_start_tx(struct iscsi_conn *conn)
1671{
1672 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie052d0142008-05-21 15:54:05 -05001673 if (!(conn->session->tt->caps & CAP_DATA_PATH_OFFLOAD))
Mike Christie32ae7632009-03-05 14:46:03 -06001674 iscsi_conn_queue_work(conn);
Mike Christie6724add2007-08-15 01:38:30 -05001675}
1676
Jens Axboe242f9dc2008-09-14 05:55:09 -07001677static enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *scmd)
Mike Christief6d51802007-12-13 12:43:30 -06001678{
1679 struct iscsi_cls_session *cls_session;
1680 struct iscsi_session *session;
1681 struct iscsi_conn *conn;
Jens Axboe242f9dc2008-09-14 05:55:09 -07001682 enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED;
Mike Christief6d51802007-12-13 12:43:30 -06001683
1684 cls_session = starget_to_session(scsi_target(scmd->device));
Mike Christie75613522008-05-21 15:53:59 -05001685 session = cls_session->dd_data;
Mike Christief6d51802007-12-13 12:43:30 -06001686
Mike Christie1b2c7af2009-03-05 14:45:58 -06001687 ISCSI_DBG_SESSION(session, "scsi cmd %p timedout\n", scmd);
Mike Christief6d51802007-12-13 12:43:30 -06001688
1689 spin_lock(&session->lock);
1690 if (session->state != ISCSI_STATE_LOGGED_IN) {
1691 /*
1692 * We are probably in the middle of iscsi recovery so let
1693 * that complete and handle the error.
1694 */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001695 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001696 goto done;
1697 }
1698
1699 conn = session->leadconn;
1700 if (!conn) {
1701 /* In the middle of shuting down */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001702 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001703 goto done;
1704 }
1705
1706 if (!conn->recv_timeout && !conn->ping_timeout)
1707 goto done;
1708 /*
1709 * if the ping timedout then we are in the middle of cleaning up
1710 * and can let the iscsi eh handle it
1711 */
1712 if (time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1713 (conn->ping_timeout * HZ), jiffies))
Jens Axboe242f9dc2008-09-14 05:55:09 -07001714 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001715 /*
1716 * if we are about to check the transport then give the command
1717 * more time
1718 */
1719 if (time_before_eq(conn->last_recv + (conn->recv_timeout * HZ),
1720 jiffies))
Jens Axboe242f9dc2008-09-14 05:55:09 -07001721 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001722 /* if in the middle of checking the transport then give us more time */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001723 if (conn->ping_task)
Jens Axboe242f9dc2008-09-14 05:55:09 -07001724 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001725done:
1726 spin_unlock(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001727 ISCSI_DBG_SESSION(session, "return %s\n", rc == BLK_EH_RESET_TIMER ?
1728 "timer reset" : "nh");
Mike Christief6d51802007-12-13 12:43:30 -06001729 return rc;
1730}
1731
1732static void iscsi_check_transport_timeouts(unsigned long data)
1733{
1734 struct iscsi_conn *conn = (struct iscsi_conn *)data;
1735 struct iscsi_session *session = conn->session;
Mike Christie4cf10432008-05-07 20:43:52 -05001736 unsigned long recv_timeout, next_timeout = 0, last_recv;
Mike Christief6d51802007-12-13 12:43:30 -06001737
1738 spin_lock(&session->lock);
1739 if (session->state != ISCSI_STATE_LOGGED_IN)
1740 goto done;
1741
Mike Christie4cf10432008-05-07 20:43:52 -05001742 recv_timeout = conn->recv_timeout;
1743 if (!recv_timeout)
Mike Christief6d51802007-12-13 12:43:30 -06001744 goto done;
1745
Mike Christie4cf10432008-05-07 20:43:52 -05001746 recv_timeout *= HZ;
Mike Christief6d51802007-12-13 12:43:30 -06001747 last_recv = conn->last_recv;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001748 if (conn->ping_task &&
Mike Christie4cf10432008-05-07 20:43:52 -05001749 time_before_eq(conn->last_ping + (conn->ping_timeout * HZ),
Mike Christief6d51802007-12-13 12:43:30 -06001750 jiffies)) {
Mike Christie322d7392008-01-31 13:36:52 -06001751 iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
1752 "expired, last rx %lu, last ping %lu, "
1753 "now %lu\n", conn->ping_timeout, last_recv,
1754 conn->last_ping, jiffies);
Mike Christief6d51802007-12-13 12:43:30 -06001755 spin_unlock(&session->lock);
1756 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1757 return;
1758 }
1759
Mike Christie4cf10432008-05-07 20:43:52 -05001760 if (time_before_eq(last_recv + recv_timeout, jiffies)) {
Mike Christiec8611f92008-05-08 20:15:34 -05001761 /* send a ping to try to provoke some traffic */
Mike Christie1b2c7af2009-03-05 14:45:58 -06001762 ISCSI_DBG_CONN(conn, "Sending nopout as ping\n");
Mike Christiec8611f92008-05-08 20:15:34 -05001763 iscsi_send_nopout(conn, NULL);
Mike Christie4cf10432008-05-07 20:43:52 -05001764 next_timeout = conn->last_ping + (conn->ping_timeout * HZ);
Mike Christiead294e92008-01-31 13:36:50 -06001765 } else
Mike Christie4cf10432008-05-07 20:43:52 -05001766 next_timeout = last_recv + recv_timeout;
Mike Christief6d51802007-12-13 12:43:30 -06001767
Mike Christie1b2c7af2009-03-05 14:45:58 -06001768 ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout);
Mike Christiead294e92008-01-31 13:36:50 -06001769 mod_timer(&conn->transport_timer, next_timeout);
Mike Christief6d51802007-12-13 12:43:30 -06001770done:
1771 spin_unlock(&session->lock);
1772}
1773
Mike Christie9c19a7d2008-05-21 15:54:09 -05001774static void iscsi_prep_abort_task_pdu(struct iscsi_task *task,
Mike Christie843c0a82007-12-13 12:43:20 -06001775 struct iscsi_tm *hdr)
1776{
1777 memset(hdr, 0, sizeof(*hdr));
1778 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
1779 hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
1780 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie577577d2008-12-02 00:32:05 -06001781 memcpy(hdr->lun, task->lun, sizeof(hdr->lun));
1782 hdr->rtt = task->hdr_itt;
1783 hdr->refcmdsn = task->cmdsn;
Mike Christie843c0a82007-12-13 12:43:20 -06001784}
1785
Mike Christie7996a772006-04-06 21:13:41 -05001786int iscsi_eh_abort(struct scsi_cmnd *sc)
1787{
Mike Christie75613522008-05-21 15:53:59 -05001788 struct iscsi_cls_session *cls_session;
1789 struct iscsi_session *session;
Mike Christief47f2cf2006-08-31 18:09:33 -04001790 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001791 struct iscsi_task *task;
Mike Christie843c0a82007-12-13 12:43:20 -06001792 struct iscsi_tm *hdr;
1793 int rc, age;
Mike Christie7996a772006-04-06 21:13:41 -05001794
Mike Christie75613522008-05-21 15:53:59 -05001795 cls_session = starget_to_session(scsi_target(sc->device));
1796 session = cls_session->dd_data;
1797
Mike Christie6724add2007-08-15 01:38:30 -05001798 mutex_lock(&session->eh_mutex);
1799 spin_lock_bh(&session->lock);
Mike Christief47f2cf2006-08-31 18:09:33 -04001800 /*
1801 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
1802 * got the command.
1803 */
1804 if (!sc->SCp.ptr) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001805 ISCSI_DBG_SESSION(session, "sc never reached iscsi layer or "
1806 "it completed.\n");
Mike Christie6724add2007-08-15 01:38:30 -05001807 spin_unlock_bh(&session->lock);
1808 mutex_unlock(&session->eh_mutex);
Mike Christief47f2cf2006-08-31 18:09:33 -04001809 return SUCCESS;
1810 }
1811
Mike Christie7996a772006-04-06 21:13:41 -05001812 /*
1813 * If we are not logged in or we have started a new session
1814 * then let the host reset code handle this
1815 */
Mike Christie843c0a82007-12-13 12:43:20 -06001816 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
1817 sc->SCp.phase != session->age) {
1818 spin_unlock_bh(&session->lock);
1819 mutex_unlock(&session->eh_mutex);
1820 return FAILED;
1821 }
1822
1823 conn = session->leadconn;
1824 conn->eh_abort_cnt++;
1825 age = session->age;
1826
Mike Christie9c19a7d2008-05-21 15:54:09 -05001827 task = (struct iscsi_task *)sc->SCp.ptr;
Mike Christie1b2c7af2009-03-05 14:45:58 -06001828 ISCSI_DBG_SESSION(session, "aborting [sc %p itt 0x%x]\n",
1829 sc, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -05001830
Mike Christie9c19a7d2008-05-21 15:54:09 -05001831 /* task completed before time out */
1832 if (!task->sc) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001833 ISCSI_DBG_SESSION(session, "sc completed while abort in "
1834 "progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001835 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05001836 }
Mike Christie7996a772006-04-06 21:13:41 -05001837
Mike Christie9c19a7d2008-05-21 15:54:09 -05001838 if (task->state == ISCSI_TASK_PENDING) {
1839 fail_command(conn, task, DID_ABORT << 16);
Mike Christie77a23c22007-05-30 12:57:18 -05001840 goto success;
1841 }
Mike Christie7996a772006-04-06 21:13:41 -05001842
Mike Christie843c0a82007-12-13 12:43:20 -06001843 /* only have one tmf outstanding at a time */
1844 if (conn->tmf_state != TMF_INITIAL)
Mike Christie7996a772006-04-06 21:13:41 -05001845 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06001846 conn->tmf_state = TMF_QUEUED;
Mike Christie7996a772006-04-06 21:13:41 -05001847
Mike Christie843c0a82007-12-13 12:43:20 -06001848 hdr = &conn->tmhdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001849 iscsi_prep_abort_task_pdu(task, hdr);
Mike Christie843c0a82007-12-13 12:43:20 -06001850
Mike Christie9c19a7d2008-05-21 15:54:09 -05001851 if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001852 rc = FAILED;
1853 goto failed;
1854 }
1855
1856 switch (conn->tmf_state) {
1857 case TMF_SUCCESS:
Mike Christie77a23c22007-05-30 12:57:18 -05001858 spin_unlock_bh(&session->lock);
Mike Christie913e5bf2008-05-21 15:54:18 -05001859 /*
1860 * stop tx side incase the target had sent a abort rsp but
1861 * the initiator was still writing out data.
1862 */
Mike Christie6724add2007-08-15 01:38:30 -05001863 iscsi_suspend_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001864 /*
Mike Christie913e5bf2008-05-21 15:54:18 -05001865 * we do not stop the recv side because targets have been
1866 * good and have never sent us a successful tmf response
1867 * then sent more data for the cmd.
Mike Christie77a23c22007-05-30 12:57:18 -05001868 */
Mike Christie77a23c22007-05-30 12:57:18 -05001869 spin_lock(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001870 fail_command(conn, task, DID_ABORT << 16);
Mike Christie843c0a82007-12-13 12:43:20 -06001871 conn->tmf_state = TMF_INITIAL;
Mike Christie77a23c22007-05-30 12:57:18 -05001872 spin_unlock(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05001873 iscsi_start_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001874 goto success_unlocked;
Mike Christie843c0a82007-12-13 12:43:20 -06001875 case TMF_TIMEDOUT:
1876 spin_unlock_bh(&session->lock);
1877 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1878 goto failed_unlocked;
1879 case TMF_NOT_FOUND:
1880 if (!sc->SCp.ptr) {
1881 conn->tmf_state = TMF_INITIAL;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001882 /* task completed before tmf abort response */
Mike Christie1b2c7af2009-03-05 14:45:58 -06001883 ISCSI_DBG_SESSION(session, "sc completed while abort "
1884 "in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001885 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05001886 }
1887 /* fall through */
1888 default:
Mike Christie843c0a82007-12-13 12:43:20 -06001889 conn->tmf_state = TMF_INITIAL;
1890 goto failed;
Mike Christie7996a772006-04-06 21:13:41 -05001891 }
1892
Mike Christie77a23c22007-05-30 12:57:18 -05001893success:
Mike Christie7996a772006-04-06 21:13:41 -05001894 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001895success_unlocked:
Mike Christie1b2c7af2009-03-05 14:45:58 -06001896 ISCSI_DBG_SESSION(session, "abort success [sc %p itt 0x%x]\n",
1897 sc, task->itt);
Mike Christie6724add2007-08-15 01:38:30 -05001898 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001899 return SUCCESS;
1900
1901failed:
1902 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001903failed_unlocked:
Mike Christie1b2c7af2009-03-05 14:45:58 -06001904 ISCSI_DBG_SESSION(session, "abort failed [sc %p itt 0x%x]\n", sc,
1905 task ? task->itt : 0);
Mike Christie6724add2007-08-15 01:38:30 -05001906 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001907 return FAILED;
1908}
1909EXPORT_SYMBOL_GPL(iscsi_eh_abort);
1910
Mike Christie843c0a82007-12-13 12:43:20 -06001911static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
1912{
1913 memset(hdr, 0, sizeof(*hdr));
1914 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
1915 hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
1916 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
1917 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
Mike Christief6d51802007-12-13 12:43:30 -06001918 hdr->rtt = RESERVED_ITT;
Mike Christie843c0a82007-12-13 12:43:20 -06001919}
1920
1921int iscsi_eh_device_reset(struct scsi_cmnd *sc)
1922{
Mike Christie75613522008-05-21 15:53:59 -05001923 struct iscsi_cls_session *cls_session;
1924 struct iscsi_session *session;
Mike Christie843c0a82007-12-13 12:43:20 -06001925 struct iscsi_conn *conn;
1926 struct iscsi_tm *hdr;
1927 int rc = FAILED;
1928
Mike Christie75613522008-05-21 15:53:59 -05001929 cls_session = starget_to_session(scsi_target(sc->device));
1930 session = cls_session->dd_data;
1931
Mike Christie1b2c7af2009-03-05 14:45:58 -06001932 ISCSI_DBG_SESSION(session, "LU Reset [sc %p lun %u]\n",
1933 sc, sc->device->lun);
Mike Christie843c0a82007-12-13 12:43:20 -06001934
1935 mutex_lock(&session->eh_mutex);
1936 spin_lock_bh(&session->lock);
1937 /*
1938 * Just check if we are not logged in. We cannot check for
1939 * the phase because the reset could come from a ioctl.
1940 */
1941 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
1942 goto unlock;
1943 conn = session->leadconn;
1944
1945 /* only have one tmf outstanding at a time */
1946 if (conn->tmf_state != TMF_INITIAL)
1947 goto unlock;
1948 conn->tmf_state = TMF_QUEUED;
1949
1950 hdr = &conn->tmhdr;
1951 iscsi_prep_lun_reset_pdu(sc, hdr);
1952
Mike Christie9c19a7d2008-05-21 15:54:09 -05001953 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
Mike Christief6d51802007-12-13 12:43:30 -06001954 session->lu_reset_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001955 rc = FAILED;
1956 goto unlock;
1957 }
1958
1959 switch (conn->tmf_state) {
1960 case TMF_SUCCESS:
1961 break;
1962 case TMF_TIMEDOUT:
1963 spin_unlock_bh(&session->lock);
1964 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1965 goto done;
1966 default:
1967 conn->tmf_state = TMF_INITIAL;
1968 goto unlock;
1969 }
1970
1971 rc = SUCCESS;
1972 spin_unlock_bh(&session->lock);
1973
1974 iscsi_suspend_tx(conn);
Mike Christie913e5bf2008-05-21 15:54:18 -05001975
Mike Christiea3439142008-09-24 11:46:15 -05001976 spin_lock_bh(&session->lock);
Mike Christie6eabafb2008-01-31 13:36:43 -06001977 fail_all_commands(conn, sc->device->lun, DID_ERROR);
Mike Christie843c0a82007-12-13 12:43:20 -06001978 conn->tmf_state = TMF_INITIAL;
Mike Christiea3439142008-09-24 11:46:15 -05001979 spin_unlock_bh(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001980
1981 iscsi_start_tx(conn);
1982 goto done;
1983
1984unlock:
1985 spin_unlock_bh(&session->lock);
1986done:
Mike Christie1b2c7af2009-03-05 14:45:58 -06001987 ISCSI_DBG_SESSION(session, "dev reset result = %s\n",
1988 rc == SUCCESS ? "SUCCESS" : "FAILED");
Mike Christie843c0a82007-12-13 12:43:20 -06001989 mutex_unlock(&session->eh_mutex);
1990 return rc;
1991}
1992EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
1993
Olaf Kirch63203772007-12-13 12:43:25 -06001994/*
1995 * Pre-allocate a pool of @max items of @item_size. By default, the pool
1996 * should be accessed via kfifo_{get,put} on q->queue.
1997 * Optionally, the caller can obtain the array of object pointers
1998 * by passing in a non-NULL @items pointer
1999 */
Mike Christie7996a772006-04-06 21:13:41 -05002000int
Olaf Kirch63203772007-12-13 12:43:25 -06002001iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
Mike Christie7996a772006-04-06 21:13:41 -05002002{
Olaf Kirch63203772007-12-13 12:43:25 -06002003 int i, num_arrays = 1;
Mike Christie7996a772006-04-06 21:13:41 -05002004
Olaf Kirch63203772007-12-13 12:43:25 -06002005 memset(q, 0, sizeof(*q));
Mike Christie7996a772006-04-06 21:13:41 -05002006
2007 q->max = max;
Olaf Kirch63203772007-12-13 12:43:25 -06002008
2009 /* If the user passed an items pointer, he wants a copy of
2010 * the array. */
2011 if (items)
2012 num_arrays++;
2013 q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
2014 if (q->pool == NULL)
Jean Delvaref474a372009-03-05 14:45:55 -06002015 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002016
2017 q->queue = kfifo_init((void*)q->pool, max * sizeof(void*),
2018 GFP_KERNEL, NULL);
Jean Delvarefd6e1c12009-04-01 13:11:29 -05002019 if (IS_ERR(q->queue)) {
2020 q->queue = NULL;
Olaf Kirch63203772007-12-13 12:43:25 -06002021 goto enomem;
Jean Delvarefd6e1c12009-04-01 13:11:29 -05002022 }
Mike Christie7996a772006-04-06 21:13:41 -05002023
2024 for (i = 0; i < max; i++) {
Olaf Kirch63203772007-12-13 12:43:25 -06002025 q->pool[i] = kzalloc(item_size, GFP_KERNEL);
Mike Christie7996a772006-04-06 21:13:41 -05002026 if (q->pool[i] == NULL) {
Olaf Kirch63203772007-12-13 12:43:25 -06002027 q->max = i;
2028 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05002029 }
Mike Christie7996a772006-04-06 21:13:41 -05002030 __kfifo_put(q->queue, (void*)&q->pool[i], sizeof(void*));
2031 }
Olaf Kirch63203772007-12-13 12:43:25 -06002032
2033 if (items) {
2034 *items = q->pool + max;
2035 memcpy(*items, q->pool, max * sizeof(void *));
2036 }
2037
Mike Christie7996a772006-04-06 21:13:41 -05002038 return 0;
Olaf Kirch63203772007-12-13 12:43:25 -06002039
2040enomem:
2041 iscsi_pool_free(q);
2042 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002043}
2044EXPORT_SYMBOL_GPL(iscsi_pool_init);
2045
Olaf Kirch63203772007-12-13 12:43:25 -06002046void iscsi_pool_free(struct iscsi_pool *q)
Mike Christie7996a772006-04-06 21:13:41 -05002047{
2048 int i;
2049
2050 for (i = 0; i < q->max; i++)
Olaf Kirch63203772007-12-13 12:43:25 -06002051 kfree(q->pool[i]);
Jean Delvaref474a372009-03-05 14:45:55 -06002052 kfree(q->pool);
Mike Christie2f5899a2009-01-16 12:36:51 -06002053 kfree(q->queue);
Mike Christie7996a772006-04-06 21:13:41 -05002054}
2055EXPORT_SYMBOL_GPL(iscsi_pool_free);
2056
Mike Christiea4804cd2008-05-21 15:54:00 -05002057/**
2058 * iscsi_host_add - add host to system
2059 * @shost: scsi host
2060 * @pdev: parent device
2061 *
2062 * This should be called by partial offload and software iscsi drivers
2063 * to add a host to the system.
2064 */
2065int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev)
Mike Christie7996a772006-04-06 21:13:41 -05002066{
Mike Christie8e9a20c2008-06-16 10:11:33 -05002067 if (!shost->can_queue)
2068 shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX;
2069
Mike Christie4d108352009-03-05 14:46:04 -06002070 if (!shost->cmd_per_lun)
2071 shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN;
2072
Mike Christie308cec12009-02-06 12:06:20 -06002073 if (!shost->transportt->eh_timed_out)
2074 shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out;
Mike Christiea4804cd2008-05-21 15:54:00 -05002075 return scsi_add_host(shost, pdev);
2076}
2077EXPORT_SYMBOL_GPL(iscsi_host_add);
2078
2079/**
2080 * iscsi_host_alloc - allocate a host and driver data
2081 * @sht: scsi host template
2082 * @dd_data_size: driver host data size
Mike Christie32ae7632009-03-05 14:46:03 -06002083 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
Mike Christiea4804cd2008-05-21 15:54:00 -05002084 *
2085 * This should be called by partial offload and software iscsi drivers.
2086 * To access the driver specific memory use the iscsi_host_priv() macro.
2087 */
2088struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
Mike Christie4d108352009-03-05 14:46:04 -06002089 int dd_data_size, bool xmit_can_sleep)
Mike Christiea4804cd2008-05-21 15:54:00 -05002090{
2091 struct Scsi_Host *shost;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002092 struct iscsi_host *ihost;
Mike Christiea4804cd2008-05-21 15:54:00 -05002093
2094 shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size);
2095 if (!shost)
2096 return NULL;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002097 ihost = shost_priv(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002098
2099 if (xmit_can_sleep) {
2100 snprintf(ihost->workq_name, sizeof(ihost->workq_name),
2101 "iscsi_q_%d", shost->host_no);
2102 ihost->workq = create_singlethread_workqueue(ihost->workq_name);
2103 if (!ihost->workq)
2104 goto free_host;
2105 }
2106
Mike Christiee5bd7b52008-09-24 11:46:10 -05002107 spin_lock_init(&ihost->lock);
2108 ihost->state = ISCSI_HOST_SETUP;
2109 ihost->num_sessions = 0;
2110 init_waitqueue_head(&ihost->session_removal_wq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002111 return shost;
Mike Christie32ae7632009-03-05 14:46:03 -06002112
2113free_host:
2114 scsi_host_put(shost);
2115 return NULL;
Mike Christie75613522008-05-21 15:53:59 -05002116}
Mike Christiea4804cd2008-05-21 15:54:00 -05002117EXPORT_SYMBOL_GPL(iscsi_host_alloc);
Mike Christie75613522008-05-21 15:53:59 -05002118
Mike Christiee5bd7b52008-09-24 11:46:10 -05002119static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session)
2120{
Mike Christie40a06e72009-03-05 14:46:05 -06002121 iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002122}
2123
Mike Christiea4804cd2008-05-21 15:54:00 -05002124/**
2125 * iscsi_host_remove - remove host and sessions
2126 * @shost: scsi host
2127 *
Mike Christiee5bd7b52008-09-24 11:46:10 -05002128 * If there are any sessions left, this will initiate the removal and wait
2129 * for the completion.
Mike Christiea4804cd2008-05-21 15:54:00 -05002130 */
2131void iscsi_host_remove(struct Scsi_Host *shost)
2132{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002133 struct iscsi_host *ihost = shost_priv(shost);
2134 unsigned long flags;
2135
2136 spin_lock_irqsave(&ihost->lock, flags);
2137 ihost->state = ISCSI_HOST_REMOVED;
2138 spin_unlock_irqrestore(&ihost->lock, flags);
2139
2140 iscsi_host_for_each_session(shost, iscsi_notify_host_removed);
2141 wait_event_interruptible(ihost->session_removal_wq,
2142 ihost->num_sessions == 0);
2143 if (signal_pending(current))
2144 flush_signals(current);
2145
Mike Christiea4804cd2008-05-21 15:54:00 -05002146 scsi_remove_host(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002147 if (ihost->workq)
2148 destroy_workqueue(ihost->workq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002149}
2150EXPORT_SYMBOL_GPL(iscsi_host_remove);
2151
2152void iscsi_host_free(struct Scsi_Host *shost)
Mike Christie75613522008-05-21 15:53:59 -05002153{
2154 struct iscsi_host *ihost = shost_priv(shost);
2155
2156 kfree(ihost->netdev);
2157 kfree(ihost->hwaddress);
2158 kfree(ihost->initiatorname);
Mike Christiea4804cd2008-05-21 15:54:00 -05002159 scsi_host_put(shost);
Mike Christie75613522008-05-21 15:53:59 -05002160}
Mike Christiea4804cd2008-05-21 15:54:00 -05002161EXPORT_SYMBOL_GPL(iscsi_host_free);
Mike Christie75613522008-05-21 15:53:59 -05002162
Mike Christiee5bd7b52008-09-24 11:46:10 -05002163static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost)
2164{
2165 struct iscsi_host *ihost = shost_priv(shost);
2166 unsigned long flags;
2167
2168 shost = scsi_host_get(shost);
2169 if (!shost) {
2170 printk(KERN_ERR "Invalid state. Cannot notify host removal "
2171 "of session teardown event because host already "
2172 "removed.\n");
2173 return;
2174 }
2175
2176 spin_lock_irqsave(&ihost->lock, flags);
2177 ihost->num_sessions--;
2178 if (ihost->num_sessions == 0)
2179 wake_up(&ihost->session_removal_wq);
2180 spin_unlock_irqrestore(&ihost->lock, flags);
2181 scsi_host_put(shost);
2182}
2183
Mike Christie75613522008-05-21 15:53:59 -05002184/**
2185 * iscsi_session_setup - create iscsi cls session and host and session
2186 * @iscsit: iscsi transport template
2187 * @shost: scsi host
2188 * @cmds_max: session can queue
Mike Christie9c19a7d2008-05-21 15:54:09 -05002189 * @cmd_task_size: LLD task private data size
Mike Christie75613522008-05-21 15:53:59 -05002190 * @initial_cmdsn: initial CmdSN
2191 *
2192 * This can be used by software iscsi_transports that allocate
2193 * a session per scsi host.
Mike Christie3cf7b232008-05-21 15:54:17 -05002194 *
2195 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2196 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2197 * for nop handling and login/logout requests.
Mike Christie75613522008-05-21 15:53:59 -05002198 */
2199struct iscsi_cls_session *
2200iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
Mike Christie3cf7b232008-05-21 15:54:17 -05002201 uint16_t cmds_max, int cmd_task_size,
Mike Christie79706342008-05-21 15:54:12 -05002202 uint32_t initial_cmdsn, unsigned int id)
Mike Christie75613522008-05-21 15:53:59 -05002203{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002204 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie75613522008-05-21 15:53:59 -05002205 struct iscsi_session *session;
2206 struct iscsi_cls_session *cls_session;
Mike Christie3cf7b232008-05-21 15:54:17 -05002207 int cmd_i, scsi_cmds, total_cmds = cmds_max;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002208 unsigned long flags;
2209
2210 spin_lock_irqsave(&ihost->lock, flags);
2211 if (ihost->state == ISCSI_HOST_REMOVED) {
2212 spin_unlock_irqrestore(&ihost->lock, flags);
2213 return NULL;
2214 }
2215 ihost->num_sessions++;
2216 spin_unlock_irqrestore(&ihost->lock, flags);
Mike Christie8e9a20c2008-06-16 10:11:33 -05002217
2218 if (!total_cmds)
2219 total_cmds = ISCSI_DEF_XMIT_CMDS_MAX;
Mike Christie3e5c28a2008-05-21 15:54:06 -05002220 /*
Mike Christie3cf7b232008-05-21 15:54:17 -05002221 * The iscsi layer needs some tasks for nop handling and tmfs,
2222 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2223 * + 1 command for scsi IO.
Mike Christie3e5c28a2008-05-21 15:54:06 -05002224 */
Mike Christie3cf7b232008-05-21 15:54:17 -05002225 if (total_cmds < ISCSI_TOTAL_CMDS_MIN) {
2226 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2227 "must be a power of two that is at least %d.\n",
2228 total_cmds, ISCSI_TOTAL_CMDS_MIN);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002229 goto dec_session_count;
Mike Christie15482712007-05-30 12:57:19 -05002230 }
Mike Christie3cf7b232008-05-21 15:54:17 -05002231
2232 if (total_cmds > ISCSI_TOTAL_CMDS_MAX) {
2233 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2234 "must be a power of 2 less than or equal to %d.\n",
2235 cmds_max, ISCSI_TOTAL_CMDS_MAX);
2236 total_cmds = ISCSI_TOTAL_CMDS_MAX;
2237 }
2238
2239 if (!is_power_of_2(total_cmds)) {
2240 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2241 "must be a power of 2.\n", total_cmds);
2242 total_cmds = rounddown_pow_of_two(total_cmds);
2243 if (total_cmds < ISCSI_TOTAL_CMDS_MIN)
2244 return NULL;
2245 printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n",
2246 total_cmds);
2247 }
2248 scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX;
Mike Christie15482712007-05-30 12:57:19 -05002249
Mike Christie5d91e202008-05-21 15:54:01 -05002250 cls_session = iscsi_alloc_session(shost, iscsit,
2251 sizeof(struct iscsi_session));
Mike Christie75613522008-05-21 15:53:59 -05002252 if (!cls_session)
Mike Christiee5bd7b52008-09-24 11:46:10 -05002253 goto dec_session_count;
Mike Christie75613522008-05-21 15:53:59 -05002254 session = cls_session->dd_data;
2255 session->cls_session = cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05002256 session->host = shost;
2257 session->state = ISCSI_STATE_FREE;
Mike Christief6d51802007-12-13 12:43:30 -06002258 session->fast_abort = 1;
Mike Christie4cd49ea2007-12-13 12:43:38 -06002259 session->lu_reset_timeout = 15;
2260 session->abort_timeout = 10;
Mike Christie3cf7b232008-05-21 15:54:17 -05002261 session->scsi_cmds_max = scsi_cmds;
2262 session->cmds_max = total_cmds;
Mike Christiee0726402007-07-26 12:46:48 -05002263 session->queued_cmdsn = session->cmdsn = initial_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002264 session->exp_cmdsn = initial_cmdsn + 1;
2265 session->max_cmdsn = initial_cmdsn + 1;
2266 session->max_r2t = 1;
2267 session->tt = iscsit;
Mike Christie6724add2007-08-15 01:38:30 -05002268 mutex_init(&session->eh_mutex);
Mike Christie75613522008-05-21 15:53:59 -05002269 spin_lock_init(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002270
2271 /* initialize SCSI PDU commands pool */
2272 if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
2273 (void***)&session->cmds,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002274 cmd_task_size + sizeof(struct iscsi_task)))
Mike Christie7996a772006-04-06 21:13:41 -05002275 goto cmdpool_alloc_fail;
2276
2277 /* pre-format cmds pool with ITT */
2278 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05002279 struct iscsi_task *task = session->cmds[cmd_i];
Mike Christie7996a772006-04-06 21:13:41 -05002280
Mike Christie9c19a7d2008-05-21 15:54:09 -05002281 if (cmd_task_size)
2282 task->dd_data = &task[1];
2283 task->itt = cmd_i;
2284 INIT_LIST_HEAD(&task->running);
Mike Christie7996a772006-04-06 21:13:41 -05002285 }
2286
Mike Christief53a88d2006-06-28 12:00:27 -05002287 if (!try_module_get(iscsit->owner))
Mike Christie75613522008-05-21 15:53:59 -05002288 goto module_get_fail;
2289
Mike Christie79706342008-05-21 15:54:12 -05002290 if (iscsi_add_session(cls_session, id))
Mike Christief53a88d2006-06-28 12:00:27 -05002291 goto cls_session_fail;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002292
Mike Christie7996a772006-04-06 21:13:41 -05002293 return cls_session;
2294
2295cls_session_fail:
Mike Christie75613522008-05-21 15:53:59 -05002296 module_put(iscsit->owner);
2297module_get_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06002298 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002299cmdpool_alloc_fail:
Mike Christie75613522008-05-21 15:53:59 -05002300 iscsi_free_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002301dec_session_count:
2302 iscsi_host_dec_session_cnt(shost);
Mike Christie7996a772006-04-06 21:13:41 -05002303 return NULL;
2304}
2305EXPORT_SYMBOL_GPL(iscsi_session_setup);
2306
2307/**
2308 * iscsi_session_teardown - destroy session, host, and cls_session
Mike Christie75613522008-05-21 15:53:59 -05002309 * @cls_session: iscsi session
Mike Christie7996a772006-04-06 21:13:41 -05002310 *
Mike Christie75613522008-05-21 15:53:59 -05002311 * The driver must have called iscsi_remove_session before
2312 * calling this.
2313 */
Mike Christie7996a772006-04-06 21:13:41 -05002314void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
2315{
Mike Christie75613522008-05-21 15:53:59 -05002316 struct iscsi_session *session = cls_session->dd_data;
Mike Christie63f75cc2006-07-24 15:47:29 -05002317 struct module *owner = cls_session->transport->owner;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002318 struct Scsi_Host *shost = session->host;
Mike Christie7996a772006-04-06 21:13:41 -05002319
Olaf Kirch63203772007-12-13 12:43:25 -06002320 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002321
Mike Christieb2c64162007-05-30 12:57:16 -05002322 kfree(session->password);
2323 kfree(session->password_in);
2324 kfree(session->username);
2325 kfree(session->username_in);
Mike Christief3ff0c32006-07-24 15:47:50 -05002326 kfree(session->targetname);
Mike Christie88dfd342008-05-21 15:54:16 -05002327 kfree(session->initiatorname);
2328 kfree(session->ifacename);
Mike Christief3ff0c32006-07-24 15:47:50 -05002329
Mike Christie75613522008-05-21 15:53:59 -05002330 iscsi_destroy_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002331 iscsi_host_dec_session_cnt(shost);
Mike Christie63f75cc2006-07-24 15:47:29 -05002332 module_put(owner);
Mike Christie7996a772006-04-06 21:13:41 -05002333}
2334EXPORT_SYMBOL_GPL(iscsi_session_teardown);
2335
2336/**
2337 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2338 * @cls_session: iscsi_cls_session
Mike Christie5d91e202008-05-21 15:54:01 -05002339 * @dd_size: private driver data size
Mike Christie7996a772006-04-06 21:13:41 -05002340 * @conn_idx: cid
Mike Christie5d91e202008-05-21 15:54:01 -05002341 */
Mike Christie7996a772006-04-06 21:13:41 -05002342struct iscsi_cls_conn *
Mike Christie5d91e202008-05-21 15:54:01 -05002343iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
2344 uint32_t conn_idx)
Mike Christie7996a772006-04-06 21:13:41 -05002345{
Mike Christie75613522008-05-21 15:53:59 -05002346 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002347 struct iscsi_conn *conn;
2348 struct iscsi_cls_conn *cls_conn;
Mike Christied36ab6f2006-05-18 20:31:34 -05002349 char *data;
Mike Christie7996a772006-04-06 21:13:41 -05002350
Mike Christie5d91e202008-05-21 15:54:01 -05002351 cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size,
2352 conn_idx);
Mike Christie7996a772006-04-06 21:13:41 -05002353 if (!cls_conn)
2354 return NULL;
2355 conn = cls_conn->dd_data;
Mike Christie5d91e202008-05-21 15:54:01 -05002356 memset(conn, 0, sizeof(*conn) + dd_size);
Mike Christie7996a772006-04-06 21:13:41 -05002357
Mike Christie5d91e202008-05-21 15:54:01 -05002358 conn->dd_data = cls_conn->dd_data + sizeof(*conn);
Mike Christie7996a772006-04-06 21:13:41 -05002359 conn->session = session;
2360 conn->cls_conn = cls_conn;
2361 conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
2362 conn->id = conn_idx;
2363 conn->exp_statsn = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002364 conn->tmf_state = TMF_INITIAL;
Mike Christief6d51802007-12-13 12:43:30 -06002365
2366 init_timer(&conn->transport_timer);
2367 conn->transport_timer.data = (unsigned long)conn;
2368 conn->transport_timer.function = iscsi_check_transport_timeouts;
2369
Mike Christie7996a772006-04-06 21:13:41 -05002370 INIT_LIST_HEAD(&conn->run_list);
2371 INIT_LIST_HEAD(&conn->mgmt_run_list);
Mike Christie843c0a82007-12-13 12:43:20 -06002372 INIT_LIST_HEAD(&conn->mgmtqueue);
Mike Christieb6c395e2006-07-24 15:47:15 -05002373 INIT_LIST_HEAD(&conn->xmitqueue);
Mike Christie843c0a82007-12-13 12:43:20 -06002374 INIT_LIST_HEAD(&conn->requeue);
David Howellsc4028952006-11-22 14:57:56 +00002375 INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
Mike Christie7996a772006-04-06 21:13:41 -05002376
Mike Christie9c19a7d2008-05-21 15:54:09 -05002377 /* allocate login_task used for the login/text sequences */
Mike Christie7996a772006-04-06 21:13:41 -05002378 spin_lock_bh(&session->lock);
Mike Christie3e5c28a2008-05-21 15:54:06 -05002379 if (!__kfifo_get(session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002380 (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002381 sizeof(void*))) {
2382 spin_unlock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002383 goto login_task_alloc_fail;
Mike Christie7996a772006-04-06 21:13:41 -05002384 }
2385 spin_unlock_bh(&session->lock);
2386
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002387 data = (char *) __get_free_pages(GFP_KERNEL,
2388 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christied36ab6f2006-05-18 20:31:34 -05002389 if (!data)
Mike Christie9c19a7d2008-05-21 15:54:09 -05002390 goto login_task_data_alloc_fail;
2391 conn->login_task->data = conn->data = data;
Mike Christied36ab6f2006-05-18 20:31:34 -05002392
Mike Christie843c0a82007-12-13 12:43:20 -06002393 init_timer(&conn->tmf_timer);
Mike Christie7996a772006-04-06 21:13:41 -05002394 init_waitqueue_head(&conn->ehwait);
2395
2396 return cls_conn;
2397
Mike Christie9c19a7d2008-05-21 15:54:09 -05002398login_task_data_alloc_fail:
2399 __kfifo_put(session->cmdpool.queue, (void*)&conn->login_task,
Mike Christied36ab6f2006-05-18 20:31:34 -05002400 sizeof(void*));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002401login_task_alloc_fail:
Mike Christie7996a772006-04-06 21:13:41 -05002402 iscsi_destroy_conn(cls_conn);
2403 return NULL;
2404}
2405EXPORT_SYMBOL_GPL(iscsi_conn_setup);
2406
2407/**
2408 * iscsi_conn_teardown - teardown iscsi connection
2409 * cls_conn: iscsi class connection
2410 *
2411 * TODO: we may need to make this into a two step process
2412 * like scsi-mls remove + put host
2413 */
2414void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
2415{
2416 struct iscsi_conn *conn = cls_conn->dd_data;
2417 struct iscsi_session *session = conn->session;
2418 unsigned long flags;
2419
Mike Christief6d51802007-12-13 12:43:30 -06002420 del_timer_sync(&conn->transport_timer);
2421
Mike Christie7996a772006-04-06 21:13:41 -05002422 spin_lock_bh(&session->lock);
2423 conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
2424 if (session->leadconn == conn) {
2425 /*
2426 * leading connection? then give up on recovery.
2427 */
2428 session->state = ISCSI_STATE_TERMINATE;
2429 wake_up(&conn->ehwait);
2430 }
2431 spin_unlock_bh(&session->lock);
2432
Mike Christie7996a772006-04-06 21:13:41 -05002433 /*
2434 * Block until all in-progress commands for this connection
2435 * time out or fail.
2436 */
2437 for (;;) {
2438 spin_lock_irqsave(session->host->host_lock, flags);
2439 if (!session->host->host_busy) { /* OK for ERL == 0 */
2440 spin_unlock_irqrestore(session->host->host_lock, flags);
2441 break;
2442 }
2443 spin_unlock_irqrestore(session->host->host_lock, flags);
2444 msleep_interruptible(500);
Mike Christie322d7392008-01-31 13:36:52 -06002445 iscsi_conn_printk(KERN_INFO, conn, "iscsi conn_destroy(): "
2446 "host_busy %d host_failed %d\n",
2447 session->host->host_busy,
2448 session->host->host_failed);
Mike Christie7996a772006-04-06 21:13:41 -05002449 /*
2450 * force eh_abort() to unblock
2451 */
2452 wake_up(&conn->ehwait);
2453 }
2454
Mike Christie779ea122007-02-28 17:32:15 -06002455 /* flush queued up work because we free the connection below */
Mike Christie843c0a82007-12-13 12:43:20 -06002456 iscsi_suspend_tx(conn);
Mike Christie779ea122007-02-28 17:32:15 -06002457
Mike Christie7996a772006-04-06 21:13:41 -05002458 spin_lock_bh(&session->lock);
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002459 free_pages((unsigned long) conn->data,
2460 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christief3ff0c32006-07-24 15:47:50 -05002461 kfree(conn->persistent_address);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002462 __kfifo_put(session->cmdpool.queue, (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002463 sizeof(void*));
Mike Christiee0726402007-07-26 12:46:48 -05002464 if (session->leadconn == conn)
Mike Christie7996a772006-04-06 21:13:41 -05002465 session->leadconn = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05002466 spin_unlock_bh(&session->lock);
2467
Mike Christie7996a772006-04-06 21:13:41 -05002468 iscsi_destroy_conn(cls_conn);
2469}
2470EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
2471
2472int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
2473{
2474 struct iscsi_conn *conn = cls_conn->dd_data;
2475 struct iscsi_session *session = conn->session;
2476
Mike Christieffd04362006-08-31 18:09:24 -04002477 if (!session) {
Mike Christie322d7392008-01-31 13:36:52 -06002478 iscsi_conn_printk(KERN_ERR, conn,
2479 "can't start unbound connection\n");
Mike Christie7996a772006-04-06 21:13:41 -05002480 return -EPERM;
2481 }
2482
Mike Christiedb98ccd2006-08-31 18:09:31 -04002483 if ((session->imm_data_en || !session->initial_r2t_en) &&
2484 session->first_burst > session->max_burst) {
Mike Christie322d7392008-01-31 13:36:52 -06002485 iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
2486 "first_burst %d max_burst %d\n",
2487 session->first_burst, session->max_burst);
Mike Christieffd04362006-08-31 18:09:24 -04002488 return -EINVAL;
2489 }
2490
Mike Christief6d51802007-12-13 12:43:30 -06002491 if (conn->ping_timeout && !conn->recv_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06002492 iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
2493 "zero. Using 5 seconds\n.");
Mike Christief6d51802007-12-13 12:43:30 -06002494 conn->recv_timeout = 5;
2495 }
2496
2497 if (conn->recv_timeout && !conn->ping_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06002498 iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
2499 "zero. Using 5 seconds.\n");
Mike Christief6d51802007-12-13 12:43:30 -06002500 conn->ping_timeout = 5;
2501 }
2502
Mike Christie7996a772006-04-06 21:13:41 -05002503 spin_lock_bh(&session->lock);
2504 conn->c_stage = ISCSI_CONN_STARTED;
2505 session->state = ISCSI_STATE_LOGGED_IN;
Mike Christiee0726402007-07-26 12:46:48 -05002506 session->queued_cmdsn = session->cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002507
Mike Christief6d51802007-12-13 12:43:30 -06002508 conn->last_recv = jiffies;
2509 conn->last_ping = jiffies;
2510 if (conn->recv_timeout && conn->ping_timeout)
2511 mod_timer(&conn->transport_timer,
2512 jiffies + (conn->recv_timeout * HZ));
2513
Mike Christie7996a772006-04-06 21:13:41 -05002514 switch(conn->stop_stage) {
2515 case STOP_CONN_RECOVER:
2516 /*
2517 * unblock eh_abort() if it is blocked. re-try all
2518 * commands after successful recovery
2519 */
Mike Christie7996a772006-04-06 21:13:41 -05002520 conn->stop_stage = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002521 conn->tmf_state = TMF_INITIAL;
Mike Christie7996a772006-04-06 21:13:41 -05002522 session->age++;
Mike Christie8b1d0342008-01-31 13:36:53 -06002523 if (session->age == 16)
2524 session->age = 0;
Mike Christie6eabafb2008-01-31 13:36:43 -06002525 break;
Mike Christie7996a772006-04-06 21:13:41 -05002526 case STOP_CONN_TERM:
Mike Christie7996a772006-04-06 21:13:41 -05002527 conn->stop_stage = 0;
2528 break;
Mike Christie7996a772006-04-06 21:13:41 -05002529 default:
2530 break;
2531 }
2532 spin_unlock_bh(&session->lock);
2533
Mike Christie75613522008-05-21 15:53:59 -05002534 iscsi_unblock_session(session->cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06002535 wake_up(&conn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05002536 return 0;
2537}
2538EXPORT_SYMBOL_GPL(iscsi_conn_start);
2539
2540static void
2541flush_control_queues(struct iscsi_session *session, struct iscsi_conn *conn)
2542{
Mike Christie9c19a7d2008-05-21 15:54:09 -05002543 struct iscsi_task *task, *tmp;
Mike Christie7996a772006-04-06 21:13:41 -05002544
2545 /* handle pending */
Mike Christie9c19a7d2008-05-21 15:54:09 -05002546 list_for_each_entry_safe(task, tmp, &conn->mgmtqueue, running) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06002547 ISCSI_DBG_SESSION(session, "flushing pending mgmt task "
2548 "itt 0x%x\n", task->itt);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002549 /* release ref from prep task */
2550 __iscsi_put_task(task);
Mike Christie7996a772006-04-06 21:13:41 -05002551 }
2552
2553 /* handle running */
Mike Christie9c19a7d2008-05-21 15:54:09 -05002554 list_for_each_entry_safe(task, tmp, &conn->mgmt_run_list, running) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06002555 ISCSI_DBG_SESSION(session, "flushing running mgmt task "
2556 "itt 0x%x\n", task->itt);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002557 /* release ref from prep task */
2558 __iscsi_put_task(task);
Mike Christie7996a772006-04-06 21:13:41 -05002559 }
2560
Mike Christie9c19a7d2008-05-21 15:54:09 -05002561 conn->task = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05002562}
2563
Mike Christie656cffc2006-05-18 20:31:42 -05002564static void iscsi_start_session_recovery(struct iscsi_session *session,
2565 struct iscsi_conn *conn, int flag)
Mike Christie7996a772006-04-06 21:13:41 -05002566{
Mike Christieed2abc72006-05-02 19:46:40 -05002567 int old_stop_stage;
2568
Mike Christief6d51802007-12-13 12:43:30 -06002569 del_timer_sync(&conn->transport_timer);
2570
Mike Christie6724add2007-08-15 01:38:30 -05002571 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002572 spin_lock_bh(&session->lock);
Mike Christieed2abc72006-05-02 19:46:40 -05002573 if (conn->stop_stage == STOP_CONN_TERM) {
Mike Christie7996a772006-04-06 21:13:41 -05002574 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002575 mutex_unlock(&session->eh_mutex);
2576 return;
2577 }
2578
2579 /*
Mike Christieed2abc72006-05-02 19:46:40 -05002580 * When this is called for the in_login state, we only want to clean
Mike Christie9c19a7d2008-05-21 15:54:09 -05002581 * up the login task and connection. We do not need to block and set
Mike Christie67a61112006-05-30 00:37:20 -05002582 * the recovery state again
Mike Christieed2abc72006-05-02 19:46:40 -05002583 */
Mike Christie67a61112006-05-30 00:37:20 -05002584 if (flag == STOP_CONN_TERM)
2585 session->state = ISCSI_STATE_TERMINATE;
2586 else if (conn->stop_stage != STOP_CONN_RECOVER)
2587 session->state = ISCSI_STATE_IN_RECOVERY;
Mike Christieed2abc72006-05-02 19:46:40 -05002588
2589 old_stop_stage = conn->stop_stage;
Mike Christie7996a772006-04-06 21:13:41 -05002590 conn->stop_stage = flag;
Mike Christie67a61112006-05-30 00:37:20 -05002591 conn->c_stage = ISCSI_CONN_STOPPED;
Mike Christie7996a772006-04-06 21:13:41 -05002592 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002593
2594 iscsi_suspend_tx(conn);
Mike Christie7996a772006-04-06 21:13:41 -05002595 /*
2596 * for connection level recovery we should not calculate
2597 * header digest. conn->hdr_size used for optimization
2598 * in hdr_extract() and will be re-negotiated at
2599 * set_param() time.
2600 */
2601 if (flag == STOP_CONN_RECOVER) {
2602 conn->hdrdgst_en = 0;
2603 conn->datadgst_en = 0;
Mike Christie656cffc2006-05-18 20:31:42 -05002604 if (session->state == ISCSI_STATE_IN_RECOVERY &&
Mike Christie67a61112006-05-30 00:37:20 -05002605 old_stop_stage != STOP_CONN_RECOVER) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06002606 ISCSI_DBG_SESSION(session, "blocking session\n");
Mike Christie75613522008-05-21 15:53:59 -05002607 iscsi_block_session(session->cls_session);
Mike Christie67a61112006-05-30 00:37:20 -05002608 }
Mike Christie7996a772006-04-06 21:13:41 -05002609 }
Mike Christie656cffc2006-05-18 20:31:42 -05002610
Mike Christie656cffc2006-05-18 20:31:42 -05002611 /*
2612 * flush queues.
2613 */
2614 spin_lock_bh(&session->lock);
Mike Christie87cd9ea2008-09-24 11:46:14 -05002615 if (flag == STOP_CONN_RECOVER)
Mike Christie56d7fcf2008-08-19 18:45:26 -05002616 fail_all_commands(conn, -1, DID_TRANSPORT_DISRUPTED);
2617 else
2618 fail_all_commands(conn, -1, DID_ERROR);
Mike Christie656cffc2006-05-18 20:31:42 -05002619 flush_control_queues(session, conn);
2620 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002621 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002622}
Mike Christie7996a772006-04-06 21:13:41 -05002623
2624void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
2625{
2626 struct iscsi_conn *conn = cls_conn->dd_data;
2627 struct iscsi_session *session = conn->session;
2628
2629 switch (flag) {
2630 case STOP_CONN_RECOVER:
2631 case STOP_CONN_TERM:
2632 iscsi_start_session_recovery(session, conn, flag);
Mike Christie8d2860b2006-05-02 19:46:47 -05002633 break;
Mike Christie7996a772006-04-06 21:13:41 -05002634 default:
Mike Christie322d7392008-01-31 13:36:52 -06002635 iscsi_conn_printk(KERN_ERR, conn,
2636 "invalid stop flag %d\n", flag);
Mike Christie7996a772006-04-06 21:13:41 -05002637 }
2638}
2639EXPORT_SYMBOL_GPL(iscsi_conn_stop);
2640
2641int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
2642 struct iscsi_cls_conn *cls_conn, int is_leading)
2643{
Mike Christie75613522008-05-21 15:53:59 -05002644 struct iscsi_session *session = cls_session->dd_data;
Mike Christie98644042006-10-16 18:09:39 -04002645 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002646
Mike Christie7996a772006-04-06 21:13:41 -05002647 spin_lock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002648 if (is_leading)
2649 session->leadconn = conn;
Mike Christie98644042006-10-16 18:09:39 -04002650 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002651
2652 /*
2653 * Unblock xmitworker(), Login Phase will pass through.
2654 */
2655 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
2656 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
2657 return 0;
2658}
2659EXPORT_SYMBOL_GPL(iscsi_conn_bind);
2660
Mike Christie5700b1a2009-05-13 17:57:40 -05002661static int iscsi_switch_str_param(char **param, char *new_val_buf)
2662{
2663 char *new_val;
2664
2665 if (*param) {
2666 if (!strcmp(*param, new_val_buf))
2667 return 0;
2668 }
2669
2670 new_val = kstrdup(new_val_buf, GFP_NOIO);
2671 if (!new_val)
2672 return -ENOMEM;
2673
2674 kfree(*param);
2675 *param = new_val;
2676 return 0;
2677}
Mike Christiea54a52c2006-06-28 12:00:23 -05002678
2679int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
2680 enum iscsi_param param, char *buf, int buflen)
2681{
2682 struct iscsi_conn *conn = cls_conn->dd_data;
2683 struct iscsi_session *session = conn->session;
2684 uint32_t value;
2685
2686 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06002687 case ISCSI_PARAM_FAST_ABORT:
2688 sscanf(buf, "%d", &session->fast_abort);
2689 break;
Mike Christief6d51802007-12-13 12:43:30 -06002690 case ISCSI_PARAM_ABORT_TMO:
2691 sscanf(buf, "%d", &session->abort_timeout);
2692 break;
2693 case ISCSI_PARAM_LU_RESET_TMO:
2694 sscanf(buf, "%d", &session->lu_reset_timeout);
2695 break;
2696 case ISCSI_PARAM_PING_TMO:
2697 sscanf(buf, "%d", &conn->ping_timeout);
2698 break;
2699 case ISCSI_PARAM_RECV_TMO:
2700 sscanf(buf, "%d", &conn->recv_timeout);
2701 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002702 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2703 sscanf(buf, "%d", &conn->max_recv_dlength);
2704 break;
2705 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2706 sscanf(buf, "%d", &conn->max_xmit_dlength);
2707 break;
2708 case ISCSI_PARAM_HDRDGST_EN:
2709 sscanf(buf, "%d", &conn->hdrdgst_en);
2710 break;
2711 case ISCSI_PARAM_DATADGST_EN:
2712 sscanf(buf, "%d", &conn->datadgst_en);
2713 break;
2714 case ISCSI_PARAM_INITIAL_R2T_EN:
2715 sscanf(buf, "%d", &session->initial_r2t_en);
2716 break;
2717 case ISCSI_PARAM_MAX_R2T:
2718 sscanf(buf, "%d", &session->max_r2t);
2719 break;
2720 case ISCSI_PARAM_IMM_DATA_EN:
2721 sscanf(buf, "%d", &session->imm_data_en);
2722 break;
2723 case ISCSI_PARAM_FIRST_BURST:
2724 sscanf(buf, "%d", &session->first_burst);
2725 break;
2726 case ISCSI_PARAM_MAX_BURST:
2727 sscanf(buf, "%d", &session->max_burst);
2728 break;
2729 case ISCSI_PARAM_PDU_INORDER_EN:
2730 sscanf(buf, "%d", &session->pdu_inorder_en);
2731 break;
2732 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2733 sscanf(buf, "%d", &session->dataseq_inorder_en);
2734 break;
2735 case ISCSI_PARAM_ERL:
2736 sscanf(buf, "%d", &session->erl);
2737 break;
2738 case ISCSI_PARAM_IFMARKER_EN:
2739 sscanf(buf, "%d", &value);
2740 BUG_ON(value);
2741 break;
2742 case ISCSI_PARAM_OFMARKER_EN:
2743 sscanf(buf, "%d", &value);
2744 BUG_ON(value);
2745 break;
2746 case ISCSI_PARAM_EXP_STATSN:
2747 sscanf(buf, "%u", &conn->exp_statsn);
2748 break;
Mike Christieb2c64162007-05-30 12:57:16 -05002749 case ISCSI_PARAM_USERNAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002750 return iscsi_switch_str_param(&session->username, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002751 case ISCSI_PARAM_USERNAME_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05002752 return iscsi_switch_str_param(&session->username_in, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002753 case ISCSI_PARAM_PASSWORD:
Mike Christie5700b1a2009-05-13 17:57:40 -05002754 return iscsi_switch_str_param(&session->password, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002755 case ISCSI_PARAM_PASSWORD_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05002756 return iscsi_switch_str_param(&session->password_in, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05002757 case ISCSI_PARAM_TARGET_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002758 return iscsi_switch_str_param(&session->targetname, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05002759 case ISCSI_PARAM_TPGT:
2760 sscanf(buf, "%d", &session->tpgt);
2761 break;
2762 case ISCSI_PARAM_PERSISTENT_PORT:
2763 sscanf(buf, "%d", &conn->persistent_port);
2764 break;
2765 case ISCSI_PARAM_PERSISTENT_ADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05002766 return iscsi_switch_str_param(&conn->persistent_address, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05002767 case ISCSI_PARAM_IFACE_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002768 return iscsi_switch_str_param(&session->ifacename, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05002769 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002770 return iscsi_switch_str_param(&session->initiatorname, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05002771 default:
2772 return -ENOSYS;
2773 }
2774
2775 return 0;
2776}
2777EXPORT_SYMBOL_GPL(iscsi_set_param);
2778
2779int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
2780 enum iscsi_param param, char *buf)
2781{
Mike Christie75613522008-05-21 15:53:59 -05002782 struct iscsi_session *session = cls_session->dd_data;
Mike Christiea54a52c2006-06-28 12:00:23 -05002783 int len;
2784
2785 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06002786 case ISCSI_PARAM_FAST_ABORT:
2787 len = sprintf(buf, "%d\n", session->fast_abort);
2788 break;
Mike Christief6d51802007-12-13 12:43:30 -06002789 case ISCSI_PARAM_ABORT_TMO:
2790 len = sprintf(buf, "%d\n", session->abort_timeout);
2791 break;
2792 case ISCSI_PARAM_LU_RESET_TMO:
2793 len = sprintf(buf, "%d\n", session->lu_reset_timeout);
2794 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002795 case ISCSI_PARAM_INITIAL_R2T_EN:
2796 len = sprintf(buf, "%d\n", session->initial_r2t_en);
2797 break;
2798 case ISCSI_PARAM_MAX_R2T:
2799 len = sprintf(buf, "%hu\n", session->max_r2t);
2800 break;
2801 case ISCSI_PARAM_IMM_DATA_EN:
2802 len = sprintf(buf, "%d\n", session->imm_data_en);
2803 break;
2804 case ISCSI_PARAM_FIRST_BURST:
2805 len = sprintf(buf, "%u\n", session->first_burst);
2806 break;
2807 case ISCSI_PARAM_MAX_BURST:
2808 len = sprintf(buf, "%u\n", session->max_burst);
2809 break;
2810 case ISCSI_PARAM_PDU_INORDER_EN:
2811 len = sprintf(buf, "%d\n", session->pdu_inorder_en);
2812 break;
2813 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2814 len = sprintf(buf, "%d\n", session->dataseq_inorder_en);
2815 break;
2816 case ISCSI_PARAM_ERL:
2817 len = sprintf(buf, "%d\n", session->erl);
2818 break;
2819 case ISCSI_PARAM_TARGET_NAME:
2820 len = sprintf(buf, "%s\n", session->targetname);
2821 break;
2822 case ISCSI_PARAM_TPGT:
2823 len = sprintf(buf, "%d\n", session->tpgt);
2824 break;
Mike Christieb2c64162007-05-30 12:57:16 -05002825 case ISCSI_PARAM_USERNAME:
2826 len = sprintf(buf, "%s\n", session->username);
2827 break;
2828 case ISCSI_PARAM_USERNAME_IN:
2829 len = sprintf(buf, "%s\n", session->username_in);
2830 break;
2831 case ISCSI_PARAM_PASSWORD:
2832 len = sprintf(buf, "%s\n", session->password);
2833 break;
2834 case ISCSI_PARAM_PASSWORD_IN:
2835 len = sprintf(buf, "%s\n", session->password_in);
2836 break;
Mike Christie88dfd342008-05-21 15:54:16 -05002837 case ISCSI_PARAM_IFACE_NAME:
2838 len = sprintf(buf, "%s\n", session->ifacename);
2839 break;
2840 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002841 len = sprintf(buf, "%s\n", session->initiatorname);
Mike Christie88dfd342008-05-21 15:54:16 -05002842 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002843 default:
2844 return -ENOSYS;
2845 }
2846
2847 return len;
2848}
2849EXPORT_SYMBOL_GPL(iscsi_session_get_param);
2850
2851int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
2852 enum iscsi_param param, char *buf)
2853{
2854 struct iscsi_conn *conn = cls_conn->dd_data;
2855 int len;
2856
2857 switch(param) {
Mike Christief6d51802007-12-13 12:43:30 -06002858 case ISCSI_PARAM_PING_TMO:
2859 len = sprintf(buf, "%u\n", conn->ping_timeout);
2860 break;
2861 case ISCSI_PARAM_RECV_TMO:
2862 len = sprintf(buf, "%u\n", conn->recv_timeout);
2863 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002864 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2865 len = sprintf(buf, "%u\n", conn->max_recv_dlength);
2866 break;
2867 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2868 len = sprintf(buf, "%u\n", conn->max_xmit_dlength);
2869 break;
2870 case ISCSI_PARAM_HDRDGST_EN:
2871 len = sprintf(buf, "%d\n", conn->hdrdgst_en);
2872 break;
2873 case ISCSI_PARAM_DATADGST_EN:
2874 len = sprintf(buf, "%d\n", conn->datadgst_en);
2875 break;
2876 case ISCSI_PARAM_IFMARKER_EN:
2877 len = sprintf(buf, "%d\n", conn->ifmarker_en);
2878 break;
2879 case ISCSI_PARAM_OFMARKER_EN:
2880 len = sprintf(buf, "%d\n", conn->ofmarker_en);
2881 break;
2882 case ISCSI_PARAM_EXP_STATSN:
2883 len = sprintf(buf, "%u\n", conn->exp_statsn);
2884 break;
2885 case ISCSI_PARAM_PERSISTENT_PORT:
2886 len = sprintf(buf, "%d\n", conn->persistent_port);
2887 break;
2888 case ISCSI_PARAM_PERSISTENT_ADDRESS:
2889 len = sprintf(buf, "%s\n", conn->persistent_address);
2890 break;
2891 default:
2892 return -ENOSYS;
2893 }
2894
2895 return len;
2896}
2897EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
2898
Mike Christie0801c242007-05-30 12:57:12 -05002899int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2900 char *buf)
2901{
Mike Christie75613522008-05-21 15:53:59 -05002902 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05002903 int len;
2904
2905 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05002906 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002907 len = sprintf(buf, "%s\n", ihost->netdev);
Mike Christied8196ed2007-05-30 12:57:25 -05002908 break;
Mike Christie0801c242007-05-30 12:57:12 -05002909 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05002910 len = sprintf(buf, "%s\n", ihost->hwaddress);
Mike Christie0801c242007-05-30 12:57:12 -05002911 break;
Mike Christie8ad57812007-05-30 12:57:13 -05002912 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002913 len = sprintf(buf, "%s\n", ihost->initiatorname);
Mike Christie8ad57812007-05-30 12:57:13 -05002914 break;
Mike Christie75613522008-05-21 15:53:59 -05002915 case ISCSI_HOST_PARAM_IPADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05002916 len = sprintf(buf, "%s\n", ihost->local_address);
Mike Christie88dfd342008-05-21 15:54:16 -05002917 break;
Mike Christie0801c242007-05-30 12:57:12 -05002918 default:
2919 return -ENOSYS;
2920 }
2921
2922 return len;
2923}
2924EXPORT_SYMBOL_GPL(iscsi_host_get_param);
2925
2926int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
2927 char *buf, int buflen)
2928{
Mike Christie75613522008-05-21 15:53:59 -05002929 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05002930
2931 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05002932 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002933 return iscsi_switch_str_param(&ihost->netdev, buf);
Mike Christie0801c242007-05-30 12:57:12 -05002934 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05002935 return iscsi_switch_str_param(&ihost->hwaddress, buf);
Mike Christie8ad57812007-05-30 12:57:13 -05002936 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002937 return iscsi_switch_str_param(&ihost->initiatorname, buf);
Mike Christie0801c242007-05-30 12:57:12 -05002938 default:
2939 return -ENOSYS;
2940 }
2941
2942 return 0;
2943}
2944EXPORT_SYMBOL_GPL(iscsi_host_set_param);
2945
Mike Christie7996a772006-04-06 21:13:41 -05002946MODULE_AUTHOR("Mike Christie");
2947MODULE_DESCRIPTION("iSCSI library functions");
2948MODULE_LICENSE("GPL");