blob: 0d8bc6c666508a3c1ee3ab8b6b3a14379c4526eb [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Paul Gortmakeracf3368f2011-05-27 09:47:43 -040029#include <linux/module.h>
Mike Christie8eb00532007-02-28 17:32:19 -060030#include <asm/unaligned.h>
Mike Christie7996a772006-04-06 21:13:41 -050031#include <net/tcp.h>
32#include <scsi/scsi_cmnd.h>
33#include <scsi/scsi_device.h>
34#include <scsi/scsi_eh.h>
35#include <scsi/scsi_tcq.h>
36#include <scsi/scsi_host.h>
37#include <scsi/scsi.h>
38#include <scsi/iscsi_proto.h>
39#include <scsi/scsi_transport.h>
40#include <scsi/scsi_transport_iscsi.h>
41#include <scsi/libiscsi.h>
42
Erez Zilberbd2199d2009-06-15 22:11:10 -050043static int iscsi_dbg_lib_conn;
44module_param_named(debug_libiscsi_conn, iscsi_dbg_lib_conn, int,
45 S_IRUGO | S_IWUSR);
46MODULE_PARM_DESC(debug_libiscsi_conn,
47 "Turn on debugging for connections in libiscsi module. "
48 "Set to 1 to turn on, and zero to turn off. Default is off.");
49
50static int iscsi_dbg_lib_session;
51module_param_named(debug_libiscsi_session, iscsi_dbg_lib_session, int,
52 S_IRUGO | S_IWUSR);
53MODULE_PARM_DESC(debug_libiscsi_session,
54 "Turn on debugging for sessions in libiscsi module. "
55 "Set to 1 to turn on, and zero to turn off. Default is off.");
56
57static int iscsi_dbg_lib_eh;
58module_param_named(debug_libiscsi_eh, iscsi_dbg_lib_eh, int,
59 S_IRUGO | S_IWUSR);
60MODULE_PARM_DESC(debug_libiscsi_eh,
61 "Turn on debugging for error handling in libiscsi module. "
62 "Set to 1 to turn on, and zero to turn off. Default is off.");
Mike Christie1b2c7af2009-03-05 14:45:58 -060063
64#define ISCSI_DBG_CONN(_conn, dbg_fmt, arg...) \
65 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050066 if (iscsi_dbg_lib_conn) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060067 iscsi_conn_printk(KERN_INFO, _conn, \
68 "%s " dbg_fmt, \
69 __func__, ##arg); \
70 } while (0);
71
72#define ISCSI_DBG_SESSION(_session, dbg_fmt, arg...) \
73 do { \
Erez Zilberbd2199d2009-06-15 22:11:10 -050074 if (iscsi_dbg_lib_session) \
75 iscsi_session_printk(KERN_INFO, _session, \
76 "%s " dbg_fmt, \
77 __func__, ##arg); \
78 } while (0);
79
80#define ISCSI_DBG_EH(_session, dbg_fmt, arg...) \
81 do { \
82 if (iscsi_dbg_lib_eh) \
Mike Christie1b2c7af2009-03-05 14:45:58 -060083 iscsi_session_printk(KERN_INFO, _session, \
84 "%s " dbg_fmt, \
85 __func__, ##arg); \
86 } while (0);
87
Mike Christie32ae7632009-03-05 14:46:03 -060088inline void iscsi_conn_queue_work(struct iscsi_conn *conn)
89{
90 struct Scsi_Host *shost = conn->session->host;
91 struct iscsi_host *ihost = shost_priv(shost);
92
Mike Christie1336aed2009-05-13 17:57:48 -050093 if (ihost->workq)
94 queue_work(ihost->workq, &conn->xmitwork);
Mike Christie32ae7632009-03-05 14:46:03 -060095}
96EXPORT_SYMBOL_GPL(iscsi_conn_queue_work);
97
Mike Christie4c0ba5d2009-09-05 07:34:23 +053098static void __iscsi_update_cmdsn(struct iscsi_session *session,
99 uint32_t exp_cmdsn, uint32_t max_cmdsn)
Mike Christie7996a772006-04-06 21:13:41 -0500100{
Mike Christie77a23c22007-05-30 12:57:18 -0500101 /*
102 * standard specifies this check for when to update expected and
103 * max sequence numbers
104 */
105 if (iscsi_sna_lt(max_cmdsn, exp_cmdsn - 1))
106 return;
107
108 if (exp_cmdsn != session->exp_cmdsn &&
109 !iscsi_sna_lt(exp_cmdsn, session->exp_cmdsn))
Mike Christie7996a772006-04-06 21:13:41 -0500110 session->exp_cmdsn = exp_cmdsn;
111
Mike Christie77a23c22007-05-30 12:57:18 -0500112 if (max_cmdsn != session->max_cmdsn &&
Mike Christie46a84c62014-02-07 00:41:39 -0600113 !iscsi_sna_lt(max_cmdsn, session->max_cmdsn))
Mike Christie77a23c22007-05-30 12:57:18 -0500114 session->max_cmdsn = max_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -0500115}
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530116
117void iscsi_update_cmdsn(struct iscsi_session *session, struct iscsi_nopin *hdr)
118{
119 __iscsi_update_cmdsn(session, be32_to_cpu(hdr->exp_cmdsn),
120 be32_to_cpu(hdr->max_cmdsn));
121}
Mike Christie77a23c22007-05-30 12:57:18 -0500122EXPORT_SYMBOL_GPL(iscsi_update_cmdsn);
Mike Christie7996a772006-04-06 21:13:41 -0500123
Mike Christie577577d2008-12-02 00:32:05 -0600124/**
125 * iscsi_prep_data_out_pdu - initialize Data-Out
126 * @task: scsi command task
127 * @r2t: R2T info
128 * @hdr: iscsi data in pdu
129 *
130 * Notes:
131 * Initialize Data-Out within this R2T sequence and finds
132 * proper data_offset within this SCSI command.
133 *
134 * This function is called with connection lock taken.
135 **/
136void iscsi_prep_data_out_pdu(struct iscsi_task *task, struct iscsi_r2t_info *r2t,
137 struct iscsi_data *hdr)
Mike Christie7996a772006-04-06 21:13:41 -0500138{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500139 struct iscsi_conn *conn = task->conn;
Mike Christie577577d2008-12-02 00:32:05 -0600140 unsigned int left = r2t->data_length - r2t->sent;
141
142 task->hdr_len = sizeof(struct iscsi_data);
Mike Christie7996a772006-04-06 21:13:41 -0500143
144 memset(hdr, 0, sizeof(struct iscsi_data));
Mike Christie577577d2008-12-02 00:32:05 -0600145 hdr->ttt = r2t->ttt;
146 hdr->datasn = cpu_to_be32(r2t->datasn);
147 r2t->datasn++;
Mike Christie7996a772006-04-06 21:13:41 -0500148 hdr->opcode = ISCSI_OP_SCSI_DATA_OUT;
Andy Grover55bdabd2011-06-16 15:57:09 -0700149 hdr->lun = task->lun;
Mike Christie577577d2008-12-02 00:32:05 -0600150 hdr->itt = task->hdr_itt;
151 hdr->exp_statsn = r2t->exp_statsn;
152 hdr->offset = cpu_to_be32(r2t->data_offset + r2t->sent);
153 if (left > conn->max_xmit_dlength) {
Mike Christie7996a772006-04-06 21:13:41 -0500154 hton24(hdr->dlength, conn->max_xmit_dlength);
Mike Christie577577d2008-12-02 00:32:05 -0600155 r2t->data_count = conn->max_xmit_dlength;
Mike Christie7996a772006-04-06 21:13:41 -0500156 hdr->flags = 0;
157 } else {
Mike Christie577577d2008-12-02 00:32:05 -0600158 hton24(hdr->dlength, left);
159 r2t->data_count = left;
Mike Christie7996a772006-04-06 21:13:41 -0500160 hdr->flags = ISCSI_FLAG_CMD_FINAL;
161 }
Mike Christie577577d2008-12-02 00:32:05 -0600162 conn->dataout_pdus_cnt++;
Mike Christie7996a772006-04-06 21:13:41 -0500163}
Mike Christie577577d2008-12-02 00:32:05 -0600164EXPORT_SYMBOL_GPL(iscsi_prep_data_out_pdu);
Mike Christie7996a772006-04-06 21:13:41 -0500165
Mike Christie9c19a7d2008-05-21 15:54:09 -0500166static int iscsi_add_hdr(struct iscsi_task *task, unsigned len)
Boaz Harrosh004d6532007-12-13 12:43:23 -0600167{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500168 unsigned exp_len = task->hdr_len + len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600169
Mike Christie9c19a7d2008-05-21 15:54:09 -0500170 if (exp_len > task->hdr_max) {
Boaz Harrosh004d6532007-12-13 12:43:23 -0600171 WARN_ON(1);
172 return -EINVAL;
173 }
174
175 WARN_ON(len & (ISCSI_PAD_LEN - 1)); /* caller must pad the AHS */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500176 task->hdr_len = exp_len;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600177 return 0;
178}
179
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500180/*
181 * make an extended cdb AHS
182 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500183static int iscsi_prep_ecdb_ahs(struct iscsi_task *task)
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500184{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500185 struct scsi_cmnd *cmd = task->sc;
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500186 unsigned rlen, pad_len;
187 unsigned short ahslength;
188 struct iscsi_ecdb_ahdr *ecdb_ahdr;
189 int rc;
190
Mike Christie9c19a7d2008-05-21 15:54:09 -0500191 ecdb_ahdr = iscsi_next_hdr(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500192 rlen = cmd->cmd_len - ISCSI_CDB_SIZE;
193
194 BUG_ON(rlen > sizeof(ecdb_ahdr->ecdb));
195 ahslength = rlen + sizeof(ecdb_ahdr->reserved);
196
197 pad_len = iscsi_padding(rlen);
198
Mike Christie9c19a7d2008-05-21 15:54:09 -0500199 rc = iscsi_add_hdr(task, sizeof(ecdb_ahdr->ahslength) +
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500200 sizeof(ecdb_ahdr->ahstype) + ahslength + pad_len);
201 if (rc)
202 return rc;
203
204 if (pad_len)
205 memset(&ecdb_ahdr->ecdb[rlen], 0, pad_len);
206
207 ecdb_ahdr->ahslength = cpu_to_be16(ahslength);
208 ecdb_ahdr->ahstype = ISCSI_AHSTYPE_CDB;
209 ecdb_ahdr->reserved = 0;
210 memcpy(ecdb_ahdr->ecdb, cmd->cmnd + ISCSI_CDB_SIZE, rlen);
211
Mike Christie1b2c7af2009-03-05 14:45:58 -0600212 ISCSI_DBG_SESSION(task->conn->session,
213 "iscsi_prep_ecdb_ahs: varlen_cdb_len %d "
214 "rlen %d pad_len %d ahs_length %d iscsi_headers_size "
215 "%u\n", cmd->cmd_len, rlen, pad_len, ahslength,
216 task->hdr_len);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500217 return 0;
218}
219
Mike Christie9c19a7d2008-05-21 15:54:09 -0500220static int iscsi_prep_bidi_ahs(struct iscsi_task *task)
Boaz Harroshc07d4442008-04-18 10:11:52 -0500221{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500222 struct scsi_cmnd *sc = task->sc;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500223 struct iscsi_rlength_ahdr *rlen_ahdr;
224 int rc;
225
Mike Christie9c19a7d2008-05-21 15:54:09 -0500226 rlen_ahdr = iscsi_next_hdr(task);
227 rc = iscsi_add_hdr(task, sizeof(*rlen_ahdr));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500228 if (rc)
229 return rc;
230
231 rlen_ahdr->ahslength =
232 cpu_to_be16(sizeof(rlen_ahdr->read_length) +
233 sizeof(rlen_ahdr->reserved));
234 rlen_ahdr->ahstype = ISCSI_AHSTYPE_RLENGTH;
235 rlen_ahdr->reserved = 0;
236 rlen_ahdr->read_length = cpu_to_be32(scsi_in(sc)->length);
237
Mike Christie1b2c7af2009-03-05 14:45:58 -0600238 ISCSI_DBG_SESSION(task->conn->session,
239 "bidi-in rlen_ahdr->read_length(%d) "
240 "rlen_ahdr->ahslength(%d)\n",
241 be32_to_cpu(rlen_ahdr->read_length),
242 be16_to_cpu(rlen_ahdr->ahslength));
Boaz Harroshc07d4442008-04-18 10:11:52 -0500243 return 0;
244}
245
Mike Christie7996a772006-04-06 21:13:41 -0500246/**
Mike Christie5d12c052009-11-11 16:34:32 -0600247 * iscsi_check_tmf_restrictions - check if a task is affected by TMF
248 * @task: iscsi task
249 * @opcode: opcode to check for
250 *
251 * During TMF a task has to be checked if it's affected.
252 * All unrelated I/O can be passed through, but I/O to the
253 * affected LUN should be restricted.
254 * If 'fast_abort' is set we won't be sending any I/O to the
255 * affected LUN.
256 * Otherwise the target is waiting for all TTTs to be completed,
257 * so we have to send all outstanding Data-Out PDUs to the target.
258 */
259static int iscsi_check_tmf_restrictions(struct iscsi_task *task, int opcode)
260{
261 struct iscsi_conn *conn = task->conn;
262 struct iscsi_tm *tmf = &conn->tmhdr;
Hannes Reinecke9cb78c12014-06-25 15:27:36 +0200263 u64 hdr_lun;
Mike Christie5d12c052009-11-11 16:34:32 -0600264
265 if (conn->tmf_state == TMF_INITIAL)
266 return 0;
267
268 if ((tmf->opcode & ISCSI_OPCODE_MASK) != ISCSI_OP_SCSI_TMFUNC)
269 return 0;
270
271 switch (ISCSI_TM_FUNC_VALUE(tmf)) {
272 case ISCSI_TM_FUNC_LOGICAL_UNIT_RESET:
273 /*
274 * Allow PDUs for unrelated LUNs
275 */
Andy Grover55bdabd2011-06-16 15:57:09 -0700276 hdr_lun = scsilun_to_int(&tmf->lun);
Mike Christie5d12c052009-11-11 16:34:32 -0600277 if (hdr_lun != task->sc->device->lun)
278 return 0;
Mike Christie3fe5ae82009-11-11 16:34:33 -0600279 /* fall through */
280 case ISCSI_TM_FUNC_TARGET_WARM_RESET:
Mike Christie5d12c052009-11-11 16:34:32 -0600281 /*
282 * Fail all SCSI cmd PDUs
283 */
284 if (opcode != ISCSI_OP_SCSI_DATA_OUT) {
285 iscsi_conn_printk(KERN_INFO, conn,
286 "task [op %x/%x itt "
Mike Christie3fe5ae82009-11-11 16:34:33 -0600287 "0x%x/0x%x] "
Mike Christie5d12c052009-11-11 16:34:32 -0600288 "rejected.\n",
289 task->hdr->opcode, opcode,
Mike Christie3fe5ae82009-11-11 16:34:33 -0600290 task->itt, task->hdr_itt);
Mike Christie5d12c052009-11-11 16:34:32 -0600291 return -EACCES;
292 }
293 /*
294 * And also all data-out PDUs in response to R2T
295 * if fast_abort is set.
296 */
297 if (conn->session->fast_abort) {
298 iscsi_conn_printk(KERN_INFO, conn,
299 "task [op %x/%x itt "
Mike Christie3fe5ae82009-11-11 16:34:33 -0600300 "0x%x/0x%x] fast abort.\n",
Mike Christie5d12c052009-11-11 16:34:32 -0600301 task->hdr->opcode, opcode,
Mike Christie3fe5ae82009-11-11 16:34:33 -0600302 task->itt, task->hdr_itt);
Mike Christie5d12c052009-11-11 16:34:32 -0600303 return -EACCES;
304 }
305 break;
306 case ISCSI_TM_FUNC_ABORT_TASK:
307 /*
308 * the caller has already checked if the task
309 * they want to abort was in the pending queue so if
310 * we are here the cmd pdu has gone out already, and
311 * we will only hit this for data-outs
312 */
313 if (opcode == ISCSI_OP_SCSI_DATA_OUT &&
314 task->hdr_itt == tmf->rtt) {
315 ISCSI_DBG_SESSION(conn->session,
316 "Preventing task %x/%x from sending "
317 "data-out due to abort task in "
318 "progress\n", task->itt,
319 task->hdr_itt);
320 return -EACCES;
321 }
322 break;
323 }
324
325 return 0;
326}
327
328/**
Mike Christie7996a772006-04-06 21:13:41 -0500329 * iscsi_prep_scsi_cmd_pdu - prep iscsi scsi cmd pdu
Mike Christie9c19a7d2008-05-21 15:54:09 -0500330 * @task: iscsi task
Mike Christie7996a772006-04-06 21:13:41 -0500331 *
332 * Prep basic iSCSI PDU fields for a scsi cmd pdu. The LLD should set
333 * fields like dlength or final based on how much data it sends
334 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500335static int iscsi_prep_scsi_cmd_pdu(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500336{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500337 struct iscsi_conn *conn = task->conn;
Mike Christie7996a772006-04-06 21:13:41 -0500338 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500339 struct scsi_cmnd *sc = task->sc;
Nicholas Bellinger12352182011-05-27 11:16:33 +0000340 struct iscsi_scsi_req *hdr;
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300341 unsigned hdrlength, cmd_len, transfer_length;
Mike Christie262ef632008-12-02 00:32:13 -0600342 itt_t itt;
Boaz Harrosh004d6532007-12-13 12:43:23 -0600343 int rc;
Mike Christie7996a772006-04-06 21:13:41 -0500344
Mike Christie5d12c052009-11-11 16:34:32 -0600345 rc = iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_CMD);
346 if (rc)
347 return rc;
348
Mike Christie184b57c2009-05-13 17:57:39 -0500349 if (conn->session->tt->alloc_pdu) {
350 rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_CMD);
351 if (rc)
352 return rc;
353 }
Nicholas Bellinger12352182011-05-27 11:16:33 +0000354 hdr = (struct iscsi_scsi_req *)task->hdr;
Mike Christie262ef632008-12-02 00:32:13 -0600355 itt = hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600356 memset(hdr, 0, sizeof(*hdr));
357
Mike Christie2ff79d52008-12-02 00:32:14 -0600358 if (session->tt->parse_pdu_itt)
359 hdr->itt = task->hdr_itt = itt;
360 else
361 hdr->itt = task->hdr_itt = build_itt(task->itt,
362 task->conn->session->age);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500363 task->hdr_len = 0;
364 rc = iscsi_add_hdr(task, sizeof(*hdr));
Boaz Harrosh004d6532007-12-13 12:43:23 -0600365 if (rc)
366 return rc;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600367 hdr->opcode = ISCSI_OP_SCSI_CMD;
368 hdr->flags = ISCSI_ATTR_SIMPLE;
Andy Grover55bdabd2011-06-16 15:57:09 -0700369 int_to_scsilun(sc->device->lun, &hdr->lun);
370 task->lun = hdr->lun;
Olaf Kircha8ac6312007-12-13 12:43:35 -0600371 hdr->exp_statsn = cpu_to_be32(conn->exp_statsn);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500372 cmd_len = sc->cmd_len;
373 if (cmd_len < ISCSI_CDB_SIZE)
374 memset(&hdr->cdb[cmd_len], 0, ISCSI_CDB_SIZE - cmd_len);
375 else if (cmd_len > ISCSI_CDB_SIZE) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500376 rc = iscsi_prep_ecdb_ahs(task);
Boaz Harrosh38d1c062008-04-18 10:11:51 -0500377 if (rc)
378 return rc;
379 cmd_len = ISCSI_CDB_SIZE;
380 }
381 memcpy(hdr->cdb, sc->cmnd, cmd_len);
Mike Christie7996a772006-04-06 21:13:41 -0500382
Mike Christie9c19a7d2008-05-21 15:54:09 -0500383 task->imm_count = 0;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500384 if (scsi_bidi_cmnd(sc)) {
385 hdr->flags |= ISCSI_FLAG_CMD_READ;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500386 rc = iscsi_prep_bidi_ahs(task);
Boaz Harroshc07d4442008-04-18 10:11:52 -0500387 if (rc)
388 return rc;
389 }
Sagi Grimberg55e51ed2014-03-05 19:43:49 +0200390
391 if (scsi_get_prot_op(sc) != SCSI_PROT_NORMAL)
392 task->protected = true;
393
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300394 transfer_length = scsi_transfer_length(sc);
395 hdr->data_length = cpu_to_be32(transfer_length);
Mike Christie7996a772006-04-06 21:13:41 -0500396 if (sc->sc_data_direction == DMA_TO_DEVICE) {
Mike Christie577577d2008-12-02 00:32:05 -0600397 struct iscsi_r2t_info *r2t = &task->unsol_r2t;
398
Mike Christie7996a772006-04-06 21:13:41 -0500399 hdr->flags |= ISCSI_FLAG_CMD_WRITE;
400 /*
401 * Write counters:
402 *
403 * imm_count bytes to be sent right after
404 * SCSI PDU Header
405 *
406 * unsol_count bytes(as Data-Out) to be sent
407 * without R2T ack right after
408 * immediate data
409 *
Mike Christie577577d2008-12-02 00:32:05 -0600410 * r2t data_length bytes to be sent via R2T ack's
Mike Christie7996a772006-04-06 21:13:41 -0500411 *
412 * pad_count bytes to be sent as zero-padding
413 */
Mike Christie577577d2008-12-02 00:32:05 -0600414 memset(r2t, 0, sizeof(*r2t));
Mike Christie7996a772006-04-06 21:13:41 -0500415
416 if (session->imm_data_en) {
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300417 if (transfer_length >= session->first_burst)
Mike Christie9c19a7d2008-05-21 15:54:09 -0500418 task->imm_count = min(session->first_burst,
Mike Christie7996a772006-04-06 21:13:41 -0500419 conn->max_xmit_dlength);
420 else
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300421 task->imm_count = min(transfer_length,
422 conn->max_xmit_dlength);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500423 hton24(hdr->dlength, task->imm_count);
Mike Christie7996a772006-04-06 21:13:41 -0500424 } else
Olaf Kircha8ac6312007-12-13 12:43:35 -0600425 zero_data(hdr->dlength);
Mike Christie7996a772006-04-06 21:13:41 -0500426
Mike Christieffd04362006-08-31 18:09:24 -0400427 if (!session->initial_r2t_en) {
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300428 r2t->data_length = min(session->first_burst,
429 transfer_length) -
Mike Christie577577d2008-12-02 00:32:05 -0600430 task->imm_count;
431 r2t->data_offset = task->imm_count;
432 r2t->ttt = cpu_to_be32(ISCSI_RESERVED_TAG);
433 r2t->exp_statsn = cpu_to_be32(conn->exp_statsn);
Mike Christieffd04362006-08-31 18:09:24 -0400434 }
435
Mike Christie577577d2008-12-02 00:32:05 -0600436 if (!task->unsol_r2t.data_length)
Mike Christie7996a772006-04-06 21:13:41 -0500437 /* No unsolicit Data-Out's */
Olaf Kircha8ac6312007-12-13 12:43:35 -0600438 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Mike Christie7996a772006-04-06 21:13:41 -0500439 } else {
Mike Christie7996a772006-04-06 21:13:41 -0500440 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
441 zero_data(hdr->dlength);
442
443 if (sc->sc_data_direction == DMA_FROM_DEVICE)
444 hdr->flags |= ISCSI_FLAG_CMD_READ;
445 }
446
Boaz Harrosh004d6532007-12-13 12:43:23 -0600447 /* calculate size of additional header segments (AHSs) */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500448 hdrlength = task->hdr_len - sizeof(*hdr);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600449
450 WARN_ON(hdrlength & (ISCSI_PAD_LEN-1));
451 hdrlength /= ISCSI_PAD_LEN;
452
453 WARN_ON(hdrlength >= 256);
454 hdr->hlength = hdrlength & 0xFF;
Mike Christie96b1f962010-04-24 16:21:19 -0500455 hdr->cmdsn = task->cmdsn = cpu_to_be32(session->cmdsn);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600456
Mike Christie577577d2008-12-02 00:32:05 -0600457 if (session->tt->init_task && session->tt->init_task(task))
Mike Christie052d0142008-05-21 15:54:05 -0500458 return -EIO;
459
Mike Christie9c19a7d2008-05-21 15:54:09 -0500460 task->state = ISCSI_TASK_RUNNING;
Mike Christied3305f32009-08-20 15:10:58 -0500461 session->cmdsn++;
Mike Christie77a23c22007-05-30 12:57:18 -0500462
Olaf Kircha8ac6312007-12-13 12:43:35 -0600463 conn->scsicmd_pdus_cnt++;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600464 ISCSI_DBG_SESSION(session, "iscsi prep [%s cid %d sc %p cdb 0x%x "
465 "itt 0x%x len %d bidi_len %d cmdsn %d win %d]\n",
466 scsi_bidi_cmnd(sc) ? "bidirectional" :
467 sc->sc_data_direction == DMA_TO_DEVICE ?
468 "write" : "read", conn->id, sc, sc->cmnd[0],
Sagi Grimbergd77e6532014-06-11 12:09:58 +0300469 task->itt, transfer_length,
Mike Christie1b2c7af2009-03-05 14:45:58 -0600470 scsi_bidi_cmnd(sc) ? scsi_in(sc)->length : 0,
471 session->cmdsn,
472 session->max_cmdsn - session->exp_cmdsn + 1);
Boaz Harrosh004d6532007-12-13 12:43:23 -0600473 return 0;
Mike Christie7996a772006-04-06 21:13:41 -0500474}
Mike Christie7996a772006-04-06 21:13:41 -0500475
476/**
Mike Christie3bbaaad2009-05-13 17:57:46 -0500477 * iscsi_free_task - free a task
Mike Christie9c19a7d2008-05-21 15:54:09 -0500478 * @task: iscsi cmd task
Mike Christie7996a772006-04-06 21:13:41 -0500479 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600480 * Must be called with session back_lock.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500481 * This function returns the scsi command to scsi-ml or cleans
482 * up mgmt tasks then returns the task to the pool.
Mike Christie7996a772006-04-06 21:13:41 -0500483 */
Mike Christie3bbaaad2009-05-13 17:57:46 -0500484static void iscsi_free_task(struct iscsi_task *task)
Mike Christie7996a772006-04-06 21:13:41 -0500485{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500486 struct iscsi_conn *conn = task->conn;
Mike Christiec1635cb2007-12-13 12:43:33 -0600487 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500488 struct scsi_cmnd *sc = task->sc;
Mike Christief41d4722010-12-31 02:22:21 -0600489 int oldstate = task->state;
Mike Christie7996a772006-04-06 21:13:41 -0500490
Mike Christie4421c9e2009-05-13 17:57:50 -0500491 ISCSI_DBG_SESSION(session, "freeing task itt 0x%x state %d sc %p\n",
492 task->itt, task->state, task->sc);
493
Mike Christie577577d2008-12-02 00:32:05 -0600494 session->tt->cleanup_task(task);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500495 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500496 task->sc = NULL;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500497 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -0500498 * login task is preallocated so do not free
Mike Christie3e5c28a2008-05-21 15:54:06 -0500499 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500500 if (conn->login_task == task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500501 return;
502
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800503 kfifo_in(&session->cmdpool.queue, (void*)&task, sizeof(void*));
Mike Christie052d0142008-05-21 15:54:05 -0500504
Mike Christie3e5c28a2008-05-21 15:54:06 -0500505 if (sc) {
Mike Christie3e5c28a2008-05-21 15:54:06 -0500506 /* SCSI eh reuses commands to verify us */
507 sc->SCp.ptr = NULL;
508 /*
Mike Christief41d4722010-12-31 02:22:21 -0600509 * queue command may call this to free the task, so
510 * it will decide how to return sc to scsi-ml.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500511 */
Mike Christief41d4722010-12-31 02:22:21 -0600512 if (oldstate != ISCSI_TASK_REQUEUE_SCSIQ)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500513 sc->scsi_done(sc);
514 }
Mike Christie7996a772006-04-06 21:13:41 -0500515}
516
Mike Christie913e5bf2008-05-21 15:54:18 -0500517void __iscsi_get_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400518{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500519 atomic_inc(&task->refcount);
Mike Christie60ecebf2006-08-31 18:09:25 -0400520}
Mike Christie913e5bf2008-05-21 15:54:18 -0500521EXPORT_SYMBOL_GPL(__iscsi_get_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400522
Eddie Wai8eea2f52010-11-23 15:29:21 -0800523void __iscsi_put_task(struct iscsi_task *task)
Mike Christie60ecebf2006-08-31 18:09:25 -0400524{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500525 if (atomic_dec_and_test(&task->refcount))
Mike Christie3bbaaad2009-05-13 17:57:46 -0500526 iscsi_free_task(task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400527}
Eddie Wai8eea2f52010-11-23 15:29:21 -0800528EXPORT_SYMBOL_GPL(__iscsi_put_task);
Mike Christie60ecebf2006-08-31 18:09:25 -0400529
Mike Christie9c19a7d2008-05-21 15:54:09 -0500530void iscsi_put_task(struct iscsi_task *task)
Mike Christie3e5c28a2008-05-21 15:54:06 -0500531{
Mike Christie9c19a7d2008-05-21 15:54:09 -0500532 struct iscsi_session *session = task->conn->session;
Mike Christie3e5c28a2008-05-21 15:54:06 -0500533
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600534 /* regular RX path uses back_lock */
535 spin_lock_bh(&session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500536 __iscsi_put_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600537 spin_unlock_bh(&session->back_lock);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500538}
Mike Christie9c19a7d2008-05-21 15:54:09 -0500539EXPORT_SYMBOL_GPL(iscsi_put_task);
Mike Christie3e5c28a2008-05-21 15:54:06 -0500540
Mike Christie3bbaaad2009-05-13 17:57:46 -0500541/**
542 * iscsi_complete_task - finish a task
543 * @task: iscsi cmd task
Mike Christieb3cd5052009-05-13 17:57:49 -0500544 * @state: state to complete task with
Mike Christie3bbaaad2009-05-13 17:57:46 -0500545 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600546 * Must be called with session back_lock.
Mike Christieb3a7ea82007-12-13 12:43:26 -0600547 */
Mike Christieb3cd5052009-05-13 17:57:49 -0500548static void iscsi_complete_task(struct iscsi_task *task, int state)
Mike Christieb3a7ea82007-12-13 12:43:26 -0600549{
Mike Christie3bbaaad2009-05-13 17:57:46 -0500550 struct iscsi_conn *conn = task->conn;
551
Mike Christie4421c9e2009-05-13 17:57:50 -0500552 ISCSI_DBG_SESSION(conn->session,
553 "complete task itt 0x%x state %d sc %p\n",
554 task->itt, task->state, task->sc);
Mike Christieb3cd5052009-05-13 17:57:49 -0500555 if (task->state == ISCSI_TASK_COMPLETED ||
556 task->state == ISCSI_TASK_ABRT_TMF ||
Mike Christief41d4722010-12-31 02:22:21 -0600557 task->state == ISCSI_TASK_ABRT_SESS_RECOV ||
558 task->state == ISCSI_TASK_REQUEUE_SCSIQ)
Mike Christie3bbaaad2009-05-13 17:57:46 -0500559 return;
560 WARN_ON_ONCE(task->state == ISCSI_TASK_FREE);
Mike Christieb3cd5052009-05-13 17:57:49 -0500561 task->state = state;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500562
563 if (!list_empty(&task->running))
564 list_del_init(&task->running);
565
566 if (conn->task == task)
567 conn->task = NULL;
568
569 if (conn->ping_task == task)
570 conn->ping_task = NULL;
571
572 /* release get from queueing */
573 __iscsi_put_task(task);
574}
575
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530576/**
577 * iscsi_complete_scsi_task - finish scsi task normally
578 * @task: iscsi task for scsi cmd
579 * @exp_cmdsn: expected cmd sn in cpu format
580 * @max_cmdsn: max cmd sn in cpu format
581 *
582 * This is used when drivers do not need or cannot perform
583 * lower level pdu processing.
584 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600585 * Called with session back_lock
Mike Christie4c0ba5d2009-09-05 07:34:23 +0530586 */
587void iscsi_complete_scsi_task(struct iscsi_task *task,
588 uint32_t exp_cmdsn, uint32_t max_cmdsn)
589{
590 struct iscsi_conn *conn = task->conn;
591
592 ISCSI_DBG_SESSION(conn->session, "[itt 0x%x]\n", task->itt);
593
594 conn->last_recv = jiffies;
595 __iscsi_update_cmdsn(conn->session, exp_cmdsn, max_cmdsn);
596 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
597}
598EXPORT_SYMBOL_GPL(iscsi_complete_scsi_task);
599
600
Mike Christie3bbaaad2009-05-13 17:57:46 -0500601/*
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600602 * session back_lock must be held and if not called for a task that is
Mike Christie3bbaaad2009-05-13 17:57:46 -0500603 * still pending or from the xmit thread, then xmit thread must
604 * be suspended.
605 */
606static void fail_scsi_task(struct iscsi_task *task, int err)
607{
608 struct iscsi_conn *conn = task->conn;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600609 struct scsi_cmnd *sc;
Mike Christieb3cd5052009-05-13 17:57:49 -0500610 int state;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600611
Mike Christie3bbaaad2009-05-13 17:57:46 -0500612 /*
613 * if a command completes and we get a successful tmf response
614 * we will hit this because the scsi eh abort code does not take
615 * a ref to the task.
616 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500617 sc = task->sc;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600618 if (!sc)
619 return;
620
Mike Christieb3cd5052009-05-13 17:57:49 -0500621 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3a7ea82007-12-13 12:43:26 -0600622 /*
623 * cmd never made it to the xmit thread, so we should not count
624 * the cmd in the sequencing
625 */
626 conn->session->queued_cmdsn--;
Mike Christieb3cd5052009-05-13 17:57:49 -0500627 /* it was never sent so just complete like normal */
628 state = ISCSI_TASK_COMPLETED;
629 } else if (err == DID_TRANSPORT_DISRUPTED)
630 state = ISCSI_TASK_ABRT_SESS_RECOV;
631 else
632 state = ISCSI_TASK_ABRT_TMF;
Mike Christieb3a7ea82007-12-13 12:43:26 -0600633
Mike Christieb3cd5052009-05-13 17:57:49 -0500634 sc->result = err << 16;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500635 if (!scsi_bidi_cmnd(sc))
636 scsi_set_resid(sc, scsi_bufflen(sc));
637 else {
638 scsi_out(sc)->resid = scsi_out(sc)->length;
639 scsi_in(sc)->resid = scsi_in(sc)->length;
640 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500641
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600642 /* regular RX path uses back_lock */
643 spin_lock_bh(&conn->session->back_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -0500644 iscsi_complete_task(task, state);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600645 spin_unlock_bh(&conn->session->back_lock);
Mike Christieb3a7ea82007-12-13 12:43:26 -0600646}
647
Mike Christie3e5c28a2008-05-21 15:54:06 -0500648static int iscsi_prep_mgmt_task(struct iscsi_conn *conn,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500649 struct iscsi_task *task)
Mike Christie052d0142008-05-21 15:54:05 -0500650{
651 struct iscsi_session *session = conn->session;
Mike Christie577577d2008-12-02 00:32:05 -0600652 struct iscsi_hdr *hdr = task->hdr;
Mike Christie052d0142008-05-21 15:54:05 -0500653 struct iscsi_nopout *nop = (struct iscsi_nopout *)hdr;
Mike Christie4f704dc2009-11-11 16:34:31 -0600654 uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Mike Christie052d0142008-05-21 15:54:05 -0500655
656 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
657 return -ENOTCONN;
658
Mike Christie4f704dc2009-11-11 16:34:31 -0600659 if (opcode != ISCSI_OP_LOGIN && opcode != ISCSI_OP_TEXT)
Mike Christie052d0142008-05-21 15:54:05 -0500660 nop->exp_statsn = cpu_to_be32(conn->exp_statsn);
661 /*
662 * pre-format CmdSN for outgoing PDU.
663 */
664 nop->cmdsn = cpu_to_be32(session->cmdsn);
665 if (hdr->itt != RESERVED_ITT) {
Mike Christie052d0142008-05-21 15:54:05 -0500666 /*
Mike Christie4f704dc2009-11-11 16:34:31 -0600667 * TODO: We always use immediate for normal session pdus.
Mike Christie052d0142008-05-21 15:54:05 -0500668 * If we start to send tmfs or nops as non-immediate then
669 * we should start checking the cmdsn numbers for mgmt tasks.
Mike Christie4f704dc2009-11-11 16:34:31 -0600670 *
671 * During discovery sessions iscsid sends TEXT as non immediate,
672 * but we always only send one PDU at a time.
Mike Christie052d0142008-05-21 15:54:05 -0500673 */
674 if (conn->c_stage == ISCSI_CONN_STARTED &&
675 !(hdr->opcode & ISCSI_OP_IMMEDIATE)) {
676 session->queued_cmdsn++;
677 session->cmdsn++;
678 }
679 }
680
Mike Christieae15f802008-12-02 00:32:15 -0600681 if (session->tt->init_task && session->tt->init_task(task))
682 return -EIO;
Mike Christie052d0142008-05-21 15:54:05 -0500683
684 if ((hdr->opcode & ISCSI_OPCODE_MASK) == ISCSI_OP_LOGOUT)
685 session->state = ISCSI_STATE_LOGGING_OUT;
686
Mike Christie577577d2008-12-02 00:32:05 -0600687 task->state = ISCSI_TASK_RUNNING;
Mike Christie1b2c7af2009-03-05 14:45:58 -0600688 ISCSI_DBG_SESSION(session, "mgmtpdu [op 0x%x hdr->itt 0x%x "
689 "datalen %d]\n", hdr->opcode & ISCSI_OPCODE_MASK,
690 hdr->itt, task->data_count);
Mike Christie052d0142008-05-21 15:54:05 -0500691 return 0;
692}
693
Mike Christie9c19a7d2008-05-21 15:54:09 -0500694static struct iscsi_task *
Mike Christief6d51802007-12-13 12:43:30 -0600695__iscsi_conn_send_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
696 char *data, uint32_t data_size)
697{
698 struct iscsi_session *session = conn->session;
Mike Christie1336aed2009-05-13 17:57:48 -0500699 struct iscsi_host *ihost = shost_priv(session->host);
Mike Christie4f704dc2009-11-11 16:34:31 -0600700 uint8_t opcode = hdr->opcode & ISCSI_OPCODE_MASK;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500701 struct iscsi_task *task;
Mike Christie262ef632008-12-02 00:32:13 -0600702 itt_t itt;
Mike Christief6d51802007-12-13 12:43:30 -0600703
704 if (session->state == ISCSI_STATE_TERMINATE)
705 return NULL;
706
Mike Christie4f704dc2009-11-11 16:34:31 -0600707 if (opcode == ISCSI_OP_LOGIN || opcode == ISCSI_OP_TEXT) {
Mike Christief6d51802007-12-13 12:43:30 -0600708 /*
709 * Login and Text are sent serially, in
710 * request-followed-by-response sequence.
Mike Christie3e5c28a2008-05-21 15:54:06 -0500711 * Same task can be used. Same ITT must be used.
712 * Note that login_task is preallocated at conn_create().
Mike Christief6d51802007-12-13 12:43:30 -0600713 */
Mike Christie4f704dc2009-11-11 16:34:31 -0600714 if (conn->login_task->state != ISCSI_TASK_FREE) {
715 iscsi_conn_printk(KERN_ERR, conn, "Login/Text in "
716 "progress. Cannot start new task.\n");
717 return NULL;
718 }
719
Mike Christiecbaa4222014-09-03 00:00:39 -0500720 if (data_size > ISCSI_DEF_MAX_RECV_SEG_LEN) {
721 iscsi_conn_printk(KERN_ERR, conn, "Invalid buffer len of %u for login task. Max len is %u\n", data_size, ISCSI_DEF_MAX_RECV_SEG_LEN);
722 return NULL;
723 }
724
Mike Christie9c19a7d2008-05-21 15:54:09 -0500725 task = conn->login_task;
Mike Christie4f704dc2009-11-11 16:34:31 -0600726 } else {
Mike Christie26013ad2009-05-13 17:57:43 -0500727 if (session->state != ISCSI_STATE_LOGGED_IN)
728 return NULL;
729
Mike Christiecbaa4222014-09-03 00:00:39 -0500730 if (data_size != 0) {
731 iscsi_conn_printk(KERN_ERR, conn, "Can not send data buffer of len %u for op 0x%x\n", data_size, opcode);
732 return NULL;
733 }
734
Mike Christief6d51802007-12-13 12:43:30 -0600735 BUG_ON(conn->c_stage == ISCSI_CONN_INITIAL_STAGE);
736 BUG_ON(conn->c_stage == ISCSI_CONN_STOPPED);
737
Stefani Seibold7acd72e2009-12-21 14:37:28 -0800738 if (!kfifo_out(&session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500739 (void*)&task, sizeof(void*)))
Mike Christief6d51802007-12-13 12:43:30 -0600740 return NULL;
741 }
Mike Christie3e5c28a2008-05-21 15:54:06 -0500742 /*
743 * released in complete pdu for task we expect a response for, and
744 * released by the lld when it has transmitted the task for
745 * pdus we do not expect a response for.
746 */
Mike Christie9c19a7d2008-05-21 15:54:09 -0500747 atomic_set(&task->refcount, 1);
748 task->conn = conn;
749 task->sc = NULL;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500750 INIT_LIST_HEAD(&task->running);
751 task->state = ISCSI_TASK_PENDING;
Mike Christief6d51802007-12-13 12:43:30 -0600752
753 if (data_size) {
Mike Christie9c19a7d2008-05-21 15:54:09 -0500754 memcpy(task->data, data, data_size);
755 task->data_count = data_size;
Mike Christief6d51802007-12-13 12:43:30 -0600756 } else
Mike Christie9c19a7d2008-05-21 15:54:09 -0500757 task->data_count = 0;
Mike Christief6d51802007-12-13 12:43:30 -0600758
Mike Christie184b57c2009-05-13 17:57:39 -0500759 if (conn->session->tt->alloc_pdu) {
760 if (conn->session->tt->alloc_pdu(task, hdr->opcode)) {
761 iscsi_conn_printk(KERN_ERR, conn, "Could not allocate "
762 "pdu for mgmt task.\n");
Mike Christie3bbaaad2009-05-13 17:57:46 -0500763 goto free_task;
Mike Christie184b57c2009-05-13 17:57:39 -0500764 }
Mike Christie577577d2008-12-02 00:32:05 -0600765 }
Mike Christie184b57c2009-05-13 17:57:39 -0500766
Mike Christie262ef632008-12-02 00:32:13 -0600767 itt = task->hdr->itt;
Mike Christie577577d2008-12-02 00:32:05 -0600768 task->hdr_len = sizeof(struct iscsi_hdr);
Mike Christie9c19a7d2008-05-21 15:54:09 -0500769 memcpy(task->hdr, hdr, sizeof(struct iscsi_hdr));
Mike Christie262ef632008-12-02 00:32:13 -0600770
771 if (hdr->itt != RESERVED_ITT) {
772 if (session->tt->parse_pdu_itt)
773 task->hdr->itt = itt;
774 else
775 task->hdr->itt = build_itt(task->itt,
776 task->conn->session->age);
777 }
778
Mike Christie1336aed2009-05-13 17:57:48 -0500779 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -0600780 if (iscsi_prep_mgmt_task(conn, task))
781 goto free_task;
Mike Christie052d0142008-05-21 15:54:05 -0500782
Mike Christie9c19a7d2008-05-21 15:54:09 -0500783 if (session->tt->xmit_task(task))
Mike Christie577577d2008-12-02 00:32:05 -0600784 goto free_task;
Mike Christie3bbaaad2009-05-13 17:57:46 -0500785 } else {
786 list_add_tail(&task->running, &conn->mgmtqueue);
Mike Christie32ae7632009-03-05 14:46:03 -0600787 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -0500788 }
Mike Christie052d0142008-05-21 15:54:05 -0500789
Mike Christie9c19a7d2008-05-21 15:54:09 -0500790 return task;
Mike Christie577577d2008-12-02 00:32:05 -0600791
792free_task:
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600793 /* regular RX path uses back_lock */
794 spin_lock_bh(&session->back_lock);
Mike Christie577577d2008-12-02 00:32:05 -0600795 __iscsi_put_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600796 spin_unlock_bh(&session->back_lock);
Mike Christie577577d2008-12-02 00:32:05 -0600797 return NULL;
Mike Christief6d51802007-12-13 12:43:30 -0600798}
799
800int iscsi_conn_send_pdu(struct iscsi_cls_conn *cls_conn, struct iscsi_hdr *hdr,
801 char *data, uint32_t data_size)
802{
803 struct iscsi_conn *conn = cls_conn->dd_data;
804 struct iscsi_session *session = conn->session;
805 int err = 0;
806
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600807 spin_lock_bh(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -0600808 if (!__iscsi_conn_send_pdu(conn, hdr, data, data_size))
809 err = -EPERM;
Shlomo Pongratz659743b2014-02-07 00:41:38 -0600810 spin_unlock_bh(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -0600811 return err;
812}
813EXPORT_SYMBOL_GPL(iscsi_conn_send_pdu);
814
Mike Christie7996a772006-04-06 21:13:41 -0500815/**
816 * iscsi_cmd_rsp - SCSI Command Response processing
817 * @conn: iscsi connection
818 * @hdr: iscsi header
Mike Christie9c19a7d2008-05-21 15:54:09 -0500819 * @task: scsi command task
Mike Christie7996a772006-04-06 21:13:41 -0500820 * @data: cmd data buffer
821 * @datalen: len of buffer
822 *
823 * iscsi_cmd_rsp sets up the scsi_cmnd fields based on the PDU and
Mike Christie9c19a7d2008-05-21 15:54:09 -0500824 * then completes the command and task.
Mike Christie7996a772006-04-06 21:13:41 -0500825 **/
Mike Christie77a23c22007-05-30 12:57:18 -0500826static void iscsi_scsi_cmd_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
Mike Christie9c19a7d2008-05-21 15:54:09 -0500827 struct iscsi_task *task, char *data,
Mike Christie77a23c22007-05-30 12:57:18 -0500828 int datalen)
Mike Christie7996a772006-04-06 21:13:41 -0500829{
Nicholas Bellinger12352182011-05-27 11:16:33 +0000830 struct iscsi_scsi_rsp *rhdr = (struct iscsi_scsi_rsp *)hdr;
Mike Christie7996a772006-04-06 21:13:41 -0500831 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500832 struct scsi_cmnd *sc = task->sc;
Mike Christie7996a772006-04-06 21:13:41 -0500833
Mike Christie77a23c22007-05-30 12:57:18 -0500834 iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
Mike Christie7996a772006-04-06 21:13:41 -0500835 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
836
837 sc->result = (DID_OK << 16) | rhdr->cmd_status;
838
Sagi Grimberg55e51ed2014-03-05 19:43:49 +0200839 if (task->protected) {
840 sector_t sector;
841 u8 ascq;
842
843 /**
844 * Transports that didn't implement check_protection
845 * callback but still published T10-PI support to scsi-mid
846 * deserve this BUG_ON.
847 **/
848 BUG_ON(!session->tt->check_protection);
849
850 ascq = session->tt->check_protection(task, &sector);
851 if (ascq) {
852 sc->result = DRIVER_SENSE << 24 |
853 SAM_STAT_CHECK_CONDITION;
854 scsi_build_sense_buffer(1, sc->sense_buffer,
855 ILLEGAL_REQUEST, 0x10, ascq);
856 sc->sense_buffer[7] = 0xc; /* Additional sense length */
857 sc->sense_buffer[8] = 0; /* Information desc type */
858 sc->sense_buffer[9] = 0xa; /* Additional desc length */
859 sc->sense_buffer[10] = 0x80; /* Validity bit */
860
861 put_unaligned_be64(sector, &sc->sense_buffer[12]);
862 goto out;
863 }
864 }
865
Mike Christie7996a772006-04-06 21:13:41 -0500866 if (rhdr->response != ISCSI_STATUS_CMD_COMPLETED) {
867 sc->result = DID_ERROR << 16;
868 goto out;
869 }
870
871 if (rhdr->cmd_status == SAM_STAT_CHECK_CONDITION) {
Mike Christie9b80cb42006-12-17 12:10:28 -0600872 uint16_t senselen;
Mike Christie7996a772006-04-06 21:13:41 -0500873
874 if (datalen < 2) {
875invalid_datalen:
Mike Christie322d7392008-01-31 13:36:52 -0600876 iscsi_conn_printk(KERN_ERR, conn,
877 "Got CHECK_CONDITION but invalid data "
878 "buffer size of %d\n", datalen);
Mike Christie7996a772006-04-06 21:13:41 -0500879 sc->result = DID_BAD_TARGET << 16;
880 goto out;
881 }
882
Harvey Harrison8f3339912008-05-21 15:54:20 -0500883 senselen = get_unaligned_be16(data);
Mike Christie7996a772006-04-06 21:13:41 -0500884 if (datalen < senselen)
885 goto invalid_datalen;
886
887 memcpy(sc->sense_buffer, data + 2,
Mike Christie9b80cb42006-12-17 12:10:28 -0600888 min_t(uint16_t, senselen, SCSI_SENSE_BUFFERSIZE));
Mike Christie1b2c7af2009-03-05 14:45:58 -0600889 ISCSI_DBG_SESSION(session, "copied %d bytes of sense\n",
890 min_t(uint16_t, senselen,
891 SCSI_SENSE_BUFFERSIZE));
Mike Christie7996a772006-04-06 21:13:41 -0500892 }
893
Boaz Harroshc07d4442008-04-18 10:11:52 -0500894 if (rhdr->flags & (ISCSI_FLAG_CMD_BIDI_UNDERFLOW |
895 ISCSI_FLAG_CMD_BIDI_OVERFLOW)) {
896 int res_count = be32_to_cpu(rhdr->bi_residual_count);
897
898 if (scsi_bidi_cmnd(sc) && res_count > 0 &&
899 (rhdr->flags & ISCSI_FLAG_CMD_BIDI_OVERFLOW ||
900 res_count <= scsi_in(sc)->length))
901 scsi_in(sc)->resid = res_count;
902 else
903 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
904 }
905
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600906 if (rhdr->flags & (ISCSI_FLAG_CMD_UNDERFLOW |
907 ISCSI_FLAG_CMD_OVERFLOW)) {
Mike Christie7996a772006-04-06 21:13:41 -0500908 int res_count = be32_to_cpu(rhdr->residual_count);
909
Boaz Harrosh7207fea2007-12-13 12:43:22 -0600910 if (res_count > 0 &&
911 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
912 res_count <= scsi_bufflen(sc)))
Boaz Harroshc07d4442008-04-18 10:11:52 -0500913 /* write side for bidi or uni-io set_resid */
FUJITA Tomonori1c138992007-06-14 22:13:17 +0900914 scsi_set_resid(sc, res_count);
Mike Christie7996a772006-04-06 21:13:41 -0500915 else
916 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
Boaz Harroshc07d4442008-04-18 10:11:52 -0500917 }
Mike Christie7996a772006-04-06 21:13:41 -0500918out:
Mike Christie3bbaaad2009-05-13 17:57:46 -0500919 ISCSI_DBG_SESSION(session, "cmd rsp done [sc %p res %d itt 0x%x]\n",
Mike Christie1b2c7af2009-03-05 14:45:58 -0600920 sc, sc->result, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -0500921 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500922 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -0500923}
924
Mike Christie1d9edf02008-09-24 11:46:09 -0500925/**
926 * iscsi_data_in_rsp - SCSI Data-In Response processing
927 * @conn: iscsi connection
928 * @hdr: iscsi pdu
929 * @task: scsi command task
930 **/
931static void
932iscsi_data_in_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
933 struct iscsi_task *task)
934{
935 struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)hdr;
936 struct scsi_cmnd *sc = task->sc;
937
938 if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
939 return;
940
Mike Christieedbc9aa052009-05-13 17:57:42 -0500941 iscsi_update_cmdsn(conn->session, (struct iscsi_nopin *)hdr);
Mike Christie1d9edf02008-09-24 11:46:09 -0500942 sc->result = (DID_OK << 16) | rhdr->cmd_status;
943 conn->exp_statsn = be32_to_cpu(rhdr->statsn) + 1;
944 if (rhdr->flags & (ISCSI_FLAG_DATA_UNDERFLOW |
945 ISCSI_FLAG_DATA_OVERFLOW)) {
946 int res_count = be32_to_cpu(rhdr->residual_count);
947
948 if (res_count > 0 &&
949 (rhdr->flags & ISCSI_FLAG_CMD_OVERFLOW ||
950 res_count <= scsi_in(sc)->length))
951 scsi_in(sc)->resid = res_count;
952 else
953 sc->result = (DID_BAD_TARGET << 16) | rhdr->cmd_status;
954 }
955
Mike Christie3bbaaad2009-05-13 17:57:46 -0500956 ISCSI_DBG_SESSION(conn->session, "data in with status done "
957 "[sc %p res %d itt 0x%x]\n",
958 sc, sc->result, task->itt);
Mike Christie1d9edf02008-09-24 11:46:09 -0500959 conn->scsirsp_pdus_cnt++;
Mike Christieb3cd5052009-05-13 17:57:49 -0500960 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie1d9edf02008-09-24 11:46:09 -0500961}
962
Mike Christie7ea8b822006-07-24 15:47:22 -0500963static void iscsi_tmf_rsp(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
964{
965 struct iscsi_tm_rsp *tmf = (struct iscsi_tm_rsp *)hdr;
966
967 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
968 conn->tmfrsp_pdus_cnt++;
969
Mike Christie843c0a82007-12-13 12:43:20 -0600970 if (conn->tmf_state != TMF_QUEUED)
Mike Christie7ea8b822006-07-24 15:47:22 -0500971 return;
972
973 if (tmf->response == ISCSI_TMF_RSP_COMPLETE)
Mike Christie843c0a82007-12-13 12:43:20 -0600974 conn->tmf_state = TMF_SUCCESS;
Mike Christie7ea8b822006-07-24 15:47:22 -0500975 else if (tmf->response == ISCSI_TMF_RSP_NO_TASK)
Mike Christie843c0a82007-12-13 12:43:20 -0600976 conn->tmf_state = TMF_NOT_FOUND;
Mike Christie7ea8b822006-07-24 15:47:22 -0500977 else
Mike Christie843c0a82007-12-13 12:43:20 -0600978 conn->tmf_state = TMF_FAILED;
Mike Christie7ea8b822006-07-24 15:47:22 -0500979 wake_up(&conn->ehwait);
980}
981
Mike Christief6d51802007-12-13 12:43:30 -0600982static void iscsi_send_nopout(struct iscsi_conn *conn, struct iscsi_nopin *rhdr)
983{
984 struct iscsi_nopout hdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -0500985 struct iscsi_task *task;
Mike Christief6d51802007-12-13 12:43:30 -0600986
Mike Christie9c19a7d2008-05-21 15:54:09 -0500987 if (!rhdr && conn->ping_task)
Mike Christief6d51802007-12-13 12:43:30 -0600988 return;
989
990 memset(&hdr, 0, sizeof(struct iscsi_nopout));
991 hdr.opcode = ISCSI_OP_NOOP_OUT | ISCSI_OP_IMMEDIATE;
992 hdr.flags = ISCSI_FLAG_CMD_FINAL;
993
994 if (rhdr) {
Andy Grover55bdabd2011-06-16 15:57:09 -0700995 hdr.lun = rhdr->lun;
Mike Christief6d51802007-12-13 12:43:30 -0600996 hdr.ttt = rhdr->ttt;
997 hdr.itt = RESERVED_ITT;
998 } else
999 hdr.ttt = RESERVED_ITT;
1000
Mike Christie9c19a7d2008-05-21 15:54:09 -05001001 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)&hdr, NULL, 0);
1002 if (!task)
Mike Christie322d7392008-01-31 13:36:52 -06001003 iscsi_conn_printk(KERN_ERR, conn, "Could not send nopout\n");
Mike Christied3acf022008-12-01 12:13:00 -06001004 else if (!rhdr) {
1005 /* only track our nops */
1006 conn->ping_task = task;
1007 conn->last_ping = jiffies;
1008 }
Mike Christief6d51802007-12-13 12:43:30 -06001009}
1010
Mike Christie8afa1432009-08-20 15:10:59 -05001011static int iscsi_nop_out_rsp(struct iscsi_task *task,
1012 struct iscsi_nopin *nop, char *data, int datalen)
1013{
1014 struct iscsi_conn *conn = task->conn;
1015 int rc = 0;
1016
1017 if (conn->ping_task != task) {
1018 /*
1019 * If this is not in response to one of our
1020 * nops then it must be from userspace.
1021 */
1022 if (iscsi_recv_pdu(conn->cls_conn, (struct iscsi_hdr *)nop,
1023 data, datalen))
1024 rc = ISCSI_ERR_CONN_FAILED;
1025 } else
1026 mod_timer(&conn->transport_timer, jiffies + conn->recv_timeout);
1027 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
1028 return rc;
1029}
1030
Mike Christie62f38302006-08-31 18:09:27 -04001031static int iscsi_handle_reject(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1032 char *data, int datalen)
1033{
1034 struct iscsi_reject *reject = (struct iscsi_reject *)hdr;
1035 struct iscsi_hdr rejected_pdu;
Mike Christie8afa1432009-08-20 15:10:59 -05001036 int opcode, rc = 0;
Mike Christie62f38302006-08-31 18:09:27 -04001037
1038 conn->exp_statsn = be32_to_cpu(reject->statsn) + 1;
1039
Mike Christie8afa1432009-08-20 15:10:59 -05001040 if (ntoh24(reject->dlength) > datalen ||
1041 ntoh24(reject->dlength) < sizeof(struct iscsi_hdr)) {
1042 iscsi_conn_printk(KERN_ERR, conn, "Cannot handle rejected "
1043 "pdu. Invalid data length (pdu dlength "
1044 "%u, datalen %d\n", ntoh24(reject->dlength),
1045 datalen);
1046 return ISCSI_ERR_PROTO;
Mike Christie62f38302006-08-31 18:09:27 -04001047 }
Mike Christie8afa1432009-08-20 15:10:59 -05001048 memcpy(&rejected_pdu, data, sizeof(struct iscsi_hdr));
1049 opcode = rejected_pdu.opcode & ISCSI_OPCODE_MASK;
1050
1051 switch (reject->reason) {
1052 case ISCSI_REASON_DATA_DIGEST_ERROR:
1053 iscsi_conn_printk(KERN_ERR, conn,
1054 "pdu (op 0x%x itt 0x%x) rejected "
1055 "due to DataDigest error.\n",
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001056 opcode, rejected_pdu.itt);
Mike Christie8afa1432009-08-20 15:10:59 -05001057 break;
1058 case ISCSI_REASON_IMM_CMD_REJECT:
1059 iscsi_conn_printk(KERN_ERR, conn,
1060 "pdu (op 0x%x itt 0x%x) rejected. Too many "
1061 "immediate commands.\n",
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001062 opcode, rejected_pdu.itt);
Mike Christie8afa1432009-08-20 15:10:59 -05001063 /*
1064 * We only send one TMF at a time so if the target could not
1065 * handle it, then it should get fixed (RFC mandates that
1066 * a target can handle one immediate TMF per conn).
1067 *
1068 * For nops-outs, we could have sent more than one if
1069 * the target is sending us lots of nop-ins
1070 */
1071 if (opcode != ISCSI_OP_NOOP_OUT)
1072 return 0;
1073
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001074 if (rejected_pdu.itt == cpu_to_be32(ISCSI_RESERVED_TAG)) {
Mike Christie8afa1432009-08-20 15:10:59 -05001075 /*
1076 * nop-out in response to target's nop-out rejected.
1077 * Just resend.
1078 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001079 /* In RX path we are under back lock */
1080 spin_unlock(&conn->session->back_lock);
1081 spin_lock(&conn->session->frwd_lock);
Mike Christie8afa1432009-08-20 15:10:59 -05001082 iscsi_send_nopout(conn,
1083 (struct iscsi_nopin*)&rejected_pdu);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001084 spin_unlock(&conn->session->frwd_lock);
1085 spin_lock(&conn->session->back_lock);
1086 } else {
Mike Christie8afa1432009-08-20 15:10:59 -05001087 struct iscsi_task *task;
1088 /*
1089 * Our nop as ping got dropped. We know the target
1090 * and transport are ok so just clean up
1091 */
1092 task = iscsi_itt_to_task(conn, rejected_pdu.itt);
1093 if (!task) {
1094 iscsi_conn_printk(KERN_ERR, conn,
1095 "Invalid pdu reject. Could "
1096 "not lookup rejected task.\n");
1097 rc = ISCSI_ERR_BAD_ITT;
1098 } else
1099 rc = iscsi_nop_out_rsp(task,
1100 (struct iscsi_nopin*)&rejected_pdu,
1101 NULL, 0);
1102 }
1103 break;
1104 default:
1105 iscsi_conn_printk(KERN_ERR, conn,
1106 "pdu (op 0x%x itt 0x%x) rejected. Reason "
Vaughan Caoe5dbbe22014-01-09 10:21:34 +08001107 "code 0x%x\n", rejected_pdu.opcode,
1108 rejected_pdu.itt, reject->reason);
Mike Christie8afa1432009-08-20 15:10:59 -05001109 break;
1110 }
1111 return rc;
Mike Christie62f38302006-08-31 18:09:27 -04001112}
1113
Mike Christie7996a772006-04-06 21:13:41 -05001114/**
Mike Christie913e5bf2008-05-21 15:54:18 -05001115 * iscsi_itt_to_task - look up task by itt
1116 * @conn: iscsi connection
1117 * @itt: itt
1118 *
1119 * This should be used for mgmt tasks like login and nops, or if
1120 * the LDD's itt space does not include the session age.
1121 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001122 * The session back_lock must be held.
Mike Christie913e5bf2008-05-21 15:54:18 -05001123 */
Mike Christie8f9256c2009-05-13 17:57:41 -05001124struct iscsi_task *iscsi_itt_to_task(struct iscsi_conn *conn, itt_t itt)
Mike Christie913e5bf2008-05-21 15:54:18 -05001125{
1126 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001127 int i;
Mike Christie913e5bf2008-05-21 15:54:18 -05001128
1129 if (itt == RESERVED_ITT)
1130 return NULL;
1131
Mike Christie262ef632008-12-02 00:32:13 -06001132 if (session->tt->parse_pdu_itt)
1133 session->tt->parse_pdu_itt(conn, itt, &i, NULL);
1134 else
1135 i = get_itt(itt);
Mike Christie913e5bf2008-05-21 15:54:18 -05001136 if (i >= session->cmds_max)
1137 return NULL;
1138
1139 return session->cmds[i];
1140}
Mike Christie8f9256c2009-05-13 17:57:41 -05001141EXPORT_SYMBOL_GPL(iscsi_itt_to_task);
Mike Christie913e5bf2008-05-21 15:54:18 -05001142
1143/**
Mike Christie7996a772006-04-06 21:13:41 -05001144 * __iscsi_complete_pdu - complete pdu
1145 * @conn: iscsi conn
1146 * @hdr: iscsi header
1147 * @data: data buffer
1148 * @datalen: len of data buffer
1149 *
1150 * Completes pdu processing by freeing any resources allocated at
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001151 * queuecommand or send generic. session back_lock must be held and verify
Mike Christie7996a772006-04-06 21:13:41 -05001152 * itt must have been called.
1153 */
Mike Christie913e5bf2008-05-21 15:54:18 -05001154int __iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1155 char *data, int datalen)
Mike Christie7996a772006-04-06 21:13:41 -05001156{
1157 struct iscsi_session *session = conn->session;
1158 int opcode = hdr->opcode & ISCSI_OPCODE_MASK, rc = 0;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001159 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001160 uint32_t itt;
1161
Mike Christief6d51802007-12-13 12:43:30 -06001162 conn->last_recv = jiffies;
Mike Christie0af967f2008-05-21 15:54:04 -05001163 rc = iscsi_verify_itt(conn, hdr->itt);
1164 if (rc)
1165 return rc;
1166
Al Virob4377352007-02-09 16:39:40 +00001167 if (hdr->itt != RESERVED_ITT)
1168 itt = get_itt(hdr->itt);
Mike Christie7996a772006-04-06 21:13:41 -05001169 else
Al Virob4377352007-02-09 16:39:40 +00001170 itt = ~0U;
Mike Christie7996a772006-04-06 21:13:41 -05001171
Mike Christie1b2c7af2009-03-05 14:45:58 -06001172 ISCSI_DBG_SESSION(session, "[op 0x%x cid %d itt 0x%x len %d]\n",
1173 opcode, conn->id, itt, datalen);
Mike Christie7996a772006-04-06 21:13:41 -05001174
Mike Christie3e5c28a2008-05-21 15:54:06 -05001175 if (itt == ~0U) {
Mike Christie77a23c22007-05-30 12:57:18 -05001176 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
Mike Christie62f38302006-08-31 18:09:27 -04001177
Mike Christie7996a772006-04-06 21:13:41 -05001178 switch(opcode) {
1179 case ISCSI_OP_NOOP_IN:
Mike Christie40527af2006-07-24 15:47:45 -05001180 if (datalen) {
Mike Christie7996a772006-04-06 21:13:41 -05001181 rc = ISCSI_ERR_PROTO;
Mike Christie40527af2006-07-24 15:47:45 -05001182 break;
1183 }
1184
Al Virob4377352007-02-09 16:39:40 +00001185 if (hdr->ttt == cpu_to_be32(ISCSI_RESERVED_TAG))
Mike Christie40527af2006-07-24 15:47:45 -05001186 break;
1187
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001188 /* In RX path we are under back lock */
1189 spin_unlock(&session->back_lock);
1190 spin_lock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06001191 iscsi_send_nopout(conn, (struct iscsi_nopin*)hdr);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001192 spin_unlock(&session->frwd_lock);
1193 spin_lock(&session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001194 break;
1195 case ISCSI_OP_REJECT:
Mike Christie62f38302006-08-31 18:09:27 -04001196 rc = iscsi_handle_reject(conn, hdr, data, datalen);
1197 break;
Mike Christie7996a772006-04-06 21:13:41 -05001198 case ISCSI_OP_ASYNC_EVENT:
Mike Christie8d2860b2006-05-02 19:46:47 -05001199 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
Mike Christie5831c732006-10-16 18:09:41 -04001200 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1201 rc = ISCSI_ERR_CONN_FAILED;
Mike Christie7996a772006-04-06 21:13:41 -05001202 break;
1203 default:
1204 rc = ISCSI_ERR_BAD_OPCODE;
1205 break;
1206 }
Mike Christie3e5c28a2008-05-21 15:54:06 -05001207 goto out;
1208 }
Mike Christie7996a772006-04-06 21:13:41 -05001209
Mike Christie3e5c28a2008-05-21 15:54:06 -05001210 switch(opcode) {
1211 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie913e5bf2008-05-21 15:54:18 -05001212 case ISCSI_OP_SCSI_DATA_IN:
1213 task = iscsi_itt_to_ctask(conn, hdr->itt);
1214 if (!task)
1215 return ISCSI_ERR_BAD_ITT;
Mike Christied355e572009-06-15 22:11:08 -05001216 task->last_xfer = jiffies;
Mike Christie913e5bf2008-05-21 15:54:18 -05001217 break;
1218 case ISCSI_OP_R2T:
1219 /*
1220 * LLD handles R2Ts if they need to.
1221 */
1222 return 0;
1223 case ISCSI_OP_LOGOUT_RSP:
1224 case ISCSI_OP_LOGIN_RSP:
1225 case ISCSI_OP_TEXT_RSP:
1226 case ISCSI_OP_SCSI_TMFUNC_RSP:
1227 case ISCSI_OP_NOOP_IN:
1228 task = iscsi_itt_to_task(conn, hdr->itt);
1229 if (!task)
1230 return ISCSI_ERR_BAD_ITT;
1231 break;
1232 default:
1233 return ISCSI_ERR_BAD_OPCODE;
1234 }
1235
1236 switch(opcode) {
1237 case ISCSI_OP_SCSI_CMD_RSP:
Mike Christie9c19a7d2008-05-21 15:54:09 -05001238 iscsi_scsi_cmd_rsp(conn, hdr, task, data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001239 break;
1240 case ISCSI_OP_SCSI_DATA_IN:
Mike Christie1d9edf02008-09-24 11:46:09 -05001241 iscsi_data_in_rsp(conn, hdr, task);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001242 break;
Mike Christie3e5c28a2008-05-21 15:54:06 -05001243 case ISCSI_OP_LOGOUT_RSP:
1244 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1245 if (datalen) {
1246 rc = ISCSI_ERR_PROTO;
1247 break;
1248 }
1249 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1250 goto recv_pdu;
1251 case ISCSI_OP_LOGIN_RSP:
1252 case ISCSI_OP_TEXT_RSP:
1253 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1254 /*
1255 * login related PDU's exp_statsn is handled in
1256 * userspace
1257 */
1258 goto recv_pdu;
1259 case ISCSI_OP_SCSI_TMFUNC_RSP:
1260 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1261 if (datalen) {
1262 rc = ISCSI_ERR_PROTO;
1263 break;
1264 }
1265
1266 iscsi_tmf_rsp(conn, hdr);
Mike Christieb3cd5052009-05-13 17:57:49 -05001267 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001268 break;
1269 case ISCSI_OP_NOOP_IN:
1270 iscsi_update_cmdsn(session, (struct iscsi_nopin*)hdr);
1271 if (hdr->ttt != cpu_to_be32(ISCSI_RESERVED_TAG) || datalen) {
1272 rc = ISCSI_ERR_PROTO;
1273 break;
1274 }
1275 conn->exp_statsn = be32_to_cpu(hdr->statsn) + 1;
1276
Mike Christie8afa1432009-08-20 15:10:59 -05001277 rc = iscsi_nop_out_rsp(task, (struct iscsi_nopin*)hdr,
1278 data, datalen);
Mike Christie3e5c28a2008-05-21 15:54:06 -05001279 break;
1280 default:
1281 rc = ISCSI_ERR_BAD_OPCODE;
1282 break;
1283 }
1284
1285out:
1286 return rc;
1287recv_pdu:
1288 if (iscsi_recv_pdu(conn->cls_conn, hdr, data, datalen))
1289 rc = ISCSI_ERR_CONN_FAILED;
Mike Christieb3cd5052009-05-13 17:57:49 -05001290 iscsi_complete_task(task, ISCSI_TASK_COMPLETED);
Mike Christie7996a772006-04-06 21:13:41 -05001291 return rc;
1292}
Mike Christie913e5bf2008-05-21 15:54:18 -05001293EXPORT_SYMBOL_GPL(__iscsi_complete_pdu);
Mike Christie7996a772006-04-06 21:13:41 -05001294
1295int iscsi_complete_pdu(struct iscsi_conn *conn, struct iscsi_hdr *hdr,
1296 char *data, int datalen)
1297{
1298 int rc;
1299
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001300 spin_lock(&conn->session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001301 rc = __iscsi_complete_pdu(conn, hdr, data, datalen);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001302 spin_unlock(&conn->session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001303 return rc;
1304}
1305EXPORT_SYMBOL_GPL(iscsi_complete_pdu);
1306
Mike Christie0af967f2008-05-21 15:54:04 -05001307int iscsi_verify_itt(struct iscsi_conn *conn, itt_t itt)
Mike Christie7996a772006-04-06 21:13:41 -05001308{
1309 struct iscsi_session *session = conn->session;
Mike Christie262ef632008-12-02 00:32:13 -06001310 int age = 0, i = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001311
Mike Christie0af967f2008-05-21 15:54:04 -05001312 if (itt == RESERVED_ITT)
1313 return 0;
Mike Christie7996a772006-04-06 21:13:41 -05001314
Mike Christie262ef632008-12-02 00:32:13 -06001315 if (session->tt->parse_pdu_itt)
1316 session->tt->parse_pdu_itt(conn, itt, &i, &age);
1317 else {
1318 i = get_itt(itt);
1319 age = ((__force u32)itt >> ISCSI_AGE_SHIFT) & ISCSI_AGE_MASK;
1320 }
1321
1322 if (age != session->age) {
Mike Christie0af967f2008-05-21 15:54:04 -05001323 iscsi_conn_printk(KERN_ERR, conn,
1324 "received itt %x expected session age (%x)\n",
Mike Christie913e5bf2008-05-21 15:54:18 -05001325 (__force u32)itt, session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001326 return ISCSI_ERR_BAD_ITT;
1327 }
Mike Christie7996a772006-04-06 21:13:41 -05001328
Mike Christie3e5c28a2008-05-21 15:54:06 -05001329 if (i >= session->cmds_max) {
1330 iscsi_conn_printk(KERN_ERR, conn,
1331 "received invalid itt index %u (max cmds "
1332 "%u.\n", i, session->cmds_max);
1333 return ISCSI_ERR_BAD_ITT;
Mike Christie7996a772006-04-06 21:13:41 -05001334 }
Mike Christie7996a772006-04-06 21:13:41 -05001335 return 0;
1336}
1337EXPORT_SYMBOL_GPL(iscsi_verify_itt);
1338
Mike Christie913e5bf2008-05-21 15:54:18 -05001339/**
1340 * iscsi_itt_to_ctask - look up ctask by itt
1341 * @conn: iscsi connection
1342 * @itt: itt
1343 *
1344 * This should be used for cmd tasks.
1345 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001346 * The session back_lock must be held.
Mike Christie913e5bf2008-05-21 15:54:18 -05001347 */
1348struct iscsi_task *iscsi_itt_to_ctask(struct iscsi_conn *conn, itt_t itt)
Mike Christie0af967f2008-05-21 15:54:04 -05001349{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001350 struct iscsi_task *task;
Mike Christie0af967f2008-05-21 15:54:04 -05001351
1352 if (iscsi_verify_itt(conn, itt))
1353 return NULL;
1354
Mike Christie913e5bf2008-05-21 15:54:18 -05001355 task = iscsi_itt_to_task(conn, itt);
1356 if (!task || !task->sc)
Mike Christie0af967f2008-05-21 15:54:04 -05001357 return NULL;
1358
Mike Christie913e5bf2008-05-21 15:54:18 -05001359 if (task->sc->SCp.phase != conn->session->age) {
1360 iscsi_session_printk(KERN_ERR, conn->session,
1361 "task's session age %d, expected %d\n",
1362 task->sc->SCp.phase, conn->session->age);
Mike Christie0af967f2008-05-21 15:54:04 -05001363 return NULL;
Mike Christie913e5bf2008-05-21 15:54:18 -05001364 }
Mike Christie0af967f2008-05-21 15:54:04 -05001365
Mike Christie9c19a7d2008-05-21 15:54:09 -05001366 return task;
Mike Christie0af967f2008-05-21 15:54:04 -05001367}
1368EXPORT_SYMBOL_GPL(iscsi_itt_to_ctask);
1369
Mike Christie40a06e72009-03-05 14:46:05 -06001370void iscsi_session_failure(struct iscsi_session *session,
Mike Christiee5bd7b52008-09-24 11:46:10 -05001371 enum iscsi_err err)
1372{
Mike Christiee5bd7b52008-09-24 11:46:10 -05001373 struct iscsi_conn *conn;
1374 struct device *dev;
Mike Christiee5bd7b52008-09-24 11:46:10 -05001375
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001376 spin_lock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001377 conn = session->leadconn;
1378 if (session->state == ISCSI_STATE_TERMINATE || !conn) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001379 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001380 return;
1381 }
1382
1383 dev = get_device(&conn->cls_conn->dev);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001384 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001385 if (!dev)
1386 return;
1387 /*
1388 * if the host is being removed bypass the connection
1389 * recovery initialization because we are going to kill
1390 * the session.
1391 */
1392 if (err == ISCSI_ERR_INVALID_HOST)
1393 iscsi_conn_error_event(conn->cls_conn, err);
1394 else
1395 iscsi_conn_failure(conn, err);
1396 put_device(dev);
1397}
1398EXPORT_SYMBOL_GPL(iscsi_session_failure);
1399
Mike Christie7996a772006-04-06 21:13:41 -05001400void iscsi_conn_failure(struct iscsi_conn *conn, enum iscsi_err err)
1401{
1402 struct iscsi_session *session = conn->session;
Mike Christie7996a772006-04-06 21:13:41 -05001403
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001404 spin_lock_bh(&session->frwd_lock);
Mike Christie656cffc2006-05-18 20:31:42 -05001405 if (session->state == ISCSI_STATE_FAILED) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001406 spin_unlock_bh(&session->frwd_lock);
Mike Christie656cffc2006-05-18 20:31:42 -05001407 return;
1408 }
1409
Mike Christie67a61112006-05-30 00:37:20 -05001410 if (conn->stop_stage == 0)
Mike Christie7996a772006-04-06 21:13:41 -05001411 session->state = ISCSI_STATE_FAILED;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001412 spin_unlock_bh(&session->frwd_lock);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001413
Mike Christie7996a772006-04-06 21:13:41 -05001414 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
1415 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
Mike Christiee5bd7b52008-09-24 11:46:10 -05001416 iscsi_conn_error_event(conn->cls_conn, err);
Mike Christie7996a772006-04-06 21:13:41 -05001417}
1418EXPORT_SYMBOL_GPL(iscsi_conn_failure);
1419
Mike Christie77a23c22007-05-30 12:57:18 -05001420static int iscsi_check_cmdsn_window_closed(struct iscsi_conn *conn)
1421{
1422 struct iscsi_session *session = conn->session;
1423
1424 /*
1425 * Check for iSCSI window and take care of CmdSN wrap-around
1426 */
Mike Christiee0726402007-07-26 12:46:48 -05001427 if (!iscsi_sna_lte(session->queued_cmdsn, session->max_cmdsn)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001428 ISCSI_DBG_SESSION(session, "iSCSI CmdSN closed. ExpCmdSn "
1429 "%u MaxCmdSN %u CmdSN %u/%u\n",
1430 session->exp_cmdsn, session->max_cmdsn,
1431 session->cmdsn, session->queued_cmdsn);
Mike Christie77a23c22007-05-30 12:57:18 -05001432 return -ENOSPC;
1433 }
1434 return 0;
1435}
1436
Mike Christie9c19a7d2008-05-21 15:54:09 -05001437static int iscsi_xmit_task(struct iscsi_conn *conn)
Mike Christie77a23c22007-05-30 12:57:18 -05001438{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001439 struct iscsi_task *task = conn->task;
Mike Christie843c0a82007-12-13 12:43:20 -06001440 int rc;
Mike Christie77a23c22007-05-30 12:57:18 -05001441
Mike Christie70b31c12009-08-20 15:11:03 -05001442 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx))
1443 return -ENODATA;
1444
Mike Christie9c19a7d2008-05-21 15:54:09 -05001445 __iscsi_get_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001446 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001447 rc = conn->session->tt->xmit_task(task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001448 spin_lock_bh(&conn->session->frwd_lock);
Mike Christied355e572009-06-15 22:11:08 -05001449 if (!rc) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001450 /* done with this task */
Mike Christied355e572009-06-15 22:11:08 -05001451 task->last_xfer = jiffies;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001452 conn->task = NULL;
Mike Christied355e572009-06-15 22:11:08 -05001453 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001454 /* regular RX path uses back_lock */
Shlomo Pongratz72b974022014-03-30 15:26:29 +03001455 spin_lock(&conn->session->back_lock);
Mike Christied355e572009-06-15 22:11:08 -05001456 __iscsi_put_task(task);
Shlomo Pongratz72b974022014-03-30 15:26:29 +03001457 spin_unlock(&conn->session->back_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001458 return rc;
1459}
1460
Mike Christie7996a772006-04-06 21:13:41 -05001461/**
Mike Christie9c19a7d2008-05-21 15:54:09 -05001462 * iscsi_requeue_task - requeue task to run from session workqueue
1463 * @task: task to requeue
Mike Christie843c0a82007-12-13 12:43:20 -06001464 *
Mike Christie9c19a7d2008-05-21 15:54:09 -05001465 * LLDs that need to run a task from the session workqueue should call
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001466 * this. The session frwd_lock must be held. This should only be called
Mike Christie052d0142008-05-21 15:54:05 -05001467 * by software drivers.
Mike Christie843c0a82007-12-13 12:43:20 -06001468 */
Mike Christie9c19a7d2008-05-21 15:54:09 -05001469void iscsi_requeue_task(struct iscsi_task *task)
Mike Christie843c0a82007-12-13 12:43:20 -06001470{
Mike Christie9c19a7d2008-05-21 15:54:09 -05001471 struct iscsi_conn *conn = task->conn;
Mike Christie843c0a82007-12-13 12:43:20 -06001472
Mike Christie3bbaaad2009-05-13 17:57:46 -05001473 /*
1474 * this may be on the requeue list already if the xmit_task callout
1475 * is handling the r2ts while we are adding new ones
1476 */
1477 if (list_empty(&task->running))
1478 list_add_tail(&task->running, &conn->requeue);
Mike Christie32ae7632009-03-05 14:46:03 -06001479 iscsi_conn_queue_work(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001480}
Mike Christie9c19a7d2008-05-21 15:54:09 -05001481EXPORT_SYMBOL_GPL(iscsi_requeue_task);
Mike Christie843c0a82007-12-13 12:43:20 -06001482
1483/**
Mike Christie7996a772006-04-06 21:13:41 -05001484 * iscsi_data_xmit - xmit any command into the scheduled connection
1485 * @conn: iscsi connection
1486 *
1487 * Notes:
1488 * The function can return -EAGAIN in which case the caller must
1489 * re-schedule it again later or recover. '0' return code means
1490 * successful xmit.
1491 **/
1492static int iscsi_data_xmit(struct iscsi_conn *conn)
1493{
Mike Christie5d12c052009-11-11 16:34:32 -06001494 struct iscsi_task *task;
Mike Christie3219e522006-05-30 00:37:28 -05001495 int rc = 0;
Mike Christie7996a772006-04-06 21:13:41 -05001496
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001497 spin_lock_bh(&conn->session->frwd_lock);
Mike Christie70b31c12009-08-20 15:11:03 -05001498 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06001499 ISCSI_DBG_SESSION(conn->session, "Tx suspended!\n");
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001500 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001501 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001502 }
Mike Christie7996a772006-04-06 21:13:41 -05001503
Mike Christie9c19a7d2008-05-21 15:54:09 -05001504 if (conn->task) {
1505 rc = iscsi_xmit_task(conn);
Mike Christie3219e522006-05-30 00:37:28 -05001506 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001507 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001508 }
1509
Mike Christie77a23c22007-05-30 12:57:18 -05001510 /*
1511 * process mgmt pdus like nops before commands since we should
1512 * only have one nop-out as a ping from us and targets should not
1513 * overflow us with nop-ins
1514 */
1515check_mgmt:
Mike Christie843c0a82007-12-13 12:43:20 -06001516 while (!list_empty(&conn->mgmtqueue)) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05001517 conn->task = list_entry(conn->mgmtqueue.next,
1518 struct iscsi_task, running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001519 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001520 if (iscsi_prep_mgmt_task(conn, conn->task)) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001521 /* regular RX path uses back_lock */
1522 spin_lock_bh(&conn->session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001523 __iscsi_put_task(conn->task);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001524 spin_unlock_bh(&conn->session->back_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001525 conn->task = NULL;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001526 continue;
1527 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001528 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001529 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001530 goto done;
Mike Christie7996a772006-04-06 21:13:41 -05001531 }
1532
Mike Christie843c0a82007-12-13 12:43:20 -06001533 /* process pending command queue */
Mike Christie3bbaaad2009-05-13 17:57:46 -05001534 while (!list_empty(&conn->cmdqueue)) {
Mike Christie5d12c052009-11-11 16:34:32 -06001535 conn->task = list_entry(conn->cmdqueue.next, struct iscsi_task,
1536 running);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001537 list_del_init(&conn->task->running);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001538 if (conn->session->state == ISCSI_STATE_LOGGING_OUT) {
Mike Christieb3cd5052009-05-13 17:57:49 -05001539 fail_scsi_task(conn->task, DID_IMM_RETRY);
Mike Christieb3a7ea82007-12-13 12:43:26 -06001540 continue;
1541 }
Mike Christie577577d2008-12-02 00:32:05 -06001542 rc = iscsi_prep_scsi_cmd_pdu(conn->task);
1543 if (rc) {
Mike Christie5d12c052009-11-11 16:34:32 -06001544 if (rc == -ENOMEM || rc == -EACCES) {
Mike Christie3bbaaad2009-05-13 17:57:46 -05001545 list_add_tail(&conn->task->running,
1546 &conn->cmdqueue);
Mike Christie577577d2008-12-02 00:32:05 -06001547 conn->task = NULL;
Mike Christie70b31c12009-08-20 15:11:03 -05001548 goto done;
Mike Christie577577d2008-12-02 00:32:05 -06001549 } else
Mike Christieb3cd5052009-05-13 17:57:49 -05001550 fail_scsi_task(conn->task, DID_ABORT);
Boaz Harrosh004d6532007-12-13 12:43:23 -06001551 continue;
1552 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001553 rc = iscsi_xmit_task(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05001554 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001555 goto done;
Mike Christie77a23c22007-05-30 12:57:18 -05001556 /*
Mike Christie9c19a7d2008-05-21 15:54:09 -05001557 * we could continuously get new task requests so
Mike Christie77a23c22007-05-30 12:57:18 -05001558 * we need to check the mgmt queue for nops that need to
1559 * be sent to aviod starvation
1560 */
Mike Christie843c0a82007-12-13 12:43:20 -06001561 if (!list_empty(&conn->mgmtqueue))
1562 goto check_mgmt;
1563 }
1564
1565 while (!list_empty(&conn->requeue)) {
Mike Christieb3a7ea82007-12-13 12:43:26 -06001566 /*
1567 * we always do fastlogout - conn stop code will clean up.
1568 */
1569 if (conn->session->state == ISCSI_STATE_LOGGING_OUT)
1570 break;
1571
Mike Christie5d12c052009-11-11 16:34:32 -06001572 task = list_entry(conn->requeue.next, struct iscsi_task,
1573 running);
1574 if (iscsi_check_tmf_restrictions(task, ISCSI_OP_SCSI_DATA_OUT))
1575 break;
1576
1577 conn->task = task;
Mike Christie3bbaaad2009-05-13 17:57:46 -05001578 list_del_init(&conn->task->running);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001579 conn->task->state = ISCSI_TASK_RUNNING;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001580 rc = iscsi_xmit_task(conn);
Mike Christie843c0a82007-12-13 12:43:20 -06001581 if (rc)
Mike Christie70b31c12009-08-20 15:11:03 -05001582 goto done;
Mike Christie843c0a82007-12-13 12:43:20 -06001583 if (!list_empty(&conn->mgmtqueue))
Mike Christie77a23c22007-05-30 12:57:18 -05001584 goto check_mgmt;
Mike Christie7996a772006-04-06 21:13:41 -05001585 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001586 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001587 return -ENODATA;
Mike Christie7996a772006-04-06 21:13:41 -05001588
Mike Christie70b31c12009-08-20 15:11:03 -05001589done:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001590 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie3219e522006-05-30 00:37:28 -05001591 return rc;
Mike Christie7996a772006-04-06 21:13:41 -05001592}
1593
David Howellsc4028952006-11-22 14:57:56 +00001594static void iscsi_xmitworker(struct work_struct *work)
Mike Christie7996a772006-04-06 21:13:41 -05001595{
David Howellsc4028952006-11-22 14:57:56 +00001596 struct iscsi_conn *conn =
1597 container_of(work, struct iscsi_conn, xmitwork);
Mike Christie3219e522006-05-30 00:37:28 -05001598 int rc;
Mike Christie7996a772006-04-06 21:13:41 -05001599 /*
1600 * serialize Xmit worker on a per-connection basis.
1601 */
Mike Christie3219e522006-05-30 00:37:28 -05001602 do {
1603 rc = iscsi_data_xmit(conn);
1604 } while (rc >= 0 || rc == -EAGAIN);
Mike Christie7996a772006-04-06 21:13:41 -05001605}
1606
Mike Christie577577d2008-12-02 00:32:05 -06001607static inline struct iscsi_task *iscsi_alloc_task(struct iscsi_conn *conn,
1608 struct scsi_cmnd *sc)
1609{
1610 struct iscsi_task *task;
1611
Stefani Seibold7acd72e2009-12-21 14:37:28 -08001612 if (!kfifo_out(&conn->session->cmdpool.queue,
Mike Christie577577d2008-12-02 00:32:05 -06001613 (void *) &task, sizeof(void *)))
1614 return NULL;
1615
1616 sc->SCp.phase = conn->session->age;
1617 sc->SCp.ptr = (char *) task;
1618
1619 atomic_set(&task->refcount, 1);
1620 task->state = ISCSI_TASK_PENDING;
1621 task->conn = conn;
1622 task->sc = sc;
Mike Christied355e572009-06-15 22:11:08 -05001623 task->have_checked_conn = false;
1624 task->last_timeout = jiffies;
1625 task->last_xfer = jiffies;
Sagi Grimberg55e51ed2014-03-05 19:43:49 +02001626 task->protected = false;
Mike Christie577577d2008-12-02 00:32:05 -06001627 INIT_LIST_HEAD(&task->running);
1628 return task;
1629}
1630
Mike Christie7996a772006-04-06 21:13:41 -05001631enum {
1632 FAILURE_BAD_HOST = 1,
1633 FAILURE_SESSION_FAILED,
1634 FAILURE_SESSION_FREED,
1635 FAILURE_WINDOW_CLOSED,
Mike Christie60ecebf2006-08-31 18:09:25 -04001636 FAILURE_OOM,
Mike Christie7996a772006-04-06 21:13:41 -05001637 FAILURE_SESSION_TERMINATE,
Mike Christie656cffc2006-05-18 20:31:42 -05001638 FAILURE_SESSION_IN_RECOVERY,
Mike Christie7996a772006-04-06 21:13:41 -05001639 FAILURE_SESSION_RECOVERY_TIMEOUT,
Mike Christieb3a7ea82007-12-13 12:43:26 -06001640 FAILURE_SESSION_LOGGING_OUT,
Mike Christie6eabafb2008-01-31 13:36:43 -06001641 FAILURE_SESSION_NOT_READY,
Mike Christie7996a772006-04-06 21:13:41 -05001642};
1643
Mike Christief41d4722010-12-31 02:22:21 -06001644int iscsi_queuecommand(struct Scsi_Host *host, struct scsi_cmnd *sc)
Mike Christie7996a772006-04-06 21:13:41 -05001645{
Mike Christie75613522008-05-21 15:53:59 -05001646 struct iscsi_cls_session *cls_session;
Mike Christie1336aed2009-05-13 17:57:48 -05001647 struct iscsi_host *ihost;
Mike Christie7996a772006-04-06 21:13:41 -05001648 int reason = 0;
1649 struct iscsi_session *session;
1650 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001651 struct iscsi_task *task = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001652
Mike Christie7996a772006-04-06 21:13:41 -05001653 sc->result = 0;
Mike Christief47f2cf2006-08-31 18:09:33 -04001654 sc->SCp.ptr = NULL;
Mike Christie7996a772006-04-06 21:13:41 -05001655
Mike Christie1336aed2009-05-13 17:57:48 -05001656 ihost = shost_priv(host);
Mike Christie7996a772006-04-06 21:13:41 -05001657
Mike Christie75613522008-05-21 15:53:59 -05001658 cls_session = starget_to_session(scsi_target(sc->device));
1659 session = cls_session->dd_data;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001660 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001661
Mike Christie75613522008-05-21 15:53:59 -05001662 reason = iscsi_session_chkready(cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06001663 if (reason) {
1664 sc->result = reason;
1665 goto fault;
1666 }
1667
Mike Christie301e0f72009-05-13 17:57:47 -05001668 if (session->state != ISCSI_STATE_LOGGED_IN) {
Mike Christie656cffc2006-05-18 20:31:42 -05001669 /*
1670 * to handle the race between when we set the recovery state
1671 * and block the session we requeue here (commands could
1672 * be entering our queuecommand while a block is starting
1673 * up because the block code is not locked)
1674 */
Mike Christie9000bcd2007-12-13 12:43:32 -06001675 switch (session->state) {
Mike Christie301e0f72009-05-13 17:57:47 -05001676 case ISCSI_STATE_FAILED:
Mike Christie9000bcd2007-12-13 12:43:32 -06001677 case ISCSI_STATE_IN_RECOVERY:
Mike Christie656cffc2006-05-18 20:31:42 -05001678 reason = FAILURE_SESSION_IN_RECOVERY;
Mike Christie301e0f72009-05-13 17:57:47 -05001679 sc->result = DID_IMM_RETRY << 16;
1680 break;
Mike Christie9000bcd2007-12-13 12:43:32 -06001681 case ISCSI_STATE_LOGGING_OUT:
1682 reason = FAILURE_SESSION_LOGGING_OUT;
Mike Christie301e0f72009-05-13 17:57:47 -05001683 sc->result = DID_IMM_RETRY << 16;
1684 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001685 case ISCSI_STATE_RECOVERY_FAILED:
Mike Christie656cffc2006-05-18 20:31:42 -05001686 reason = FAILURE_SESSION_RECOVERY_TIMEOUT;
Mike Christie56d7fcf2008-08-19 18:45:26 -05001687 sc->result = DID_TRANSPORT_FAILFAST << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001688 break;
1689 case ISCSI_STATE_TERMINATE:
Mike Christie656cffc2006-05-18 20:31:42 -05001690 reason = FAILURE_SESSION_TERMINATE;
Mike Christie6eabafb2008-01-31 13:36:43 -06001691 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001692 break;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001693 default:
Mike Christie656cffc2006-05-18 20:31:42 -05001694 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001695 sc->result = DID_NO_CONNECT << 16;
Mike Christieb3a7ea82007-12-13 12:43:26 -06001696 }
Mike Christie7996a772006-04-06 21:13:41 -05001697 goto fault;
1698 }
1699
Mike Christie7996a772006-04-06 21:13:41 -05001700 conn = session->leadconn;
Mike Christie98644042006-10-16 18:09:39 -04001701 if (!conn) {
1702 reason = FAILURE_SESSION_FREED;
Mike Christie6eabafb2008-01-31 13:36:43 -06001703 sc->result = DID_NO_CONNECT << 16;
Mike Christie98644042006-10-16 18:09:39 -04001704 goto fault;
1705 }
Mike Christie7996a772006-04-06 21:13:41 -05001706
Mike Christie661134a2009-09-05 07:35:33 +05301707 if (test_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx)) {
1708 reason = FAILURE_SESSION_IN_RECOVERY;
1709 sc->result = DID_REQUEUE;
1710 goto fault;
1711 }
1712
Mike Christie77a23c22007-05-30 12:57:18 -05001713 if (iscsi_check_cmdsn_window_closed(conn)) {
1714 reason = FAILURE_WINDOW_CLOSED;
1715 goto reject;
1716 }
1717
Mike Christie577577d2008-12-02 00:32:05 -06001718 task = iscsi_alloc_task(conn, sc);
1719 if (!task) {
Mike Christie60ecebf2006-08-31 18:09:25 -04001720 reason = FAILURE_OOM;
1721 goto reject;
1722 }
Mike Christie7996a772006-04-06 21:13:41 -05001723
Mike Christie1336aed2009-05-13 17:57:48 -05001724 if (!ihost->workq) {
Mike Christie577577d2008-12-02 00:32:05 -06001725 reason = iscsi_prep_scsi_cmd_pdu(task);
1726 if (reason) {
Mike Christie5d12c052009-11-11 16:34:32 -06001727 if (reason == -ENOMEM || reason == -EACCES) {
Mike Christie577577d2008-12-02 00:32:05 -06001728 reason = FAILURE_OOM;
1729 goto prepd_reject;
1730 } else {
1731 sc->result = DID_ABORT << 16;
1732 goto prepd_fault;
1733 }
Mike Christie052d0142008-05-21 15:54:05 -05001734 }
Mike Christie9c19a7d2008-05-21 15:54:09 -05001735 if (session->tt->xmit_task(task)) {
Mike Christied3305f32009-08-20 15:10:58 -05001736 session->cmdsn--;
Mike Christie052d0142008-05-21 15:54:05 -05001737 reason = FAILURE_SESSION_NOT_READY;
Mike Christie577577d2008-12-02 00:32:05 -06001738 goto prepd_reject;
Mike Christie052d0142008-05-21 15:54:05 -05001739 }
Mike Christie3bbaaad2009-05-13 17:57:46 -05001740 } else {
1741 list_add_tail(&task->running, &conn->cmdqueue);
Mike Christie32ae7632009-03-05 14:46:03 -06001742 iscsi_conn_queue_work(conn);
Mike Christie3bbaaad2009-05-13 17:57:46 -05001743 }
Mike Christie052d0142008-05-21 15:54:05 -05001744
1745 session->queued_cmdsn++;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001746 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001747 return 0;
1748
Mike Christie577577d2008-12-02 00:32:05 -06001749prepd_reject:
Mike Christief41d4722010-12-31 02:22:21 -06001750 iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
Mike Christie7996a772006-04-06 21:13:41 -05001751reject:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001752 spin_unlock_bh(&session->frwd_lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001753 ISCSI_DBG_SESSION(session, "cmd 0x%x rejected (%d)\n",
1754 sc->cmnd[0], reason);
Mike Christied6d13ee2008-08-17 15:24:43 -05001755 return SCSI_MLQUEUE_TARGET_BUSY;
Mike Christie7996a772006-04-06 21:13:41 -05001756
Mike Christie577577d2008-12-02 00:32:05 -06001757prepd_fault:
Mike Christief41d4722010-12-31 02:22:21 -06001758 iscsi_complete_task(task, ISCSI_TASK_REQUEUE_SCSIQ);
Mike Christie7996a772006-04-06 21:13:41 -05001759fault:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001760 spin_unlock_bh(&session->frwd_lock);
Mike Christie1b2c7af2009-03-05 14:45:58 -06001761 ISCSI_DBG_SESSION(session, "iscsi: cmd 0x%x is not queued (%d)\n",
1762 sc->cmnd[0], reason);
Boaz Harroshc07d4442008-04-18 10:11:52 -05001763 if (!scsi_bidi_cmnd(sc))
1764 scsi_set_resid(sc, scsi_bufflen(sc));
1765 else {
1766 scsi_out(sc)->resid = scsi_out(sc)->length;
1767 scsi_in(sc)->resid = scsi_in(sc)->length;
1768 }
Mike Christief41d4722010-12-31 02:22:21 -06001769 sc->scsi_done(sc);
Mike Christie7996a772006-04-06 21:13:41 -05001770 return 0;
1771}
1772EXPORT_SYMBOL_GPL(iscsi_queuecommand);
1773
Mike Christiee881a172009-10-15 17:46:39 -07001774int iscsi_change_queue_depth(struct scsi_device *sdev, int depth, int reason)
Mike Christie7996a772006-04-06 21:13:41 -05001775{
Mike Christie1796e722009-11-11 16:34:36 -06001776 switch (reason) {
1777 case SCSI_QDEPTH_DEFAULT:
1778 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1779 break;
1780 case SCSI_QDEPTH_QFULL:
1781 scsi_track_queue_full(sdev, depth);
1782 break;
1783 case SCSI_QDEPTH_RAMP_UP:
1784 scsi_adjust_queue_depth(sdev, scsi_get_tag_type(sdev), depth);
1785 break;
1786 default:
Mike Christiee881a172009-10-15 17:46:39 -07001787 return -EOPNOTSUPP;
Mike Christie1796e722009-11-11 16:34:36 -06001788 }
Mike Christie7996a772006-04-06 21:13:41 -05001789 return sdev->queue_depth;
1790}
1791EXPORT_SYMBOL_GPL(iscsi_change_queue_depth);
1792
Mike Christie6b5d6c42009-04-21 15:32:32 -05001793int iscsi_target_alloc(struct scsi_target *starget)
1794{
1795 struct iscsi_cls_session *cls_session = starget_to_session(starget);
1796 struct iscsi_session *session = cls_session->dd_data;
1797
1798 starget->can_queue = session->scsi_cmds_max;
1799 return 0;
1800}
1801EXPORT_SYMBOL_GPL(iscsi_target_alloc);
1802
Mike Christie843c0a82007-12-13 12:43:20 -06001803static void iscsi_tmf_timedout(unsigned long data)
Mike Christie7996a772006-04-06 21:13:41 -05001804{
Mike Christie843c0a82007-12-13 12:43:20 -06001805 struct iscsi_conn *conn = (struct iscsi_conn *)data;
Mike Christie7996a772006-04-06 21:13:41 -05001806 struct iscsi_session *session = conn->session;
1807
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001808 spin_lock(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06001809 if (conn->tmf_state == TMF_QUEUED) {
1810 conn->tmf_state = TMF_TIMEDOUT;
Erez Zilberbd2199d2009-06-15 22:11:10 -05001811 ISCSI_DBG_EH(session, "tmf timedout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001812 /* unblock eh_abort() */
1813 wake_up(&conn->ehwait);
1814 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001815 spin_unlock(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05001816}
1817
Mike Christie9c19a7d2008-05-21 15:54:09 -05001818static int iscsi_exec_task_mgmt_fn(struct iscsi_conn *conn,
Mike Christief6d51802007-12-13 12:43:30 -06001819 struct iscsi_tm *hdr, int age,
1820 int timeout)
Mike Christie7996a772006-04-06 21:13:41 -05001821{
Mike Christie7996a772006-04-06 21:13:41 -05001822 struct iscsi_session *session = conn->session;
Mike Christie9c19a7d2008-05-21 15:54:09 -05001823 struct iscsi_task *task;
Mike Christie7996a772006-04-06 21:13:41 -05001824
Mike Christie9c19a7d2008-05-21 15:54:09 -05001825 task = __iscsi_conn_send_pdu(conn, (struct iscsi_hdr *)hdr,
Mike Christie843c0a82007-12-13 12:43:20 -06001826 NULL, 0);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001827 if (!task) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001828 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06001829 iscsi_conn_printk(KERN_ERR, conn, "Could not send TMF.\n");
Mike Christie7996a772006-04-06 21:13:41 -05001830 iscsi_conn_failure(conn, ISCSI_ERR_CONN_FAILED);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001831 spin_lock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05001832 return -EPERM;
Mike Christie7996a772006-04-06 21:13:41 -05001833 }
Mike Christie843c0a82007-12-13 12:43:20 -06001834 conn->tmfcmd_pdus_cnt++;
Mike Christief6d51802007-12-13 12:43:30 -06001835 conn->tmf_timer.expires = timeout * HZ + jiffies;
Mike Christie843c0a82007-12-13 12:43:20 -06001836 conn->tmf_timer.function = iscsi_tmf_timedout;
1837 conn->tmf_timer.data = (unsigned long)conn;
1838 add_timer(&conn->tmf_timer);
Erez Zilberbd2199d2009-06-15 22:11:10 -05001839 ISCSI_DBG_EH(session, "tmf set timeout\n");
Mike Christie7996a772006-04-06 21:13:41 -05001840
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001841 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05001842 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05001843
1844 /*
1845 * block eh thread until:
1846 *
Mike Christie843c0a82007-12-13 12:43:20 -06001847 * 1) tmf response
1848 * 2) tmf timeout
Mike Christie7996a772006-04-06 21:13:41 -05001849 * 3) session is terminated or restarted or userspace has
1850 * given up on recovery
1851 */
Mike Christie843c0a82007-12-13 12:43:20 -06001852 wait_event_interruptible(conn->ehwait, age != session->age ||
Mike Christie7996a772006-04-06 21:13:41 -05001853 session->state != ISCSI_STATE_LOGGED_IN ||
Mike Christie843c0a82007-12-13 12:43:20 -06001854 conn->tmf_state != TMF_QUEUED);
Mike Christie7996a772006-04-06 21:13:41 -05001855 if (signal_pending(current))
1856 flush_signals(current);
Mike Christie843c0a82007-12-13 12:43:20 -06001857 del_timer_sync(&conn->tmf_timer);
1858
Mike Christie6724add2007-08-15 01:38:30 -05001859 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001860 spin_lock_bh(&session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05001861 /* if the session drops it will clean up the task */
Mike Christie843c0a82007-12-13 12:43:20 -06001862 if (age != session->age ||
1863 session->state != ISCSI_STATE_LOGGED_IN)
1864 return -ENOTCONN;
Mike Christie7996a772006-04-06 21:13:41 -05001865 return 0;
1866}
1867
1868/*
Mike Christie843c0a82007-12-13 12:43:20 -06001869 * Fail commands. session lock held and recv side suspended and xmit
1870 * thread flushed
1871 */
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02001872static void fail_scsi_tasks(struct iscsi_conn *conn, u64 lun, int error)
Mike Christie843c0a82007-12-13 12:43:20 -06001873{
Mike Christie3bbaaad2009-05-13 17:57:46 -05001874 struct iscsi_task *task;
1875 int i;
Mike Christie843c0a82007-12-13 12:43:20 -06001876
Mike Christie3bbaaad2009-05-13 17:57:46 -05001877 for (i = 0; i < conn->session->cmds_max; i++) {
1878 task = conn->session->cmds[i];
1879 if (!task->sc || task->state == ISCSI_TASK_FREE)
1880 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001881
Mike Christie3bbaaad2009-05-13 17:57:46 -05001882 if (lun != -1 && lun != task->sc->device->lun)
1883 continue;
Mike Christie843c0a82007-12-13 12:43:20 -06001884
Mike Christie3bbaaad2009-05-13 17:57:46 -05001885 ISCSI_DBG_SESSION(conn->session,
1886 "failing sc %p itt 0x%x state %d\n",
1887 task->sc, task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05001888 fail_scsi_task(task, error);
Mike Christie843c0a82007-12-13 12:43:20 -06001889 }
1890}
1891
Mike Christie661134a2009-09-05 07:35:33 +05301892/**
1893 * iscsi_suspend_queue - suspend iscsi_queuecommand
1894 * @conn: iscsi conn to stop queueing IO on
1895 *
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001896 * This grabs the session frwd_lock to make sure no one is in
Mike Christie661134a2009-09-05 07:35:33 +05301897 * xmit_task/queuecommand, and then sets suspend to prevent
1898 * new commands from being queued. This only needs to be called
1899 * by offload drivers that need to sync a path like ep disconnect
1900 * with the iscsi_queuecommand/xmit_task. To start IO again libiscsi
1901 * will call iscsi_start_tx and iscsi_unblock_session when in FFP.
1902 */
1903void iscsi_suspend_queue(struct iscsi_conn *conn)
1904{
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001905 spin_lock_bh(&conn->session->frwd_lock);
Mike Christie661134a2009-09-05 07:35:33 +05301906 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001907 spin_unlock_bh(&conn->session->frwd_lock);
Mike Christie661134a2009-09-05 07:35:33 +05301908}
1909EXPORT_SYMBOL_GPL(iscsi_suspend_queue);
1910
1911/**
1912 * iscsi_suspend_tx - suspend iscsi_data_xmit
1913 * @conn: iscsi conn tp stop processing IO on.
1914 *
1915 * This function sets the suspend bit to prevent iscsi_data_xmit
1916 * from sending new IO, and if work is queued on the xmit thread
1917 * it will wait for it to be completed.
1918 */
Mike Christieb40977d2008-05-21 15:54:03 -05001919void iscsi_suspend_tx(struct iscsi_conn *conn)
Mike Christie6724add2007-08-15 01:38:30 -05001920{
Mike Christie32ae7632009-03-05 14:46:03 -06001921 struct Scsi_Host *shost = conn->session->host;
1922 struct iscsi_host *ihost = shost_priv(shost);
1923
Mike Christie6724add2007-08-15 01:38:30 -05001924 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001925 if (ihost->workq)
Mike Christie32ae7632009-03-05 14:46:03 -06001926 flush_workqueue(ihost->workq);
Mike Christie6724add2007-08-15 01:38:30 -05001927}
Mike Christieb40977d2008-05-21 15:54:03 -05001928EXPORT_SYMBOL_GPL(iscsi_suspend_tx);
Mike Christie6724add2007-08-15 01:38:30 -05001929
1930static void iscsi_start_tx(struct iscsi_conn *conn)
1931{
1932 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
Mike Christie1336aed2009-05-13 17:57:48 -05001933 iscsi_conn_queue_work(conn);
Mike Christie6724add2007-08-15 01:38:30 -05001934}
1935
Mike Christie4c48a822009-05-13 17:57:45 -05001936/*
1937 * We want to make sure a ping is in flight. It has timed out.
1938 * And we are not busy processing a pdu that is making
1939 * progress but got started before the ping and is taking a while
1940 * to complete so the ping is just stuck behind it in a queue.
1941 */
1942static int iscsi_has_ping_timed_out(struct iscsi_conn *conn)
1943{
1944 if (conn->ping_task &&
1945 time_before_eq(conn->last_recv + (conn->recv_timeout * HZ) +
1946 (conn->ping_timeout * HZ), jiffies))
1947 return 1;
1948 else
1949 return 0;
1950}
1951
Mike Christied355e572009-06-15 22:11:08 -05001952static enum blk_eh_timer_return iscsi_eh_cmd_timed_out(struct scsi_cmnd *sc)
Mike Christief6d51802007-12-13 12:43:30 -06001953{
Mike Christied355e572009-06-15 22:11:08 -05001954 enum blk_eh_timer_return rc = BLK_EH_NOT_HANDLED;
Mike Christie92ed4d62010-02-10 16:51:45 -06001955 struct iscsi_task *task = NULL, *running_task;
Mike Christief6d51802007-12-13 12:43:30 -06001956 struct iscsi_cls_session *cls_session;
1957 struct iscsi_session *session;
1958 struct iscsi_conn *conn;
Mike Christie92ed4d62010-02-10 16:51:45 -06001959 int i;
Mike Christief6d51802007-12-13 12:43:30 -06001960
Mike Christied355e572009-06-15 22:11:08 -05001961 cls_session = starget_to_session(scsi_target(sc->device));
Mike Christie75613522008-05-21 15:53:59 -05001962 session = cls_session->dd_data;
Mike Christief6d51802007-12-13 12:43:30 -06001963
Erez Zilberbd2199d2009-06-15 22:11:10 -05001964 ISCSI_DBG_EH(session, "scsi cmd %p timedout\n", sc);
Mike Christief6d51802007-12-13 12:43:30 -06001965
Shlomo Pongratz659743b2014-02-07 00:41:38 -06001966 spin_lock(&session->frwd_lock);
Mike Christiee3d338a2012-01-26 21:13:11 -06001967 task = (struct iscsi_task *)sc->SCp.ptr;
1968 if (!task) {
1969 /*
1970 * Raced with completion. Blk layer has taken ownership
1971 * so let timeout code complete it now.
1972 */
1973 rc = BLK_EH_HANDLED;
1974 goto done;
1975 }
1976
Mike Christief6d51802007-12-13 12:43:30 -06001977 if (session->state != ISCSI_STATE_LOGGED_IN) {
1978 /*
1979 * We are probably in the middle of iscsi recovery so let
1980 * that complete and handle the error.
1981 */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001982 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001983 goto done;
1984 }
1985
1986 conn = session->leadconn;
1987 if (!conn) {
1988 /* In the middle of shuting down */
Jens Axboe242f9dc2008-09-14 05:55:09 -07001989 rc = BLK_EH_RESET_TIMER;
Mike Christief6d51802007-12-13 12:43:30 -06001990 goto done;
1991 }
1992
Mike Christied355e572009-06-15 22:11:08 -05001993 /*
1994 * If we have sent (at least queued to the network layer) a pdu or
1995 * recvd one for the task since the last timeout ask for
1996 * more time. If on the next timeout we have not made progress
1997 * we can check if it is the task or connection when we send the
1998 * nop as a ping.
1999 */
Mike Christie92ed4d62010-02-10 16:51:45 -06002000 if (time_after(task->last_xfer, task->last_timeout)) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002001 ISCSI_DBG_EH(session, "Command making progress. Asking "
2002 "scsi-ml for more time to complete. "
Mike Christie92ed4d62010-02-10 16:51:45 -06002003 "Last data xfer at %lu. Last timeout was at "
Erez Zilberbd2199d2009-06-15 22:11:10 -05002004 "%lu\n.", task->last_xfer, task->last_timeout);
Mike Christied355e572009-06-15 22:11:08 -05002005 task->have_checked_conn = false;
2006 rc = BLK_EH_RESET_TIMER;
2007 goto done;
2008 }
2009
Mike Christief6d51802007-12-13 12:43:30 -06002010 if (!conn->recv_timeout && !conn->ping_timeout)
2011 goto done;
2012 /*
2013 * if the ping timedout then we are in the middle of cleaning up
2014 * and can let the iscsi eh handle it
2015 */
Mike Christie4c48a822009-05-13 17:57:45 -05002016 if (iscsi_has_ping_timed_out(conn)) {
Jens Axboe242f9dc2008-09-14 05:55:09 -07002017 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05002018 goto done;
2019 }
Mike Christied355e572009-06-15 22:11:08 -05002020
Mike Christie92ed4d62010-02-10 16:51:45 -06002021 for (i = 0; i < conn->session->cmds_max; i++) {
2022 running_task = conn->session->cmds[i];
2023 if (!running_task->sc || running_task == task ||
2024 running_task->state != ISCSI_TASK_RUNNING)
2025 continue;
2026
2027 /*
2028 * Only check if cmds started before this one have made
2029 * progress, or this could never fail
2030 */
2031 if (time_after(running_task->sc->jiffies_at_alloc,
2032 task->sc->jiffies_at_alloc))
2033 continue;
2034
2035 if (time_after(running_task->last_xfer, task->last_timeout)) {
2036 /*
2037 * This task has not made progress, but a task
2038 * started before us has transferred data since
2039 * we started/last-checked. We could be queueing
2040 * too many tasks or the LU is bad.
2041 *
2042 * If the device is bad the cmds ahead of us on
2043 * other devs will complete, and this loop will
2044 * eventually fail starting the scsi eh.
2045 */
2046 ISCSI_DBG_EH(session, "Command has not made progress "
2047 "but commands ahead of it have. "
2048 "Asking scsi-ml for more time to "
2049 "complete. Our last xfer vs running task "
2050 "last xfer %lu/%lu. Last check %lu.\n",
2051 task->last_xfer, running_task->last_xfer,
2052 task->last_timeout);
2053 rc = BLK_EH_RESET_TIMER;
2054 goto done;
2055 }
2056 }
2057
Mike Christied355e572009-06-15 22:11:08 -05002058 /* Assumes nop timeout is shorter than scsi cmd timeout */
2059 if (task->have_checked_conn)
2060 goto done;
2061
Mike Christief6d51802007-12-13 12:43:30 -06002062 /*
Mike Christied355e572009-06-15 22:11:08 -05002063 * Checking the transport already or nop from a cmd timeout still
2064 * running
Mike Christief6d51802007-12-13 12:43:30 -06002065 */
Mike Christied355e572009-06-15 22:11:08 -05002066 if (conn->ping_task) {
2067 task->have_checked_conn = true;
Jens Axboe242f9dc2008-09-14 05:55:09 -07002068 rc = BLK_EH_RESET_TIMER;
Mike Christie4c48a822009-05-13 17:57:45 -05002069 goto done;
2070 }
2071
Mike Christied355e572009-06-15 22:11:08 -05002072 /* Make sure there is a transport check done */
2073 iscsi_send_nopout(conn, NULL);
2074 task->have_checked_conn = true;
2075 rc = BLK_EH_RESET_TIMER;
2076
Mike Christief6d51802007-12-13 12:43:30 -06002077done:
Mike Christied355e572009-06-15 22:11:08 -05002078 if (task)
2079 task->last_timeout = jiffies;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002080 spin_unlock(&session->frwd_lock);
Erez Zilberbd2199d2009-06-15 22:11:10 -05002081 ISCSI_DBG_EH(session, "return %s\n", rc == BLK_EH_RESET_TIMER ?
2082 "timer reset" : "nh");
Mike Christief6d51802007-12-13 12:43:30 -06002083 return rc;
2084}
2085
2086static void iscsi_check_transport_timeouts(unsigned long data)
2087{
2088 struct iscsi_conn *conn = (struct iscsi_conn *)data;
2089 struct iscsi_session *session = conn->session;
Mike Christie4cf10432008-05-07 20:43:52 -05002090 unsigned long recv_timeout, next_timeout = 0, last_recv;
Mike Christief6d51802007-12-13 12:43:30 -06002091
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002092 spin_lock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06002093 if (session->state != ISCSI_STATE_LOGGED_IN)
2094 goto done;
2095
Mike Christie4cf10432008-05-07 20:43:52 -05002096 recv_timeout = conn->recv_timeout;
2097 if (!recv_timeout)
Mike Christief6d51802007-12-13 12:43:30 -06002098 goto done;
2099
Mike Christie4cf10432008-05-07 20:43:52 -05002100 recv_timeout *= HZ;
Mike Christief6d51802007-12-13 12:43:30 -06002101 last_recv = conn->last_recv;
Mike Christie4c48a822009-05-13 17:57:45 -05002102
2103 if (iscsi_has_ping_timed_out(conn)) {
Mike Christie322d7392008-01-31 13:36:52 -06002104 iscsi_conn_printk(KERN_ERR, conn, "ping timeout of %d secs "
Mike Christie4c48a822009-05-13 17:57:45 -05002105 "expired, recv timeout %d, last rx %lu, "
2106 "last ping %lu, now %lu\n",
2107 conn->ping_timeout, conn->recv_timeout,
2108 last_recv, conn->last_ping, jiffies);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002109 spin_unlock(&session->frwd_lock);
Mike Christie09ff7422014-07-12 15:51:51 -05002110 iscsi_conn_failure(conn, ISCSI_ERR_NOP_TIMEDOUT);
Mike Christief6d51802007-12-13 12:43:30 -06002111 return;
2112 }
2113
Mike Christie4cf10432008-05-07 20:43:52 -05002114 if (time_before_eq(last_recv + recv_timeout, jiffies)) {
Mike Christiec8611f92008-05-08 20:15:34 -05002115 /* send a ping to try to provoke some traffic */
Mike Christie1b2c7af2009-03-05 14:45:58 -06002116 ISCSI_DBG_CONN(conn, "Sending nopout as ping\n");
Mike Christiec8611f92008-05-08 20:15:34 -05002117 iscsi_send_nopout(conn, NULL);
Mike Christie4cf10432008-05-07 20:43:52 -05002118 next_timeout = conn->last_ping + (conn->ping_timeout * HZ);
Mike Christiead294e92008-01-31 13:36:50 -06002119 } else
Mike Christie4cf10432008-05-07 20:43:52 -05002120 next_timeout = last_recv + recv_timeout;
Mike Christief6d51802007-12-13 12:43:30 -06002121
Mike Christie1b2c7af2009-03-05 14:45:58 -06002122 ISCSI_DBG_CONN(conn, "Setting next tmo %lu\n", next_timeout);
Mike Christiead294e92008-01-31 13:36:50 -06002123 mod_timer(&conn->transport_timer, next_timeout);
Mike Christief6d51802007-12-13 12:43:30 -06002124done:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002125 spin_unlock(&session->frwd_lock);
Mike Christief6d51802007-12-13 12:43:30 -06002126}
2127
Mike Christie9c19a7d2008-05-21 15:54:09 -05002128static void iscsi_prep_abort_task_pdu(struct iscsi_task *task,
Mike Christie843c0a82007-12-13 12:43:20 -06002129 struct iscsi_tm *hdr)
2130{
2131 memset(hdr, 0, sizeof(*hdr));
2132 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2133 hdr->flags = ISCSI_TM_FUNC_ABORT_TASK & ISCSI_FLAG_TM_FUNC_MASK;
2134 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Andy Grover55bdabd2011-06-16 15:57:09 -07002135 hdr->lun = task->lun;
Mike Christie577577d2008-12-02 00:32:05 -06002136 hdr->rtt = task->hdr_itt;
2137 hdr->refcmdsn = task->cmdsn;
Mike Christie843c0a82007-12-13 12:43:20 -06002138}
2139
Mike Christie7996a772006-04-06 21:13:41 -05002140int iscsi_eh_abort(struct scsi_cmnd *sc)
2141{
Mike Christie75613522008-05-21 15:53:59 -05002142 struct iscsi_cls_session *cls_session;
2143 struct iscsi_session *session;
Mike Christief47f2cf2006-08-31 18:09:33 -04002144 struct iscsi_conn *conn;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002145 struct iscsi_task *task;
Mike Christie843c0a82007-12-13 12:43:20 -06002146 struct iscsi_tm *hdr;
2147 int rc, age;
Mike Christie7996a772006-04-06 21:13:41 -05002148
Mike Christie75613522008-05-21 15:53:59 -05002149 cls_session = starget_to_session(scsi_target(sc->device));
2150 session = cls_session->dd_data;
2151
Erez Zilberbd2199d2009-06-15 22:11:10 -05002152 ISCSI_DBG_EH(session, "aborting sc %p\n", sc);
Mike Christie4421c9e2009-05-13 17:57:50 -05002153
Mike Christie6724add2007-08-15 01:38:30 -05002154 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002155 spin_lock_bh(&session->frwd_lock);
Mike Christief47f2cf2006-08-31 18:09:33 -04002156 /*
2157 * if session was ISCSI_STATE_IN_RECOVERY then we may not have
2158 * got the command.
2159 */
2160 if (!sc->SCp.ptr) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002161 ISCSI_DBG_EH(session, "sc never reached iscsi layer or "
2162 "it completed.\n");
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002163 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05002164 mutex_unlock(&session->eh_mutex);
Mike Christief47f2cf2006-08-31 18:09:33 -04002165 return SUCCESS;
2166 }
2167
Mike Christie7996a772006-04-06 21:13:41 -05002168 /*
2169 * If we are not logged in or we have started a new session
2170 * then let the host reset code handle this
2171 */
Mike Christie843c0a82007-12-13 12:43:20 -06002172 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN ||
2173 sc->SCp.phase != session->age) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002174 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002175 mutex_unlock(&session->eh_mutex);
Erez Zilberbd2199d2009-06-15 22:11:10 -05002176 ISCSI_DBG_EH(session, "failing abort due to dropped "
Mike Christie4421c9e2009-05-13 17:57:50 -05002177 "session.\n");
Mike Christie843c0a82007-12-13 12:43:20 -06002178 return FAILED;
2179 }
2180
2181 conn = session->leadconn;
2182 conn->eh_abort_cnt++;
2183 age = session->age;
2184
Mike Christie9c19a7d2008-05-21 15:54:09 -05002185 task = (struct iscsi_task *)sc->SCp.ptr;
Erez Zilberbd2199d2009-06-15 22:11:10 -05002186 ISCSI_DBG_EH(session, "aborting [sc %p itt 0x%x]\n",
2187 sc, task->itt);
Mike Christie7996a772006-04-06 21:13:41 -05002188
Mike Christie9c19a7d2008-05-21 15:54:09 -05002189 /* task completed before time out */
2190 if (!task->sc) {
Erez Zilberbd2199d2009-06-15 22:11:10 -05002191 ISCSI_DBG_EH(session, "sc completed while abort in progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002192 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002193 }
Mike Christie7996a772006-04-06 21:13:41 -05002194
Mike Christie9c19a7d2008-05-21 15:54:09 -05002195 if (task->state == ISCSI_TASK_PENDING) {
Mike Christieb3cd5052009-05-13 17:57:49 -05002196 fail_scsi_task(task, DID_ABORT);
Mike Christie77a23c22007-05-30 12:57:18 -05002197 goto success;
2198 }
Mike Christie7996a772006-04-06 21:13:41 -05002199
Mike Christie843c0a82007-12-13 12:43:20 -06002200 /* only have one tmf outstanding at a time */
2201 if (conn->tmf_state != TMF_INITIAL)
Mike Christie7996a772006-04-06 21:13:41 -05002202 goto failed;
Mike Christie843c0a82007-12-13 12:43:20 -06002203 conn->tmf_state = TMF_QUEUED;
Mike Christie7996a772006-04-06 21:13:41 -05002204
Mike Christie843c0a82007-12-13 12:43:20 -06002205 hdr = &conn->tmhdr;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002206 iscsi_prep_abort_task_pdu(task, hdr);
Mike Christie843c0a82007-12-13 12:43:20 -06002207
Mike Christie9c19a7d2008-05-21 15:54:09 -05002208 if (iscsi_exec_task_mgmt_fn(conn, hdr, age, session->abort_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06002209 rc = FAILED;
2210 goto failed;
2211 }
2212
2213 switch (conn->tmf_state) {
2214 case TMF_SUCCESS:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002215 spin_unlock_bh(&session->frwd_lock);
Mike Christie913e5bf2008-05-21 15:54:18 -05002216 /*
2217 * stop tx side incase the target had sent a abort rsp but
2218 * the initiator was still writing out data.
2219 */
Mike Christie6724add2007-08-15 01:38:30 -05002220 iscsi_suspend_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002221 /*
Mike Christie913e5bf2008-05-21 15:54:18 -05002222 * we do not stop the recv side because targets have been
2223 * good and have never sent us a successful tmf response
2224 * then sent more data for the cmd.
Mike Christie77a23c22007-05-30 12:57:18 -05002225 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002226 spin_lock_bh(&session->frwd_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05002227 fail_scsi_task(task, DID_ABORT);
Mike Christie843c0a82007-12-13 12:43:20 -06002228 conn->tmf_state = TMF_INITIAL;
Mike Christie5d12c052009-11-11 16:34:32 -06002229 memset(hdr, 0, sizeof(*hdr));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002230 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05002231 iscsi_start_tx(conn);
Mike Christie77a23c22007-05-30 12:57:18 -05002232 goto success_unlocked;
Mike Christie843c0a82007-12-13 12:43:20 -06002233 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002234 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002235 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie843c0a82007-12-13 12:43:20 -06002236 goto failed_unlocked;
2237 case TMF_NOT_FOUND:
2238 if (!sc->SCp.ptr) {
2239 conn->tmf_state = TMF_INITIAL;
Mike Christie5d12c052009-11-11 16:34:32 -06002240 memset(hdr, 0, sizeof(*hdr));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002241 /* task completed before tmf abort response */
Erez Zilberbd2199d2009-06-15 22:11:10 -05002242 ISCSI_DBG_EH(session, "sc completed while abort in "
2243 "progress\n");
Mike Christie77a23c22007-05-30 12:57:18 -05002244 goto success;
Mike Christie7ea8b822006-07-24 15:47:22 -05002245 }
2246 /* fall through */
2247 default:
Mike Christie843c0a82007-12-13 12:43:20 -06002248 conn->tmf_state = TMF_INITIAL;
2249 goto failed;
Mike Christie7996a772006-04-06 21:13:41 -05002250 }
2251
Mike Christie77a23c22007-05-30 12:57:18 -05002252success:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002253 spin_unlock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002254success_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002255 ISCSI_DBG_EH(session, "abort success [sc %p itt 0x%x]\n",
2256 sc, task->itt);
Mike Christie6724add2007-08-15 01:38:30 -05002257 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002258 return SUCCESS;
2259
2260failed:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002261 spin_unlock_bh(&session->frwd_lock);
Mike Christie77a23c22007-05-30 12:57:18 -05002262failed_unlocked:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002263 ISCSI_DBG_EH(session, "abort failed [sc %p itt 0x%x]\n", sc,
2264 task ? task->itt : 0);
Mike Christie6724add2007-08-15 01:38:30 -05002265 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05002266 return FAILED;
2267}
2268EXPORT_SYMBOL_GPL(iscsi_eh_abort);
2269
Mike Christie843c0a82007-12-13 12:43:20 -06002270static void iscsi_prep_lun_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2271{
2272 memset(hdr, 0, sizeof(*hdr));
2273 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2274 hdr->flags = ISCSI_TM_FUNC_LOGICAL_UNIT_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2275 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
Andy Grover55bdabd2011-06-16 15:57:09 -07002276 int_to_scsilun(sc->device->lun, &hdr->lun);
Mike Christief6d51802007-12-13 12:43:30 -06002277 hdr->rtt = RESERVED_ITT;
Mike Christie843c0a82007-12-13 12:43:20 -06002278}
2279
2280int iscsi_eh_device_reset(struct scsi_cmnd *sc)
2281{
Mike Christie75613522008-05-21 15:53:59 -05002282 struct iscsi_cls_session *cls_session;
2283 struct iscsi_session *session;
Mike Christie843c0a82007-12-13 12:43:20 -06002284 struct iscsi_conn *conn;
2285 struct iscsi_tm *hdr;
2286 int rc = FAILED;
2287
Mike Christie75613522008-05-21 15:53:59 -05002288 cls_session = starget_to_session(scsi_target(sc->device));
2289 session = cls_session->dd_data;
2290
Hannes Reinecke9cb78c12014-06-25 15:27:36 +02002291 ISCSI_DBG_EH(session, "LU Reset [sc %p lun %llu]\n", sc,
2292 sc->device->lun);
Mike Christie843c0a82007-12-13 12:43:20 -06002293
2294 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002295 spin_lock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002296 /*
2297 * Just check if we are not logged in. We cannot check for
2298 * the phase because the reset could come from a ioctl.
2299 */
2300 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2301 goto unlock;
2302 conn = session->leadconn;
2303
2304 /* only have one tmf outstanding at a time */
2305 if (conn->tmf_state != TMF_INITIAL)
2306 goto unlock;
2307 conn->tmf_state = TMF_QUEUED;
2308
2309 hdr = &conn->tmhdr;
2310 iscsi_prep_lun_reset_pdu(sc, hdr);
2311
Mike Christie9c19a7d2008-05-21 15:54:09 -05002312 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
Mike Christief6d51802007-12-13 12:43:30 -06002313 session->lu_reset_timeout)) {
Mike Christie843c0a82007-12-13 12:43:20 -06002314 rc = FAILED;
2315 goto unlock;
2316 }
2317
2318 switch (conn->tmf_state) {
2319 case TMF_SUCCESS:
2320 break;
2321 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002322 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002323 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie843c0a82007-12-13 12:43:20 -06002324 goto done;
2325 default:
2326 conn->tmf_state = TMF_INITIAL;
2327 goto unlock;
2328 }
2329
2330 rc = SUCCESS;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002331 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002332
2333 iscsi_suspend_tx(conn);
Mike Christie913e5bf2008-05-21 15:54:18 -05002334
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002335 spin_lock_bh(&session->frwd_lock);
Mike Christie5d12c052009-11-11 16:34:32 -06002336 memset(hdr, 0, sizeof(*hdr));
Mike Christie3bbaaad2009-05-13 17:57:46 -05002337 fail_scsi_tasks(conn, sc->device->lun, DID_ERROR);
Mike Christie843c0a82007-12-13 12:43:20 -06002338 conn->tmf_state = TMF_INITIAL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002339 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002340
2341 iscsi_start_tx(conn);
2342 goto done;
2343
2344unlock:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002345 spin_unlock_bh(&session->frwd_lock);
Mike Christie843c0a82007-12-13 12:43:20 -06002346done:
Erez Zilberbd2199d2009-06-15 22:11:10 -05002347 ISCSI_DBG_EH(session, "dev reset result = %s\n",
2348 rc == SUCCESS ? "SUCCESS" : "FAILED");
Mike Christie843c0a82007-12-13 12:43:20 -06002349 mutex_unlock(&session->eh_mutex);
2350 return rc;
2351}
2352EXPORT_SYMBOL_GPL(iscsi_eh_device_reset);
2353
Mike Christie3fe5ae82009-11-11 16:34:33 -06002354void iscsi_session_recovery_timedout(struct iscsi_cls_session *cls_session)
2355{
2356 struct iscsi_session *session = cls_session->dd_data;
2357
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002358 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002359 if (session->state != ISCSI_STATE_LOGGED_IN) {
2360 session->state = ISCSI_STATE_RECOVERY_FAILED;
2361 if (session->leadconn)
2362 wake_up(&session->leadconn->ehwait);
2363 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002364 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002365}
2366EXPORT_SYMBOL_GPL(iscsi_session_recovery_timedout);
2367
2368/**
2369 * iscsi_eh_session_reset - drop session and attempt relogin
2370 * @sc: scsi command
2371 *
2372 * This function will wait for a relogin, session termination from
2373 * userspace, or a recovery/replacement timeout.
2374 */
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302375int iscsi_eh_session_reset(struct scsi_cmnd *sc)
Mike Christie3fe5ae82009-11-11 16:34:33 -06002376{
2377 struct iscsi_cls_session *cls_session;
2378 struct iscsi_session *session;
2379 struct iscsi_conn *conn;
2380
2381 cls_session = starget_to_session(scsi_target(sc->device));
2382 session = cls_session->dd_data;
2383 conn = session->leadconn;
2384
2385 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002386 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002387 if (session->state == ISCSI_STATE_TERMINATE) {
2388failed:
2389 ISCSI_DBG_EH(session,
2390 "failing session reset: Could not log back into "
2391 "%s, %s [age %d]\n", session->targetname,
2392 conn->persistent_address, session->age);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002393 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002394 mutex_unlock(&session->eh_mutex);
2395 return FAILED;
2396 }
2397
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002398 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002399 mutex_unlock(&session->eh_mutex);
2400 /*
2401 * we drop the lock here but the leadconn cannot be destoyed while
2402 * we are in the scsi eh
2403 */
Mike Christiedf4da5c2010-12-31 02:22:18 -06002404 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002405
2406 ISCSI_DBG_EH(session, "wait for relogin\n");
2407 wait_event_interruptible(conn->ehwait,
2408 session->state == ISCSI_STATE_TERMINATE ||
2409 session->state == ISCSI_STATE_LOGGED_IN ||
2410 session->state == ISCSI_STATE_RECOVERY_FAILED);
2411 if (signal_pending(current))
2412 flush_signals(current);
2413
2414 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002415 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002416 if (session->state == ISCSI_STATE_LOGGED_IN) {
2417 ISCSI_DBG_EH(session,
2418 "session reset succeeded for %s,%s\n",
2419 session->targetname, conn->persistent_address);
2420 } else
2421 goto failed;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002422 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002423 mutex_unlock(&session->eh_mutex);
2424 return SUCCESS;
2425}
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302426EXPORT_SYMBOL_GPL(iscsi_eh_session_reset);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002427
2428static void iscsi_prep_tgt_reset_pdu(struct scsi_cmnd *sc, struct iscsi_tm *hdr)
2429{
2430 memset(hdr, 0, sizeof(*hdr));
2431 hdr->opcode = ISCSI_OP_SCSI_TMFUNC | ISCSI_OP_IMMEDIATE;
2432 hdr->flags = ISCSI_TM_FUNC_TARGET_WARM_RESET & ISCSI_FLAG_TM_FUNC_MASK;
2433 hdr->flags |= ISCSI_FLAG_CMD_FINAL;
2434 hdr->rtt = RESERVED_ITT;
2435}
2436
2437/**
2438 * iscsi_eh_target_reset - reset target
2439 * @sc: scsi command
2440 *
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302441 * This will attempt to send a warm target reset.
Mike Christie3fe5ae82009-11-11 16:34:33 -06002442 */
2443int iscsi_eh_target_reset(struct scsi_cmnd *sc)
2444{
2445 struct iscsi_cls_session *cls_session;
2446 struct iscsi_session *session;
2447 struct iscsi_conn *conn;
2448 struct iscsi_tm *hdr;
2449 int rc = FAILED;
2450
2451 cls_session = starget_to_session(scsi_target(sc->device));
2452 session = cls_session->dd_data;
2453
2454 ISCSI_DBG_EH(session, "tgt Reset [sc %p tgt %s]\n", sc,
2455 session->targetname);
2456
2457 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002458 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002459 /*
2460 * Just check if we are not logged in. We cannot check for
2461 * the phase because the reset could come from a ioctl.
2462 */
2463 if (!session->leadconn || session->state != ISCSI_STATE_LOGGED_IN)
2464 goto unlock;
2465 conn = session->leadconn;
2466
2467 /* only have one tmf outstanding at a time */
2468 if (conn->tmf_state != TMF_INITIAL)
2469 goto unlock;
2470 conn->tmf_state = TMF_QUEUED;
2471
2472 hdr = &conn->tmhdr;
2473 iscsi_prep_tgt_reset_pdu(sc, hdr);
2474
2475 if (iscsi_exec_task_mgmt_fn(conn, hdr, session->age,
2476 session->tgt_reset_timeout)) {
2477 rc = FAILED;
2478 goto unlock;
2479 }
2480
2481 switch (conn->tmf_state) {
2482 case TMF_SUCCESS:
2483 break;
2484 case TMF_TIMEDOUT:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002485 spin_unlock_bh(&session->frwd_lock);
Mike Christiedf4da5c2010-12-31 02:22:18 -06002486 iscsi_conn_failure(conn, ISCSI_ERR_SCSI_EH_SESSION_RST);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002487 goto done;
2488 default:
2489 conn->tmf_state = TMF_INITIAL;
2490 goto unlock;
2491 }
2492
2493 rc = SUCCESS;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002494 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002495
2496 iscsi_suspend_tx(conn);
2497
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002498 spin_lock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002499 memset(hdr, 0, sizeof(*hdr));
2500 fail_scsi_tasks(conn, -1, DID_ERROR);
2501 conn->tmf_state = TMF_INITIAL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002502 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002503
2504 iscsi_start_tx(conn);
2505 goto done;
2506
2507unlock:
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002508 spin_unlock_bh(&session->frwd_lock);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002509done:
2510 ISCSI_DBG_EH(session, "tgt %s reset result = %s\n", session->targetname,
2511 rc == SUCCESS ? "SUCCESS" : "FAILED");
2512 mutex_unlock(&session->eh_mutex);
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302513 return rc;
2514}
2515EXPORT_SYMBOL_GPL(iscsi_eh_target_reset);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002516
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302517/**
2518 * iscsi_eh_recover_target - reset target and possibly the session
2519 * @sc: scsi command
2520 *
2521 * This will attempt to send a warm target reset. If that fails,
2522 * we will escalate to ERL0 session recovery.
2523 */
2524int iscsi_eh_recover_target(struct scsi_cmnd *sc)
2525{
2526 int rc;
2527
2528 rc = iscsi_eh_target_reset(sc);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002529 if (rc == FAILED)
2530 rc = iscsi_eh_session_reset(sc);
2531 return rc;
2532}
Jayamohan Kallickal309ce152010-02-20 08:02:10 +05302533EXPORT_SYMBOL_GPL(iscsi_eh_recover_target);
Mike Christie3fe5ae82009-11-11 16:34:33 -06002534
Olaf Kirch63203772007-12-13 12:43:25 -06002535/*
2536 * Pre-allocate a pool of @max items of @item_size. By default, the pool
2537 * should be accessed via kfifo_{get,put} on q->queue.
2538 * Optionally, the caller can obtain the array of object pointers
2539 * by passing in a non-NULL @items pointer
2540 */
Mike Christie7996a772006-04-06 21:13:41 -05002541int
Olaf Kirch63203772007-12-13 12:43:25 -06002542iscsi_pool_init(struct iscsi_pool *q, int max, void ***items, int item_size)
Mike Christie7996a772006-04-06 21:13:41 -05002543{
Olaf Kirch63203772007-12-13 12:43:25 -06002544 int i, num_arrays = 1;
Mike Christie7996a772006-04-06 21:13:41 -05002545
Olaf Kirch63203772007-12-13 12:43:25 -06002546 memset(q, 0, sizeof(*q));
Mike Christie7996a772006-04-06 21:13:41 -05002547
2548 q->max = max;
Olaf Kirch63203772007-12-13 12:43:25 -06002549
2550 /* If the user passed an items pointer, he wants a copy of
2551 * the array. */
2552 if (items)
2553 num_arrays++;
2554 q->pool = kzalloc(num_arrays * max * sizeof(void*), GFP_KERNEL);
2555 if (q->pool == NULL)
Jean Delvaref474a372009-03-05 14:45:55 -06002556 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002557
Stefani Seiboldc1e13f22009-12-21 14:37:27 -08002558 kfifo_init(&q->queue, (void*)q->pool, max * sizeof(void*));
Mike Christie7996a772006-04-06 21:13:41 -05002559
2560 for (i = 0; i < max; i++) {
Olaf Kirch63203772007-12-13 12:43:25 -06002561 q->pool[i] = kzalloc(item_size, GFP_KERNEL);
Mike Christie7996a772006-04-06 21:13:41 -05002562 if (q->pool[i] == NULL) {
Olaf Kirch63203772007-12-13 12:43:25 -06002563 q->max = i;
2564 goto enomem;
Mike Christie7996a772006-04-06 21:13:41 -05002565 }
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002566 kfifo_in(&q->queue, (void*)&q->pool[i], sizeof(void*));
Mike Christie7996a772006-04-06 21:13:41 -05002567 }
Olaf Kirch63203772007-12-13 12:43:25 -06002568
2569 if (items) {
2570 *items = q->pool + max;
2571 memcpy(*items, q->pool, max * sizeof(void *));
2572 }
2573
Mike Christie7996a772006-04-06 21:13:41 -05002574 return 0;
Olaf Kirch63203772007-12-13 12:43:25 -06002575
2576enomem:
2577 iscsi_pool_free(q);
2578 return -ENOMEM;
Mike Christie7996a772006-04-06 21:13:41 -05002579}
2580EXPORT_SYMBOL_GPL(iscsi_pool_init);
2581
Olaf Kirch63203772007-12-13 12:43:25 -06002582void iscsi_pool_free(struct iscsi_pool *q)
Mike Christie7996a772006-04-06 21:13:41 -05002583{
2584 int i;
2585
2586 for (i = 0; i < q->max; i++)
Olaf Kirch63203772007-12-13 12:43:25 -06002587 kfree(q->pool[i]);
Jean Delvaref474a372009-03-05 14:45:55 -06002588 kfree(q->pool);
Mike Christie7996a772006-04-06 21:13:41 -05002589}
2590EXPORT_SYMBOL_GPL(iscsi_pool_free);
2591
Mike Christiea4804cd2008-05-21 15:54:00 -05002592/**
2593 * iscsi_host_add - add host to system
2594 * @shost: scsi host
2595 * @pdev: parent device
2596 *
2597 * This should be called by partial offload and software iscsi drivers
2598 * to add a host to the system.
2599 */
2600int iscsi_host_add(struct Scsi_Host *shost, struct device *pdev)
Mike Christie7996a772006-04-06 21:13:41 -05002601{
Mike Christie8e9a20c2008-06-16 10:11:33 -05002602 if (!shost->can_queue)
2603 shost->can_queue = ISCSI_DEF_XMIT_CMDS_MAX;
2604
Mike Christie4d108352009-03-05 14:46:04 -06002605 if (!shost->cmd_per_lun)
2606 shost->cmd_per_lun = ISCSI_DEF_CMD_PER_LUN;
2607
Mike Christie308cec12009-02-06 12:06:20 -06002608 if (!shost->transportt->eh_timed_out)
2609 shost->transportt->eh_timed_out = iscsi_eh_cmd_timed_out;
Mike Christiea4804cd2008-05-21 15:54:00 -05002610 return scsi_add_host(shost, pdev);
2611}
2612EXPORT_SYMBOL_GPL(iscsi_host_add);
2613
2614/**
2615 * iscsi_host_alloc - allocate a host and driver data
2616 * @sht: scsi host template
2617 * @dd_data_size: driver host data size
Mike Christie32ae7632009-03-05 14:46:03 -06002618 * @xmit_can_sleep: bool indicating if LLD will queue IO from a work queue
Mike Christiea4804cd2008-05-21 15:54:00 -05002619 *
2620 * This should be called by partial offload and software iscsi drivers.
2621 * To access the driver specific memory use the iscsi_host_priv() macro.
2622 */
2623struct Scsi_Host *iscsi_host_alloc(struct scsi_host_template *sht,
Mike Christie4d108352009-03-05 14:46:04 -06002624 int dd_data_size, bool xmit_can_sleep)
Mike Christiea4804cd2008-05-21 15:54:00 -05002625{
2626 struct Scsi_Host *shost;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002627 struct iscsi_host *ihost;
Mike Christiea4804cd2008-05-21 15:54:00 -05002628
2629 shost = scsi_host_alloc(sht, sizeof(struct iscsi_host) + dd_data_size);
2630 if (!shost)
2631 return NULL;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002632 ihost = shost_priv(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002633
2634 if (xmit_can_sleep) {
2635 snprintf(ihost->workq_name, sizeof(ihost->workq_name),
2636 "iscsi_q_%d", shost->host_no);
2637 ihost->workq = create_singlethread_workqueue(ihost->workq_name);
2638 if (!ihost->workq)
2639 goto free_host;
2640 }
2641
Mike Christiee5bd7b52008-09-24 11:46:10 -05002642 spin_lock_init(&ihost->lock);
2643 ihost->state = ISCSI_HOST_SETUP;
2644 ihost->num_sessions = 0;
2645 init_waitqueue_head(&ihost->session_removal_wq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002646 return shost;
Mike Christie32ae7632009-03-05 14:46:03 -06002647
2648free_host:
2649 scsi_host_put(shost);
2650 return NULL;
Mike Christie75613522008-05-21 15:53:59 -05002651}
Mike Christiea4804cd2008-05-21 15:54:00 -05002652EXPORT_SYMBOL_GPL(iscsi_host_alloc);
Mike Christie75613522008-05-21 15:53:59 -05002653
Mike Christiee5bd7b52008-09-24 11:46:10 -05002654static void iscsi_notify_host_removed(struct iscsi_cls_session *cls_session)
2655{
Mike Christie40a06e72009-03-05 14:46:05 -06002656 iscsi_session_failure(cls_session->dd_data, ISCSI_ERR_INVALID_HOST);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002657}
2658
Mike Christiea4804cd2008-05-21 15:54:00 -05002659/**
2660 * iscsi_host_remove - remove host and sessions
2661 * @shost: scsi host
2662 *
Mike Christiee5bd7b52008-09-24 11:46:10 -05002663 * If there are any sessions left, this will initiate the removal and wait
2664 * for the completion.
Mike Christiea4804cd2008-05-21 15:54:00 -05002665 */
2666void iscsi_host_remove(struct Scsi_Host *shost)
2667{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002668 struct iscsi_host *ihost = shost_priv(shost);
2669 unsigned long flags;
2670
2671 spin_lock_irqsave(&ihost->lock, flags);
2672 ihost->state = ISCSI_HOST_REMOVED;
2673 spin_unlock_irqrestore(&ihost->lock, flags);
2674
2675 iscsi_host_for_each_session(shost, iscsi_notify_host_removed);
2676 wait_event_interruptible(ihost->session_removal_wq,
2677 ihost->num_sessions == 0);
2678 if (signal_pending(current))
2679 flush_signals(current);
2680
Mike Christiea4804cd2008-05-21 15:54:00 -05002681 scsi_remove_host(shost);
Mike Christie32ae7632009-03-05 14:46:03 -06002682 if (ihost->workq)
2683 destroy_workqueue(ihost->workq);
Mike Christiea4804cd2008-05-21 15:54:00 -05002684}
2685EXPORT_SYMBOL_GPL(iscsi_host_remove);
2686
2687void iscsi_host_free(struct Scsi_Host *shost)
Mike Christie75613522008-05-21 15:53:59 -05002688{
2689 struct iscsi_host *ihost = shost_priv(shost);
2690
2691 kfree(ihost->netdev);
2692 kfree(ihost->hwaddress);
2693 kfree(ihost->initiatorname);
Mike Christiea4804cd2008-05-21 15:54:00 -05002694 scsi_host_put(shost);
Mike Christie75613522008-05-21 15:53:59 -05002695}
Mike Christiea4804cd2008-05-21 15:54:00 -05002696EXPORT_SYMBOL_GPL(iscsi_host_free);
Mike Christie75613522008-05-21 15:53:59 -05002697
Mike Christiee5bd7b52008-09-24 11:46:10 -05002698static void iscsi_host_dec_session_cnt(struct Scsi_Host *shost)
2699{
2700 struct iscsi_host *ihost = shost_priv(shost);
2701 unsigned long flags;
2702
2703 shost = scsi_host_get(shost);
2704 if (!shost) {
2705 printk(KERN_ERR "Invalid state. Cannot notify host removal "
2706 "of session teardown event because host already "
2707 "removed.\n");
2708 return;
2709 }
2710
2711 spin_lock_irqsave(&ihost->lock, flags);
2712 ihost->num_sessions--;
2713 if (ihost->num_sessions == 0)
2714 wake_up(&ihost->session_removal_wq);
2715 spin_unlock_irqrestore(&ihost->lock, flags);
2716 scsi_host_put(shost);
2717}
2718
Mike Christie75613522008-05-21 15:53:59 -05002719/**
2720 * iscsi_session_setup - create iscsi cls session and host and session
2721 * @iscsit: iscsi transport template
2722 * @shost: scsi host
2723 * @cmds_max: session can queue
Mike Christie9c19a7d2008-05-21 15:54:09 -05002724 * @cmd_task_size: LLD task private data size
Mike Christie75613522008-05-21 15:53:59 -05002725 * @initial_cmdsn: initial CmdSN
2726 *
2727 * This can be used by software iscsi_transports that allocate
2728 * a session per scsi host.
Mike Christie3cf7b232008-05-21 15:54:17 -05002729 *
2730 * Callers should set cmds_max to the largest total numer (mgmt + scsi) of
2731 * tasks they support. The iscsi layer reserves ISCSI_MGMT_CMDS_MAX tasks
2732 * for nop handling and login/logout requests.
Mike Christie75613522008-05-21 15:53:59 -05002733 */
2734struct iscsi_cls_session *
2735iscsi_session_setup(struct iscsi_transport *iscsit, struct Scsi_Host *shost,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302736 uint16_t cmds_max, int dd_size, int cmd_task_size,
Mike Christie79706342008-05-21 15:54:12 -05002737 uint32_t initial_cmdsn, unsigned int id)
Mike Christie75613522008-05-21 15:53:59 -05002738{
Mike Christiee5bd7b52008-09-24 11:46:10 -05002739 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie75613522008-05-21 15:53:59 -05002740 struct iscsi_session *session;
2741 struct iscsi_cls_session *cls_session;
Mike Christie3cf7b232008-05-21 15:54:17 -05002742 int cmd_i, scsi_cmds, total_cmds = cmds_max;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002743 unsigned long flags;
2744
2745 spin_lock_irqsave(&ihost->lock, flags);
2746 if (ihost->state == ISCSI_HOST_REMOVED) {
2747 spin_unlock_irqrestore(&ihost->lock, flags);
2748 return NULL;
2749 }
2750 ihost->num_sessions++;
2751 spin_unlock_irqrestore(&ihost->lock, flags);
Mike Christie8e9a20c2008-06-16 10:11:33 -05002752
2753 if (!total_cmds)
2754 total_cmds = ISCSI_DEF_XMIT_CMDS_MAX;
Mike Christie3e5c28a2008-05-21 15:54:06 -05002755 /*
Mike Christie3cf7b232008-05-21 15:54:17 -05002756 * The iscsi layer needs some tasks for nop handling and tmfs,
2757 * so the cmds_max must at least be greater than ISCSI_MGMT_CMDS_MAX
2758 * + 1 command for scsi IO.
Mike Christie3e5c28a2008-05-21 15:54:06 -05002759 */
Mike Christie3cf7b232008-05-21 15:54:17 -05002760 if (total_cmds < ISCSI_TOTAL_CMDS_MIN) {
2761 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2762 "must be a power of two that is at least %d.\n",
2763 total_cmds, ISCSI_TOTAL_CMDS_MIN);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002764 goto dec_session_count;
Mike Christie15482712007-05-30 12:57:19 -05002765 }
Mike Christie3cf7b232008-05-21 15:54:17 -05002766
2767 if (total_cmds > ISCSI_TOTAL_CMDS_MAX) {
2768 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2769 "must be a power of 2 less than or equal to %d.\n",
2770 cmds_max, ISCSI_TOTAL_CMDS_MAX);
2771 total_cmds = ISCSI_TOTAL_CMDS_MAX;
2772 }
2773
2774 if (!is_power_of_2(total_cmds)) {
2775 printk(KERN_ERR "iscsi: invalid can_queue of %d. can_queue "
2776 "must be a power of 2.\n", total_cmds);
2777 total_cmds = rounddown_pow_of_two(total_cmds);
2778 if (total_cmds < ISCSI_TOTAL_CMDS_MIN)
2779 return NULL;
2780 printk(KERN_INFO "iscsi: Rounding can_queue to %d.\n",
2781 total_cmds);
2782 }
2783 scsi_cmds = total_cmds - ISCSI_MGMT_CMDS_MAX;
Mike Christie15482712007-05-30 12:57:19 -05002784
Mike Christie5d91e202008-05-21 15:54:01 -05002785 cls_session = iscsi_alloc_session(shost, iscsit,
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302786 sizeof(struct iscsi_session) +
2787 dd_size);
Mike Christie75613522008-05-21 15:53:59 -05002788 if (!cls_session)
Mike Christiee5bd7b52008-09-24 11:46:10 -05002789 goto dec_session_count;
Mike Christie75613522008-05-21 15:53:59 -05002790 session = cls_session->dd_data;
2791 session->cls_session = cls_session;
Mike Christie7996a772006-04-06 21:13:41 -05002792 session->host = shost;
2793 session->state = ISCSI_STATE_FREE;
Mike Christief6d51802007-12-13 12:43:30 -06002794 session->fast_abort = 1;
Mike Christie3fe5ae82009-11-11 16:34:33 -06002795 session->tgt_reset_timeout = 30;
Mike Christie4cd49ea2007-12-13 12:43:38 -06002796 session->lu_reset_timeout = 15;
2797 session->abort_timeout = 10;
Mike Christie3cf7b232008-05-21 15:54:17 -05002798 session->scsi_cmds_max = scsi_cmds;
2799 session->cmds_max = total_cmds;
Mike Christiee0726402007-07-26 12:46:48 -05002800 session->queued_cmdsn = session->cmdsn = initial_cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05002801 session->exp_cmdsn = initial_cmdsn + 1;
2802 session->max_cmdsn = initial_cmdsn + 1;
2803 session->max_r2t = 1;
2804 session->tt = iscsit;
Jayamohan Kallickalb8b9e1b82009-09-22 08:21:22 +05302805 session->dd_data = cls_session->dd_data + sizeof(*session);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002806
Mike Christie6724add2007-08-15 01:38:30 -05002807 mutex_init(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002808 spin_lock_init(&session->frwd_lock);
2809 spin_lock_init(&session->back_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002810
2811 /* initialize SCSI PDU commands pool */
2812 if (iscsi_pool_init(&session->cmdpool, session->cmds_max,
2813 (void***)&session->cmds,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002814 cmd_task_size + sizeof(struct iscsi_task)))
Mike Christie7996a772006-04-06 21:13:41 -05002815 goto cmdpool_alloc_fail;
2816
2817 /* pre-format cmds pool with ITT */
2818 for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
Mike Christie9c19a7d2008-05-21 15:54:09 -05002819 struct iscsi_task *task = session->cmds[cmd_i];
Mike Christie7996a772006-04-06 21:13:41 -05002820
Mike Christie9c19a7d2008-05-21 15:54:09 -05002821 if (cmd_task_size)
2822 task->dd_data = &task[1];
2823 task->itt = cmd_i;
Mike Christie3bbaaad2009-05-13 17:57:46 -05002824 task->state = ISCSI_TASK_FREE;
Mike Christie9c19a7d2008-05-21 15:54:09 -05002825 INIT_LIST_HEAD(&task->running);
Mike Christie7996a772006-04-06 21:13:41 -05002826 }
2827
Mike Christief53a88d2006-06-28 12:00:27 -05002828 if (!try_module_get(iscsit->owner))
Mike Christie75613522008-05-21 15:53:59 -05002829 goto module_get_fail;
2830
Mike Christie79706342008-05-21 15:54:12 -05002831 if (iscsi_add_session(cls_session, id))
Mike Christief53a88d2006-06-28 12:00:27 -05002832 goto cls_session_fail;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002833
Mike Christie7996a772006-04-06 21:13:41 -05002834 return cls_session;
2835
2836cls_session_fail:
Mike Christie75613522008-05-21 15:53:59 -05002837 module_put(iscsit->owner);
2838module_get_fail:
Olaf Kirch63203772007-12-13 12:43:25 -06002839 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002840cmdpool_alloc_fail:
Mike Christie75613522008-05-21 15:53:59 -05002841 iscsi_free_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002842dec_session_count:
2843 iscsi_host_dec_session_cnt(shost);
Mike Christie7996a772006-04-06 21:13:41 -05002844 return NULL;
2845}
2846EXPORT_SYMBOL_GPL(iscsi_session_setup);
2847
2848/**
2849 * iscsi_session_teardown - destroy session, host, and cls_session
Mike Christie75613522008-05-21 15:53:59 -05002850 * @cls_session: iscsi session
Mike Christie7996a772006-04-06 21:13:41 -05002851 *
Mike Christie75613522008-05-21 15:53:59 -05002852 * The driver must have called iscsi_remove_session before
2853 * calling this.
2854 */
Mike Christie7996a772006-04-06 21:13:41 -05002855void iscsi_session_teardown(struct iscsi_cls_session *cls_session)
2856{
Mike Christie75613522008-05-21 15:53:59 -05002857 struct iscsi_session *session = cls_session->dd_data;
Mike Christie63f75cc2006-07-24 15:47:29 -05002858 struct module *owner = cls_session->transport->owner;
Mike Christiee5bd7b52008-09-24 11:46:10 -05002859 struct Scsi_Host *shost = session->host;
Mike Christie7996a772006-04-06 21:13:41 -05002860
Olaf Kirch63203772007-12-13 12:43:25 -06002861 iscsi_pool_free(&session->cmdpool);
Mike Christie7996a772006-04-06 21:13:41 -05002862
Mike Christieb2c64162007-05-30 12:57:16 -05002863 kfree(session->password);
2864 kfree(session->password_in);
2865 kfree(session->username);
2866 kfree(session->username_in);
Mike Christief3ff0c32006-07-24 15:47:50 -05002867 kfree(session->targetname);
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08002868 kfree(session->targetalias);
Mike Christie88dfd342008-05-21 15:54:16 -05002869 kfree(session->initiatorname);
Eddie Wai3b9373e2013-06-20 10:21:26 -07002870 kfree(session->boot_root);
2871 kfree(session->boot_nic);
2872 kfree(session->boot_target);
Mike Christie88dfd342008-05-21 15:54:16 -05002873 kfree(session->ifacename);
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04002874 kfree(session->portal_type);
2875 kfree(session->discovery_parent_type);
Mike Christief3ff0c32006-07-24 15:47:50 -05002876
Mike Christie75613522008-05-21 15:53:59 -05002877 iscsi_destroy_session(cls_session);
Mike Christiee5bd7b52008-09-24 11:46:10 -05002878 iscsi_host_dec_session_cnt(shost);
Mike Christie63f75cc2006-07-24 15:47:29 -05002879 module_put(owner);
Mike Christie7996a772006-04-06 21:13:41 -05002880}
2881EXPORT_SYMBOL_GPL(iscsi_session_teardown);
2882
2883/**
2884 * iscsi_conn_setup - create iscsi_cls_conn and iscsi_conn
2885 * @cls_session: iscsi_cls_session
Mike Christie5d91e202008-05-21 15:54:01 -05002886 * @dd_size: private driver data size
Mike Christie7996a772006-04-06 21:13:41 -05002887 * @conn_idx: cid
Mike Christie5d91e202008-05-21 15:54:01 -05002888 */
Mike Christie7996a772006-04-06 21:13:41 -05002889struct iscsi_cls_conn *
Mike Christie5d91e202008-05-21 15:54:01 -05002890iscsi_conn_setup(struct iscsi_cls_session *cls_session, int dd_size,
2891 uint32_t conn_idx)
Mike Christie7996a772006-04-06 21:13:41 -05002892{
Mike Christie75613522008-05-21 15:53:59 -05002893 struct iscsi_session *session = cls_session->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05002894 struct iscsi_conn *conn;
2895 struct iscsi_cls_conn *cls_conn;
Mike Christied36ab6f2006-05-18 20:31:34 -05002896 char *data;
Mike Christie7996a772006-04-06 21:13:41 -05002897
Mike Christie5d91e202008-05-21 15:54:01 -05002898 cls_conn = iscsi_create_conn(cls_session, sizeof(*conn) + dd_size,
2899 conn_idx);
Mike Christie7996a772006-04-06 21:13:41 -05002900 if (!cls_conn)
2901 return NULL;
2902 conn = cls_conn->dd_data;
Mike Christie5d91e202008-05-21 15:54:01 -05002903 memset(conn, 0, sizeof(*conn) + dd_size);
Mike Christie7996a772006-04-06 21:13:41 -05002904
Mike Christie5d91e202008-05-21 15:54:01 -05002905 conn->dd_data = cls_conn->dd_data + sizeof(*conn);
Mike Christie7996a772006-04-06 21:13:41 -05002906 conn->session = session;
2907 conn->cls_conn = cls_conn;
2908 conn->c_stage = ISCSI_CONN_INITIAL_STAGE;
2909 conn->id = conn_idx;
2910 conn->exp_statsn = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06002911 conn->tmf_state = TMF_INITIAL;
Mike Christief6d51802007-12-13 12:43:30 -06002912
2913 init_timer(&conn->transport_timer);
2914 conn->transport_timer.data = (unsigned long)conn;
2915 conn->transport_timer.function = iscsi_check_transport_timeouts;
2916
Mike Christie843c0a82007-12-13 12:43:20 -06002917 INIT_LIST_HEAD(&conn->mgmtqueue);
Mike Christie3bbaaad2009-05-13 17:57:46 -05002918 INIT_LIST_HEAD(&conn->cmdqueue);
Mike Christie843c0a82007-12-13 12:43:20 -06002919 INIT_LIST_HEAD(&conn->requeue);
David Howellsc4028952006-11-22 14:57:56 +00002920 INIT_WORK(&conn->xmitwork, iscsi_xmitworker);
Mike Christie7996a772006-04-06 21:13:41 -05002921
Mike Christie9c19a7d2008-05-21 15:54:09 -05002922 /* allocate login_task used for the login/text sequences */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002923 spin_lock_bh(&session->frwd_lock);
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002924 if (!kfifo_out(&session->cmdpool.queue,
Mike Christie9c19a7d2008-05-21 15:54:09 -05002925 (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05002926 sizeof(void*))) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002927 spin_unlock_bh(&session->frwd_lock);
Mike Christie9c19a7d2008-05-21 15:54:09 -05002928 goto login_task_alloc_fail;
Mike Christie7996a772006-04-06 21:13:41 -05002929 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002930 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002931
Mike Christiecfeb2cf2008-12-02 00:32:09 -06002932 data = (char *) __get_free_pages(GFP_KERNEL,
2933 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christied36ab6f2006-05-18 20:31:34 -05002934 if (!data)
Mike Christie9c19a7d2008-05-21 15:54:09 -05002935 goto login_task_data_alloc_fail;
2936 conn->login_task->data = conn->data = data;
Mike Christied36ab6f2006-05-18 20:31:34 -05002937
Mike Christie843c0a82007-12-13 12:43:20 -06002938 init_timer(&conn->tmf_timer);
Mike Christie7996a772006-04-06 21:13:41 -05002939 init_waitqueue_head(&conn->ehwait);
2940
2941 return cls_conn;
2942
Mike Christie9c19a7d2008-05-21 15:54:09 -05002943login_task_data_alloc_fail:
Stefani Seibold7acd72e2009-12-21 14:37:28 -08002944 kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
Mike Christied36ab6f2006-05-18 20:31:34 -05002945 sizeof(void*));
Mike Christie9c19a7d2008-05-21 15:54:09 -05002946login_task_alloc_fail:
Mike Christie7996a772006-04-06 21:13:41 -05002947 iscsi_destroy_conn(cls_conn);
2948 return NULL;
2949}
2950EXPORT_SYMBOL_GPL(iscsi_conn_setup);
2951
2952/**
2953 * iscsi_conn_teardown - teardown iscsi connection
2954 * cls_conn: iscsi class connection
2955 *
2956 * TODO: we may need to make this into a two step process
2957 * like scsi-mls remove + put host
2958 */
2959void iscsi_conn_teardown(struct iscsi_cls_conn *cls_conn)
2960{
2961 struct iscsi_conn *conn = cls_conn->dd_data;
2962 struct iscsi_session *session = conn->session;
2963 unsigned long flags;
2964
Mike Christief6d51802007-12-13 12:43:30 -06002965 del_timer_sync(&conn->transport_timer);
2966
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002967 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002968 conn->c_stage = ISCSI_CONN_CLEANUP_WAIT;
2969 if (session->leadconn == conn) {
2970 /*
2971 * leading connection? then give up on recovery.
2972 */
2973 session->state = ISCSI_STATE_TERMINATE;
2974 wake_up(&conn->ehwait);
2975 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06002976 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05002977
Mike Christie7996a772006-04-06 21:13:41 -05002978 /*
2979 * Block until all in-progress commands for this connection
2980 * time out or fail.
2981 */
2982 for (;;) {
2983 spin_lock_irqsave(session->host->host_lock, flags);
Christoph Hellwig74665012014-01-22 15:29:29 +01002984 if (!atomic_read(&session->host->host_busy)) { /* OK for ERL == 0 */
Mike Christie7996a772006-04-06 21:13:41 -05002985 spin_unlock_irqrestore(session->host->host_lock, flags);
2986 break;
2987 }
2988 spin_unlock_irqrestore(session->host->host_lock, flags);
2989 msleep_interruptible(500);
Mike Christie322d7392008-01-31 13:36:52 -06002990 iscsi_conn_printk(KERN_INFO, conn, "iscsi conn_destroy(): "
2991 "host_busy %d host_failed %d\n",
Christoph Hellwig74665012014-01-22 15:29:29 +01002992 atomic_read(&session->host->host_busy),
Mike Christie322d7392008-01-31 13:36:52 -06002993 session->host->host_failed);
Mike Christie7996a772006-04-06 21:13:41 -05002994 /*
2995 * force eh_abort() to unblock
2996 */
2997 wake_up(&conn->ehwait);
2998 }
2999
Mike Christie779ea122007-02-28 17:32:15 -06003000 /* flush queued up work because we free the connection below */
Mike Christie843c0a82007-12-13 12:43:20 -06003001 iscsi_suspend_tx(conn);
Mike Christie779ea122007-02-28 17:32:15 -06003002
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003003 spin_lock_bh(&session->frwd_lock);
Mike Christiecfeb2cf2008-12-02 00:32:09 -06003004 free_pages((unsigned long) conn->data,
3005 get_order(ISCSI_DEF_MAX_RECV_SEG_LEN));
Mike Christief3ff0c32006-07-24 15:47:50 -05003006 kfree(conn->persistent_address);
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05003007 kfree(conn->local_ipaddr);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003008 /* regular RX path uses back_lock */
3009 spin_lock_bh(&session->back_lock);
Stefani Seibold7acd72e2009-12-21 14:37:28 -08003010 kfifo_in(&session->cmdpool.queue, (void*)&conn->login_task,
Mike Christie7996a772006-04-06 21:13:41 -05003011 sizeof(void*));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003012 spin_unlock_bh(&session->back_lock);
Mike Christiee0726402007-07-26 12:46:48 -05003013 if (session->leadconn == conn)
Mike Christie7996a772006-04-06 21:13:41 -05003014 session->leadconn = NULL;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003015 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003016
Mike Christie7996a772006-04-06 21:13:41 -05003017 iscsi_destroy_conn(cls_conn);
3018}
3019EXPORT_SYMBOL_GPL(iscsi_conn_teardown);
3020
3021int iscsi_conn_start(struct iscsi_cls_conn *cls_conn)
3022{
3023 struct iscsi_conn *conn = cls_conn->dd_data;
3024 struct iscsi_session *session = conn->session;
3025
Mike Christieffd04362006-08-31 18:09:24 -04003026 if (!session) {
Mike Christie322d7392008-01-31 13:36:52 -06003027 iscsi_conn_printk(KERN_ERR, conn,
3028 "can't start unbound connection\n");
Mike Christie7996a772006-04-06 21:13:41 -05003029 return -EPERM;
3030 }
3031
Mike Christiedb98ccd2006-08-31 18:09:31 -04003032 if ((session->imm_data_en || !session->initial_r2t_en) &&
3033 session->first_burst > session->max_burst) {
Mike Christie322d7392008-01-31 13:36:52 -06003034 iscsi_conn_printk(KERN_INFO, conn, "invalid burst lengths: "
3035 "first_burst %d max_burst %d\n",
3036 session->first_burst, session->max_burst);
Mike Christieffd04362006-08-31 18:09:24 -04003037 return -EINVAL;
3038 }
3039
Mike Christief6d51802007-12-13 12:43:30 -06003040 if (conn->ping_timeout && !conn->recv_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06003041 iscsi_conn_printk(KERN_ERR, conn, "invalid recv timeout of "
3042 "zero. Using 5 seconds\n.");
Mike Christief6d51802007-12-13 12:43:30 -06003043 conn->recv_timeout = 5;
3044 }
3045
3046 if (conn->recv_timeout && !conn->ping_timeout) {
Mike Christie322d7392008-01-31 13:36:52 -06003047 iscsi_conn_printk(KERN_ERR, conn, "invalid ping timeout of "
3048 "zero. Using 5 seconds.\n");
Mike Christief6d51802007-12-13 12:43:30 -06003049 conn->ping_timeout = 5;
3050 }
3051
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003052 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003053 conn->c_stage = ISCSI_CONN_STARTED;
3054 session->state = ISCSI_STATE_LOGGED_IN;
Mike Christiee0726402007-07-26 12:46:48 -05003055 session->queued_cmdsn = session->cmdsn;
Mike Christie7996a772006-04-06 21:13:41 -05003056
Mike Christief6d51802007-12-13 12:43:30 -06003057 conn->last_recv = jiffies;
3058 conn->last_ping = jiffies;
3059 if (conn->recv_timeout && conn->ping_timeout)
3060 mod_timer(&conn->transport_timer,
3061 jiffies + (conn->recv_timeout * HZ));
3062
Mike Christie7996a772006-04-06 21:13:41 -05003063 switch(conn->stop_stage) {
3064 case STOP_CONN_RECOVER:
3065 /*
3066 * unblock eh_abort() if it is blocked. re-try all
3067 * commands after successful recovery
3068 */
Mike Christie7996a772006-04-06 21:13:41 -05003069 conn->stop_stage = 0;
Mike Christie843c0a82007-12-13 12:43:20 -06003070 conn->tmf_state = TMF_INITIAL;
Mike Christie7996a772006-04-06 21:13:41 -05003071 session->age++;
Mike Christie8b1d0342008-01-31 13:36:53 -06003072 if (session->age == 16)
3073 session->age = 0;
Mike Christie6eabafb2008-01-31 13:36:43 -06003074 break;
Mike Christie7996a772006-04-06 21:13:41 -05003075 case STOP_CONN_TERM:
Mike Christie7996a772006-04-06 21:13:41 -05003076 conn->stop_stage = 0;
3077 break;
Mike Christie7996a772006-04-06 21:13:41 -05003078 default:
3079 break;
3080 }
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003081 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003082
Mike Christie75613522008-05-21 15:53:59 -05003083 iscsi_unblock_session(session->cls_session);
Mike Christie6eabafb2008-01-31 13:36:43 -06003084 wake_up(&conn->ehwait);
Mike Christie7996a772006-04-06 21:13:41 -05003085 return 0;
3086}
3087EXPORT_SYMBOL_GPL(iscsi_conn_start);
3088
3089static void
Mike Christie3bbaaad2009-05-13 17:57:46 -05003090fail_mgmt_tasks(struct iscsi_session *session, struct iscsi_conn *conn)
Mike Christie7996a772006-04-06 21:13:41 -05003091{
Mike Christie3bbaaad2009-05-13 17:57:46 -05003092 struct iscsi_task *task;
Mike Christieb3cd5052009-05-13 17:57:49 -05003093 int i, state;
Mike Christie7996a772006-04-06 21:13:41 -05003094
Mike Christie3bbaaad2009-05-13 17:57:46 -05003095 for (i = 0; i < conn->session->cmds_max; i++) {
3096 task = conn->session->cmds[i];
3097 if (task->sc)
3098 continue;
3099
3100 if (task->state == ISCSI_TASK_FREE)
3101 continue;
3102
3103 ISCSI_DBG_SESSION(conn->session,
3104 "failing mgmt itt 0x%x state %d\n",
3105 task->itt, task->state);
Mike Christieb3cd5052009-05-13 17:57:49 -05003106 state = ISCSI_TASK_ABRT_SESS_RECOV;
3107 if (task->state == ISCSI_TASK_PENDING)
3108 state = ISCSI_TASK_COMPLETED;
3109 iscsi_complete_task(task, state);
3110
Mike Christie7996a772006-04-06 21:13:41 -05003111 }
Mike Christie7996a772006-04-06 21:13:41 -05003112}
3113
Mike Christie656cffc2006-05-18 20:31:42 -05003114static void iscsi_start_session_recovery(struct iscsi_session *session,
3115 struct iscsi_conn *conn, int flag)
Mike Christie7996a772006-04-06 21:13:41 -05003116{
Mike Christieed2abc72006-05-02 19:46:40 -05003117 int old_stop_stage;
3118
Mike Christie6724add2007-08-15 01:38:30 -05003119 mutex_lock(&session->eh_mutex);
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003120 spin_lock_bh(&session->frwd_lock);
Mike Christieed2abc72006-05-02 19:46:40 -05003121 if (conn->stop_stage == STOP_CONN_TERM) {
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003122 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003123 mutex_unlock(&session->eh_mutex);
3124 return;
3125 }
3126
3127 /*
Mike Christieed2abc72006-05-02 19:46:40 -05003128 * When this is called for the in_login state, we only want to clean
Mike Christie9c19a7d2008-05-21 15:54:09 -05003129 * up the login task and connection. We do not need to block and set
Mike Christie67a61112006-05-30 00:37:20 -05003130 * the recovery state again
Mike Christieed2abc72006-05-02 19:46:40 -05003131 */
Mike Christie67a61112006-05-30 00:37:20 -05003132 if (flag == STOP_CONN_TERM)
3133 session->state = ISCSI_STATE_TERMINATE;
3134 else if (conn->stop_stage != STOP_CONN_RECOVER)
3135 session->state = ISCSI_STATE_IN_RECOVERY;
Mike Christie4ae0a6c2010-03-09 14:14:51 -06003136
3137 old_stop_stage = conn->stop_stage;
3138 conn->stop_stage = flag;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003139 spin_unlock_bh(&session->frwd_lock);
Mike Christieed2abc72006-05-02 19:46:40 -05003140
Mike Christie26013ad2009-05-13 17:57:43 -05003141 del_timer_sync(&conn->transport_timer);
3142 iscsi_suspend_tx(conn);
3143
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003144 spin_lock_bh(&session->frwd_lock);
Mike Christie67a61112006-05-30 00:37:20 -05003145 conn->c_stage = ISCSI_CONN_STOPPED;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003146 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003147
Mike Christie7996a772006-04-06 21:13:41 -05003148 /*
3149 * for connection level recovery we should not calculate
3150 * header digest. conn->hdr_size used for optimization
3151 * in hdr_extract() and will be re-negotiated at
3152 * set_param() time.
3153 */
3154 if (flag == STOP_CONN_RECOVER) {
3155 conn->hdrdgst_en = 0;
3156 conn->datadgst_en = 0;
Mike Christie656cffc2006-05-18 20:31:42 -05003157 if (session->state == ISCSI_STATE_IN_RECOVERY &&
Mike Christie67a61112006-05-30 00:37:20 -05003158 old_stop_stage != STOP_CONN_RECOVER) {
Mike Christie1b2c7af2009-03-05 14:45:58 -06003159 ISCSI_DBG_SESSION(session, "blocking session\n");
Mike Christie75613522008-05-21 15:53:59 -05003160 iscsi_block_session(session->cls_session);
Mike Christie67a61112006-05-30 00:37:20 -05003161 }
Mike Christie7996a772006-04-06 21:13:41 -05003162 }
Mike Christie656cffc2006-05-18 20:31:42 -05003163
Mike Christie656cffc2006-05-18 20:31:42 -05003164 /*
3165 * flush queues.
3166 */
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003167 spin_lock_bh(&session->frwd_lock);
Mike Christieb3cd5052009-05-13 17:57:49 -05003168 fail_scsi_tasks(conn, -1, DID_TRANSPORT_DISRUPTED);
Mike Christie3bbaaad2009-05-13 17:57:46 -05003169 fail_mgmt_tasks(session, conn);
Mike Christie5d12c052009-11-11 16:34:32 -06003170 memset(&conn->tmhdr, 0, sizeof(conn->tmhdr));
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003171 spin_unlock_bh(&session->frwd_lock);
Mike Christie6724add2007-08-15 01:38:30 -05003172 mutex_unlock(&session->eh_mutex);
Mike Christie7996a772006-04-06 21:13:41 -05003173}
Mike Christie7996a772006-04-06 21:13:41 -05003174
3175void iscsi_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
3176{
3177 struct iscsi_conn *conn = cls_conn->dd_data;
3178 struct iscsi_session *session = conn->session;
3179
3180 switch (flag) {
3181 case STOP_CONN_RECOVER:
3182 case STOP_CONN_TERM:
3183 iscsi_start_session_recovery(session, conn, flag);
Mike Christie8d2860b2006-05-02 19:46:47 -05003184 break;
Mike Christie7996a772006-04-06 21:13:41 -05003185 default:
Mike Christie322d7392008-01-31 13:36:52 -06003186 iscsi_conn_printk(KERN_ERR, conn,
3187 "invalid stop flag %d\n", flag);
Mike Christie7996a772006-04-06 21:13:41 -05003188 }
3189}
3190EXPORT_SYMBOL_GPL(iscsi_conn_stop);
3191
3192int iscsi_conn_bind(struct iscsi_cls_session *cls_session,
3193 struct iscsi_cls_conn *cls_conn, int is_leading)
3194{
Mike Christie75613522008-05-21 15:53:59 -05003195 struct iscsi_session *session = cls_session->dd_data;
Mike Christie98644042006-10-16 18:09:39 -04003196 struct iscsi_conn *conn = cls_conn->dd_data;
Mike Christie7996a772006-04-06 21:13:41 -05003197
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003198 spin_lock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003199 if (is_leading)
3200 session->leadconn = conn;
Shlomo Pongratz659743b2014-02-07 00:41:38 -06003201 spin_unlock_bh(&session->frwd_lock);
Mike Christie7996a772006-04-06 21:13:41 -05003202
3203 /*
3204 * Unblock xmitworker(), Login Phase will pass through.
3205 */
3206 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
3207 clear_bit(ISCSI_SUSPEND_BIT, &conn->suspend_tx);
3208 return 0;
3209}
3210EXPORT_SYMBOL_GPL(iscsi_conn_bind);
3211
Adheer Chandravanshiadaf6992013-03-22 07:41:30 -04003212int iscsi_switch_str_param(char **param, char *new_val_buf)
Mike Christie5700b1a2009-05-13 17:57:40 -05003213{
3214 char *new_val;
3215
3216 if (*param) {
3217 if (!strcmp(*param, new_val_buf))
3218 return 0;
3219 }
3220
3221 new_val = kstrdup(new_val_buf, GFP_NOIO);
3222 if (!new_val)
3223 return -ENOMEM;
3224
3225 kfree(*param);
3226 *param = new_val;
3227 return 0;
3228}
Adheer Chandravanshiadaf6992013-03-22 07:41:30 -04003229EXPORT_SYMBOL_GPL(iscsi_switch_str_param);
Mike Christiea54a52c2006-06-28 12:00:23 -05003230
3231int iscsi_set_param(struct iscsi_cls_conn *cls_conn,
3232 enum iscsi_param param, char *buf, int buflen)
3233{
3234 struct iscsi_conn *conn = cls_conn->dd_data;
3235 struct iscsi_session *session = conn->session;
Or Gerlitz6a06a4b2013-08-08 13:44:29 +03003236 int val;
Mike Christiea54a52c2006-06-28 12:00:23 -05003237
3238 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06003239 case ISCSI_PARAM_FAST_ABORT:
3240 sscanf(buf, "%d", &session->fast_abort);
3241 break;
Mike Christief6d51802007-12-13 12:43:30 -06003242 case ISCSI_PARAM_ABORT_TMO:
3243 sscanf(buf, "%d", &session->abort_timeout);
3244 break;
3245 case ISCSI_PARAM_LU_RESET_TMO:
3246 sscanf(buf, "%d", &session->lu_reset_timeout);
3247 break;
Mike Christie3fe5ae82009-11-11 16:34:33 -06003248 case ISCSI_PARAM_TGT_RESET_TMO:
3249 sscanf(buf, "%d", &session->tgt_reset_timeout);
3250 break;
Mike Christief6d51802007-12-13 12:43:30 -06003251 case ISCSI_PARAM_PING_TMO:
3252 sscanf(buf, "%d", &conn->ping_timeout);
3253 break;
3254 case ISCSI_PARAM_RECV_TMO:
3255 sscanf(buf, "%d", &conn->recv_timeout);
3256 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003257 case ISCSI_PARAM_MAX_RECV_DLENGTH:
3258 sscanf(buf, "%d", &conn->max_recv_dlength);
3259 break;
3260 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3261 sscanf(buf, "%d", &conn->max_xmit_dlength);
3262 break;
3263 case ISCSI_PARAM_HDRDGST_EN:
3264 sscanf(buf, "%d", &conn->hdrdgst_en);
3265 break;
3266 case ISCSI_PARAM_DATADGST_EN:
3267 sscanf(buf, "%d", &conn->datadgst_en);
3268 break;
3269 case ISCSI_PARAM_INITIAL_R2T_EN:
3270 sscanf(buf, "%d", &session->initial_r2t_en);
3271 break;
3272 case ISCSI_PARAM_MAX_R2T:
Mike Christie1304be52012-01-26 21:13:10 -06003273 sscanf(buf, "%hu", &session->max_r2t);
Mike Christiea54a52c2006-06-28 12:00:23 -05003274 break;
3275 case ISCSI_PARAM_IMM_DATA_EN:
3276 sscanf(buf, "%d", &session->imm_data_en);
3277 break;
3278 case ISCSI_PARAM_FIRST_BURST:
3279 sscanf(buf, "%d", &session->first_burst);
3280 break;
3281 case ISCSI_PARAM_MAX_BURST:
3282 sscanf(buf, "%d", &session->max_burst);
3283 break;
3284 case ISCSI_PARAM_PDU_INORDER_EN:
3285 sscanf(buf, "%d", &session->pdu_inorder_en);
3286 break;
3287 case ISCSI_PARAM_DATASEQ_INORDER_EN:
3288 sscanf(buf, "%d", &session->dataseq_inorder_en);
3289 break;
3290 case ISCSI_PARAM_ERL:
3291 sscanf(buf, "%d", &session->erl);
3292 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003293 case ISCSI_PARAM_EXP_STATSN:
3294 sscanf(buf, "%u", &conn->exp_statsn);
3295 break;
Mike Christieb2c64162007-05-30 12:57:16 -05003296 case ISCSI_PARAM_USERNAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003297 return iscsi_switch_str_param(&session->username, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003298 case ISCSI_PARAM_USERNAME_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05003299 return iscsi_switch_str_param(&session->username_in, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003300 case ISCSI_PARAM_PASSWORD:
Mike Christie5700b1a2009-05-13 17:57:40 -05003301 return iscsi_switch_str_param(&session->password, buf);
Mike Christieb2c64162007-05-30 12:57:16 -05003302 case ISCSI_PARAM_PASSWORD_IN:
Mike Christie5700b1a2009-05-13 17:57:40 -05003303 return iscsi_switch_str_param(&session->password_in, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003304 case ISCSI_PARAM_TARGET_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003305 return iscsi_switch_str_param(&session->targetname, buf);
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08003306 case ISCSI_PARAM_TARGET_ALIAS:
3307 return iscsi_switch_str_param(&session->targetalias, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003308 case ISCSI_PARAM_TPGT:
3309 sscanf(buf, "%d", &session->tpgt);
3310 break;
3311 case ISCSI_PARAM_PERSISTENT_PORT:
3312 sscanf(buf, "%d", &conn->persistent_port);
3313 break;
3314 case ISCSI_PARAM_PERSISTENT_ADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003315 return iscsi_switch_str_param(&conn->persistent_address, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003316 case ISCSI_PARAM_IFACE_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003317 return iscsi_switch_str_param(&session->ifacename, buf);
Mike Christie88dfd342008-05-21 15:54:16 -05003318 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003319 return iscsi_switch_str_param(&session->initiatorname, buf);
Eddie Wai3b9373e2013-06-20 10:21:26 -07003320 case ISCSI_PARAM_BOOT_ROOT:
3321 return iscsi_switch_str_param(&session->boot_root, buf);
3322 case ISCSI_PARAM_BOOT_NIC:
3323 return iscsi_switch_str_param(&session->boot_nic, buf);
3324 case ISCSI_PARAM_BOOT_TARGET:
3325 return iscsi_switch_str_param(&session->boot_target, buf);
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003326 case ISCSI_PARAM_PORTAL_TYPE:
3327 return iscsi_switch_str_param(&session->portal_type, buf);
3328 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3329 return iscsi_switch_str_param(&session->discovery_parent_type,
3330 buf);
Or Gerlitz6a06a4b2013-08-08 13:44:29 +03003331 case ISCSI_PARAM_DISCOVERY_SESS:
3332 sscanf(buf, "%d", &val);
3333 session->discovery_sess = !!val;
3334 break;
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05003335 case ISCSI_PARAM_LOCAL_IPADDR:
3336 return iscsi_switch_str_param(&conn->local_ipaddr, buf);
Mike Christiea54a52c2006-06-28 12:00:23 -05003337 default:
3338 return -ENOSYS;
3339 }
3340
3341 return 0;
3342}
3343EXPORT_SYMBOL_GPL(iscsi_set_param);
3344
3345int iscsi_session_get_param(struct iscsi_cls_session *cls_session,
3346 enum iscsi_param param, char *buf)
3347{
Mike Christie75613522008-05-21 15:53:59 -05003348 struct iscsi_session *session = cls_session->dd_data;
Mike Christiea54a52c2006-06-28 12:00:23 -05003349 int len;
3350
3351 switch(param) {
Mike Christie843c0a82007-12-13 12:43:20 -06003352 case ISCSI_PARAM_FAST_ABORT:
3353 len = sprintf(buf, "%d\n", session->fast_abort);
3354 break;
Mike Christief6d51802007-12-13 12:43:30 -06003355 case ISCSI_PARAM_ABORT_TMO:
3356 len = sprintf(buf, "%d\n", session->abort_timeout);
3357 break;
3358 case ISCSI_PARAM_LU_RESET_TMO:
3359 len = sprintf(buf, "%d\n", session->lu_reset_timeout);
3360 break;
Mike Christie3fe5ae82009-11-11 16:34:33 -06003361 case ISCSI_PARAM_TGT_RESET_TMO:
3362 len = sprintf(buf, "%d\n", session->tgt_reset_timeout);
3363 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003364 case ISCSI_PARAM_INITIAL_R2T_EN:
3365 len = sprintf(buf, "%d\n", session->initial_r2t_en);
3366 break;
3367 case ISCSI_PARAM_MAX_R2T:
3368 len = sprintf(buf, "%hu\n", session->max_r2t);
3369 break;
3370 case ISCSI_PARAM_IMM_DATA_EN:
3371 len = sprintf(buf, "%d\n", session->imm_data_en);
3372 break;
3373 case ISCSI_PARAM_FIRST_BURST:
3374 len = sprintf(buf, "%u\n", session->first_burst);
3375 break;
3376 case ISCSI_PARAM_MAX_BURST:
3377 len = sprintf(buf, "%u\n", session->max_burst);
3378 break;
3379 case ISCSI_PARAM_PDU_INORDER_EN:
3380 len = sprintf(buf, "%d\n", session->pdu_inorder_en);
3381 break;
3382 case ISCSI_PARAM_DATASEQ_INORDER_EN:
3383 len = sprintf(buf, "%d\n", session->dataseq_inorder_en);
3384 break;
Adheer Chandravanshi5f09e1f2013-07-22 07:46:10 -04003385 case ISCSI_PARAM_DEF_TASKMGMT_TMO:
3386 len = sprintf(buf, "%d\n", session->def_taskmgmt_tmo);
3387 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003388 case ISCSI_PARAM_ERL:
3389 len = sprintf(buf, "%d\n", session->erl);
3390 break;
3391 case ISCSI_PARAM_TARGET_NAME:
3392 len = sprintf(buf, "%s\n", session->targetname);
3393 break;
Vikas Chaudhary3c5c4802012-01-19 03:06:53 -08003394 case ISCSI_PARAM_TARGET_ALIAS:
3395 len = sprintf(buf, "%s\n", session->targetalias);
3396 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003397 case ISCSI_PARAM_TPGT:
3398 len = sprintf(buf, "%d\n", session->tpgt);
3399 break;
Mike Christieb2c64162007-05-30 12:57:16 -05003400 case ISCSI_PARAM_USERNAME:
3401 len = sprintf(buf, "%s\n", session->username);
3402 break;
3403 case ISCSI_PARAM_USERNAME_IN:
3404 len = sprintf(buf, "%s\n", session->username_in);
3405 break;
3406 case ISCSI_PARAM_PASSWORD:
3407 len = sprintf(buf, "%s\n", session->password);
3408 break;
3409 case ISCSI_PARAM_PASSWORD_IN:
3410 len = sprintf(buf, "%s\n", session->password_in);
3411 break;
Mike Christie88dfd342008-05-21 15:54:16 -05003412 case ISCSI_PARAM_IFACE_NAME:
3413 len = sprintf(buf, "%s\n", session->ifacename);
3414 break;
3415 case ISCSI_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003416 len = sprintf(buf, "%s\n", session->initiatorname);
Mike Christie88dfd342008-05-21 15:54:16 -05003417 break;
Eddie Wai3b9373e2013-06-20 10:21:26 -07003418 case ISCSI_PARAM_BOOT_ROOT:
3419 len = sprintf(buf, "%s\n", session->boot_root);
3420 break;
3421 case ISCSI_PARAM_BOOT_NIC:
3422 len = sprintf(buf, "%s\n", session->boot_nic);
3423 break;
3424 case ISCSI_PARAM_BOOT_TARGET:
3425 len = sprintf(buf, "%s\n", session->boot_target);
Adheer Chandravanshi9a2307b2013-07-22 07:46:09 -04003426 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003427 case ISCSI_PARAM_AUTO_SND_TGT_DISABLE:
3428 len = sprintf(buf, "%u\n", session->auto_snd_tgt_disable);
3429 break;
3430 case ISCSI_PARAM_DISCOVERY_SESS:
3431 len = sprintf(buf, "%u\n", session->discovery_sess);
3432 break;
3433 case ISCSI_PARAM_PORTAL_TYPE:
3434 len = sprintf(buf, "%s\n", session->portal_type);
3435 break;
3436 case ISCSI_PARAM_CHAP_AUTH_EN:
3437 len = sprintf(buf, "%u\n", session->chap_auth_en);
3438 break;
3439 case ISCSI_PARAM_DISCOVERY_LOGOUT_EN:
3440 len = sprintf(buf, "%u\n", session->discovery_logout_en);
3441 break;
3442 case ISCSI_PARAM_BIDI_CHAP_EN:
3443 len = sprintf(buf, "%u\n", session->bidi_chap_en);
3444 break;
3445 case ISCSI_PARAM_DISCOVERY_AUTH_OPTIONAL:
3446 len = sprintf(buf, "%u\n", session->discovery_auth_optional);
3447 break;
3448 case ISCSI_PARAM_DEF_TIME2WAIT:
3449 len = sprintf(buf, "%d\n", session->time2wait);
3450 break;
3451 case ISCSI_PARAM_DEF_TIME2RETAIN:
3452 len = sprintf(buf, "%d\n", session->time2retain);
3453 break;
3454 case ISCSI_PARAM_TSID:
3455 len = sprintf(buf, "%u\n", session->tsid);
3456 break;
3457 case ISCSI_PARAM_ISID:
3458 len = sprintf(buf, "%02x%02x%02x%02x%02x%02x\n",
3459 session->isid[0], session->isid[1],
3460 session->isid[2], session->isid[3],
3461 session->isid[4], session->isid[5]);
3462 break;
3463 case ISCSI_PARAM_DISCOVERY_PARENT_IDX:
3464 len = sprintf(buf, "%u\n", session->discovery_parent_idx);
3465 break;
3466 case ISCSI_PARAM_DISCOVERY_PARENT_TYPE:
3467 if (session->discovery_parent_type)
3468 len = sprintf(buf, "%s\n",
3469 session->discovery_parent_type);
3470 else
3471 len = sprintf(buf, "\n");
Eddie Wai3b9373e2013-06-20 10:21:26 -07003472 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003473 default:
3474 return -ENOSYS;
3475 }
3476
3477 return len;
3478}
3479EXPORT_SYMBOL_GPL(iscsi_session_get_param);
3480
Mike Christie00f37082011-02-16 15:04:35 -06003481int iscsi_conn_get_addr_param(struct sockaddr_storage *addr,
3482 enum iscsi_param param, char *buf)
3483{
3484 struct sockaddr_in6 *sin6 = NULL;
3485 struct sockaddr_in *sin = NULL;
3486 int len;
3487
3488 switch (addr->ss_family) {
3489 case AF_INET:
3490 sin = (struct sockaddr_in *)addr;
3491 break;
3492 case AF_INET6:
3493 sin6 = (struct sockaddr_in6 *)addr;
3494 break;
3495 default:
3496 return -EINVAL;
3497 }
3498
3499 switch (param) {
3500 case ISCSI_PARAM_CONN_ADDRESS:
3501 case ISCSI_HOST_PARAM_IPADDRESS:
3502 if (sin)
3503 len = sprintf(buf, "%pI4\n", &sin->sin_addr.s_addr);
3504 else
3505 len = sprintf(buf, "%pI6\n", &sin6->sin6_addr);
3506 break;
3507 case ISCSI_PARAM_CONN_PORT:
Mike Christie4bfb8ebf2014-09-29 13:55:42 -05003508 case ISCSI_PARAM_LOCAL_PORT:
Mike Christie00f37082011-02-16 15:04:35 -06003509 if (sin)
3510 len = sprintf(buf, "%hu\n", be16_to_cpu(sin->sin_port));
3511 else
3512 len = sprintf(buf, "%hu\n",
3513 be16_to_cpu(sin6->sin6_port));
3514 break;
3515 default:
3516 return -EINVAL;
3517 }
3518
3519 return len;
3520}
3521EXPORT_SYMBOL_GPL(iscsi_conn_get_addr_param);
3522
Mike Christiea54a52c2006-06-28 12:00:23 -05003523int iscsi_conn_get_param(struct iscsi_cls_conn *cls_conn,
3524 enum iscsi_param param, char *buf)
3525{
3526 struct iscsi_conn *conn = cls_conn->dd_data;
3527 int len;
3528
3529 switch(param) {
Mike Christief6d51802007-12-13 12:43:30 -06003530 case ISCSI_PARAM_PING_TMO:
3531 len = sprintf(buf, "%u\n", conn->ping_timeout);
3532 break;
3533 case ISCSI_PARAM_RECV_TMO:
3534 len = sprintf(buf, "%u\n", conn->recv_timeout);
3535 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003536 case ISCSI_PARAM_MAX_RECV_DLENGTH:
3537 len = sprintf(buf, "%u\n", conn->max_recv_dlength);
3538 break;
3539 case ISCSI_PARAM_MAX_XMIT_DLENGTH:
3540 len = sprintf(buf, "%u\n", conn->max_xmit_dlength);
3541 break;
3542 case ISCSI_PARAM_HDRDGST_EN:
3543 len = sprintf(buf, "%d\n", conn->hdrdgst_en);
3544 break;
3545 case ISCSI_PARAM_DATADGST_EN:
3546 len = sprintf(buf, "%d\n", conn->datadgst_en);
3547 break;
3548 case ISCSI_PARAM_IFMARKER_EN:
3549 len = sprintf(buf, "%d\n", conn->ifmarker_en);
3550 break;
3551 case ISCSI_PARAM_OFMARKER_EN:
3552 len = sprintf(buf, "%d\n", conn->ofmarker_en);
3553 break;
3554 case ISCSI_PARAM_EXP_STATSN:
3555 len = sprintf(buf, "%u\n", conn->exp_statsn);
3556 break;
3557 case ISCSI_PARAM_PERSISTENT_PORT:
3558 len = sprintf(buf, "%d\n", conn->persistent_port);
3559 break;
3560 case ISCSI_PARAM_PERSISTENT_ADDRESS:
3561 len = sprintf(buf, "%s\n", conn->persistent_address);
3562 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003563 case ISCSI_PARAM_STATSN:
3564 len = sprintf(buf, "%u\n", conn->statsn);
3565 break;
3566 case ISCSI_PARAM_MAX_SEGMENT_SIZE:
3567 len = sprintf(buf, "%u\n", conn->max_segment_size);
3568 break;
3569 case ISCSI_PARAM_KEEPALIVE_TMO:
3570 len = sprintf(buf, "%u\n", conn->keepalive_tmo);
3571 break;
3572 case ISCSI_PARAM_LOCAL_PORT:
3573 len = sprintf(buf, "%u\n", conn->local_port);
3574 break;
3575 case ISCSI_PARAM_TCP_TIMESTAMP_STAT:
3576 len = sprintf(buf, "%u\n", conn->tcp_timestamp_stat);
3577 break;
3578 case ISCSI_PARAM_TCP_NAGLE_DISABLE:
3579 len = sprintf(buf, "%u\n", conn->tcp_nagle_disable);
3580 break;
3581 case ISCSI_PARAM_TCP_WSF_DISABLE:
3582 len = sprintf(buf, "%u\n", conn->tcp_wsf_disable);
3583 break;
3584 case ISCSI_PARAM_TCP_TIMER_SCALE:
3585 len = sprintf(buf, "%u\n", conn->tcp_timer_scale);
3586 break;
3587 case ISCSI_PARAM_TCP_TIMESTAMP_EN:
3588 len = sprintf(buf, "%u\n", conn->tcp_timestamp_en);
3589 break;
3590 case ISCSI_PARAM_IP_FRAGMENT_DISABLE:
3591 len = sprintf(buf, "%u\n", conn->fragment_disable);
3592 break;
3593 case ISCSI_PARAM_IPV4_TOS:
3594 len = sprintf(buf, "%u\n", conn->ipv4_tos);
3595 break;
3596 case ISCSI_PARAM_IPV6_TC:
3597 len = sprintf(buf, "%u\n", conn->ipv6_traffic_class);
3598 break;
Adheer Chandravanshi5f09e1f2013-07-22 07:46:10 -04003599 case ISCSI_PARAM_IPV6_FLOW_LABEL:
3600 len = sprintf(buf, "%u\n", conn->ipv6_flow_label);
3601 break;
Adheer Chandravanshif8525eb2013-07-01 05:54:12 -04003602 case ISCSI_PARAM_IS_FW_ASSIGNED_IPV6:
3603 len = sprintf(buf, "%u\n", conn->is_fw_assigned_ipv6);
3604 break;
3605 case ISCSI_PARAM_TCP_XMIT_WSF:
3606 len = sprintf(buf, "%u\n", conn->tcp_xmit_wsf);
3607 break;
3608 case ISCSI_PARAM_TCP_RECV_WSF:
3609 len = sprintf(buf, "%u\n", conn->tcp_recv_wsf);
3610 break;
Adheer Chandravanshiae56ff42013-11-22 05:28:21 -05003611 case ISCSI_PARAM_LOCAL_IPADDR:
3612 len = sprintf(buf, "%s\n", conn->local_ipaddr);
3613 break;
Mike Christiea54a52c2006-06-28 12:00:23 -05003614 default:
3615 return -ENOSYS;
3616 }
3617
3618 return len;
3619}
3620EXPORT_SYMBOL_GPL(iscsi_conn_get_param);
3621
Mike Christie0801c242007-05-30 12:57:12 -05003622int iscsi_host_get_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3623 char *buf)
3624{
Mike Christie75613522008-05-21 15:53:59 -05003625 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003626 int len;
3627
3628 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003629 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003630 len = sprintf(buf, "%s\n", ihost->netdev);
Mike Christied8196ed2007-05-30 12:57:25 -05003631 break;
Mike Christie0801c242007-05-30 12:57:12 -05003632 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003633 len = sprintf(buf, "%s\n", ihost->hwaddress);
Mike Christie0801c242007-05-30 12:57:12 -05003634 break;
Mike Christie8ad57812007-05-30 12:57:13 -05003635 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003636 len = sprintf(buf, "%s\n", ihost->initiatorname);
Mike Christie8ad57812007-05-30 12:57:13 -05003637 break;
Mike Christie0801c242007-05-30 12:57:12 -05003638 default:
3639 return -ENOSYS;
3640 }
3641
3642 return len;
3643}
3644EXPORT_SYMBOL_GPL(iscsi_host_get_param);
3645
3646int iscsi_host_set_param(struct Scsi_Host *shost, enum iscsi_host_param param,
3647 char *buf, int buflen)
3648{
Mike Christie75613522008-05-21 15:53:59 -05003649 struct iscsi_host *ihost = shost_priv(shost);
Mike Christie0801c242007-05-30 12:57:12 -05003650
3651 switch (param) {
Mike Christied8196ed2007-05-30 12:57:25 -05003652 case ISCSI_HOST_PARAM_NETDEV_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003653 return iscsi_switch_str_param(&ihost->netdev, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003654 case ISCSI_HOST_PARAM_HWADDRESS:
Mike Christie5700b1a2009-05-13 17:57:40 -05003655 return iscsi_switch_str_param(&ihost->hwaddress, buf);
Mike Christie8ad57812007-05-30 12:57:13 -05003656 case ISCSI_HOST_PARAM_INITIATOR_NAME:
Mike Christie5700b1a2009-05-13 17:57:40 -05003657 return iscsi_switch_str_param(&ihost->initiatorname, buf);
Mike Christie0801c242007-05-30 12:57:12 -05003658 default:
3659 return -ENOSYS;
3660 }
3661
3662 return 0;
3663}
3664EXPORT_SYMBOL_GPL(iscsi_host_set_param);
3665
Mike Christie7996a772006-04-06 21:13:41 -05003666MODULE_AUTHOR("Mike Christie");
3667MODULE_DESCRIPTION("iSCSI library functions");
3668MODULE_LICENSE("GPL");