blob: f1a4246f890c044a9cb548366cd7a79865a42f4a [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
Erez Zilberbd2199d2009-06-15 22:11:10 -050041static int iscsi_dbg_lib_conn;
42module_param_named(debug_libiscsi_conn, iscsi_dbg_lib_conn, int,
43 S_IRUGO | S_IWUSR);
44MODULE_PARM_DESC(debug_libiscsi_conn,
45 "Turn on debugging for connections in libiscsi module. "
46 "Set to 1 to turn on, and zero to turn off. Default is off.");
47
48static int iscsi_dbg_lib_session;
49module_param_named(debug_libiscsi_session, iscsi_dbg_lib_session, int,
50 S_IRUGO | S_IWUSR);
51MODULE_PARM_DESC(debug_libiscsi_session,
52 "Turn on debugging for sessions in libiscsi module. "
53 "Set to 1 to turn on, and zero to turn off. Default is off.");
54
55static int iscsi_dbg_lib_eh;
56module_param_named(debug_libiscsi_eh, iscsi_dbg_lib_eh, int,
57 S_IRUGO | S_IWUSR);
58MODULE_PARM_DESC(debug_libiscsi_eh,
59 "Turn on debugging for error handling in libiscsi module. "
60 "Set to 1 to turn on, and zero to turn off. Default is off.");
Mike Christie1b2c7af2009-03-05 14:45:58 -060061
62#define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \
63 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050064 if (iscsi_dbg_lib_conn) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060065 iscsi_conn_printk(KERN_INFO, _conn, \
66 "%s " dbg_fmt, \
67 __func__, ##arg); \
68 } while (0);
69
70#define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \
71 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050072 if (iscsi_dbg_lib_session) \
73 iscsi_session_printk(KERN_INFO, _session, \
74 "%s " dbg_fmt, \
75 __func__, ##arg); \
76 } while (0);
77
78#define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \
79 do { \
80 if (iscsi_dbg_lib_eh) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060081 iscsi_session_printk(KERN_INFO, _session, \
82 "%s " dbg_fmt, \
83 __func__, ##arg); \
84 } while (0);
85
Mike Christie77a23c22007-05-30 12:57:18 -050086/* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
87#define SNA32_CHECK 2147483648UL
Mike Christie7996a772006-04-06 21:13:41 -050088
Mike Christie77a23c22007-05-30 12:57:18 -050089static int iscsi_sna_lt(u32 n1, u32 n2)
90{
91 return n1 != n2 && ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) ||
92 (n1 > n2 && (n2 - n1 < SNA32_CHECK)));
93}
94
95/* Serial Number Arithmetic, 32 bits, less than, RFC1982 */
96static int iscsi_sna_lte(u32 n1, u32 n2)
97{
98 return n1 == n2 || ((n1 < n2 && (n2 - n1 < SNA32_CHECK)) ||
99 (n1 > n2 && (n2 - n1 < SNA32_CHECK)));
100}
101
Mike Christie32ae7632009-03-05 14:46:03 -0600102inline void iscsi_conn_queue_work(struct iscsi_conn *conn)
103{
104 struct Scsi_Host *shost = conn->session->host;
105 struct iscsi_host *ihost = shost_priv(shost);
106
Mike Christie1336aed2009-05-13 17:57:48 -0500107 if (ihost->workq)
108 queue_work(ihost->workq, &conn->xmitwork);
Mike Christie32ae7632009-03-05 14:46:03 -0600109}
110EXPORT_SYMBOL_GPL(iscsi_conn_queue_work);
111
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530112static void __iscsi_update_cmdsn(struct iscsi_session *session,
113 uint32_t exp_cmdsn, uint32_t max_cmdsn)
Mike Christie7996a772006-04-06 21:13:41 -0500114{
Mike Christie77a23c22007-05-30 12:57:18 -0500115 /*
116 * standard specifies this check for when to update expected and
117 * max sequence numbers
118 */
119 if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
120 return;
121
122 if (exp_cmdsn != session->exp_cmdsn &&
123 !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
Mike Christie7996a772006-04-06 21:13:41 -0500124 session->exp_cmdsn = exp_cmdsn;
125
Mike Christie77a23c22007-05-30 12:57:18 -0500126 if (max_cmdsn != session->max_cmdsn &&
127 !iscsi_sna_lt(max_cmdsn, session->max_cmdsn)) {
128 session->max_cmdsn = max_cmdsn;
129 /*
130 * if the window closed with IO queued, then kick the
131 * xmit thread
132 */
Mike Christie3bbaaad2009-05-13 17:57:46 -0500133 if (!list_empty(&session->leadconn->cmdqueue) ||
Mike Christie1336aed2009-05-13 17:57:48 -0500134 !list_empty(&session->leadconn->mgmtqueue))
135 iscsi_conn_queue_work(session->leadconn);
Mike Christie77a23c22007-05-30 12:57:18 -0500136 }
Mike Christie7996a772006-04-06 21:13:41 -0500137}
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530138
139void iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
140{
141 __iscsi_update_cmdsn(session, be32_to_cpu(hdr->exp_cmdsn),
142 be32_to_cpu(hdr->max_cmdsn));
143}
Mike Christie77a23c22007-05-30 12:57:18 -0500144EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
Mike Christie7996a772006-04-06 21:13:41 -0500145
Mike Christie577577d2008-12-02 00:32:05 -0600146/**
147 * iscsi_prep_data_out_pdu - initialize Data-Out
148 * @task: scsi command task
149 * @r2t: R2T info
150 * @hdr: iscsi data in pdu
151 *
152 * Notes:
153 * Initialize Data-Out within this R2T sequence and finds
154 * proper data_offset within this SCSI command.
155 *
156 * This function is called with connection lock taken.
157 **/
158void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t,
159 struct iscsi_data *hdr)
Mike Christie7996a772006-04-06 21:13:41 -0500160{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500161 struct iscsi_conn *conn = task->conn;
Mike Christie577577d2008-12-02 00:32:05 -0600162 unsigned int left = r2t->data_length - r2t->sent;
163
164 task->hdr_len = sizeof(struct iscsi_data);
Mike Christie7996a772006-04-06 21:13:41 -0500165
166 memset(hdr, 0, sizeof(struct iscsi_data));
Mike Christie577577d2008-12-02 00:32:05 -0600167 hdr->ttt = r2t->ttt;
168 hdr->datasn = cpu_to_be32(r2t->datasn);
169 r2t->datasn++;
Mike Christie7996a772006-04-06 21:13:41 -0500170 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Mike Christie577577d2008-12-02 00:32:05 -0600171 memcpy(hdr->lun, task->lun, sizeof(hdr->lun));
172 hdr->itt = task->hdr_itt;
173 hdr->exp_statsn = r2t->exp_statsn;
174 hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent);
175 if (left > conn->max_xmit_dlength) {
Mike Christie7996a772006-04-06 21:13:41 -0500176 hton24(hdr->dlength, conn->max_xmit_dlength);
Mike Christie577577d2008-12-02 00:32:05 -0600177 r2t->data_count = conn->max_xmit_dlength;
Mike Christie7996a772006-04-06 21:13:41 -0500178 hdr->flags = 0;
179 } else {
Mike Christie577577d2008-12-02 00:32:05 -0600180 hton24(hdr->dlength, left);
181 r2t->data_count = left;
Mike Christie7996a772006-04-06 21:13:41 -0500182 hdr->flags = ISCSI_FLAG_CMD_FINAL;
183 }
Mike Christie577577d2008-12-02 00:32:05 -0600184 conn->dataout_pdus_cnt++;
Mike Christie7996a772006-04-06 21:13:41 -0500185}
Mike Christie577577d2008-12-02 00:32:05 -0600186EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu);
Mike Christie7996a772006-04-06 21:13:41 -0500187
Mike Christie9c19a7d2008-05-21 15:54:09 -0500188static int iscsi_add_hdr(struct iscsi_task *task, unsigned len)
Boaz Harrosh004d6532007-12-13 12:43:23 -0600189{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500190 unsigned exp_len = task->hdr_len + len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600191
Mike Christie9c19a7d2008-05-21 15:54:09 -0500192 if (exp_len > task->hdr_max) {
Boaz Harrosh004d6532007-12-13 12:43:23 -0600193 WARN_ON(1);
194 return -EINVAL;
195 }
196
197 WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500198 task->hdr_len = exp_len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600199 return 0;
200}
201
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500202/*
203 * make an extended cdb AHS
204 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500205static int iscsi_prep_ecdb_ahs(struct iscsi_task *task)
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500206{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500207 struct scsi_cmnd *cmd = task->sc;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500208 unsigned rlen, pad_len;
209 unsigned short ahslength;
210 struct iscsi_ecdb_ahdr *ecdb_ahdr;
211 int rc;
212
Mike Christie9c19a7d2008-05-21 15:54:09 -0500213 ecdb_ahdr = iscsi_next_hdr(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500214 rlen = cmd->cmd_len - ISCSI_CDB_SIZE;
215
216 BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb));
217 ahslength = rlen + sizeof(ecdb_ahdr->reserved);
218
219 pad_len = iscsi_padding(rlen);
220
Mike Christie9c19a7d2008-05-21 15:54:09 -0500221 rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) +
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500222 sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len);
223 if (rc)
224 return rc;
225
226 if (pad_len)
227 memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len);
228
229 ecdb_ahdr->ahslength = cpu_to_be16(ahslength);
230 ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB;
231 ecdb_ahdr->reserved = 0;
232 memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen);
233
Mike Christie1b2c7af2009-03-05 14:45:58 -0600234 ISCSI_DBG_SESSION(task->conn->session,
235 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
236 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
237 "%u\n", cmd->cmd_len, rlen, pad_len, ahslength,
238 task->hdr_len);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500239 return 0;
240}
241
Mike Christie9c19a7d2008-05-21 15:54:09 -0500242static int iscsi_prep_bidi_ahs(struct iscsi_task *task)
Boaz Harroshc07d4442008-04-18 10:11:52 -0500243{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500244 struct scsi_cmnd *sc = task->sc;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500245 struct iscsi_rlength_ahdr *rlen_ahdr;
246 int rc;
247
Mike Christie9c19a7d2008-05-21 15:54:09 -0500248 rlen_ahdr = iscsi_next_hdr(task);
249 rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500250 if (rc)
251 return rc;
252
253 rlen_ahdr->ahslength =
254 cpu_to_be16(sizeof(rlen_ahdr->read_length) +
255 sizeof(rlen_ahdr->reserved));
256 rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH;
257 rlen_ahdr->reserved = 0;
258 rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length);
259
Mike Christie1b2c7af2009-03-05 14:45:58 -0600260 ISCSI_DBG_SESSION(task->conn->session,
261 "bidi-in rlen_ahdr->read_length(%d) "
262 "rlen_ahdr->ahslength(%d)\n",
263 be32_to_cpu(rlen_ahdr->read_length),
264 be16_to_cpu(rlen_ahdr->ahslength));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500265 return 0;
266}
267
Mike Christie7996a772006-04-06 21:13:41 -0500268/**
269 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
Mike Christie9c19a7d2008-05-21 15:54:09 -0500270 * @task: iscsi task
Mike Christie7996a772006-04-06 21:13:41 -0500271 *
272 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
273 * fields like dlength or final based on how much data it sends
274 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500275static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500276{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500277 struct iscsi_conn *conn = task->conn;
Mike Christie7996a772006-04-06 21:13:41 -0500278 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500279 struct scsi_cmnd *sc = task->sc;
Mike Christie577577d2008-12-02 00:32:05 -0600280 struct iscsi_cmd *hdr;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500281 unsigned hdrlength, cmd_len;
Mike Christie262ef632008-12-02 00:32:13 -0600282 itt_t itt;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600283 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500284
Mike Christie184b57c2009-05-13 17:57:39 -0500285 if (conn->session->tt->alloc_pdu) {
286 rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
287 if (rc)
288 return rc;
289 }
Mike Christie577577d2008-12-02 00:32:05 -0600290 hdr = (struct iscsi_cmd *) task->hdr;
Mike Christie262ef632008-12-02 00:32:13 -0600291 itt = hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600292 memset(hdr, 0, sizeof(*hdr));
293
Mike Christie2ff79d52008-12-02 00:32:14 -0600294 if (session->tt->parse_pdu_itt)
295 hdr->itt = task->hdr_itt = itt;
296 else
297 hdr->itt = task->hdr_itt = build_itt(task->itt,
298 task->conn->session->age);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500299 task->hdr_len = 0;
300 rc = iscsi_add_hdr(task, sizeof(*hdr));
Boaz Harrosh004d6532007-12-13 12:43:23 -0600301 if (rc)
302 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600303 hdr->opcode = ISCSI_OP_SCSI_CMD;
304 hdr->flags = ISCSI_ATTR_SIMPLE;
305 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
Mike Christie577577d2008-12-02 00:32:05 -0600306 memcpy(task->lun, hdr->lun, sizeof(task->lun));
Olaf Kircha8ac6312007-12-13 12:43:35 -0600307 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500308 cmd_len = sc->cmd_len;
309 if (cmd_len < ISCSI_CDB_SIZE)
310 memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len);
311 else if (cmd_len > ISCSI_CDB_SIZE) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500312 rc = iscsi_prep_ecdb_ahs(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500313 if (rc)
314 return rc;
315 cmd_len = ISCSI_CDB_SIZE;
316 }
317 memcpy(hdr->cdb, sc->cmnd, cmd_len);
Mike Christie7996a772006-04-06 21:13:41 -0500318
Mike Christie9c19a7d2008-05-21 15:54:09 -0500319 task->imm_count = 0;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500320 if (scsi_bidi_cmnd(sc)) {
321 hdr->flags |= ISCSI_FLAG_CMD_READ;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500322 rc = iscsi_prep_bidi_ahs(task);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500323 if (rc)
324 return rc;
325 }
Mike Christie7996a772006-04-06 21:13:41 -0500326 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Boaz Harroshc07d4442008-04-18 10:11:52 -0500327 unsigned out_len = scsi_out(sc)->length;
Mike Christie577577d2008-12-02 00:32:05 -0600328 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
329
Boaz Harroshc07d4442008-04-18 10:11:52 -0500330 hdr->data_length = cpu_to_be32(out_len);
Mike Christie7996a772006-04-06 21:13:41 -0500331 hdr->flags |= ISCSI_FLAG_CMD_WRITE;
332 /*
333 * Write counters:
334 *
335 * imm_count bytes to be sent right after
336 * SCSI PDU Header
337 *
338 * unsol_count bytes(as Data-Out) to be sent
339 * without R2T ack right after
340 * immediate data
341 *
Mike Christie577577d2008-12-02 00:32:05 -0600342 * r2t data_length bytes to be sent via R2T ack's
Mike Christie7996a772006-04-06 21:13:41 -0500343 *
344 * pad_count bytes to be sent as zero-padding
345 */
Mike Christie577577d2008-12-02 00:32:05 -0600346 memset(r2t, 0, sizeof(*r2t));
Mike Christie7996a772006-04-06 21:13:41 -0500347
348 if (session->imm_data_en) {
Boaz Harroshc07d4442008-04-18 10:11:52 -0500349 if (out_len >= session->first_burst)
Mike Christie9c19a7d2008-05-21 15:54:09 -0500350 task->imm_count = min(session->first_burst,
Mike Christie7996a772006-04-06 21:13:41 -0500351 conn->max_xmit_dlength);
352 else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500353 task->imm_count = min(out_len,
Mike Christie7996a772006-04-06 21:13:41 -0500354 conn->max_xmit_dlength);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500355 hton24(hdr->dlength, task->imm_count);
Mike Christie7996a772006-04-06 21:13:41 -0500356 } else
Olaf Kircha8ac6312007-12-13 12:43:35 -0600357 zero_data(hdr->dlength);
Mike Christie7996a772006-04-06 21:13:41 -0500358
Mike Christieffd04362006-08-31 18:09:24 -0400359 if (!session->initial_r2t_en) {
Mike Christie577577d2008-12-02 00:32:05 -0600360 r2t->data_length = min(session->first_burst, out_len) -
361 task->imm_count;
362 r2t->data_offset = task->imm_count;
363 r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
364 r2t->exp_statsn = cpu_to_be32(conn->exp_statsn);
Mike Christieffd04362006-08-31 18:09:24 -0400365 }
366
Mike Christie577577d2008-12-02 00:32:05 -0600367 if (!task->unsol_r2t.data_length)
Mike Christie7996a772006-04-06 21:13:41 -0500368 /* No unsolicit Data-Out's */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600369 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie7996a772006-04-06 21:13:41 -0500370 } else {
Mike Christie7996a772006-04-06 21:13:41 -0500371 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
372 zero_data(hdr->dlength);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500373 hdr->data_length = cpu_to_be32(scsi_in(sc)->length);
Mike Christie7996a772006-04-06 21:13:41 -0500374
375 if (sc->sc_data_direction == DMA_FROM_DEVICE)
376 hdr->flags |= ISCSI_FLAG_CMD_READ;
377 }
378
Boaz Harrosh004d6532007-12-13 12:43:23 -0600379 /* calculate size of additional header segments (AHSs) */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500380 hdrlength = task->hdr_len - sizeof(*hdr);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600381
382 WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
383 hdrlength /= ISCSI_PAD_LEN;
384
385 WARN_ON(hdrlength >= 256);
386 hdr->hlength = hdrlength & 0xFF;
387
Mike Christie577577d2008-12-02 00:32:05 -0600388 if (session->tt->init_task && session->tt->init_task(task))
Mike Christie052d0142008-05-21 15:54:05 -0500389 return -EIO;
390
Mike Christie9c19a7d2008-05-21 15:54:09 -0500391 task->state = ISCSI_TASK_RUNNING;
Mike Christied3305f32009-08-20 15:10:58 -0500392 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
393 session->cmdsn++;
Mike Christie77a23c22007-05-30 12:57:18 -0500394
Olaf Kircha8ac6312007-12-13 12:43:35 -0600395 conn->scsicmd_pdus_cnt++;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600396 ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x "
397 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
398 scsi_bidi_cmnd(sc) ? "bidirectional" :
399 sc->sc_data_direction == DMA_TO_DEVICE ?
400 "write" : "read", conn->id, sc, sc->cmnd[0],
401 task->itt, scsi_bufflen(sc),
402 scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
403 session->cmdsn,
404 session->max_cmdsn - session->exp_cmdsn + 1);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600405 return 0;
Mike Christie7996a772006-04-06 21:13:41 -0500406}
Mike Christie7996a772006-04-06 21:13:41 -0500407
408/**
Mike Christie3bbaaad2009-05-13 17:57:46 -0500409 * iscsi_free_task - free a task
Mike Christie9c19a7d2008-05-21 15:54:09 -0500410 * @task: iscsi cmd task
Mike Christie7996a772006-04-06 21:13:41 -0500411 *
412 * Must be called with session lock.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500413 * This function returns the scsi command to scsi-ml or cleans
414 * up mgmt tasks then returns the task to the pool.
Mike Christie7996a772006-04-06 21:13:41 -0500415 */
Mike Christie3bbaaad2009-05-13 17:57:46 -0500416static void iscsi_free_task(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500417{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500418 struct iscsi_conn *conn = task->conn;
Mike Christiec1635cb2007-12-13 12:43:33 -0600419 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500420 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500421
Mike Christie4421c9e2009-05-13 17:57:50 -0500422 ISCSI_DBG_SESSION(session, "freeing task itt 0x%x state %d sc %p\n",
423 task->itt, task->state, task->sc);
424
Mike Christie577577d2008-12-02 00:32:05 -0600425 session->tt->cleanup_task(task);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500426 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500427 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500428 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -0500429 * login task is preallocated so do not free
Mike Christie3e5c28a2008-05-21 15:54:06 -0500430 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500431 if (conn->login_task == task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500432 return;
433
Mike Christie9c19a7d2008-05-21 15:54:09 -0500434 __kfifo_put(session->cmdpool.queue, (void*)&task, sizeof(void*));
Mike Christie052d0142008-05-21 15:54:05 -0500435
Mike Christie3e5c28a2008-05-21 15:54:06 -0500436 if (sc) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500437 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500438 /* SCSI eh reuses commands to verify us */
439 sc->SCp.ptr = NULL;
440 /*
441 * queue command may call this to free the task, but
442 * not have setup the sc callback
443 */
444 if (sc->scsi_done)
445 sc->scsi_done(sc);
446 }
Mike Christie7996a772006-04-06 21:13:41 -0500447}
448
Mike Christie913e5bf2008-05-21 15:54:18 -0500449void __iscsi_get_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400450{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500451 atomic_inc(&task->refcount);
Mike Christie60ecebf2006-08-31 18:09:25 -0400452}
Mike Christie913e5bf2008-05-21 15:54:18 -0500453EXPORT_SYMBOL_GPL(__iscsi_get_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400454
Mike Christie9c19a7d2008-05-21 15:54:09 -0500455static void __iscsi_put_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400456{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500457 if (atomic_dec_and_test(&task->refcount))
Mike Christie3bbaaad2009-05-13 17:57:46 -0500458 iscsi_free_task(task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400459}
460
Mike Christie9c19a7d2008-05-21 15:54:09 -0500461void iscsi_put_task(struct iscsi_task *task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500462{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500463 struct iscsi_session *session = task->conn->session;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500464
465 spin_lock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500466 __iscsi_put_task(task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500467 spin_unlock_bh(&session->lock);
468}
Mike Christie9c19a7d2008-05-21 15:54:09 -0500469EXPORT_SYMBOL_GPL(iscsi_put_task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500470
Mike Christie3bbaaad2009-05-13 17:57:46 -0500471/**
472 * iscsi_complete_task - finish a task
473 * @task: iscsi cmd task
Mike Christieb3cd5052009-05-13 17:57:49 -0500474 * @state: state to complete task with
Mike Christie3bbaaad2009-05-13 17:57:46 -0500475 *
476 * Must be called with session lock.
Mike Christieb3a7ea82007-12-13 12:43:26 -0600477 */
Mike Christieb3cd5052009-05-13 17:57:49 -0500478static void iscsi_complete_task(struct iscsi_task *task, int state)
Mike Christieb3a7ea82007-12-13 12:43:26 -0600479{
Mike Christie3bbaaad2009-05-13 17:57:46 -0500480 struct iscsi_conn *conn = task->conn;
481
Mike Christie4421c9e2009-05-13 17:57:50 -0500482 ISCSI_DBG_SESSION(conn->session,
483 "complete task itt 0x%x state %d sc %p\n",
484 task->itt, task->state, task->sc);
Mike Christieb3cd5052009-05-13 17:57:49 -0500485 if (task->state == ISCSI_TASK_COMPLETED ||
486 task->state == ISCSI_TASK_ABRT_TMF ||
487 task->state == ISCSI_TASK_ABRT_SESS_RECOV)
Mike Christie3bbaaad2009-05-13 17:57:46 -0500488 return;
489 WARN_ON_ONCE(task->state == ISCSI_TASK_FREE);
Mike Christieb3cd5052009-05-13 17:57:49 -0500490 task->state = state;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500491
492 if (!list_empty(&task->running))
493 list_del_init(&task->running);
494
495 if (conn->task == task)
496 conn->task = NULL;
497
498 if (conn->ping_task == task)
499 conn->ping_task = NULL;
500
501 /* release get from queueing */
502 __iscsi_put_task(task);
503}
504
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530505/**
506 * iscsi_complete_scsi_task - finish scsi task normally
507 * @task: iscsi task for scsi cmd
508 * @exp_cmdsn: expected cmd sn in cpu format
509 * @max_cmdsn: max cmd sn in cpu format
510 *
511 * This is used when drivers do not need or cannot perform
512 * lower level pdu processing.
513 *
514 * Called with session lock
515 */
516void iscsi_complete_scsi_task(struct iscsi_task *task,
517 uint32_t exp_cmdsn, uint32_t max_cmdsn)
518{
519 struct iscsi_conn *conn = task->conn;
520
521 ISCSI_DBG_SESSION(conn->session, "[itt 0x%x]\n", task->itt);
522
523 conn->last_recv = jiffies;
524 __iscsi_update_cmdsn(conn->session, exp_cmdsn, max_cmdsn);
525 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
526}
527EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task);
528
529
Mike Christie3bbaaad2009-05-13 17:57:46 -0500530/*
531 * session lock must be held and if not called for a task that is
532 * still pending or from the xmit thread, then xmit thread must
533 * be suspended.
534 */
535static void fail_scsi_task(struct iscsi_task *task, int err)
536{
537 struct iscsi_conn *conn = task->conn;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600538 struct scsi_cmnd *sc;
Mike Christieb3cd5052009-05-13 17:57:49 -0500539 int state;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600540
Mike Christie3bbaaad2009-05-13 17:57:46 -0500541 /*
542 * if a command completes and we get a successful tmf response
543 * we will hit this because the scsi eh abort code does not take
544 * a ref to the task.
545 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500546 sc = task->sc;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600547 if (!sc)
548 return;
549
Mike Christieb3cd5052009-05-13 17:57:49 -0500550 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3a7ea82007-12-13 12:43:26 -0600551 /*
552 * cmd never made it to the xmit thread, so we should not count
553 * the cmd in the sequencing
554 */
555 conn->session->queued_cmdsn--;
Mike Christieb3cd5052009-05-13 17:57:49 -0500556 /* it was never sent so just complete like normal */
557 state = ISCSI_TASK_COMPLETED;
558 } else if (err == DID_TRANSPORT_DISRUPTED)
559 state = ISCSI_TASK_ABRT_SESS_RECOV;
560 else
561 state = ISCSI_TASK_ABRT_TMF;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600562
Mike Christieb3cd5052009-05-13 17:57:49 -0500563 sc->result = err << 16;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500564 if (!scsi_bidi_cmnd(sc))
565 scsi_set_resid(sc, scsi_bufflen(sc));
566 else {
567 scsi_out(sc)->resid = scsi_out(sc)->length;
568 scsi_in(sc)->resid = scsi_in(sc)->length;
569 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500570
Mike Christieb3cd5052009-05-13 17:57:49 -0500571 iscsi_complete_task(task, state);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600572}
573
Mike Christie3e5c28a2008-05-21 15:54:06 -0500574static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500575 struct iscsi_task *task)
Mike Christie052d0142008-05-21 15:54:05 -0500576{
577 struct iscsi_session *session = conn->session;
Mike Christie577577d2008-12-02 00:32:05 -0600578 struct iscsi_hdr *hdr = task->hdr;
Mike Christie052d0142008-05-21 15:54:05 -0500579 struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
580
581 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
582 return -ENOTCONN;
583
584 if (hdr->opcode != (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) &&
585 hdr->opcode != (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
586 nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
587 /*
588 * pre-format CmdSN for outgoing PDU.
589 */
590 nop->cmdsn = cpu_to_be32(session->cmdsn);
591 if (hdr->itt != RESERVED_ITT) {
Mike Christie052d0142008-05-21 15:54:05 -0500592 /*
593 * TODO: We always use immediate, so we never hit this.
594 * If we start to send tmfs or nops as non-immediate then
595 * we should start checking the cmdsn numbers for mgmt tasks.
596 */
597 if (conn->c_stage == ISCSI_CONN_STARTED &&
598 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
599 session->queued_cmdsn++;
600 session->cmdsn++;
601 }
602 }
603
Mike Christieae15f802008-12-02 00:32:15 -0600604 if (session->tt->init_task && session->tt->init_task(task))
605 return -EIO;
Mike Christie052d0142008-05-21 15:54:05 -0500606
607 if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
608 session->state = ISCSI_STATE_LOGGING_OUT;
609
Mike Christie577577d2008-12-02 00:32:05 -0600610 task->state = ISCSI_TASK_RUNNING;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600611 ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x "
612 "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK,
613 hdr->itt, task->data_count);
Mike Christie052d0142008-05-21 15:54:05 -0500614 return 0;
615}
616
Mike Christie9c19a7d2008-05-21 15:54:09 -0500617static struct iscsi_task *
Mike Christief6d51802007-12-13 12:43:30 -0600618__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
619 char *data, uint32_t data_size)
620{
621 struct iscsi_session *session = conn->session;
Mike Christie1336aed2009-05-13 17:57:48 -0500622 struct iscsi_host *ihost = shost_priv(session->host);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500623 struct iscsi_task *task;
Mike Christie262ef632008-12-02 00:32:13 -0600624 itt_t itt;
Mike Christief6d51802007-12-13 12:43:30 -0600625
626 if (session->state == ISCSI_STATE_TERMINATE)
627 return NULL;
628
629 if (hdr->opcode == (ISCSI_OP_LOGIN | ISCSI_OP_IMMEDIATE) ||
630 hdr->opcode == (ISCSI_OP_TEXT | ISCSI_OP_IMMEDIATE))
631 /*
632 * Login and Text are sent serially, in
633 * request-followed-by-response sequence.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500634 * Same task can be used. Same ITT must be used.
635 * Note that login_task is preallocated at conn_create().
Mike Christief6d51802007-12-13 12:43:30 -0600636 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500637 task = conn->login_task;
Mike Christief6d51802007-12-13 12:43:30 -0600638 else {
Mike Christie26013ad2009-05-13 17:57:43 -0500639 if (session->state != ISCSI_STATE_LOGGED_IN)
640 return NULL;
641
Mike Christief6d51802007-12-13 12:43:30 -0600642 BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
643 BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
644
Mike Christie3e5c28a2008-05-21 15:54:06 -0500645 if (!__kfifo_get(session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500646 (void*)&task, sizeof(void*)))
Mike Christief6d51802007-12-13 12:43:30 -0600647 return NULL;
648 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500649 /*
650 * released in complete pdu for task we expect a response for, and
651 * released by the lld when it has transmitted the task for
652 * pdus we do not expect a response for.
653 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500654 atomic_set(&task->refcount, 1);
655 task->conn = conn;
656 task->sc = NULL;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500657 INIT_LIST_HEAD(&task->running);
658 task->state = ISCSI_TASK_PENDING;
Mike Christief6d51802007-12-13 12:43:30 -0600659
660 if (data_size) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500661 memcpy(task->data, data, data_size);
662 task->data_count = data_size;
Mike Christief6d51802007-12-13 12:43:30 -0600663 } else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500664 task->data_count = 0;
Mike Christief6d51802007-12-13 12:43:30 -0600665
Mike Christie184b57c2009-05-13 17:57:39 -0500666 if (conn->session->tt->alloc_pdu) {
667 if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
668 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
669 "pdu for mgmt task.\n");
Mike Christie3bbaaad2009-05-13 17:57:46 -0500670 goto free_task;
Mike Christie184b57c2009-05-13 17:57:39 -0500671 }
Mike Christie577577d2008-12-02 00:32:05 -0600672 }
Mike Christie184b57c2009-05-13 17:57:39 -0500673
Mike Christie262ef632008-12-02 00:32:13 -0600674 itt = task->hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600675 task->hdr_len = sizeof(struct iscsi_hdr);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500676 memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr));
Mike Christie262ef632008-12-02 00:32:13 -0600677
678 if (hdr->itt != RESERVED_ITT) {
679 if (session->tt->parse_pdu_itt)
680 task->hdr->itt = itt;
681 else
682 task->hdr->itt = build_itt(task->itt,
683 task->conn->session->age);
684 }
685
Mike Christie1336aed2009-05-13 17:57:48 -0500686 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -0600687 if (iscsi_prep_mgmt_task(conn, task))
688 goto free_task;
Mike Christie052d0142008-05-21 15:54:05 -0500689
Mike Christie9c19a7d2008-05-21 15:54:09 -0500690 if (session->tt->xmit_task(task))
Mike Christie577577d2008-12-02 00:32:05 -0600691 goto free_task;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500692 } else {
693 list_add_tail(&task->running, &conn->mgmtqueue);
Mike Christie32ae7632009-03-05 14:46:03 -0600694 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500695 }
Mike Christie052d0142008-05-21 15:54:05 -0500696
Mike Christie9c19a7d2008-05-21 15:54:09 -0500697 return task;
Mike Christie577577d2008-12-02 00:32:05 -0600698
699free_task:
700 __iscsi_put_task(task);
701 return NULL;
Mike Christief6d51802007-12-13 12:43:30 -0600702}
703
704int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
705 char *data, uint32_t data_size)
706{
707 struct iscsi_conn *conn = cls_conn->dd_data;
708 struct iscsi_session *session = conn->session;
709 int err = 0;
710
711 spin_lock_bh(&session->lock);
712 if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
713 err = -EPERM;
714 spin_unlock_bh(&session->lock);
Mike Christief6d51802007-12-13 12:43:30 -0600715 return err;
716}
717EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
718
Mike Christie7996a772006-04-06 21:13:41 -0500719/**
720 * iscsi_cmd_rsp - SCSI Command Response processing
721 * @conn: iscsi connection
722 * @hdr: iscsi header
Mike Christie9c19a7d2008-05-21 15:54:09 -0500723 * @task: scsi command task
Mike Christie7996a772006-04-06 21:13:41 -0500724 * @data: cmd data buffer
725 * @datalen: len of buffer
726 *
727 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
Mike Christie9c19a7d2008-05-21 15:54:09 -0500728 * then completes the command and task.
Mike Christie7996a772006-04-06 21:13:41 -0500729 **/
Mike Christie77a23c22007-05-30 12:57:18 -0500730static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500731 struct iscsi_task *task, char *data,
Mike Christie77a23c22007-05-30 12:57:18 -0500732 int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500733{
Mike Christie7996a772006-04-06 21:13:41 -0500734 struct iscsi_cmd_rsp *rhdr = (struct iscsi_cmd_rsp *)hdr;
735 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500736 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500737
Mike Christie77a23c22007-05-30 12:57:18 -0500738 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie7996a772006-04-06 21:13:41 -0500739 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
740
741 sc->result = (DID_OK << 16) | rhdr->cmd_status;
742
743 if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
744 sc->result = DID_ERROR << 16;
745 goto out;
746 }
747
748 if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
Mike Christie9b80cb42006-12-17 12:10:28 -0600749 uint16_t senselen;
Mike Christie7996a772006-04-06 21:13:41 -0500750
751 if (datalen < 2) {
752invalid_datalen:
Mike Christie322d7392008-01-31 13:36:52 -0600753 iscsi_conn_printk(KERN_ERR, conn,
754 "Got CHECK_CONDITION but invalid data "
755 "buffer size of %d\n", datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500756 sc->result = DID_BAD_TARGET << 16;
757 goto out;
758 }
759
Harvey Harrison8f333992008-05-21 15:54:20 -0500760 senselen = get_unaligned_be16(data);
Mike Christie7996a772006-04-06 21:13:41 -0500761 if (datalen < senselen)
762 goto invalid_datalen;
763
764 memcpy(sc->sense_buffer, data + 2,
Mike Christie9b80cb42006-12-17 12:10:28 -0600765 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie1b2c7af2009-03-05 14:45:58 -0600766 ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n",
767 min_t(uint16_t, senselen,
768 SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500769 }
770
Boaz Harroshc07d4442008-04-18 10:11:52 -0500771 if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
772 ISCSI_FLAG_CMD_BIDI_OVERFLOW)) {
773 int res_count = be32_to_cpu(rhdr->bi_residual_count);
774
775 if (scsi_bidi_cmnd(sc) && res_count > 0 &&
776 (rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW ||
777 res_count <= scsi_in(sc)->length))
778 scsi_in(sc)->resid = res_count;
779 else
780 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
781 }
782
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600783 if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
784 ISCSI_FLAG_CMD_OVERFLOW)) {
Mike Christie7996a772006-04-06 21:13:41 -0500785 int res_count = be32_to_cpu(rhdr->residual_count);
786
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600787 if (res_count > 0 &&
788 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
789 res_count <= scsi_bufflen(sc)))
Boaz Harroshc07d4442008-04-18 10:11:52 -0500790 /* write side for bidi or uni-io set_resid */
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900791 scsi_set_resid(sc, res_count);
Mike Christie7996a772006-04-06 21:13:41 -0500792 else
793 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500794 }
Mike Christie7996a772006-04-06 21:13:41 -0500795out:
Mike Christie3bbaaad2009-05-13 17:57:46 -0500796 ISCSI_DBG_SESSION(session, "cmd rsp done [sc %p res %d itt 0x%x]\n",
Mike Christie1b2c7af2009-03-05 14:45:58 -0600797 sc, sc->result, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500798 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500799 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -0500800}
801
Mike Christie1d9edf02008-09-24 11:46:09 -0500802/**
803 * iscsi_data_in_rsp - SCSI Data-In Response processing
804 * @conn: iscsi connection
805 * @hdr: iscsi pdu
806 * @task: scsi command task
807 **/
808static void
809iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
810 struct iscsi_task *task)
811{
812 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr;
813 struct scsi_cmnd *sc = task->sc;
814
815 if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
816 return;
817
Mike Christieedbc9aa052009-05-13 17:57:42 -0500818 iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr);
Mike Christie1d9edf02008-09-24 11:46:09 -0500819 sc->result = (DID_OK << 16) | rhdr->cmd_status;
820 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
821 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
822 ISCSI_FLAG_DATA_OVERFLOW)) {
823 int res_count = be32_to_cpu(rhdr->residual_count);
824
825 if (res_count > 0 &&
826 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
827 res_count <= scsi_in(sc)->length))
828 scsi_in(sc)->resid = res_count;
829 else
830 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
831 }
832
Mike Christie3bbaaad2009-05-13 17:57:46 -0500833 ISCSI_DBG_SESSION(conn->session, "data in with status done "
834 "[sc %p res %d itt 0x%x]\n",
835 sc, sc->result, task->itt);
Mike Christie1d9edf02008-09-24 11:46:09 -0500836 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500837 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie1d9edf02008-09-24 11:46:09 -0500838}
839
Mike Christie7ea8b822006-07-24 15:47:22 -0500840static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
841{
842 struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
843
844 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
845 conn->tmfrsp_pdus_cnt++;
846
Mike Christie843c0a82007-12-13 12:43:20 -0600847 if (conn->tmf_state != TMF_QUEUED)
Mike Christie7ea8b822006-07-24 15:47:22 -0500848 return;
849
850 if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
Mike Christie843c0a82007-12-13 12:43:20 -0600851 conn->tmf_state = TMF_SUCCESS;
Mike Christie7ea8b822006-07-24 15:47:22 -0500852 else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
Mike Christie843c0a82007-12-13 12:43:20 -0600853 conn->tmf_state = TMF_NOT_FOUND;
Mike Christie7ea8b822006-07-24 15:47:22 -0500854 else
Mike Christie843c0a82007-12-13 12:43:20 -0600855 conn->tmf_state = TMF_FAILED;
Mike Christie7ea8b822006-07-24 15:47:22 -0500856 wake_up(&conn->ehwait);
857}
858
Mike Christief6d51802007-12-13 12:43:30 -0600859static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
860{
861 struct iscsi_nopout hdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500862 struct iscsi_task *task;
Mike Christief6d51802007-12-13 12:43:30 -0600863
Mike Christie9c19a7d2008-05-21 15:54:09 -0500864 if (!rhdr && conn->ping_task)
Mike Christief6d51802007-12-13 12:43:30 -0600865 return;
866
867 memset(&hdr, 0, sizeof(struct iscsi_nopout));
868 hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
869 hdr.flags = ISCSI_FLAG_CMD_FINAL;
870
871 if (rhdr) {
872 memcpy(hdr.lun, rhdr->lun, 8);
873 hdr.ttt = rhdr->ttt;
874 hdr.itt = RESERVED_ITT;
875 } else
876 hdr.ttt = RESERVED_ITT;
877
Mike Christie9c19a7d2008-05-21 15:54:09 -0500878 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
879 if (!task)
Mike Christie322d7392008-01-31 13:36:52 -0600880 iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
Mike Christied3acf022008-12-01 12:13:00 -0600881 else if (!rhdr) {
882 /* only track our nops */
883 conn->ping_task = task;
884 conn->last_ping = jiffies;
885 }
Mike Christief6d51802007-12-13 12:43:30 -0600886}
887
Mike Christie8afa1432009-08-20 15:10:59 -0500888static int iscsi_nop_out_rsp(struct iscsi_task *task,
889 struct iscsi_nopin *nop, char *data, int datalen)
890{
891 struct iscsi_conn *conn = task->conn;
892 int rc = 0;
893
894 if (conn->ping_task != task) {
895 /*
896 * If this is not in response to one of our
897 * nops then it must be from userspace.
898 */
899 if (iscsi_recv_pdu(conn->cls_conn, (struct iscsi_hdr *)nop,
900 data, datalen))
901 rc = ISCSI_ERR_CONN_FAILED;
902 } else
903 mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout);
904 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
905 return rc;
906}
907
Mike Christie62f38302006-08-31 18:09:27 -0400908static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
909 char *data, int datalen)
910{
911 struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
912 struct iscsi_hdr rejected_pdu;
Mike Christie8afa1432009-08-20 15:10:59 -0500913 int opcode, rc = 0;
Mike Christie62f38302006-08-31 18:09:27 -0400914
915 conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
916
Mike Christie8afa1432009-08-20 15:10:59 -0500917 if (ntoh24(reject->dlength) > datalen ||
918 ntoh24(reject->dlength) < sizeof(struct iscsi_hdr)) {
919 iscsi_conn_printk(KERN_ERR, conn, "Cannot handle rejected "
920 "pdu. Invalid data length (pdu dlength "
921 "%u, datalen %d\n", ntoh24(reject->dlength),
922 datalen);
923 return ISCSI_ERR_PROTO;
Mike Christie62f38302006-08-31 18:09:27 -0400924 }
Mike Christie8afa1432009-08-20 15:10:59 -0500925 memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
926 opcode = rejected_pdu.opcode & ISCSI_OPCODE_MASK;
927
928 switch (reject->reason) {
929 case ISCSI_REASON_DATA_DIGEST_ERROR:
930 iscsi_conn_printk(KERN_ERR, conn,
931 "pdu (op 0x%x itt 0x%x) rejected "
932 "due to DataDigest error.\n",
933 rejected_pdu.itt, opcode);
934 break;
935 case ISCSI_REASON_IMM_CMD_REJECT:
936 iscsi_conn_printk(KERN_ERR, conn,
937 "pdu (op 0x%x itt 0x%x) rejected. Too many "
938 "immediate commands.\n",
939 rejected_pdu.itt, opcode);
940 /*
941 * We only send one TMF at a time so if the target could not
942 * handle it, then it should get fixed (RFC mandates that
943 * a target can handle one immediate TMF per conn).
944 *
945 * For nops-outs, we could have sent more than one if
946 * the target is sending us lots of nop-ins
947 */
948 if (opcode != ISCSI_OP_NOOP_OUT)
949 return 0;
950
951 if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG))
952 /*
953 * nop-out in response to target's nop-out rejected.
954 * Just resend.
955 */
956 iscsi_send_nopout(conn,
957 (struct iscsi_nopin*)&rejected_pdu);
958 else {
959 struct iscsi_task *task;
960 /*
961 * Our nop as ping got dropped. We know the target
962 * and transport are ok so just clean up
963 */
964 task = iscsi_itt_to_task(conn, rejected_pdu.itt);
965 if (!task) {
966 iscsi_conn_printk(KERN_ERR, conn,
967 "Invalid pdu reject. Could "
968 "not lookup rejected task.\n");
969 rc = ISCSI_ERR_BAD_ITT;
970 } else
971 rc = iscsi_nop_out_rsp(task,
972 (struct iscsi_nopin*)&rejected_pdu,
973 NULL, 0);
974 }
975 break;
976 default:
977 iscsi_conn_printk(KERN_ERR, conn,
978 "pdu (op 0x%x itt 0x%x) rejected. Reason "
979 "code 0x%x\n", rejected_pdu.itt,
980 rejected_pdu.opcode, reject->reason);
981 break;
982 }
983 return rc;
Mike Christie62f38302006-08-31 18:09:27 -0400984}
985
Mike Christie7996a772006-04-06 21:13:41 -0500986/**
Mike Christie913e5bf2008-05-21 15:54:18 -0500987 * iscsi_itt_to_task - look up task by itt
988 * @conn: iscsi connection
989 * @itt: itt
990 *
991 * This should be used for mgmt tasks like login and nops, or if
992 * the LDD's itt space does not include the session age.
993 *
994 * The session lock must be held.
995 */
Mike Christie8f9256c2009-05-13 17:57:41 -0500996struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
Mike Christie913e5bf2008-05-21 15:54:18 -0500997{
998 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -0600999 int i;
Mike Christie913e5bf2008-05-21 15:54:18 -05001000
1001 if (itt == RESERVED_ITT)
1002 return NULL;
1003
Mike Christie262ef632008-12-02 00:32:13 -06001004 if (session->tt->parse_pdu_itt)
1005 session->tt->parse_pdu_itt(conn, itt, &i, NULL);
1006 else
1007 i = get_itt(itt);
Mike Christie913e5bf2008-05-21 15:54:18 -05001008 if (i >= session->cmds_max)
1009 return NULL;
1010
1011 return session->cmds[i];
1012}
Mike Christie8f9256c2009-05-13 17:57:41 -05001013EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
Mike Christie913e5bf2008-05-21 15:54:18 -05001014
1015/**
Mike Christie7996a772006-04-06 21:13:41 -05001016 * __iscsi_complete_pdu - complete pdu
1017 * @conn: iscsi conn
1018 * @hdr: iscsi header
1019 * @data: data buffer
1020 * @datalen: len of data buffer
1021 *
1022 * Completes pdu processing by freeing any resources allocated at
1023 * queuecommand or send generic. session lock must be held and verify
1024 * itt must have been called.
1025 */
Mike Christie913e5bf2008-05-21 15:54:18 -05001026int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1027 char *data, int datalen)
Mike Christie7996a772006-04-06 21:13:41 -05001028{
1029 struct iscsi_session *session = conn->session;
1030 int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001031 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001032 uint32_t itt;
1033
Mike Christief6d51802007-12-13 12:43:30 -06001034 conn->last_recv = jiffies;
Mike Christie0af967f2008-05-21 15:54:04 -05001035 rc = iscsi_verify_itt(conn, hdr->itt);
1036 if (rc)
1037 return rc;
1038
Al Virob4377352007-02-09 16:39:40 +00001039 if (hdr->itt != RESERVED_ITT)
1040 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -05001041 else
Al Virob4377352007-02-09 16:39:40 +00001042 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -05001043
Mike Christie1b2c7af2009-03-05 14:45:58 -06001044 ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n",
1045 opcode, conn->id, itt, datalen);
Mike Christie7996a772006-04-06 21:13:41 -05001046
Mike Christie3e5c28a2008-05-21 15:54:06 -05001047 if (itt == ~0U) {
Mike Christie77a23c22007-05-30 12:57:18 -05001048 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie62f38302006-08-31 18:09:27 -04001049
Mike Christie7996a772006-04-06 21:13:41 -05001050 switch(opcode) {
1051 case ISCSI_OP_NOOP_IN:
Mike Christie40527af2006-07-24 15:47:45 -05001052 if (datalen) {
Mike Christie7996a772006-04-06 21:13:41 -05001053 rc = ISCSI_ERR_PROTO;
Mike Christie40527af2006-07-24 15:47:45 -05001054 break;
1055 }
1056
Al Virob4377352007-02-09 16:39:40 +00001057 if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
Mike Christie40527af2006-07-24 15:47:45 -05001058 break;
1059
Mike Christief6d51802007-12-13 12:43:30 -06001060 iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
Mike Christie7996a772006-04-06 21:13:41 -05001061 break;
1062 case ISCSI_OP_REJECT:
Mike Christie62f38302006-08-31 18:09:27 -04001063 rc = iscsi_handle_reject(conn, hdr, data, datalen);
1064 break;
Mike Christie7996a772006-04-06 21:13:41 -05001065 case ISCSI_OP_ASYNC_EVENT:
Mike Christie8d2860b2006-05-02 19:46:47 -05001066 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
Mike Christie5831c732006-10-16 18:09:41 -04001067 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1068 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie7996a772006-04-06 21:13:41 -05001069 break;
1070 default:
1071 rc = ISCSI_ERR_BAD_OPCODE;
1072 break;
1073 }
Mike Christie3e5c28a2008-05-21 15:54:06 -05001074 goto out;
1075 }
Mike Christie7996a772006-04-06 21:13:41 -05001076
Mike Christie3e5c28a2008-05-21 15:54:06 -05001077 switch(opcode) {
1078 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie913e5bf2008-05-21 15:54:18 -05001079 case ISCSI_OP_SCSI_DATA_IN:
1080 task = iscsi_itt_to_ctask(conn, hdr->itt);
1081 if (!task)
1082 return ISCSI_ERR_BAD_ITT;
Mike Christied355e572009-06-15 22:11:08 -05001083 task->last_xfer = jiffies;
Mike Christie913e5bf2008-05-21 15:54:18 -05001084 break;
1085 case ISCSI_OP_R2T:
1086 /*
1087 * LLD handles R2Ts if they need to.
1088 */
1089 return 0;
1090 case ISCSI_OP_LOGOUT_RSP:
1091 case ISCSI_OP_LOGIN_RSP:
1092 case ISCSI_OP_TEXT_RSP:
1093 case ISCSI_OP_SCSI_TMFUNC_RSP:
1094 case ISCSI_OP_NOOP_IN:
1095 task = iscsi_itt_to_task(conn, hdr->itt);
1096 if (!task)
1097 return ISCSI_ERR_BAD_ITT;
1098 break;
1099 default:
1100 return ISCSI_ERR_BAD_OPCODE;
1101 }
1102
1103 switch(opcode) {
1104 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie9c19a7d2008-05-21 15:54:09 -05001105 iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001106 break;
1107 case ISCSI_OP_SCSI_DATA_IN:
Mike Christie1d9edf02008-09-24 11:46:09 -05001108 iscsi_data_in_rsp(conn, hdr, task);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001109 break;
Mike Christie3e5c28a2008-05-21 15:54:06 -05001110 case ISCSI_OP_LOGOUT_RSP:
1111 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1112 if (datalen) {
1113 rc = ISCSI_ERR_PROTO;
1114 break;
1115 }
1116 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1117 goto recv_pdu;
1118 case ISCSI_OP_LOGIN_RSP:
1119 case ISCSI_OP_TEXT_RSP:
1120 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1121 /*
1122 * login related PDU's exp_statsn is handled in
1123 * userspace
1124 */
1125 goto recv_pdu;
1126 case ISCSI_OP_SCSI_TMFUNC_RSP:
1127 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1128 if (datalen) {
1129 rc = ISCSI_ERR_PROTO;
1130 break;
1131 }
1132
1133 iscsi_tmf_rsp(conn, hdr);
Mike Christieb3cd5052009-05-13 17:57:49 -05001134 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001135 break;
1136 case ISCSI_OP_NOOP_IN:
1137 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1138 if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
1139 rc = ISCSI_ERR_PROTO;
1140 break;
1141 }
1142 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1143
Mike Christie8afa1432009-08-20 15:10:59 -05001144 rc = iscsi_nop_out_rsp(task, (struct iscsi_nopin*)hdr,
1145 data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001146 break;
1147 default:
1148 rc = ISCSI_ERR_BAD_OPCODE;
1149 break;
1150 }
1151
1152out:
1153 return rc;
1154recv_pdu:
1155 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1156 rc = ISCSI_ERR_CONN_FAILED;
Mike Christieb3cd5052009-05-13 17:57:49 -05001157 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -05001158 return rc;
1159}
Mike Christie913e5bf2008-05-21 15:54:18 -05001160EXPORT_SYMBOL_GPL(__iscsi_complete_pdu);
Mike Christie7996a772006-04-06 21:13:41 -05001161
1162int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1163 char *data, int datalen)
1164{
1165 int rc;
1166
1167 spin_lock(&conn->session->lock);
1168 rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
1169 spin_unlock(&conn->session->lock);
1170 return rc;
1171}
1172EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
1173
Mike Christie0af967f2008-05-21 15:54:04 -05001174int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
Mike Christie7996a772006-04-06 21:13:41 -05001175{
1176 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001177 int age = 0, i = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001178
Mike Christie0af967f2008-05-21 15:54:04 -05001179 if (itt == RESERVED_ITT)
1180 return 0;
Mike Christie7996a772006-04-06 21:13:41 -05001181
Mike Christie262ef632008-12-02 00:32:13 -06001182 if (session->tt->parse_pdu_itt)
1183 session->tt->parse_pdu_itt(conn, itt, &i, &age);
1184 else {
1185 i = get_itt(itt);
1186 age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK;
1187 }
1188
1189 if (age != session->age) {
Mike Christie0af967f2008-05-21 15:54:04 -05001190 iscsi_conn_printk(KERN_ERR, conn,
1191 "received itt %x expected session age (%x)\n",
Mike Christie913e5bf2008-05-21 15:54:18 -05001192 (__force u32)itt, session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001193 return ISCSI_ERR_BAD_ITT;
1194 }
Mike Christie7996a772006-04-06 21:13:41 -05001195
Mike Christie3e5c28a2008-05-21 15:54:06 -05001196 if (i >= session->cmds_max) {
1197 iscsi_conn_printk(KERN_ERR, conn,
1198 "received invalid itt index %u (max cmds "
1199 "%u.\n", i, session->cmds_max);
1200 return ISCSI_ERR_BAD_ITT;
Mike Christie7996a772006-04-06 21:13:41 -05001201 }
Mike Christie7996a772006-04-06 21:13:41 -05001202 return 0;
1203}
1204EXPORT_SYMBOL_GPL(iscsi_verify_itt);
1205
Mike Christie913e5bf2008-05-21 15:54:18 -05001206/**
1207 * iscsi_itt_to_ctask - look up ctask by itt
1208 * @conn: iscsi connection
1209 * @itt: itt
1210 *
1211 * This should be used for cmd tasks.
1212 *
1213 * The session lock must be held.
1214 */
1215struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt)
Mike Christie0af967f2008-05-21 15:54:04 -05001216{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001217 struct iscsi_task *task;
Mike Christie0af967f2008-05-21 15:54:04 -05001218
1219 if (iscsi_verify_itt(conn, itt))
1220 return NULL;
1221
Mike Christie913e5bf2008-05-21 15:54:18 -05001222 task = iscsi_itt_to_task(conn, itt);
1223 if (!task || !task->sc)
Mike Christie0af967f2008-05-21 15:54:04 -05001224 return NULL;
1225
Mike Christie913e5bf2008-05-21 15:54:18 -05001226 if (task->sc->SCp.phase != conn->session->age) {
1227 iscsi_session_printk(KERN_ERR, conn->session,
1228 "task's session age %d, expected %d\n",
1229 task->sc->SCp.phase, conn->session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001230 return NULL;
Mike Christie913e5bf2008-05-21 15:54:18 -05001231 }
Mike Christie0af967f2008-05-21 15:54:04 -05001232
Mike Christie9c19a7d2008-05-21 15:54:09 -05001233 return task;
Mike Christie0af967f2008-05-21 15:54:04 -05001234}
1235EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask);
1236
Mike Christie40a06e72009-03-05 14:46:05 -06001237void iscsi_session_failure(struct iscsi_session *session,
Mike Christiee5bd7b52008-09-24 11:46:10 -05001238 enum iscsi_err err)
1239{
Mike Christiee5bd7b52008-09-24 11:46:10 -05001240 struct iscsi_conn *conn;
1241 struct device *dev;
1242 unsigned long flags;
1243
1244 spin_lock_irqsave(&session->lock, flags);
1245 conn = session->leadconn;
1246 if (session->state == ISCSI_STATE_TERMINATE || !conn) {
1247 spin_unlock_irqrestore(&session->lock, flags);
1248 return;
1249 }
1250
1251 dev = get_device(&conn->cls_conn->dev);
1252 spin_unlock_irqrestore(&session->lock, flags);
1253 if (!dev)
1254 return;
1255 /*
1256 * if the host is being removed bypass the connection
1257 * recovery initialization because we are going to kill
1258 * the session.
1259 */
1260 if (err == ISCSI_ERR_INVALID_HOST)
1261 iscsi_conn_error_event(conn->cls_conn, err);
1262 else
1263 iscsi_conn_failure(conn, err);
1264 put_device(dev);
1265}
1266EXPORT_SYMBOL_GPL(iscsi_session_failure);
1267
Mike Christie7996a772006-04-06 21:13:41 -05001268void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
1269{
1270 struct iscsi_session *session = conn->session;
1271 unsigned long flags;
1272
1273 spin_lock_irqsave(&session->lock, flags);
Mike Christie656cffc2006-05-18 20:31:42 -05001274 if (session->state == ISCSI_STATE_FAILED) {
1275 spin_unlock_irqrestore(&session->lock, flags);
1276 return;
1277 }
1278
Mike Christie67a61112006-05-30 00:37:20 -05001279 if (conn->stop_stage == 0)
Mike Christie7996a772006-04-06 21:13:41 -05001280 session->state = ISCSI_STATE_FAILED;
1281 spin_unlock_irqrestore(&session->lock, flags);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001282
Mike Christie7996a772006-04-06 21:13:41 -05001283 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1284 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001285 iscsi_conn_error_event(conn->cls_conn, err);
Mike Christie7996a772006-04-06 21:13:41 -05001286}
1287EXPORT_SYMBOL_GPL(iscsi_conn_failure);
1288
Mike Christie77a23c22007-05-30 12:57:18 -05001289static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
1290{
1291 struct iscsi_session *session = conn->session;
1292
1293 /*
1294 * Check for iSCSI window and take care of CmdSN wrap-around
1295 */
Mike Christiee0726402007-07-26 12:46:48 -05001296 if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001297 ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn "
1298 "%u MaxCmdSN %u CmdSN %u/%u\n",
1299 session->exp_cmdsn, session->max_cmdsn,
1300 session->cmdsn, session->queued_cmdsn);
Mike Christie77a23c22007-05-30 12:57:18 -05001301 return -ENOSPC;
1302 }
1303 return 0;
1304}
1305
Mike Christie9c19a7d2008-05-21 15:54:09 -05001306static int iscsi_xmit_task(struct iscsi_conn *conn)
Mike Christie77a23c22007-05-30 12:57:18 -05001307{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001308 struct iscsi_task *task = conn->task;
Mike Christie843c0a82007-12-13 12:43:20 -06001309 int rc;
Mike Christie77a23c22007-05-30 12:57:18 -05001310
Mike Christie70b31c12009-08-20 15:11:03 -05001311 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx))
1312 return -ENODATA;
1313
Mike Christie9c19a7d2008-05-21 15:54:09 -05001314 __iscsi_get_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001315 spin_unlock_bh(&conn->session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001316 rc = conn->session->tt->xmit_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001317 spin_lock_bh(&conn->session->lock);
Mike Christied355e572009-06-15 22:11:08 -05001318 if (!rc) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001319 /* done with this task */
Mike Christied355e572009-06-15 22:11:08 -05001320 task->last_xfer = jiffies;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001321 conn->task = NULL;
Mike Christied355e572009-06-15 22:11:08 -05001322 }
1323 __iscsi_put_task(task);
Mike Christie77a23c22007-05-30 12:57:18 -05001324 return rc;
1325}
1326
Mike Christie7996a772006-04-06 21:13:41 -05001327/**
Mike Christie9c19a7d2008-05-21 15:54:09 -05001328 * iscsi_requeue_task - requeue task to run from session workqueue
1329 * @task: task to requeue
Mike Christie843c0a82007-12-13 12:43:20 -06001330 *
Mike Christie9c19a7d2008-05-21 15:54:09 -05001331 * LLDs that need to run a task from the session workqueue should call
Mike Christie052d0142008-05-21 15:54:05 -05001332 * this. The session lock must be held. This should only be called
1333 * by software drivers.
Mike Christie843c0a82007-12-13 12:43:20 -06001334 */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001335void iscsi_requeue_task(struct iscsi_task *task)
Mike Christie843c0a82007-12-13 12:43:20 -06001336{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001337 struct iscsi_conn *conn = task->conn;
Mike Christie843c0a82007-12-13 12:43:20 -06001338
Mike Christie3bbaaad2009-05-13 17:57:46 -05001339 /*
1340 * this may be on the requeue list already if the xmit_task callout
1341 * is handling the r2ts while we are adding new ones
1342 */
1343 if (list_empty(&task->running))
1344 list_add_tail(&task->running, &conn->requeue);
Mike Christie32ae7632009-03-05 14:46:03 -06001345 iscsi_conn_queue_work(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001346}
Mike Christie9c19a7d2008-05-21 15:54:09 -05001347EXPORT_SYMBOL_GPL(iscsi_requeue_task);
Mike Christie843c0a82007-12-13 12:43:20 -06001348
1349/**
Mike Christie7996a772006-04-06 21:13:41 -05001350 * iscsi_data_xmit - xmit any command into the scheduled connection
1351 * @conn: iscsi connection
1352 *
1353 * Notes:
1354 * The function can return -EAGAIN in which case the caller must
1355 * re-schedule it again later or recover. '0' return code means
1356 * successful xmit.
1357 **/
1358static int iscsi_data_xmit(struct iscsi_conn *conn)
1359{
Mike Christie3219e522006-05-30 00:37:28 -05001360 int rc = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001361
Mike Christie77a23c22007-05-30 12:57:18 -05001362 spin_lock_bh(&conn->session->lock);
Mike Christie70b31c12009-08-20 15:11:03 -05001363 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001364 ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001365 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001366 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001367 }
Mike Christie7996a772006-04-06 21:13:41 -05001368
Mike Christie9c19a7d2008-05-21 15:54:09 -05001369 if (conn->task) {
1370 rc = iscsi_xmit_task(conn);
Mike Christie3219e522006-05-30 00:37:28 -05001371 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001372 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001373 }
1374
Mike Christie77a23c22007-05-30 12:57:18 -05001375 /*
1376 * process mgmt pdus like nops before commands since we should
1377 * only have one nop-out as a ping from us and targets should not
1378 * overflow us with nop-ins
1379 */
1380check_mgmt:
Mike Christie843c0a82007-12-13 12:43:20 -06001381 while (!list_empty(&conn->mgmtqueue)) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001382 conn->task = list_entry(conn->mgmtqueue.next,
1383 struct iscsi_task, running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001384 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001385 if (iscsi_prep_mgmt_task(conn, conn->task)) {
1386 __iscsi_put_task(conn->task);
1387 conn->task = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001388 continue;
1389 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001390 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001391 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001392 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001393 }
1394
Mike Christie843c0a82007-12-13 12:43:20 -06001395 /* process pending command queue */
Mike Christie3bbaaad2009-05-13 17:57:46 -05001396 while (!list_empty(&conn->cmdqueue)) {
Mike Christie843c0a82007-12-13 12:43:20 -06001397 if (conn->tmf_state == TMF_QUEUED)
1398 break;
1399
Mike Christie3bbaaad2009-05-13 17:57:46 -05001400 conn->task = list_entry(conn->cmdqueue.next,
Mike Christie9c19a7d2008-05-21 15:54:09 -05001401 struct iscsi_task, running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001402 list_del_init(&conn->task->running);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001403 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
Mike Christieb3cd5052009-05-13 17:57:49 -05001404 fail_scsi_task(conn->task, DID_IMM_RETRY);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001405 continue;
1406 }
Mike Christie577577d2008-12-02 00:32:05 -06001407 rc = iscsi_prep_scsi_cmd_pdu(conn->task);
1408 if (rc) {
1409 if (rc == -ENOMEM) {
Mike Christie3bbaaad2009-05-13 17:57:46 -05001410 list_add_tail(&conn->task->running,
1411 &conn->cmdqueue);
Mike Christie577577d2008-12-02 00:32:05 -06001412 conn->task = NULL;
Mike Christie70b31c12009-08-20 15:11:03 -05001413 goto done;
Mike Christie577577d2008-12-02 00:32:05 -06001414 } else
Mike Christieb3cd5052009-05-13 17:57:49 -05001415 fail_scsi_task(conn->task, DID_ABORT);
Boaz Harrosh004d6532007-12-13 12:43:23 -06001416 continue;
1417 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001418 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001419 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001420 goto done;
Mike Christie77a23c22007-05-30 12:57:18 -05001421 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -05001422 * we could continuously get new task requests so
Mike Christie77a23c22007-05-30 12:57:18 -05001423 * we need to check the mgmt queue for nops that need to
1424 * be sent to aviod starvation
1425 */
Mike Christie843c0a82007-12-13 12:43:20 -06001426 if (!list_empty(&conn->mgmtqueue))
1427 goto check_mgmt;
1428 }
1429
1430 while (!list_empty(&conn->requeue)) {
1431 if (conn->session->fast_abort && conn->tmf_state != TMF_INITIAL)
1432 break;
1433
Mike Christieb3a7ea82007-12-13 12:43:26 -06001434 /*
1435 * we always do fastlogout - conn stop code will clean up.
1436 */
1437 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
1438 break;
1439
Mike Christie9c19a7d2008-05-21 15:54:09 -05001440 conn->task = list_entry(conn->requeue.next,
1441 struct iscsi_task, running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001442 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001443 conn->task->state = ISCSI_TASK_RUNNING;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001444 rc = iscsi_xmit_task(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001445 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001446 goto done;
Mike Christie843c0a82007-12-13 12:43:20 -06001447 if (!list_empty(&conn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -05001448 goto check_mgmt;
Mike Christie7996a772006-04-06 21:13:41 -05001449 }
Mike Christieb6c395e2006-07-24 15:47:15 -05001450 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001451 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001452
Mike Christie70b31c12009-08-20 15:11:03 -05001453done:
Mike Christie77a23c22007-05-30 12:57:18 -05001454 spin_unlock_bh(&conn->session->lock);
Mike Christie3219e522006-05-30 00:37:28 -05001455 return rc;
Mike Christie7996a772006-04-06 21:13:41 -05001456}
1457
David Howellsc4028952006-11-22 14:57:56 +00001458static void iscsi_xmitworker(struct work_struct *work)
Mike Christie7996a772006-04-06 21:13:41 -05001459{
David Howellsc4028952006-11-22 14:57:56 +00001460 struct iscsi_conn *conn =
1461 container_of(work, struct iscsi_conn, xmitwork);
Mike Christie3219e522006-05-30 00:37:28 -05001462 int rc;
Mike Christie7996a772006-04-06 21:13:41 -05001463 /*
1464 * serialize Xmit worker on a per-connection basis.
1465 */
Mike Christie3219e522006-05-30 00:37:28 -05001466 do {
1467 rc = iscsi_data_xmit(conn);
1468 } while (rc >= 0 || rc == -EAGAIN);
Mike Christie7996a772006-04-06 21:13:41 -05001469}
1470
Mike Christie577577d2008-12-02 00:32:05 -06001471static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn,
1472 struct scsi_cmnd *sc)
1473{
1474 struct iscsi_task *task;
1475
1476 if (!__kfifo_get(conn->session->cmdpool.queue,
1477 (void *) &task, sizeof(void *)))
1478 return NULL;
1479
1480 sc->SCp.phase = conn->session->age;
1481 sc->SCp.ptr = (char *) task;
1482
1483 atomic_set(&task->refcount, 1);
1484 task->state = ISCSI_TASK_PENDING;
1485 task->conn = conn;
1486 task->sc = sc;
Mike Christied355e572009-06-15 22:11:08 -05001487 task->have_checked_conn = false;
1488 task->last_timeout = jiffies;
1489 task->last_xfer = jiffies;
Mike Christie577577d2008-12-02 00:32:05 -06001490 INIT_LIST_HEAD(&task->running);
1491 return task;
1492}
1493
Mike Christie7996a772006-04-06 21:13:41 -05001494enum {
1495 FAILURE_BAD_HOST = 1,
1496 FAILURE_SESSION_FAILED,
1497 FAILURE_SESSION_FREED,
1498 FAILURE_WINDOW_CLOSED,
Mike Christie60ecebf2006-08-31 18:09:25 -04001499 FAILURE_OOM,
Mike Christie7996a772006-04-06 21:13:41 -05001500 FAILURE_SESSION_TERMINATE,
Mike Christie656cffc2006-05-18 20:31:42 -05001501 FAILURE_SESSION_IN_RECOVERY,
Mike Christie7996a772006-04-06 21:13:41 -05001502 FAILURE_SESSION_RECOVERY_TIMEOUT,
Mike Christieb3a7ea82007-12-13 12:43:26 -06001503 FAILURE_SESSION_LOGGING_OUT,
Mike Christie6eabafb2008-01-31 13:36:43 -06001504 FAILURE_SESSION_NOT_READY,
Mike Christie7996a772006-04-06 21:13:41 -05001505};
1506
1507int iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
1508{
Mike Christie75613522008-05-21 15:53:59 -05001509 struct iscsi_cls_session *cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05001510 struct Scsi_Host *host;
Mike Christie1336aed2009-05-13 17:57:48 -05001511 struct iscsi_host *ihost;
Mike Christie7996a772006-04-06 21:13:41 -05001512 int reason = 0;
1513 struct iscsi_session *session;
1514 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001515 struct iscsi_task *task = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001516
1517 sc->scsi_done = done;
1518 sc->result = 0;
Mike Christief47f2cf2006-08-31 18:09:33 -04001519 sc->SCp.ptr = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001520
1521 host = sc->device->host;
Mike Christie1336aed2009-05-13 17:57:48 -05001522 ihost = shost_priv(host);
Mike Christie1040c992007-12-13 12:43:34 -06001523 spin_unlock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001524
Mike Christie75613522008-05-21 15:53:59 -05001525 cls_session = starget_to_session(scsi_target(sc->device));
1526 session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05001527 spin_lock(&session->lock);
1528
Mike Christie75613522008-05-21 15:53:59 -05001529 reason = iscsi_session_chkready(cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06001530 if (reason) {
1531 sc->result = reason;
1532 goto fault;
1533 }
1534
Mike Christie301e0f72009-05-13 17:57:47 -05001535 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001536 /*
1537 * to handle the race between when we set the recovery state
1538 * and block the session we requeue here (commands could
1539 * be entering our queuecommand while a block is starting
1540 * up because the block code is not locked)
1541 */
Mike Christie9000bcd2007-12-13 12:43:32 -06001542 switch (session->state) {
Mike Christie301e0f72009-05-13 17:57:47 -05001543 case ISCSI_STATE_FAILED:
Mike Christie9000bcd2007-12-13 12:43:32 -06001544 case ISCSI_STATE_IN_RECOVERY:
Mike Christie656cffc2006-05-18 20:31:42 -05001545 reason = FAILURE_SESSION_IN_RECOVERY;
Mike Christie301e0f72009-05-13 17:57:47 -05001546 sc->result = DID_IMM_RETRY << 16;
1547 break;
Mike Christie9000bcd2007-12-13 12:43:32 -06001548 case ISCSI_STATE_LOGGING_OUT:
1549 reason = FAILURE_SESSION_LOGGING_OUT;
Mike Christie301e0f72009-05-13 17:57:47 -05001550 sc->result = DID_IMM_RETRY << 16;
1551 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001552 case ISCSI_STATE_RECOVERY_FAILED:
Mike Christie656cffc2006-05-18 20:31:42 -05001553 reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
Mike Christie56d7fcf2008-08-19 18:45:26 -05001554 sc->result = DID_TRANSPORT_FAILFAST << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001555 break;
1556 case ISCSI_STATE_TERMINATE:
Mike Christie656cffc2006-05-18 20:31:42 -05001557 reason = FAILURE_SESSION_TERMINATE;
Mike Christie6eabafb2008-01-31 13:36:43 -06001558 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001559 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001560 default:
Mike Christie656cffc2006-05-18 20:31:42 -05001561 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001562 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001563 }
Mike Christie7996a772006-04-06 21:13:41 -05001564 goto fault;
1565 }
1566
Mike Christie7996a772006-04-06 21:13:41 -05001567 conn = session->leadconn;
Mike Christie98644042006-10-16 18:09:39 -04001568 if (!conn) {
1569 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001570 sc->result = DID_NO_CONNECT << 16;
Mike Christie98644042006-10-16 18:09:39 -04001571 goto fault;
1572 }
Mike Christie7996a772006-04-06 21:13:41 -05001573
Mike Christie661134a2009-09-05 07:35:33 +05301574 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
1575 reason = FAILURE_SESSION_IN_RECOVERY;
1576 sc->result = DID_REQUEUE;
1577 goto fault;
1578 }
1579
Mike Christie77a23c22007-05-30 12:57:18 -05001580 if (iscsi_check_cmdsn_window_closed(conn)) {
1581 reason = FAILURE_WINDOW_CLOSED;
1582 goto reject;
1583 }
1584
Mike Christie577577d2008-12-02 00:32:05 -06001585 task = iscsi_alloc_task(conn, sc);
1586 if (!task) {
Mike Christie60ecebf2006-08-31 18:09:25 -04001587 reason = FAILURE_OOM;
1588 goto reject;
1589 }
Mike Christie7996a772006-04-06 21:13:41 -05001590
Mike Christie1336aed2009-05-13 17:57:48 -05001591 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -06001592 reason = iscsi_prep_scsi_cmd_pdu(task);
1593 if (reason) {
1594 if (reason == -ENOMEM) {
1595 reason = FAILURE_OOM;
1596 goto prepd_reject;
1597 } else {
1598 sc->result = DID_ABORT << 16;
1599 goto prepd_fault;
1600 }
Mike Christie052d0142008-05-21 15:54:05 -05001601 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001602 if (session->tt->xmit_task(task)) {
Mike Christied3305f32009-08-20 15:10:58 -05001603 session->cmdsn--;
Mike Christie052d0142008-05-21 15:54:05 -05001604 reason = FAILURE_SESSION_NOT_READY;
Mike Christie577577d2008-12-02 00:32:05 -06001605 goto prepd_reject;
Mike Christie052d0142008-05-21 15:54:05 -05001606 }
Mike Christie3bbaaad2009-05-13 17:57:46 -05001607 } else {
1608 list_add_tail(&task->running, &conn->cmdqueue);
Mike Christie32ae7632009-03-05 14:46:03 -06001609 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001610 }
Mike Christie052d0142008-05-21 15:54:05 -05001611
1612 session->queued_cmdsn++;
1613 spin_unlock(&session->lock);
Mike Christie1040c992007-12-13 12:43:34 -06001614 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001615 return 0;
1616
Mike Christie577577d2008-12-02 00:32:05 -06001617prepd_reject:
1618 sc->scsi_done = NULL;
Mike Christieb3cd5052009-05-13 17:57:49 -05001619 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -05001620reject:
1621 spin_unlock(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001622 ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n",
1623 sc->cmnd[0], reason);
Mike Christie1040c992007-12-13 12:43:34 -06001624 spin_lock(host->host_lock);
Mike Christied6d13ee2008-08-17 15:24:43 -05001625 return SCSI_MLQUEUE_TARGET_BUSY;
Mike Christie7996a772006-04-06 21:13:41 -05001626
Mike Christie577577d2008-12-02 00:32:05 -06001627prepd_fault:
1628 sc->scsi_done = NULL;
Mike Christieb3cd5052009-05-13 17:57:49 -05001629 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -05001630fault:
1631 spin_unlock(&session->lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001632 ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n",
1633 sc->cmnd[0], reason);
Boaz Harroshc07d4442008-04-18 10:11:52 -05001634 if (!scsi_bidi_cmnd(sc))
1635 scsi_set_resid(sc, scsi_bufflen(sc));
1636 else {
1637 scsi_out(sc)->resid = scsi_out(sc)->length;
1638 scsi_in(sc)->resid = scsi_in(sc)->length;
1639 }
Mike Christie052d0142008-05-21 15:54:05 -05001640 done(sc);
Mike Christie1040c992007-12-13 12:43:34 -06001641 spin_lock(host->host_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001642 return 0;
1643}
1644EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1645
1646int iscsi_change_queue_depth(struct scsi_device *sdev, int depth)
1647{
Mike Christie7996a772006-04-06 21:13:41 -05001648 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1649 return sdev->queue_depth;
1650}
1651EXPORT_SYMBOL_GPL(iscsi_change_queue_depth);
1652
Mike Christie6b5d6c42009-04-21 15:32:32 -05001653int iscsi_target_alloc(struct scsi_target *starget)
1654{
1655 struct iscsi_cls_session *cls_session = starget_to_session(starget);
1656 struct iscsi_session *session = cls_session->dd_data;
1657
1658 starget->can_queue = session->scsi_cmds_max;
1659 return 0;
1660}
1661EXPORT_SYMBOL_GPL(iscsi_target_alloc);
1662
Mike Christie7996a772006-04-06 21:13:41 -05001663void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
1664{
Mike Christie75613522008-05-21 15:53:59 -05001665 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05001666
1667 spin_lock_bh(&session->lock);
1668 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001669 session->state = ISCSI_STATE_RECOVERY_FAILED;
Mike Christie843c0a82007-12-13 12:43:20 -06001670 if (session->leadconn)
1671 wake_up(&session->leadconn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05001672 }
1673 spin_unlock_bh(&session->lock);
1674}
1675EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
1676
Mike Christie8e124522008-09-24 11:46:12 -05001677int iscsi_eh_target_reset(struct scsi_cmnd *sc)
Mike Christie7996a772006-04-06 21:13:41 -05001678{
Mike Christie75613522008-05-21 15:53:59 -05001679 struct iscsi_cls_session *cls_session;
1680 struct iscsi_session *session;
1681 struct iscsi_conn *conn;
1682
1683 cls_session = starget_to_session(scsi_target(sc->device));
1684 session = cls_session->dd_data;
1685 conn = session->leadconn;
Mike Christie7996a772006-04-06 21:13:41 -05001686
Mike Christiebc436b22007-12-13 12:43:28 -06001687 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001688 spin_lock_bh(&session->lock);
1689 if (session->state == ISCSI_STATE_TERMINATE) {
1690failed:
Erez Zilberbd2199d2009-06-15 22:11:10 -05001691 ISCSI_DBG_EH(session,
1692 "failing target reset: Could not log back into "
1693 "target [age %d]\n",
1694 session->age);
Mike Christie7996a772006-04-06 21:13:41 -05001695 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001696 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001697 return FAILED;
1698 }
1699
Mike Christie7996a772006-04-06 21:13:41 -05001700 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001701 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001702 /*
1703 * we drop the lock here but the leadconn cannot be destoyed while
1704 * we are in the scsi eh
1705 */
Mike Christie843c0a82007-12-13 12:43:20 -06001706 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001707
Erez Zilberbd2199d2009-06-15 22:11:10 -05001708 ISCSI_DBG_EH(session, "wait for relogin\n");
Mike Christie7996a772006-04-06 21:13:41 -05001709 wait_event_interruptible(conn->ehwait,
1710 session->state == ISCSI_STATE_TERMINATE ||
1711 session->state == ISCSI_STATE_LOGGED_IN ||
Mike Christie656cffc2006-05-18 20:31:42 -05001712 session->state == ISCSI_STATE_RECOVERY_FAILED);
Mike Christie7996a772006-04-06 21:13:41 -05001713 if (signal_pending(current))
1714 flush_signals(current);
1715
Mike Christiebc436b22007-12-13 12:43:28 -06001716 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001717 spin_lock_bh(&session->lock);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001718 if (session->state == ISCSI_STATE_LOGGED_IN) {
1719 ISCSI_DBG_EH(session,
1720 "target reset succeeded\n");
1721 } else
Mike Christie7996a772006-04-06 21:13:41 -05001722 goto failed;
1723 spin_unlock_bh(&session->lock);
Mike Christiebc436b22007-12-13 12:43:28 -06001724 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001725 return SUCCESS;
1726}
Mike Christie8e124522008-09-24 11:46:12 -05001727EXPORT_SYMBOL_GPL(iscsi_eh_target_reset);
Mike Christie7996a772006-04-06 21:13:41 -05001728
Mike Christie843c0a82007-12-13 12:43:20 -06001729static void iscsi_tmf_timedout(unsigned long data)
Mike Christie7996a772006-04-06 21:13:41 -05001730{
Mike Christie843c0a82007-12-13 12:43:20 -06001731 struct iscsi_conn *conn = (struct iscsi_conn *)data;
Mike Christie7996a772006-04-06 21:13:41 -05001732 struct iscsi_session *session = conn->session;
1733
1734 spin_lock(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001735 if (conn->tmf_state == TMF_QUEUED) {
1736 conn->tmf_state = TMF_TIMEDOUT;
Erez Zilberbd2199d2009-06-15 22:11:10 -05001737 ISCSI_DBG_EH(session, "tmf timedout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001738 /* unblock eh_abort() */
1739 wake_up(&conn->ehwait);
1740 }
1741 spin_unlock(&session->lock);
1742}
1743
Mike Christie9c19a7d2008-05-21 15:54:09 -05001744static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
Mike Christief6d51802007-12-13 12:43:30 -06001745 struct iscsi_tm *hdr, int age,
1746 int timeout)
Mike Christie7996a772006-04-06 21:13:41 -05001747{
Mike Christie7996a772006-04-06 21:13:41 -05001748 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001749 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001750
Mike Christie9c19a7d2008-05-21 15:54:09 -05001751 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
Mike Christie843c0a82007-12-13 12:43:20 -06001752 NULL, 0);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001753 if (!task) {
Mike Christie6724add2007-08-15 01:38:30 -05001754 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05001755 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Mike Christie843c0a82007-12-13 12:43:20 -06001756 spin_lock_bh(&session->lock);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001757 ISCSI_DBG_EH(session, "tmf exec failure\n");
Mike Christie77a23c22007-05-30 12:57:18 -05001758 return -EPERM;
Mike Christie7996a772006-04-06 21:13:41 -05001759 }
Mike Christie843c0a82007-12-13 12:43:20 -06001760 conn->tmfcmd_pdus_cnt++;
Mike Christief6d51802007-12-13 12:43:30 -06001761 conn->tmf_timer.expires = timeout * HZ + jiffies;
Mike Christie843c0a82007-12-13 12:43:20 -06001762 conn->tmf_timer.function = iscsi_tmf_timedout;
1763 conn->tmf_timer.data = (unsigned long)conn;
1764 add_timer(&conn->tmf_timer);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001765 ISCSI_DBG_EH(session, "tmf set timeout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001766
Mike Christie7996a772006-04-06 21:13:41 -05001767 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05001768 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001769
1770 /*
1771 * block eh thread until:
1772 *
Mike Christie843c0a82007-12-13 12:43:20 -06001773 * 1) tmf response
1774 * 2) tmf timeout
Mike Christie7996a772006-04-06 21:13:41 -05001775 * 3) session is terminated or restarted or userspace has
1776 * given up on recovery
1777 */
Mike Christie843c0a82007-12-13 12:43:20 -06001778 wait_event_interruptible(conn->ehwait, age != session->age ||
Mike Christie7996a772006-04-06 21:13:41 -05001779 session->state != ISCSI_STATE_LOGGED_IN ||
Mike Christie843c0a82007-12-13 12:43:20 -06001780 conn->tmf_state != TMF_QUEUED);
Mike Christie7996a772006-04-06 21:13:41 -05001781 if (signal_pending(current))
1782 flush_signals(current);
Mike Christie843c0a82007-12-13 12:43:20 -06001783 del_timer_sync(&conn->tmf_timer);
1784
Mike Christie6724add2007-08-15 01:38:30 -05001785 mutex_lock(&session->eh_mutex);
Mike Christie77a23c22007-05-30 12:57:18 -05001786 spin_lock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001787 /* if the session drops it will clean up the task */
Mike Christie843c0a82007-12-13 12:43:20 -06001788 if (age != session->age ||
1789 session->state != ISCSI_STATE_LOGGED_IN)
1790 return -ENOTCONN;
Mike Christie7996a772006-04-06 21:13:41 -05001791 return 0;
1792}
1793
1794/*
Mike Christie843c0a82007-12-13 12:43:20 -06001795 * Fail commands. session lock held and recv side suspended and xmit
1796 * thread flushed
1797 */
Mike Christie3bbaaad2009-05-13 17:57:46 -05001798static void fail_scsi_tasks(struct iscsi_conn *conn, unsigned lun,
1799 int error)
Mike Christie843c0a82007-12-13 12:43:20 -06001800{
Mike Christie3bbaaad2009-05-13 17:57:46 -05001801 struct iscsi_task *task;
1802 int i;
Mike Christie843c0a82007-12-13 12:43:20 -06001803
Mike Christie3bbaaad2009-05-13 17:57:46 -05001804 for (i = 0; i < conn->session->cmds_max; i++) {
1805 task = conn->session->cmds[i];
1806 if (!task->sc || task->state == ISCSI_TASK_FREE)
1807 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001808
Mike Christie3bbaaad2009-05-13 17:57:46 -05001809 if (lun != -1 && lun != task->sc->device->lun)
1810 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001811
Mike Christie3bbaaad2009-05-13 17:57:46 -05001812 ISCSI_DBG_SESSION(conn->session,
1813 "failing sc %p itt 0x%x state %d\n",
1814 task->sc, task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05001815 fail_scsi_task(task, error);
Mike Christie843c0a82007-12-13 12:43:20 -06001816 }
1817}
1818
Mike Christie661134a2009-09-05 07:35:33 +05301819/**
1820 * iscsi_suspend_queue - suspend iscsi_queuecommand
1821 * @conn: iscsi conn to stop queueing IO on
1822 *
1823 * This grabs the session lock to make sure no one is in
1824 * xmit_task/queuecommand, and then sets suspend to prevent
1825 * new commands from being queued. This only needs to be called
1826 * by offload drivers that need to sync a path like ep disconnect
1827 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1828 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1829 */
1830void iscsi_suspend_queue(struct iscsi_conn *conn)
1831{
1832 spin_lock_bh(&conn->session->lock);
1833 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1834 spin_unlock_bh(&conn->session->lock);
1835}
1836EXPORT_SYMBOL_GPL(iscsi_suspend_queue);
1837
1838/**
1839 * iscsi_suspend_tx - suspend iscsi_data_xmit
1840 * @conn: iscsi conn tp stop processing IO on.
1841 *
1842 * This function sets the suspend bit to prevent iscsi_data_xmit
1843 * from sending new IO, and if work is queued on the xmit thread
1844 * it will wait for it to be completed.
1845 */
Mike Christieb40977d2008-05-21 15:54:03 -05001846void iscsi_suspend_tx(struct iscsi_conn *conn)
Mike Christie6724add2007-08-15 01:38:30 -05001847{
Mike Christie32ae7632009-03-05 14:46:03 -06001848 struct Scsi_Host *shost = conn->session->host;
1849 struct iscsi_host *ihost = shost_priv(shost);
1850
Mike Christie6724add2007-08-15 01:38:30 -05001851 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001852 if (ihost->workq)
Mike Christie32ae7632009-03-05 14:46:03 -06001853 flush_workqueue(ihost->workq);
Mike Christie6724add2007-08-15 01:38:30 -05001854}
Mike Christieb40977d2008-05-21 15:54:03 -05001855EXPORT_SYMBOL_GPL(iscsi_suspend_tx);
Mike Christie6724add2007-08-15 01:38:30 -05001856
1857static void iscsi_start_tx(struct iscsi_conn *conn)
1858{
1859 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001860 iscsi_conn_queue_work(conn);
Mike Christie6724add2007-08-15 01:38:30 -05001861}
1862
Mike Christie4c48a822009-05-13 17:57:45 -05001863/*
1864 * We want to make sure a ping is in flight. It has timed out.
1865 * And we are not busy processing a pdu that is making
1866 * progress but got started before the ping and is taking a while
1867 * to complete so the ping is just stuck behind it in a queue.
1868 */
1869static int iscsi_has_ping_timed_out(struct iscsi_conn *conn)
1870{
1871 if (conn->ping_task &&
1872 time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1873 (conn->ping_timeout * HZ), jiffies))
1874 return 1;
1875 else
1876 return 0;
1877}
1878
Mike Christied355e572009-06-15 22:11:08 -05001879static enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *sc)
Mike Christief6d51802007-12-13 12:43:30 -06001880{
Mike Christied355e572009-06-15 22:11:08 -05001881 enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED;
1882 struct iscsi_task *task = NULL;
Mike Christief6d51802007-12-13 12:43:30 -06001883 struct iscsi_cls_session *cls_session;
1884 struct iscsi_session *session;
1885 struct iscsi_conn *conn;
Mike Christief6d51802007-12-13 12:43:30 -06001886
Mike Christied355e572009-06-15 22:11:08 -05001887 cls_session = starget_to_session(scsi_target(sc->device));
Mike Christie75613522008-05-21 15:53:59 -05001888 session = cls_session->dd_data;
Mike Christief6d51802007-12-13 12:43:30 -06001889
Erez Zilberbd2199d2009-06-15 22:11:10 -05001890 ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc);
Mike Christief6d51802007-12-13 12:43:30 -06001891
1892 spin_lock(&session->lock);
1893 if (session->state != ISCSI_STATE_LOGGED_IN) {
1894 /*
1895 * We are probably in the middle of iscsi recovery so let
1896 * that complete and handle the error.
1897 */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001898 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001899 goto done;
1900 }
1901
1902 conn = session->leadconn;
1903 if (!conn) {
1904 /* In the middle of shuting down */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001905 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001906 goto done;
1907 }
1908
Mike Christied355e572009-06-15 22:11:08 -05001909 task = (struct iscsi_task *)sc->SCp.ptr;
1910 if (!task)
1911 goto done;
1912 /*
1913 * If we have sent (at least queued to the network layer) a pdu or
1914 * recvd one for the task since the last timeout ask for
1915 * more time. If on the next timeout we have not made progress
1916 * we can check if it is the task or connection when we send the
1917 * nop as a ping.
1918 */
1919 if (time_after_eq(task->last_xfer, task->last_timeout)) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05001920 ISCSI_DBG_EH(session, "Command making progress. Asking "
1921 "scsi-ml for more time to complete. "
1922 "Last data recv at %lu. Last timeout was at "
1923 "%lu\n.", task->last_xfer, task->last_timeout);
Mike Christied355e572009-06-15 22:11:08 -05001924 task->have_checked_conn = false;
1925 rc = BLK_EH_RESET_TIMER;
1926 goto done;
1927 }
1928
Mike Christief6d51802007-12-13 12:43:30 -06001929 if (!conn->recv_timeout && !conn->ping_timeout)
1930 goto done;
1931 /*
1932 * if the ping timedout then we are in the middle of cleaning up
1933 * and can let the iscsi eh handle it
1934 */
Mike Christie4c48a822009-05-13 17:57:45 -05001935 if (iscsi_has_ping_timed_out(conn)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07001936 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05001937 goto done;
1938 }
Mike Christied355e572009-06-15 22:11:08 -05001939
1940 /* Assumes nop timeout is shorter than scsi cmd timeout */
1941 if (task->have_checked_conn)
1942 goto done;
1943
Mike Christief6d51802007-12-13 12:43:30 -06001944 /*
Mike Christied355e572009-06-15 22:11:08 -05001945 * Checking the transport already or nop from a cmd timeout still
1946 * running
Mike Christief6d51802007-12-13 12:43:30 -06001947 */
Mike Christied355e572009-06-15 22:11:08 -05001948 if (conn->ping_task) {
1949 task->have_checked_conn = true;
Jens Axboe242f9dc2008-09-14 05:55:09 -07001950 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05001951 goto done;
1952 }
1953
Mike Christied355e572009-06-15 22:11:08 -05001954 /* Make sure there is a transport check done */
1955 iscsi_send_nopout(conn, NULL);
1956 task->have_checked_conn = true;
1957 rc = BLK_EH_RESET_TIMER;
1958
Mike Christief6d51802007-12-13 12:43:30 -06001959done:
Mike Christied355e572009-06-15 22:11:08 -05001960 if (task)
1961 task->last_timeout = jiffies;
Mike Christief6d51802007-12-13 12:43:30 -06001962 spin_unlock(&session->lock);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001963 ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ?
1964 "timer reset" : "nh");
Mike Christief6d51802007-12-13 12:43:30 -06001965 return rc;
1966}
1967
1968static void iscsi_check_transport_timeouts(unsigned long data)
1969{
1970 struct iscsi_conn *conn = (struct iscsi_conn *)data;
1971 struct iscsi_session *session = conn->session;
Mike Christie4cf10432008-05-07 20:43:52 -05001972 unsigned long recv_timeout, next_timeout = 0, last_recv;
Mike Christief6d51802007-12-13 12:43:30 -06001973
1974 spin_lock(&session->lock);
1975 if (session->state != ISCSI_STATE_LOGGED_IN)
1976 goto done;
1977
Mike Christie4cf10432008-05-07 20:43:52 -05001978 recv_timeout = conn->recv_timeout;
1979 if (!recv_timeout)
Mike Christief6d51802007-12-13 12:43:30 -06001980 goto done;
1981
Mike Christie4cf10432008-05-07 20:43:52 -05001982 recv_timeout *= HZ;
Mike Christief6d51802007-12-13 12:43:30 -06001983 last_recv = conn->last_recv;
Mike Christie4c48a822009-05-13 17:57:45 -05001984
1985 if (iscsi_has_ping_timed_out(conn)) {
Mike Christie322d7392008-01-31 13:36:52 -06001986 iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
Mike Christie4c48a822009-05-13 17:57:45 -05001987 "expired, recv timeout %d, last rx %lu, "
1988 "last ping %lu, now %lu\n",
1989 conn->ping_timeout, conn->recv_timeout,
1990 last_recv, conn->last_ping, jiffies);
Mike Christief6d51802007-12-13 12:43:30 -06001991 spin_unlock(&session->lock);
1992 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
1993 return;
1994 }
1995
Mike Christie4cf10432008-05-07 20:43:52 -05001996 if (time_before_eq(last_recv + recv_timeout, jiffies)) {
Mike Christiec8611f92008-05-08 20:15:34 -05001997 /* send a ping to try to provoke some traffic */
Mike Christie1b2c7af2009-03-05 14:45:58 -06001998 ISCSI_DBG_CONN(conn, "Sending nopout as ping\n");
Mike Christiec8611f92008-05-08 20:15:34 -05001999 iscsi_send_nopout(conn, NULL);
Mike Christie4cf10432008-05-07 20:43:52 -05002000 next_timeout = conn->last_ping + (conn->ping_timeout * HZ);
Mike Christiead294e92008-01-31 13:36:50 -06002001 } else
Mike Christie4cf10432008-05-07 20:43:52 -05002002 next_timeout = last_recv + recv_timeout;
Mike Christief6d51802007-12-13 12:43:30 -06002003
Mike Christie1b2c7af2009-03-05 14:45:58 -06002004 ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout);
Mike Christiead294e92008-01-31 13:36:50 -06002005 mod_timer(&conn->transport_timer, next_timeout);
Mike Christief6d51802007-12-13 12:43:30 -06002006done:
2007 spin_unlock(&session->lock);
2008}
2009
Mike Christie9c19a7d2008-05-21 15:54:09 -05002010static void iscsi_prep_abort_task_pdu(struct iscsi_task *task,
Mike Christie843c0a82007-12-13 12:43:20 -06002011 struct iscsi_tm *hdr)
2012{
2013 memset(hdr, 0, sizeof(*hdr));
2014 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2015 hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
2016 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie577577d2008-12-02 00:32:05 -06002017 memcpy(hdr->lun, task->lun, sizeof(hdr->lun));
2018 hdr->rtt = task->hdr_itt;
2019 hdr->refcmdsn = task->cmdsn;
Mike Christie843c0a82007-12-13 12:43:20 -06002020}
2021
Mike Christie7996a772006-04-06 21:13:41 -05002022int iscsi_eh_abort(struct scsi_cmnd *sc)
2023{
Mike Christie75613522008-05-21 15:53:59 -05002024 struct iscsi_cls_session *cls_session;
2025 struct iscsi_session *session;
Mike Christief47f2cf2006-08-31 18:09:33 -04002026 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002027 struct iscsi_task *task;
Mike Christie843c0a82007-12-13 12:43:20 -06002028 struct iscsi_tm *hdr;
2029 int rc, age;
Mike Christie7996a772006-04-06 21:13:41 -05002030
Mike Christie75613522008-05-21 15:53:59 -05002031 cls_session = starget_to_session(scsi_target(sc->device));
2032 session = cls_session->dd_data;
2033
Erez Zilberbd2199d2009-06-15 22:11:10 -05002034 ISCSI_DBG_EH(session, "aborting sc %p\n", sc);
Mike Christie4421c9e2009-05-13 17:57:50 -05002035
Mike Christie6724add2007-08-15 01:38:30 -05002036 mutex_lock(&session->eh_mutex);
2037 spin_lock_bh(&session->lock);
Mike Christief47f2cf2006-08-31 18:09:33 -04002038 /*
2039 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2040 * got the command.
2041 */
2042 if (!sc->SCp.ptr) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002043 ISCSI_DBG_EH(session, "sc never reached iscsi layer or "
2044 "it completed.\n");
Mike Christie6724add2007-08-15 01:38:30 -05002045 spin_unlock_bh(&session->lock);
2046 mutex_unlock(&session->eh_mutex);
Mike Christief47f2cf2006-08-31 18:09:33 -04002047 return SUCCESS;
2048 }
2049
Mike Christie7996a772006-04-06 21:13:41 -05002050 /*
2051 * If we are not logged in or we have started a new session
2052 * then let the host reset code handle this
2053 */
Mike Christie843c0a82007-12-13 12:43:20 -06002054 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
2055 sc->SCp.phase != session->age) {
2056 spin_unlock_bh(&session->lock);
2057 mutex_unlock(&session->eh_mutex);
Erez Zilberbd2199d2009-06-15 22:11:10 -05002058 ISCSI_DBG_EH(session, "failing abort due to dropped "
Mike Christie4421c9e2009-05-13 17:57:50 -05002059 "session.\n");
Mike Christie843c0a82007-12-13 12:43:20 -06002060 return FAILED;
2061 }
2062
2063 conn = session->leadconn;
2064 conn->eh_abort_cnt++;
2065 age = session->age;
2066
Mike Christie9c19a7d2008-05-21 15:54:09 -05002067 task = (struct iscsi_task *)sc->SCp.ptr;
Erez Zilberbd2199d2009-06-15 22:11:10 -05002068 ISCSI_DBG_EH(session, "aborting [sc %p itt 0x%x]\n",
2069 sc, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -05002070
Mike Christie9c19a7d2008-05-21 15:54:09 -05002071 /* task completed before time out */
2072 if (!task->sc) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002073 ISCSI_DBG_EH(session, "sc completed while abort in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002074 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002075 }
Mike Christie7996a772006-04-06 21:13:41 -05002076
Mike Christie9c19a7d2008-05-21 15:54:09 -05002077 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3cd5052009-05-13 17:57:49 -05002078 fail_scsi_task(task, DID_ABORT);
Mike Christie77a23c22007-05-30 12:57:18 -05002079 goto success;
2080 }
Mike Christie7996a772006-04-06 21:13:41 -05002081
Mike Christie843c0a82007-12-13 12:43:20 -06002082 /* only have one tmf outstanding at a time */
2083 if (conn->tmf_state != TMF_INITIAL)
Mike Christie7996a772006-04-06 21:13:41 -05002084 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06002085 conn->tmf_state = TMF_QUEUED;
Mike Christie7996a772006-04-06 21:13:41 -05002086
Mike Christie843c0a82007-12-13 12:43:20 -06002087 hdr = &conn->tmhdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002088 iscsi_prep_abort_task_pdu(task, hdr);
Mike Christie843c0a82007-12-13 12:43:20 -06002089
Mike Christie9c19a7d2008-05-21 15:54:09 -05002090 if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06002091 rc = FAILED;
2092 goto failed;
2093 }
2094
2095 switch (conn->tmf_state) {
2096 case TMF_SUCCESS:
Mike Christie77a23c22007-05-30 12:57:18 -05002097 spin_unlock_bh(&session->lock);
Mike Christie913e5bf2008-05-21 15:54:18 -05002098 /*
2099 * stop tx side incase the target had sent a abort rsp but
2100 * the initiator was still writing out data.
2101 */
Mike Christie6724add2007-08-15 01:38:30 -05002102 iscsi_suspend_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002103 /*
Mike Christie913e5bf2008-05-21 15:54:18 -05002104 * we do not stop the recv side because targets have been
2105 * good and have never sent us a successful tmf response
2106 * then sent more data for the cmd.
Mike Christie77a23c22007-05-30 12:57:18 -05002107 */
Mike Christie6187c242009-07-15 15:02:57 -05002108 spin_lock_bh(&session->lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05002109 fail_scsi_task(task, DID_ABORT);
Mike Christie843c0a82007-12-13 12:43:20 -06002110 conn->tmf_state = TMF_INITIAL;
Mike Christie6187c242009-07-15 15:02:57 -05002111 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002112 iscsi_start_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002113 goto success_unlocked;
Mike Christie843c0a82007-12-13 12:43:20 -06002114 case TMF_TIMEDOUT:
2115 spin_unlock_bh(&session->lock);
2116 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
2117 goto failed_unlocked;
2118 case TMF_NOT_FOUND:
2119 if (!sc->SCp.ptr) {
2120 conn->tmf_state = TMF_INITIAL;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002121 /* task completed before tmf abort response */
Erez Zilberbd2199d2009-06-15 22:11:10 -05002122 ISCSI_DBG_EH(session, "sc completed while abort in "
2123 "progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002124 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002125 }
2126 /* fall through */
2127 default:
Mike Christie843c0a82007-12-13 12:43:20 -06002128 conn->tmf_state = TMF_INITIAL;
2129 goto failed;
Mike Christie7996a772006-04-06 21:13:41 -05002130 }
2131
Mike Christie77a23c22007-05-30 12:57:18 -05002132success:
Mike Christie7996a772006-04-06 21:13:41 -05002133 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002134success_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002135 ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n",
2136 sc, task->itt);
Mike Christie6724add2007-08-15 01:38:30 -05002137 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002138 return SUCCESS;
2139
2140failed:
2141 spin_unlock_bh(&session->lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002142failed_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002143 ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc,
2144 task ? task->itt : 0);
Mike Christie6724add2007-08-15 01:38:30 -05002145 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002146 return FAILED;
2147}
2148EXPORT_SYMBOL_GPL(iscsi_eh_abort);
2149
Mike Christie843c0a82007-12-13 12:43:20 -06002150static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2151{
2152 memset(hdr, 0, sizeof(*hdr));
2153 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2154 hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2155 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2156 int_to_scsilun(sc->device->lun, (struct scsi_lun *)hdr->lun);
Mike Christief6d51802007-12-13 12:43:30 -06002157 hdr->rtt = RESERVED_ITT;
Mike Christie843c0a82007-12-13 12:43:20 -06002158}
2159
2160int iscsi_eh_device_reset(struct scsi_cmnd *sc)
2161{
Mike Christie75613522008-05-21 15:53:59 -05002162 struct iscsi_cls_session *cls_session;
2163 struct iscsi_session *session;
Mike Christie843c0a82007-12-13 12:43:20 -06002164 struct iscsi_conn *conn;
2165 struct iscsi_tm *hdr;
2166 int rc = FAILED;
2167
Mike Christie75613522008-05-21 15:53:59 -05002168 cls_session = starget_to_session(scsi_target(sc->device));
2169 session = cls_session->dd_data;
2170
Erez Zilberbd2199d2009-06-15 22:11:10 -05002171 ISCSI_DBG_EH(session, "LU Reset [sc %p lun %u]\n", sc, sc->device->lun);
Mike Christie843c0a82007-12-13 12:43:20 -06002172
2173 mutex_lock(&session->eh_mutex);
2174 spin_lock_bh(&session->lock);
2175 /*
2176 * Just check if we are not logged in. We cannot check for
2177 * the phase because the reset could come from a ioctl.
2178 */
2179 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2180 goto unlock;
2181 conn = session->leadconn;
2182
2183 /* only have one tmf outstanding at a time */
2184 if (conn->tmf_state != TMF_INITIAL)
2185 goto unlock;
2186 conn->tmf_state = TMF_QUEUED;
2187
2188 hdr = &conn->tmhdr;
2189 iscsi_prep_lun_reset_pdu(sc, hdr);
2190
Mike Christie9c19a7d2008-05-21 15:54:09 -05002191 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
Mike Christief6d51802007-12-13 12:43:30 -06002192 session->lu_reset_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06002193 rc = FAILED;
2194 goto unlock;
2195 }
2196
2197 switch (conn->tmf_state) {
2198 case TMF_SUCCESS:
2199 break;
2200 case TMF_TIMEDOUT:
2201 spin_unlock_bh(&session->lock);
2202 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
2203 goto done;
2204 default:
2205 conn->tmf_state = TMF_INITIAL;
2206 goto unlock;
2207 }
2208
2209 rc = SUCCESS;
2210 spin_unlock_bh(&session->lock);
2211
2212 iscsi_suspend_tx(conn);
Mike Christie913e5bf2008-05-21 15:54:18 -05002213
Mike Christiea3439142008-09-24 11:46:15 -05002214 spin_lock_bh(&session->lock);
Mike Christie3bbaaad2009-05-13 17:57:46 -05002215 fail_scsi_tasks(conn, sc->device->lun, DID_ERROR);
Mike Christie843c0a82007-12-13 12:43:20 -06002216 conn->tmf_state = TMF_INITIAL;
Mike Christiea3439142008-09-24 11:46:15 -05002217 spin_unlock_bh(&session->lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002218
2219 iscsi_start_tx(conn);
2220 goto done;
2221
2222unlock:
2223 spin_unlock_bh(&session->lock);
2224done:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002225 ISCSI_DBG_EH(session, "dev reset result = %s\n",
2226 rc == SUCCESS ? "SUCCESS" : "FAILED");
Mike Christie843c0a82007-12-13 12:43:20 -06002227 mutex_unlock(&session->eh_mutex);
2228 return rc;
2229}
2230EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
2231
Olaf Kirch63203772007-12-13 12:43:25 -06002232/*
2233 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2234 * should be accessed via kfifo_{get,put} on q->queue.
2235 * Optionally, the caller can obtain the array of object pointers
2236 * by passing in a non-NULL @items pointer
2237 */
Mike Christie7996a772006-04-06 21:13:41 -05002238int
Olaf Kirch63203772007-12-13 12:43:25 -06002239iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
Mike Christie7996a772006-04-06 21:13:41 -05002240{
Olaf Kirch63203772007-12-13 12:43:25 -06002241 int i, num_arrays = 1;
Mike Christie7996a772006-04-06 21:13:41 -05002242
Olaf Kirch63203772007-12-13 12:43:25 -06002243 memset(q, 0, sizeof(*q));
Mike Christie7996a772006-04-06 21:13:41 -05002244
2245 q->max = max;
Olaf Kirch63203772007-12-13 12:43:25 -06002246
2247 /* If the user passed an items pointer, he wants a copy of
2248 * the array. */
2249 if (items)
2250 num_arrays++;
2251 q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
2252 if (q->pool == NULL)
Jean Delvaref474a372009-03-05 14:45:55 -06002253 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002254
2255 q->queue = kfifo_init((void*)q->pool, max * sizeof(void*),
2256 GFP_KERNEL, NULL);
Jean Delvarefd6e1c12009-04-01 13:11:29 -05002257 if (IS_ERR(q->queue)) {
2258 q->queue = NULL;
Olaf Kirch63203772007-12-13 12:43:25 -06002259 goto enomem;
Jean Delvarefd6e1c12009-04-01 13:11:29 -05002260 }
Mike Christie7996a772006-04-06 21:13:41 -05002261
2262 for (i = 0; i < max; i++) {
Olaf Kirch63203772007-12-13 12:43:25 -06002263 q->pool[i] = kzalloc(item_size, GFP_KERNEL);
Mike Christie7996a772006-04-06 21:13:41 -05002264 if (q->pool[i] == NULL) {
Olaf Kirch63203772007-12-13 12:43:25 -06002265 q->max = i;
2266 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05002267 }
Mike Christie7996a772006-04-06 21:13:41 -05002268 __kfifo_put(q->queue, (void*)&q->pool[i], sizeof(void*));
2269 }
Olaf Kirch63203772007-12-13 12:43:25 -06002270
2271 if (items) {
2272 *items = q->pool + max;
2273 memcpy(*items, q->pool, max * sizeof(void *));
2274 }
2275
Mike Christie7996a772006-04-06 21:13:41 -05002276 return 0;
Olaf Kirch63203772007-12-13 12:43:25 -06002277
2278enomem:
2279 iscsi_pool_free(q);
2280 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002281}
2282EXPORT_SYMBOL_GPL(iscsi_pool_init);
2283
Olaf Kirch63203772007-12-13 12:43:25 -06002284void iscsi_pool_free(struct iscsi_pool *q)
Mike Christie7996a772006-04-06 21:13:41 -05002285{
2286 int i;
2287
2288 for (i = 0; i < q->max; i++)
Olaf Kirch63203772007-12-13 12:43:25 -06002289 kfree(q->pool[i]);
Jean Delvaref474a372009-03-05 14:45:55 -06002290 kfree(q->pool);
Mike Christie2f5899a2009-01-16 12:36:51 -06002291 kfree(q->queue);
Mike Christie7996a772006-04-06 21:13:41 -05002292}
2293EXPORT_SYMBOL_GPL(iscsi_pool_free);
2294
Mike Christiea4804cd2008-05-21 15:54:00 -05002295/**
2296 * iscsi_host_add - add host to system
2297 * @shost: scsi host
2298 * @pdev: parent device
2299 *
2300 * This should be called by partial offload and software iscsi drivers
2301 * to add a host to the system.
2302 */
2303int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev)
Mike Christie7996a772006-04-06 21:13:41 -05002304{
Mike Christie8e9a20c2008-06-16 10:11:33 -05002305 if (!shost->can_queue)
2306 shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX;
2307
Mike Christie4d108352009-03-05 14:46:04 -06002308 if (!shost->cmd_per_lun)
2309 shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN;
2310
Mike Christie308cec12009-02-06 12:06:20 -06002311 if (!shost->transportt->eh_timed_out)
2312 shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out;
Mike Christiea4804cd2008-05-21 15:54:00 -05002313 return scsi_add_host(shost, pdev);
2314}
2315EXPORT_SYMBOL_GPL(iscsi_host_add);
2316
2317/**
2318 * iscsi_host_alloc - allocate a host and driver data
2319 * @sht: scsi host template
2320 * @dd_data_size: driver host data size
Mike Christie32ae7632009-03-05 14:46:03 -06002321 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
Mike Christiea4804cd2008-05-21 15:54:00 -05002322 *
2323 * This should be called by partial offload and software iscsi drivers.
2324 * To access the driver specific memory use the iscsi_host_priv() macro.
2325 */
2326struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
Mike Christie4d108352009-03-05 14:46:04 -06002327 int dd_data_size, bool xmit_can_sleep)
Mike Christiea4804cd2008-05-21 15:54:00 -05002328{
2329 struct Scsi_Host *shost;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002330 struct iscsi_host *ihost;
Mike Christiea4804cd2008-05-21 15:54:00 -05002331
2332 shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size);
2333 if (!shost)
2334 return NULL;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002335 ihost = shost_priv(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002336
2337 if (xmit_can_sleep) {
2338 snprintf(ihost->workq_name, sizeof(ihost->workq_name),
2339 "iscsi_q_%d", shost->host_no);
2340 ihost->workq = create_singlethread_workqueue(ihost->workq_name);
2341 if (!ihost->workq)
2342 goto free_host;
2343 }
2344
Mike Christiee5bd7b52008-09-24 11:46:10 -05002345 spin_lock_init(&ihost->lock);
2346 ihost->state = ISCSI_HOST_SETUP;
2347 ihost->num_sessions = 0;
2348 init_waitqueue_head(&ihost->session_removal_wq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002349 return shost;
Mike Christie32ae7632009-03-05 14:46:03 -06002350
2351free_host:
2352 scsi_host_put(shost);
2353 return NULL;
Mike Christie75613522008-05-21 15:53:59 -05002354}
Mike Christiea4804cd2008-05-21 15:54:00 -05002355EXPORT_SYMBOL_GPL(iscsi_host_alloc);
Mike Christie75613522008-05-21 15:53:59 -05002356
Mike Christiee5bd7b52008-09-24 11:46:10 -05002357static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session)
2358{
Mike Christie40a06e72009-03-05 14:46:05 -06002359 iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002360}
2361
Mike Christiea4804cd2008-05-21 15:54:00 -05002362/**
2363 * iscsi_host_remove - remove host and sessions
2364 * @shost: scsi host
2365 *
Mike Christiee5bd7b52008-09-24 11:46:10 -05002366 * If there are any sessions left, this will initiate the removal and wait
2367 * for the completion.
Mike Christiea4804cd2008-05-21 15:54:00 -05002368 */
2369void iscsi_host_remove(struct Scsi_Host *shost)
2370{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002371 struct iscsi_host *ihost = shost_priv(shost);
2372 unsigned long flags;
2373
2374 spin_lock_irqsave(&ihost->lock, flags);
2375 ihost->state = ISCSI_HOST_REMOVED;
2376 spin_unlock_irqrestore(&ihost->lock, flags);
2377
2378 iscsi_host_for_each_session(shost, iscsi_notify_host_removed);
2379 wait_event_interruptible(ihost->session_removal_wq,
2380 ihost->num_sessions == 0);
2381 if (signal_pending(current))
2382 flush_signals(current);
2383
Mike Christiea4804cd2008-05-21 15:54:00 -05002384 scsi_remove_host(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002385 if (ihost->workq)
2386 destroy_workqueue(ihost->workq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002387}
2388EXPORT_SYMBOL_GPL(iscsi_host_remove);
2389
2390void iscsi_host_free(struct Scsi_Host *shost)
Mike Christie75613522008-05-21 15:53:59 -05002391{
2392 struct iscsi_host *ihost = shost_priv(shost);
2393
2394 kfree(ihost->netdev);
2395 kfree(ihost->hwaddress);
2396 kfree(ihost->initiatorname);
Mike Christiea4804cd2008-05-21 15:54:00 -05002397 scsi_host_put(shost);
Mike Christie75613522008-05-21 15:53:59 -05002398}
Mike Christiea4804cd2008-05-21 15:54:00 -05002399EXPORT_SYMBOL_GPL(iscsi_host_free);
Mike Christie75613522008-05-21 15:53:59 -05002400
Mike Christiee5bd7b52008-09-24 11:46:10 -05002401static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost)
2402{
2403 struct iscsi_host *ihost = shost_priv(shost);
2404 unsigned long flags;
2405
2406 shost = scsi_host_get(shost);
2407 if (!shost) {
2408 printk(KERN_ERR "Invalid state. Cannot notify host removal "
2409 "of session teardown event because host already "
2410 "removed.\n");
2411 return;
2412 }
2413
2414 spin_lock_irqsave(&ihost->lock, flags);
2415 ihost->num_sessions--;
2416 if (ihost->num_sessions == 0)
2417 wake_up(&ihost->session_removal_wq);
2418 spin_unlock_irqrestore(&ihost->lock, flags);
2419 scsi_host_put(shost);
2420}
2421
Mike Christie75613522008-05-21 15:53:59 -05002422/**
2423 * iscsi_session_setup - create iscsi cls session and host and session
2424 * @iscsit: iscsi transport template
2425 * @shost: scsi host
2426 * @cmds_max: session can queue
Mike Christie9c19a7d2008-05-21 15:54:09 -05002427 * @cmd_task_size: LLD task private data size
Mike Christie75613522008-05-21 15:53:59 -05002428 * @initial_cmdsn: initial CmdSN
2429 *
2430 * This can be used by software iscsi_transports that allocate
2431 * a session per scsi host.
Mike Christie3cf7b232008-05-21 15:54:17 -05002432 *
2433 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2434 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2435 * for nop handling and login/logout requests.
Mike Christie75613522008-05-21 15:53:59 -05002436 */
2437struct iscsi_cls_session *
2438iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302439 uint16_t cmds_max, int dd_size, int cmd_task_size,
Mike Christie79706342008-05-21 15:54:12 -05002440 uint32_t initial_cmdsn, unsigned int id)
Mike Christie75613522008-05-21 15:53:59 -05002441{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002442 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie75613522008-05-21 15:53:59 -05002443 struct iscsi_session *session;
2444 struct iscsi_cls_session *cls_session;
Mike Christie3cf7b232008-05-21 15:54:17 -05002445 int cmd_i, scsi_cmds, total_cmds = cmds_max;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002446 unsigned long flags;
2447
2448 spin_lock_irqsave(&ihost->lock, flags);
2449 if (ihost->state == ISCSI_HOST_REMOVED) {
2450 spin_unlock_irqrestore(&ihost->lock, flags);
2451 return NULL;
2452 }
2453 ihost->num_sessions++;
2454 spin_unlock_irqrestore(&ihost->lock, flags);
Mike Christie8e9a20c2008-06-16 10:11:33 -05002455
2456 if (!total_cmds)
2457 total_cmds = ISCSI_DEF_XMIT_CMDS_MAX;
Mike Christie3e5c28a2008-05-21 15:54:06 -05002458 /*
Mike Christie3cf7b232008-05-21 15:54:17 -05002459 * The iscsi layer needs some tasks for nop handling and tmfs,
2460 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2461 * + 1 command for scsi IO.
Mike Christie3e5c28a2008-05-21 15:54:06 -05002462 */
Mike Christie3cf7b232008-05-21 15:54:17 -05002463 if (total_cmds < ISCSI_TOTAL_CMDS_MIN) {
2464 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2465 "must be a power of two that is at least %d.\n",
2466 total_cmds, ISCSI_TOTAL_CMDS_MIN);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002467 goto dec_session_count;
Mike Christie15482712007-05-30 12:57:19 -05002468 }
Mike Christie3cf7b232008-05-21 15:54:17 -05002469
2470 if (total_cmds > ISCSI_TOTAL_CMDS_MAX) {
2471 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2472 "must be a power of 2 less than or equal to %d.\n",
2473 cmds_max, ISCSI_TOTAL_CMDS_MAX);
2474 total_cmds = ISCSI_TOTAL_CMDS_MAX;
2475 }
2476
2477 if (!is_power_of_2(total_cmds)) {
2478 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2479 "must be a power of 2.\n", total_cmds);
2480 total_cmds = rounddown_pow_of_two(total_cmds);
2481 if (total_cmds < ISCSI_TOTAL_CMDS_MIN)
2482 return NULL;
2483 printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n",
2484 total_cmds);
2485 }
2486 scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX;
Mike Christie15482712007-05-30 12:57:19 -05002487
Mike Christie5d91e202008-05-21 15:54:01 -05002488 cls_session = iscsi_alloc_session(shost, iscsit,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302489 sizeof(struct iscsi_session) +
2490 dd_size);
Mike Christie75613522008-05-21 15:53:59 -05002491 if (!cls_session)
Mike Christiee5bd7b52008-09-24 11:46:10 -05002492 goto dec_session_count;
Mike Christie75613522008-05-21 15:53:59 -05002493 session = cls_session->dd_data;
2494 session->cls_session = cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05002495 session->host = shost;
2496 session->state = ISCSI_STATE_FREE;
Mike Christief6d51802007-12-13 12:43:30 -06002497 session->fast_abort = 1;
Mike Christie4cd49ea2007-12-13 12:43:38 -06002498 session->lu_reset_timeout = 15;
2499 session->abort_timeout = 10;
Mike Christie3cf7b232008-05-21 15:54:17 -05002500 session->scsi_cmds_max = scsi_cmds;
2501 session->cmds_max = total_cmds;
Mike Christiee0726402007-07-26 12:46:48 -05002502 session->queued_cmdsn = session->cmdsn = initial_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002503 session->exp_cmdsn = initial_cmdsn + 1;
2504 session->max_cmdsn = initial_cmdsn + 1;
2505 session->max_r2t = 1;
2506 session->tt = iscsit;
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302507 session->dd_data = cls_session->dd_data + sizeof(*session);
Mike Christie6724add2007-08-15 01:38:30 -05002508 mutex_init(&session->eh_mutex);
Mike Christie75613522008-05-21 15:53:59 -05002509 spin_lock_init(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002510
2511 /* initialize SCSI PDU commands pool */
2512 if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
2513 (void***)&session->cmds,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002514 cmd_task_size + sizeof(struct iscsi_task)))
Mike Christie7996a772006-04-06 21:13:41 -05002515 goto cmdpool_alloc_fail;
2516
2517 /* pre-format cmds pool with ITT */
2518 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05002519 struct iscsi_task *task = session->cmds[cmd_i];
Mike Christie7996a772006-04-06 21:13:41 -05002520
Mike Christie9c19a7d2008-05-21 15:54:09 -05002521 if (cmd_task_size)
2522 task->dd_data = &task[1];
2523 task->itt = cmd_i;
Mike Christie3bbaaad2009-05-13 17:57:46 -05002524 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002525 INIT_LIST_HEAD(&task->running);
Mike Christie7996a772006-04-06 21:13:41 -05002526 }
2527
Mike Christief53a88d2006-06-28 12:00:27 -05002528 if (!try_module_get(iscsit->owner))
Mike Christie75613522008-05-21 15:53:59 -05002529 goto module_get_fail;
2530
Mike Christie79706342008-05-21 15:54:12 -05002531 if (iscsi_add_session(cls_session, id))
Mike Christief53a88d2006-06-28 12:00:27 -05002532 goto cls_session_fail;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002533
Mike Christie7996a772006-04-06 21:13:41 -05002534 return cls_session;
2535
2536cls_session_fail:
Mike Christie75613522008-05-21 15:53:59 -05002537 module_put(iscsit->owner);
2538module_get_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06002539 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002540cmdpool_alloc_fail:
Mike Christie75613522008-05-21 15:53:59 -05002541 iscsi_free_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002542dec_session_count:
2543 iscsi_host_dec_session_cnt(shost);
Mike Christie7996a772006-04-06 21:13:41 -05002544 return NULL;
2545}
2546EXPORT_SYMBOL_GPL(iscsi_session_setup);
2547
2548/**
2549 * iscsi_session_teardown - destroy session, host, and cls_session
Mike Christie75613522008-05-21 15:53:59 -05002550 * @cls_session: iscsi session
Mike Christie7996a772006-04-06 21:13:41 -05002551 *
Mike Christie75613522008-05-21 15:53:59 -05002552 * The driver must have called iscsi_remove_session before
2553 * calling this.
2554 */
Mike Christie7996a772006-04-06 21:13:41 -05002555void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
2556{
Mike Christie75613522008-05-21 15:53:59 -05002557 struct iscsi_session *session = cls_session->dd_data;
Mike Christie63f75cc2006-07-24 15:47:29 -05002558 struct module *owner = cls_session->transport->owner;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002559 struct Scsi_Host *shost = session->host;
Mike Christie7996a772006-04-06 21:13:41 -05002560
Olaf Kirch63203772007-12-13 12:43:25 -06002561 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002562
Mike Christieb2c64162007-05-30 12:57:16 -05002563 kfree(session->password);
2564 kfree(session->password_in);
2565 kfree(session->username);
2566 kfree(session->username_in);
Mike Christief3ff0c32006-07-24 15:47:50 -05002567 kfree(session->targetname);
Mike Christie88dfd342008-05-21 15:54:16 -05002568 kfree(session->initiatorname);
2569 kfree(session->ifacename);
Mike Christief3ff0c32006-07-24 15:47:50 -05002570
Mike Christie75613522008-05-21 15:53:59 -05002571 iscsi_destroy_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002572 iscsi_host_dec_session_cnt(shost);
Mike Christie63f75cc2006-07-24 15:47:29 -05002573 module_put(owner);
Mike Christie7996a772006-04-06 21:13:41 -05002574}
2575EXPORT_SYMBOL_GPL(iscsi_session_teardown);
2576
2577/**
2578 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2579 * @cls_session: iscsi_cls_session
Mike Christie5d91e202008-05-21 15:54:01 -05002580 * @dd_size: private driver data size
Mike Christie7996a772006-04-06 21:13:41 -05002581 * @conn_idx: cid
Mike Christie5d91e202008-05-21 15:54:01 -05002582 */
Mike Christie7996a772006-04-06 21:13:41 -05002583struct iscsi_cls_conn *
Mike Christie5d91e202008-05-21 15:54:01 -05002584iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
2585 uint32_t conn_idx)
Mike Christie7996a772006-04-06 21:13:41 -05002586{
Mike Christie75613522008-05-21 15:53:59 -05002587 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002588 struct iscsi_conn *conn;
2589 struct iscsi_cls_conn *cls_conn;
Mike Christied36ab6f2006-05-18 20:31:34 -05002590 char *data;
Mike Christie7996a772006-04-06 21:13:41 -05002591
Mike Christie5d91e202008-05-21 15:54:01 -05002592 cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size,
2593 conn_idx);
Mike Christie7996a772006-04-06 21:13:41 -05002594 if (!cls_conn)
2595 return NULL;
2596 conn = cls_conn->dd_data;
Mike Christie5d91e202008-05-21 15:54:01 -05002597 memset(conn, 0, sizeof(*conn) + dd_size);
Mike Christie7996a772006-04-06 21:13:41 -05002598
Mike Christie5d91e202008-05-21 15:54:01 -05002599 conn->dd_data = cls_conn->dd_data + sizeof(*conn);
Mike Christie7996a772006-04-06 21:13:41 -05002600 conn->session = session;
2601 conn->cls_conn = cls_conn;
2602 conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
2603 conn->id = conn_idx;
2604 conn->exp_statsn = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002605 conn->tmf_state = TMF_INITIAL;
Mike Christief6d51802007-12-13 12:43:30 -06002606
2607 init_timer(&conn->transport_timer);
2608 conn->transport_timer.data = (unsigned long)conn;
2609 conn->transport_timer.function = iscsi_check_transport_timeouts;
2610
Mike Christie843c0a82007-12-13 12:43:20 -06002611 INIT_LIST_HEAD(&conn->mgmtqueue);
Mike Christie3bbaaad2009-05-13 17:57:46 -05002612 INIT_LIST_HEAD(&conn->cmdqueue);
Mike Christie843c0a82007-12-13 12:43:20 -06002613 INIT_LIST_HEAD(&conn->requeue);
David Howellsc4028952006-11-22 14:57:56 +00002614 INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
Mike Christie7996a772006-04-06 21:13:41 -05002615
Mike Christie9c19a7d2008-05-21 15:54:09 -05002616 /* allocate login_task used for the login/text sequences */
Mike Christie7996a772006-04-06 21:13:41 -05002617 spin_lock_bh(&session->lock);
Mike Christie3e5c28a2008-05-21 15:54:06 -05002618 if (!__kfifo_get(session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002619 (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002620 sizeof(void*))) {
2621 spin_unlock_bh(&session->lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002622 goto login_task_alloc_fail;
Mike Christie7996a772006-04-06 21:13:41 -05002623 }
2624 spin_unlock_bh(&session->lock);
2625
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002626 data = (char *) __get_free_pages(GFP_KERNEL,
2627 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christied36ab6f2006-05-18 20:31:34 -05002628 if (!data)
Mike Christie9c19a7d2008-05-21 15:54:09 -05002629 goto login_task_data_alloc_fail;
2630 conn->login_task->data = conn->data = data;
Mike Christied36ab6f2006-05-18 20:31:34 -05002631
Mike Christie843c0a82007-12-13 12:43:20 -06002632 init_timer(&conn->tmf_timer);
Mike Christie7996a772006-04-06 21:13:41 -05002633 init_waitqueue_head(&conn->ehwait);
2634
2635 return cls_conn;
2636
Mike Christie9c19a7d2008-05-21 15:54:09 -05002637login_task_data_alloc_fail:
2638 __kfifo_put(session->cmdpool.queue, (void*)&conn->login_task,
Mike Christied36ab6f2006-05-18 20:31:34 -05002639 sizeof(void*));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002640login_task_alloc_fail:
Mike Christie7996a772006-04-06 21:13:41 -05002641 iscsi_destroy_conn(cls_conn);
2642 return NULL;
2643}
2644EXPORT_SYMBOL_GPL(iscsi_conn_setup);
2645
2646/**
2647 * iscsi_conn_teardown - teardown iscsi connection
2648 * cls_conn: iscsi class connection
2649 *
2650 * TODO: we may need to make this into a two step process
2651 * like scsi-mls remove + put host
2652 */
2653void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
2654{
2655 struct iscsi_conn *conn = cls_conn->dd_data;
2656 struct iscsi_session *session = conn->session;
2657 unsigned long flags;
2658
Mike Christief6d51802007-12-13 12:43:30 -06002659 del_timer_sync(&conn->transport_timer);
2660
Mike Christie7996a772006-04-06 21:13:41 -05002661 spin_lock_bh(&session->lock);
2662 conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
2663 if (session->leadconn == conn) {
2664 /*
2665 * leading connection? then give up on recovery.
2666 */
2667 session->state = ISCSI_STATE_TERMINATE;
2668 wake_up(&conn->ehwait);
2669 }
2670 spin_unlock_bh(&session->lock);
2671
Mike Christie7996a772006-04-06 21:13:41 -05002672 /*
2673 * Block until all in-progress commands for this connection
2674 * time out or fail.
2675 */
2676 for (;;) {
2677 spin_lock_irqsave(session->host->host_lock, flags);
2678 if (!session->host->host_busy) { /* OK for ERL == 0 */
2679 spin_unlock_irqrestore(session->host->host_lock, flags);
2680 break;
2681 }
2682 spin_unlock_irqrestore(session->host->host_lock, flags);
2683 msleep_interruptible(500);
Mike Christie322d7392008-01-31 13:36:52 -06002684 iscsi_conn_printk(KERN_INFO, conn, "iscsi conn_destroy(): "
2685 "host_busy %d host_failed %d\n",
2686 session->host->host_busy,
2687 session->host->host_failed);
Mike Christie7996a772006-04-06 21:13:41 -05002688 /*
2689 * force eh_abort() to unblock
2690 */
2691 wake_up(&conn->ehwait);
2692 }
2693
Mike Christie779ea122007-02-28 17:32:15 -06002694 /* flush queued up work because we free the connection below */
Mike Christie843c0a82007-12-13 12:43:20 -06002695 iscsi_suspend_tx(conn);
Mike Christie779ea122007-02-28 17:32:15 -06002696
Mike Christie7996a772006-04-06 21:13:41 -05002697 spin_lock_bh(&session->lock);
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002698 free_pages((unsigned long) conn->data,
2699 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christief3ff0c32006-07-24 15:47:50 -05002700 kfree(conn->persistent_address);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002701 __kfifo_put(session->cmdpool.queue, (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002702 sizeof(void*));
Mike Christiee0726402007-07-26 12:46:48 -05002703 if (session->leadconn == conn)
Mike Christie7996a772006-04-06 21:13:41 -05002704 session->leadconn = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05002705 spin_unlock_bh(&session->lock);
2706
Mike Christie7996a772006-04-06 21:13:41 -05002707 iscsi_destroy_conn(cls_conn);
2708}
2709EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
2710
2711int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
2712{
2713 struct iscsi_conn *conn = cls_conn->dd_data;
2714 struct iscsi_session *session = conn->session;
2715
Mike Christieffd04362006-08-31 18:09:24 -04002716 if (!session) {
Mike Christie322d7392008-01-31 13:36:52 -06002717 iscsi_conn_printk(KERN_ERR, conn,
2718 "can't start unbound connection\n");
Mike Christie7996a772006-04-06 21:13:41 -05002719 return -EPERM;
2720 }
2721
Mike Christiedb98ccd2006-08-31 18:09:31 -04002722 if ((session->imm_data_en || !session->initial_r2t_en) &&
2723 session->first_burst > session->max_burst) {
Mike Christie322d7392008-01-31 13:36:52 -06002724 iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
2725 "first_burst %d max_burst %d\n",
2726 session->first_burst, session->max_burst);
Mike Christieffd04362006-08-31 18:09:24 -04002727 return -EINVAL;
2728 }
2729
Mike Christief6d51802007-12-13 12:43:30 -06002730 if (conn->ping_timeout && !conn->recv_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06002731 iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
2732 "zero. Using 5 seconds\n.");
Mike Christief6d51802007-12-13 12:43:30 -06002733 conn->recv_timeout = 5;
2734 }
2735
2736 if (conn->recv_timeout && !conn->ping_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06002737 iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
2738 "zero. Using 5 seconds.\n");
Mike Christief6d51802007-12-13 12:43:30 -06002739 conn->ping_timeout = 5;
2740 }
2741
Mike Christie7996a772006-04-06 21:13:41 -05002742 spin_lock_bh(&session->lock);
2743 conn->c_stage = ISCSI_CONN_STARTED;
2744 session->state = ISCSI_STATE_LOGGED_IN;
Mike Christiee0726402007-07-26 12:46:48 -05002745 session->queued_cmdsn = session->cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002746
Mike Christief6d51802007-12-13 12:43:30 -06002747 conn->last_recv = jiffies;
2748 conn->last_ping = jiffies;
2749 if (conn->recv_timeout && conn->ping_timeout)
2750 mod_timer(&conn->transport_timer,
2751 jiffies + (conn->recv_timeout * HZ));
2752
Mike Christie7996a772006-04-06 21:13:41 -05002753 switch(conn->stop_stage) {
2754 case STOP_CONN_RECOVER:
2755 /*
2756 * unblock eh_abort() if it is blocked. re-try all
2757 * commands after successful recovery
2758 */
Mike Christie7996a772006-04-06 21:13:41 -05002759 conn->stop_stage = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002760 conn->tmf_state = TMF_INITIAL;
Mike Christie7996a772006-04-06 21:13:41 -05002761 session->age++;
Mike Christie8b1d0342008-01-31 13:36:53 -06002762 if (session->age == 16)
2763 session->age = 0;
Mike Christie6eabafb2008-01-31 13:36:43 -06002764 break;
Mike Christie7996a772006-04-06 21:13:41 -05002765 case STOP_CONN_TERM:
Mike Christie7996a772006-04-06 21:13:41 -05002766 conn->stop_stage = 0;
2767 break;
Mike Christie7996a772006-04-06 21:13:41 -05002768 default:
2769 break;
2770 }
2771 spin_unlock_bh(&session->lock);
2772
Mike Christie75613522008-05-21 15:53:59 -05002773 iscsi_unblock_session(session->cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06002774 wake_up(&conn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05002775 return 0;
2776}
2777EXPORT_SYMBOL_GPL(iscsi_conn_start);
2778
2779static void
Mike Christie3bbaaad2009-05-13 17:57:46 -05002780fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn)
Mike Christie7996a772006-04-06 21:13:41 -05002781{
Mike Christie3bbaaad2009-05-13 17:57:46 -05002782 struct iscsi_task *task;
Mike Christieb3cd5052009-05-13 17:57:49 -05002783 int i, state;
Mike Christie7996a772006-04-06 21:13:41 -05002784
Mike Christie3bbaaad2009-05-13 17:57:46 -05002785 for (i = 0; i < conn->session->cmds_max; i++) {
2786 task = conn->session->cmds[i];
2787 if (task->sc)
2788 continue;
2789
2790 if (task->state == ISCSI_TASK_FREE)
2791 continue;
2792
2793 ISCSI_DBG_SESSION(conn->session,
2794 "failing mgmt itt 0x%x state %d\n",
2795 task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05002796 state = ISCSI_TASK_ABRT_SESS_RECOV;
2797 if (task->state == ISCSI_TASK_PENDING)
2798 state = ISCSI_TASK_COMPLETED;
2799 iscsi_complete_task(task, state);
2800
Mike Christie7996a772006-04-06 21:13:41 -05002801 }
Mike Christie7996a772006-04-06 21:13:41 -05002802}
2803
Mike Christie656cffc2006-05-18 20:31:42 -05002804static void iscsi_start_session_recovery(struct iscsi_session *session,
2805 struct iscsi_conn *conn, int flag)
Mike Christie7996a772006-04-06 21:13:41 -05002806{
Mike Christieed2abc72006-05-02 19:46:40 -05002807 int old_stop_stage;
2808
Mike Christie6724add2007-08-15 01:38:30 -05002809 mutex_lock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002810 spin_lock_bh(&session->lock);
Mike Christieed2abc72006-05-02 19:46:40 -05002811 if (conn->stop_stage == STOP_CONN_TERM) {
Mike Christie7996a772006-04-06 21:13:41 -05002812 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002813 mutex_unlock(&session->eh_mutex);
2814 return;
2815 }
2816
2817 /*
Mike Christieed2abc72006-05-02 19:46:40 -05002818 * When this is called for the in_login state, we only want to clean
Mike Christie9c19a7d2008-05-21 15:54:09 -05002819 * up the login task and connection. We do not need to block and set
Mike Christie67a61112006-05-30 00:37:20 -05002820 * the recovery state again
Mike Christieed2abc72006-05-02 19:46:40 -05002821 */
Mike Christie67a61112006-05-30 00:37:20 -05002822 if (flag == STOP_CONN_TERM)
2823 session->state = ISCSI_STATE_TERMINATE;
2824 else if (conn->stop_stage != STOP_CONN_RECOVER)
2825 session->state = ISCSI_STATE_IN_RECOVERY;
Mike Christie26013ad2009-05-13 17:57:43 -05002826 spin_unlock_bh(&session->lock);
Mike Christieed2abc72006-05-02 19:46:40 -05002827
Mike Christie26013ad2009-05-13 17:57:43 -05002828 del_timer_sync(&conn->transport_timer);
2829 iscsi_suspend_tx(conn);
2830
2831 spin_lock_bh(&session->lock);
Mike Christieed2abc72006-05-02 19:46:40 -05002832 old_stop_stage = conn->stop_stage;
Mike Christie7996a772006-04-06 21:13:41 -05002833 conn->stop_stage = flag;
Mike Christie67a61112006-05-30 00:37:20 -05002834 conn->c_stage = ISCSI_CONN_STOPPED;
Mike Christie7996a772006-04-06 21:13:41 -05002835 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002836
Mike Christie7996a772006-04-06 21:13:41 -05002837 /*
2838 * for connection level recovery we should not calculate
2839 * header digest. conn->hdr_size used for optimization
2840 * in hdr_extract() and will be re-negotiated at
2841 * set_param() time.
2842 */
2843 if (flag == STOP_CONN_RECOVER) {
2844 conn->hdrdgst_en = 0;
2845 conn->datadgst_en = 0;
Mike Christie656cffc2006-05-18 20:31:42 -05002846 if (session->state == ISCSI_STATE_IN_RECOVERY &&
Mike Christie67a61112006-05-30 00:37:20 -05002847 old_stop_stage != STOP_CONN_RECOVER) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06002848 ISCSI_DBG_SESSION(session, "blocking session\n");
Mike Christie75613522008-05-21 15:53:59 -05002849 iscsi_block_session(session->cls_session);
Mike Christie67a61112006-05-30 00:37:20 -05002850 }
Mike Christie7996a772006-04-06 21:13:41 -05002851 }
Mike Christie656cffc2006-05-18 20:31:42 -05002852
Mike Christie656cffc2006-05-18 20:31:42 -05002853 /*
2854 * flush queues.
2855 */
2856 spin_lock_bh(&session->lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05002857 fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED);
Mike Christie3bbaaad2009-05-13 17:57:46 -05002858 fail_mgmt_tasks(session, conn);
Mike Christie656cffc2006-05-18 20:31:42 -05002859 spin_unlock_bh(&session->lock);
Mike Christie6724add2007-08-15 01:38:30 -05002860 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002861}
Mike Christie7996a772006-04-06 21:13:41 -05002862
2863void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
2864{
2865 struct iscsi_conn *conn = cls_conn->dd_data;
2866 struct iscsi_session *session = conn->session;
2867
2868 switch (flag) {
2869 case STOP_CONN_RECOVER:
2870 case STOP_CONN_TERM:
2871 iscsi_start_session_recovery(session, conn, flag);
Mike Christie8d2860b2006-05-02 19:46:47 -05002872 break;
Mike Christie7996a772006-04-06 21:13:41 -05002873 default:
Mike Christie322d7392008-01-31 13:36:52 -06002874 iscsi_conn_printk(KERN_ERR, conn,
2875 "invalid stop flag %d\n", flag);
Mike Christie7996a772006-04-06 21:13:41 -05002876 }
2877}
2878EXPORT_SYMBOL_GPL(iscsi_conn_stop);
2879
2880int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
2881 struct iscsi_cls_conn *cls_conn, int is_leading)
2882{
Mike Christie75613522008-05-21 15:53:59 -05002883 struct iscsi_session *session = cls_session->dd_data;
Mike Christie98644042006-10-16 18:09:39 -04002884 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002885
Mike Christie7996a772006-04-06 21:13:41 -05002886 spin_lock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002887 if (is_leading)
2888 session->leadconn = conn;
Mike Christie98644042006-10-16 18:09:39 -04002889 spin_unlock_bh(&session->lock);
Mike Christie7996a772006-04-06 21:13:41 -05002890
2891 /*
2892 * Unblock xmitworker(), Login Phase will pass through.
2893 */
2894 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
2895 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
2896 return 0;
2897}
2898EXPORT_SYMBOL_GPL(iscsi_conn_bind);
2899
Mike Christie5700b1a2009-05-13 17:57:40 -05002900static int iscsi_switch_str_param(char **param, char *new_val_buf)
2901{
2902 char *new_val;
2903
2904 if (*param) {
2905 if (!strcmp(*param, new_val_buf))
2906 return 0;
2907 }
2908
2909 new_val = kstrdup(new_val_buf, GFP_NOIO);
2910 if (!new_val)
2911 return -ENOMEM;
2912
2913 kfree(*param);
2914 *param = new_val;
2915 return 0;
2916}
Mike Christiea54a52c2006-06-28 12:00:23 -05002917
2918int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
2919 enum iscsi_param param, char *buf, int buflen)
2920{
2921 struct iscsi_conn *conn = cls_conn->dd_data;
2922 struct iscsi_session *session = conn->session;
2923 uint32_t value;
2924
2925 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06002926 case ISCSI_PARAM_FAST_ABORT:
2927 sscanf(buf, "%d", &session->fast_abort);
2928 break;
Mike Christief6d51802007-12-13 12:43:30 -06002929 case ISCSI_PARAM_ABORT_TMO:
2930 sscanf(buf, "%d", &session->abort_timeout);
2931 break;
2932 case ISCSI_PARAM_LU_RESET_TMO:
2933 sscanf(buf, "%d", &session->lu_reset_timeout);
2934 break;
2935 case ISCSI_PARAM_PING_TMO:
2936 sscanf(buf, "%d", &conn->ping_timeout);
2937 break;
2938 case ISCSI_PARAM_RECV_TMO:
2939 sscanf(buf, "%d", &conn->recv_timeout);
2940 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05002941 case ISCSI_PARAM_MAX_RECV_DLENGTH:
2942 sscanf(buf, "%d", &conn->max_recv_dlength);
2943 break;
2944 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
2945 sscanf(buf, "%d", &conn->max_xmit_dlength);
2946 break;
2947 case ISCSI_PARAM_HDRDGST_EN:
2948 sscanf(buf, "%d", &conn->hdrdgst_en);
2949 break;
2950 case ISCSI_PARAM_DATADGST_EN:
2951 sscanf(buf, "%d", &conn->datadgst_en);
2952 break;
2953 case ISCSI_PARAM_INITIAL_R2T_EN:
2954 sscanf(buf, "%d", &session->initial_r2t_en);
2955 break;
2956 case ISCSI_PARAM_MAX_R2T:
2957 sscanf(buf, "%d", &session->max_r2t);
2958 break;
2959 case ISCSI_PARAM_IMM_DATA_EN:
2960 sscanf(buf, "%d", &session->imm_data_en);
2961 break;
2962 case ISCSI_PARAM_FIRST_BURST:
2963 sscanf(buf, "%d", &session->first_burst);
2964 break;
2965 case ISCSI_PARAM_MAX_BURST:
2966 sscanf(buf, "%d", &session->max_burst);
2967 break;
2968 case ISCSI_PARAM_PDU_INORDER_EN:
2969 sscanf(buf, "%d", &session->pdu_inorder_en);
2970 break;
2971 case ISCSI_PARAM_DATASEQ_INORDER_EN:
2972 sscanf(buf, "%d", &session->dataseq_inorder_en);
2973 break;
2974 case ISCSI_PARAM_ERL:
2975 sscanf(buf, "%d", &session->erl);
2976 break;
2977 case ISCSI_PARAM_IFMARKER_EN:
2978 sscanf(buf, "%d", &value);
2979 BUG_ON(value);
2980 break;
2981 case ISCSI_PARAM_OFMARKER_EN:
2982 sscanf(buf, "%d", &value);
2983 BUG_ON(value);
2984 break;
2985 case ISCSI_PARAM_EXP_STATSN:
2986 sscanf(buf, "%u", &conn->exp_statsn);
2987 break;
Mike Christieb2c64162007-05-30 12:57:16 -05002988 case ISCSI_PARAM_USERNAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002989 return iscsi_switch_str_param(&session->username, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002990 case ISCSI_PARAM_USERNAME_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05002991 return iscsi_switch_str_param(&session->username_in, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002992 case ISCSI_PARAM_PASSWORD:
Mike Christie5700b1a2009-05-13 17:57:40 -05002993 return iscsi_switch_str_param(&session->password, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05002994 case ISCSI_PARAM_PASSWORD_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05002995 return iscsi_switch_str_param(&session->password_in, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05002996 case ISCSI_PARAM_TARGET_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05002997 return iscsi_switch_str_param(&session->targetname, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05002998 case ISCSI_PARAM_TPGT:
2999 sscanf(buf, "%d", &session->tpgt);
3000 break;
3001 case ISCSI_PARAM_PERSISTENT_PORT:
3002 sscanf(buf, "%d", &conn->persistent_port);
3003 break;
3004 case ISCSI_PARAM_PERSISTENT_ADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003005 return iscsi_switch_str_param(&conn->persistent_address, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003006 case ISCSI_PARAM_IFACE_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003007 return iscsi_switch_str_param(&session->ifacename, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003008 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003009 return iscsi_switch_str_param(&session->initiatorname, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003010 default:
3011 return -ENOSYS;
3012 }
3013
3014 return 0;
3015}
3016EXPORT_SYMBOL_GPL(iscsi_set_param);
3017
3018int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
3019 enum iscsi_param param, char *buf)
3020{
Mike Christie75613522008-05-21 15:53:59 -05003021 struct iscsi_session *session = cls_session->dd_data;
Mike Christiea54a52c2006-06-28 12:00:23 -05003022 int len;
3023
3024 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06003025 case ISCSI_PARAM_FAST_ABORT:
3026 len = sprintf(buf, "%d\n", session->fast_abort);
3027 break;
Mike Christief6d51802007-12-13 12:43:30 -06003028 case ISCSI_PARAM_ABORT_TMO:
3029 len = sprintf(buf, "%d\n", session->abort_timeout);
3030 break;
3031 case ISCSI_PARAM_LU_RESET_TMO:
3032 len = sprintf(buf, "%d\n", session->lu_reset_timeout);
3033 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003034 case ISCSI_PARAM_INITIAL_R2T_EN:
3035 len = sprintf(buf, "%d\n", session->initial_r2t_en);
3036 break;
3037 case ISCSI_PARAM_MAX_R2T:
3038 len = sprintf(buf, "%hu\n", session->max_r2t);
3039 break;
3040 case ISCSI_PARAM_IMM_DATA_EN:
3041 len = sprintf(buf, "%d\n", session->imm_data_en);
3042 break;
3043 case ISCSI_PARAM_FIRST_BURST:
3044 len = sprintf(buf, "%u\n", session->first_burst);
3045 break;
3046 case ISCSI_PARAM_MAX_BURST:
3047 len = sprintf(buf, "%u\n", session->max_burst);
3048 break;
3049 case ISCSI_PARAM_PDU_INORDER_EN:
3050 len = sprintf(buf, "%d\n", session->pdu_inorder_en);
3051 break;
3052 case ISCSI_PARAM_DATASEQ_INORDER_EN:
3053 len = sprintf(buf, "%d\n", session->dataseq_inorder_en);
3054 break;
3055 case ISCSI_PARAM_ERL:
3056 len = sprintf(buf, "%d\n", session->erl);
3057 break;
3058 case ISCSI_PARAM_TARGET_NAME:
3059 len = sprintf(buf, "%s\n", session->targetname);
3060 break;
3061 case ISCSI_PARAM_TPGT:
3062 len = sprintf(buf, "%d\n", session->tpgt);
3063 break;
Mike Christieb2c64162007-05-30 12:57:16 -05003064 case ISCSI_PARAM_USERNAME:
3065 len = sprintf(buf, "%s\n", session->username);
3066 break;
3067 case ISCSI_PARAM_USERNAME_IN:
3068 len = sprintf(buf, "%s\n", session->username_in);
3069 break;
3070 case ISCSI_PARAM_PASSWORD:
3071 len = sprintf(buf, "%s\n", session->password);
3072 break;
3073 case ISCSI_PARAM_PASSWORD_IN:
3074 len = sprintf(buf, "%s\n", session->password_in);
3075 break;
Mike Christie88dfd342008-05-21 15:54:16 -05003076 case ISCSI_PARAM_IFACE_NAME:
3077 len = sprintf(buf, "%s\n", session->ifacename);
3078 break;
3079 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003080 len = sprintf(buf, "%s\n", session->initiatorname);
Mike Christie88dfd342008-05-21 15:54:16 -05003081 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003082 default:
3083 return -ENOSYS;
3084 }
3085
3086 return len;
3087}
3088EXPORT_SYMBOL_GPL(iscsi_session_get_param);
3089
3090int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
3091 enum iscsi_param param, char *buf)
3092{
3093 struct iscsi_conn *conn = cls_conn->dd_data;
3094 int len;
3095
3096 switch(param) {
Mike Christief6d51802007-12-13 12:43:30 -06003097 case ISCSI_PARAM_PING_TMO:
3098 len = sprintf(buf, "%u\n", conn->ping_timeout);
3099 break;
3100 case ISCSI_PARAM_RECV_TMO:
3101 len = sprintf(buf, "%u\n", conn->recv_timeout);
3102 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003103 case ISCSI_PARAM_MAX_RECV_DLENGTH:
3104 len = sprintf(buf, "%u\n", conn->max_recv_dlength);
3105 break;
3106 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3107 len = sprintf(buf, "%u\n", conn->max_xmit_dlength);
3108 break;
3109 case ISCSI_PARAM_HDRDGST_EN:
3110 len = sprintf(buf, "%d\n", conn->hdrdgst_en);
3111 break;
3112 case ISCSI_PARAM_DATADGST_EN:
3113 len = sprintf(buf, "%d\n", conn->datadgst_en);
3114 break;
3115 case ISCSI_PARAM_IFMARKER_EN:
3116 len = sprintf(buf, "%d\n", conn->ifmarker_en);
3117 break;
3118 case ISCSI_PARAM_OFMARKER_EN:
3119 len = sprintf(buf, "%d\n", conn->ofmarker_en);
3120 break;
3121 case ISCSI_PARAM_EXP_STATSN:
3122 len = sprintf(buf, "%u\n", conn->exp_statsn);
3123 break;
3124 case ISCSI_PARAM_PERSISTENT_PORT:
3125 len = sprintf(buf, "%d\n", conn->persistent_port);
3126 break;
3127 case ISCSI_PARAM_PERSISTENT_ADDRESS:
3128 len = sprintf(buf, "%s\n", conn->persistent_address);
3129 break;
3130 default:
3131 return -ENOSYS;
3132 }
3133
3134 return len;
3135}
3136EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
3137
Mike Christie0801c242007-05-30 12:57:12 -05003138int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3139 char *buf)
3140{
Mike Christie75613522008-05-21 15:53:59 -05003141 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003142 int len;
3143
3144 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003145 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003146 len = sprintf(buf, "%s\n", ihost->netdev);
Mike Christied8196ed2007-05-30 12:57:25 -05003147 break;
Mike Christie0801c242007-05-30 12:57:12 -05003148 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003149 len = sprintf(buf, "%s\n", ihost->hwaddress);
Mike Christie0801c242007-05-30 12:57:12 -05003150 break;
Mike Christie8ad57812007-05-30 12:57:13 -05003151 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003152 len = sprintf(buf, "%s\n", ihost->initiatorname);
Mike Christie8ad57812007-05-30 12:57:13 -05003153 break;
Mike Christie75613522008-05-21 15:53:59 -05003154 case ISCSI_HOST_PARAM_IPADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003155 len = sprintf(buf, "%s\n", ihost->local_address);
Mike Christie88dfd342008-05-21 15:54:16 -05003156 break;
Mike Christie0801c242007-05-30 12:57:12 -05003157 default:
3158 return -ENOSYS;
3159 }
3160
3161 return len;
3162}
3163EXPORT_SYMBOL_GPL(iscsi_host_get_param);
3164
3165int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3166 char *buf, int buflen)
3167{
Mike Christie75613522008-05-21 15:53:59 -05003168 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003169
3170 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003171 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003172 return iscsi_switch_str_param(&ihost->netdev, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003173 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003174 return iscsi_switch_str_param(&ihost->hwaddress, buf);
Mike Christie8ad57812007-05-30 12:57:13 -05003175 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003176 return iscsi_switch_str_param(&ihost->initiatorname, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003177 default:
3178 return -ENOSYS;
3179 }
3180
3181 return 0;
3182}
3183EXPORT_SYMBOL_GPL(iscsi_host_set_param);
3184
Mike Christie7996a772006-04-06 21:13:41 -05003185MODULE_AUTHOR("Mike Christie");
3186MODULE_DESCRIPTION("iSCSI library functions");
3187MODULE_LICENSE("GPL");